DragonFly.Proxy
0.9.16
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DragonFly.Proxy --version 0.9.16
NuGet\Install-Package DragonFly.Proxy -Version 0.9.16
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DragonFly.Proxy" Version="0.9.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DragonFly.Proxy --version 0.9.16
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DragonFly.Proxy, 0.9.16"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DragonFly.Proxy as a Cake Addin #addin nuget:?package=DragonFly.Proxy&version=0.9.16 // Install DragonFly.Proxy as a Cake Tool #tool nuget:?package=DragonFly.Proxy&version=0.9.16
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DragonFly - Headless CMS based on ASP.NET Core and Blazor
Package | Release |
---|---|
DragonFly.Core | |
DragonFly.AspNetCore | |
DragonFly.API | |
DragonFly.Client | |
DragonFly.BlockField | |
DragonFly.Proxy | |
DragonFly.ImageWizard | |
DragonFly.MongoDB | |
DragonFly.Identity | |
DragonFly.ApiKeys |
Getting started
Prerequisites
- .NET 7.0 SDK
- Visual Studio 2022
- MongoDB instance
Create a new project from template
To use the project template you need first to download and install it from NuGet.
dotnet new install DragonFly.Templates
After this you can create the project with:
dotnet new DragonFly
If you have a remote MongoDB instance, you need to add some appsettings:
"MongoDB": {
"Hostname": "localhost",
"Database": "DragonFly_App",
"Port": 27017,
"Username": "",
"Password": ""
},
DragonFly
Supported fields
- StringField
- FloatField
- BoolField
- AssetField
- ReferenceField
- ComponentField
- ArrayField
- DateField
- IntegerField
- ColorField
- GeoLocationField
- SlugField
- XmlField
- HtmlField
- BlockField (HeadingBlock, TextBlock, HtmlBlock, CodeBlock, ContainerBlock, ColumnBlock, AssetBlock, ReferenceBlock, GridBlock,..)
How to create new content schema and content item
IContentStorage contentStorage = ...;//use MongoStorage or ClientContentService (http client)
//create brand schema
ContentSchema schemaBrand = new ContentSchema("Brand")
.AddString("Name")
.AddSlug("Slug")
.AddTextArea("Description");
//Define schema for product
ContentSchema schemaProduct = new ContentSchema("Product")
.AddReference("Brand")
.AddString("Name", options => options.IsRequired = true)
.AddSlug("Slug")
.AddBool("IsAvailable", options => options.DefaultValue = true)
.AddFloat("Price")
.AddTextArea("Description", options => options.MaxLength = 255)
.AddArray("Attributes", options => options
.AddString("Name")
.AddString("Value"));
await contentStorage.CreateAsync(schemaProduct);
//create product by schema
ContentItem contentProduct = schemaProduct
.CreateContent()
.SetReference("Brand", new ContentItem(Guid.Parse(""), schemaBrand))
.SetString("Name", "ProductA")
.SetBool("IsAvailable", true)
.SetFloat("Price", 9.99)
.SetTextArea("Description", "...")
.AddArrayItem("Attributes", schemaProduct, item => item
.SetString("Name", "Size")
.SetString("Value", "M"));
await contentStorage.CreateAsync(contentProduct);
Create typed content
[ContentItem("BlogPost")]
public class BlogPostModel : EntityPageModel
{
[DateField(Required = true)]
public virtual DateTime? Date { get; set; }
[StringField(Required = true, Searchable = true, ListField = true, MinLength = 8, MaxLength = 512)]
public virtual string Title { get; set; }
[TextField]
public virtual string Description { get; set; }
[SlugField(Required = true, Index = true)]
public virtual string Slug { get; set; }
[AssetField(ListField = true, ShowPreview = true)]
public virtual AssetField Image { get; set; }
[BlockField]
public virtual BlockField MainContent { get; set; }
}
Register typed content
builder.Services.AddDragonFly()
.AddProxy(x => x.AddType<BlogPostModel>());
Use queries for typed content
//get first item
var first = await ContentStorage.FirstOrDefaultAsync<BlogPostModel>(x => x
.SlugQuery(x => x.Slug, slug));
//get all items
var result = await ContentStorage.QueryAsync<BlogPostModel>(x => x
.Published(true)
.Top(10)
.SlugQuery(x => x.Slug, slug));
BackgroundTask
For long running jobs you can use the BackgroundTaskManager.
IBackgroundTaskManager taskManager = app.Services.GetRequiredService<IBackgroundTaskManager>();
taskManager.Start("Test", async ctx => await Task.Delay(TimeSpan.FromSeconds(60), ctx.CancellationToken));
DragonFly.AspNetCore
builder.Services.Configure<DragonFlyOptions>(Configuration.GetSection("General"));
builder.Services.Configure<MongoDbOptions>(Configuration.GetSection("MongoDB"));
//add DragonFly services
builder.Services.AddDragonFly()
.AddImageWizard()
.AddRestApi()
.AddMongoDbStorage()
.AddMongoDbIdentity()
.AddBlockField()
.AddApiKeys();
var app = builder.Build();
//init DragonFly
await app.InitDragonFly();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseWebAssemblyDebugging();
}
app.UseDragonFly(x => x
.MapImageWizard()
.MapApiKey()
.MapIdentity()
.MapRestApi()
.MapPermission());
app.UseDragonFlyManager();
app.UseRouting();
app.Run();
DragonFly.Client (Blazor)
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<DragonFly.App.Client.App>("app");
//Register DragonFly components
builder.AddDragonFly()
.AddRestApi()
.AddBlockField()
.AddIdentity()
.AddApiKeys();
WebAssemblyHost host = builder.Build();
await host.InitDragonFly();
await host.RunAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- Castle.Core (>= 5.1.1)
- DragonFly.AspNetCore (>= 0.9.16)
- DragonFly.Proxy.Attributes (>= 0.9.16)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.9.20 | 159 | 6/27/2023 |
0.9.19 | 135 | 6/22/2023 |
0.9.17 | 151 | 5/9/2023 |
0.9.16 | 155 | 4/28/2023 |
0.9.15 | 159 | 4/27/2023 |
0.9.14 | 158 | 4/27/2023 |
0.9.13 | 157 | 4/15/2023 |
0.9.12 | 213 | 3/19/2023 |
0.9.11 | 209 | 3/15/2023 |
0.9.10 | 231 | 3/5/2023 |
0.9.9 | 212 | 3/3/2023 |
0.9.8 | 218 | 3/2/2023 |
0.9.7 | 272 | 1/29/2023 |
0.9.6 | 263 | 1/27/2023 |
0.9.5 | 288 | 1/25/2023 |
0.9.3 | 309 | 1/2/2023 |
0.9.2 | 285 | 1/2/2023 |
0.9.0 | 277 | 12/28/2022 |
0.8.3 | 286 | 12/19/2022 |
0.8.2 | 279 | 12/18/2022 |
0.4.5-alpha | 147 | 10/1/2022 |
0.4.4-alpha | 166 | 9/22/2022 |
0.4.3-alpha | 166 | 9/22/2022 |