Kull.GenericBackend
2.1.4
See the version list below for details.
dotnet add package Kull.GenericBackend --version 2.1.4
NuGet\Install-Package Kull.GenericBackend -Version 2.1.4
<PackageReference Include="Kull.GenericBackend" Version="2.1.4" />
paket add Kull.GenericBackend --version 2.1.4
#r "nuget: Kull.GenericBackend, 2.1.4"
// Install Kull.GenericBackend as a Cake Addin #addin nuget:?package=Kull.GenericBackend&version=2.1.4 // Install Kull.GenericBackend as a Cake Tool #tool nuget:?package=Kull.GenericBackend&version=2.1.4
The Kull Generic Backend
This package allows Integration of a generic Stored Procedure-based Backend to Asp.Net MVC Core It uses Swashbuckle, Version 5+
Nearly everything can be customized. It's designed to be extensible.
Installation
It's on Nuget: https://www.nuget.org/packages/Kull.GenericBackend/ Basically, just use:
dotnet add package Kull.GenericBackend
Configuration
In Startup.cs, add the following services:
using Kull.GenericBackend;
// ...
public void ConfigureServices(IServiceCollection services)
{
services.AddMvcCore().AddApiExplorer(); //Or AddMvc() depending on your needs
services.AddGenericBackend()
.ConfigureMiddleware(m =>
{ // Set your options
m.AlwaysWrapJson = true; // Recommended
m.RequireAuthenticated = true; // default since 2.0. for local development, you might want to use false
})
.ConfigureOpenApiGeneration(o =>
{ // Set your options
})
.AddFileSupport()
.AddXmlSupport()
.AddSystemParameters();
// You might have to register your Provider Factory
if (!DbProviderFactories.TryGetFactory("Microsoft.Data.SqlClient", out var _))
DbProviderFactories.RegisterFactory("Microsoft.Data.SqlClient", Microsoft.Data.SqlClient.SqlClientFactory.Instance);
// IMPORTANT: You have to inject a DbConnection somehow
services.AddTransient(typeof(DbConnection), (s) =>
{
var conf = s.GetRequiredService<IConfiguration>();
var constr = conf["ConnectionStrings:DefaultConnection"];
return new Microsoft.Data.SqlClient.SqlConnection(constr);
});
services.AddSwaggerGen(c=> {
c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });
c.AddGenericBackend();
});
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseSwagger(o =>
{
// Depending on your client, set this to true (eg, ng-swagger-gen)
o.SerializeAsV2 = false;
});
app.UseRouting();
app.UseEndpoints(endpoints =>
{
app.UseGenericBackend(endpoints);
endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
});
// If needed, Swagger UI, see https://github.com/domaindrivendev/Swashbuckle.AspNetCore
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
});
}
In a File called backendconfig.json, set the URI's:
{
"$schema": "https://raw.githubusercontent.com/Kull-AG/kull-generic-backend/master/backendconfig.schema.json",
"Entities": {
"Cases": {
"Get": "api.spGetSomeCases"
},
"Cases/{CaseId|int}/Brands": {
"Get": "api.spGetBrands",
"Post": {
"SP": "api.spAddUpdateBrands",
"OperationId": "AddOrUpdateBrands",
"IgnoreParameters":["AParameterMyApiDoesnotCare"],
"ExecuteParameters": {
"ParamterName": "Set this object for strange cases where SQL Server does not return meta",
"AnotherParamter": "Be sure not to edit any data."
}
}
},
"Sample": {
"GET": {
"View": "dbo.[use a view if you want]" // (currently readonly, get only)
}
},
"SampleFunction": {
"GET": {
"Function": "dbo.[use a table valued function if you want]" // (currently readonly, get only)
}
}
}
}
You can place this in appsettings.json as well if you don't like a separate file.
In the "Entities" Section, the URL's are configured. Each entry correspondends to a URL. Each URL can be accessed by multiple HTTP Methods. Common methods are:
- GET for getting data, shoud NEVER update something
- POST for adding/updating. Maybe misused for getting data if the url gets longer then 2000 chars otherwise), but then set the OperationId as seen above
- PUT for updating data
- DELETE for deleting data
In the URL there can be route constraints as in MVC, however the | is used instead of : because of limitations of appsettings.json For a full documentation of allowed route constraints, please see here
For best practices for defining a REST Api, see here
Further features
For usage on Output Parameters, Table Valued Parameters and multiple Result Sets, view the wiki
Main parts of the generic API
Middleware for handling the requests
The main part of the project is the Middleware that handles stored procedures. It is responsible for handling a request against some URL defined in the Entities Section, as seen above.
Middleware for Swagger
The other part is the middleware that is responsible for generating a swagger.json file out of the information of the database. This is done by using the sp_describe_first_result_set and INFORMATION_SCHEMA.parameters. There is a separate Package for the Metadata: Kull-AG/kull-databasemetadata
It works by adding an IDocumentFilter to Swashbuckle. Swashbuckle generates the swagger.json This means you can mix this backend and your own Controllers and it will just work in the swagger.json.
Special parameters
There are so called System Parameters, which are parameters defined in any Stored Procedure which should be resolved by the Webserver and not by the Consumer of the API. Built-in are the following System Parameters:
- ADLogin & NTLogin: The Username in the HttpContext
- IPAddress: The IP Adress of the User
- UserAgent: The UserAgent of the Browser
If you would like to add something to this, or remove the default ones, you can do this in startup.cs:
.AddSystemParameters(prms=>
{
prms.Clear();
//Usually you will want to set global system parameters
prms.AddSystemParameter("UserClaims", c => Newtonsoft.Json.JsonConvert.SerializeObject(c.User.Claims));
//But if you want one for just one SP, you can do this by using the dot
prms.AddSystemParameter("SchemaName.ProcecureName.ParameterNameInThere", c => c.GetType().ToString());
});
Error Handling
In order to inform the client about an error, use RAISERROR('SOMEERROR', 16,1,1);
If there is another exception on the server, code 500 is sent whenever possible. However,
when the error occurs during execution and not right at the start, the response will be aborted
and the status code cannot be guaranteed. In this case the result will be invalid JSON.
If you want to set the status code, use throw with code 50000 + Http Status Code between 400 and 599:
throw 50503, 'No access to this', 1
.Net 4.8
It works in theory, but requires a lot of #if's and is not integration-tested. It's used in a number of projects though and does it's job. See wiki
Possible futher development
- Direct manipulation of views without Stored Procedures (while staying secure)
- Support for other databases, eg Sqlite for Testing (Sqlite requires View support)
- Support for Return Codes, though the benefit seems reasonable
- Even More Unit Tests
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- Kull.Data (>= 6.0.0)
- Kull.DatabaseMetadata (>= 1.4.0)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.2.3)
-
.NETFramework 4.8
- Kull.Data (>= 6.0.0)
- Kull.DatabaseMetadata (>= 1.4.0)
- Kull.MvcCompat (>= 0.2.1)
- Microsoft.AspNet.Mvc (>= 5.2.7)
- Microsoft.OpenApi (>= 1.2.3)
- Swashbuckle.Core (>= 5.6.0)
- Unity (>= 5.11.9)
-
.NETStandard 2.0
- Kull.Data (>= 6.0.0)
- Kull.DatabaseMetadata (>= 1.4.0)
- Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1)
- Microsoft.AspNetCore.Routing (>= 2.1.1)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.2.3)
-
net5.0
- Kull.Data (>= 6.0.0)
- Kull.DatabaseMetadata (>= 1.4.0)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.2.3)
-
net6.0
- Kull.Data (>= 6.0.0)
- Kull.DatabaseMetadata (>= 1.4.0)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.2.3)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Kull.GenericBackend:
Package | Downloads |
---|---|
Kull.GenericBackend.OData
Package Description |
|
Kull.GenericBackend-Sanitizer
Package Description |
|
Kull.GenericBackend.Sanitizer
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.6.0-alpha | 227 | 12/4/2023 |
2.5.4 | 1,243 | 11/29/2022 |
2.5.3 | 324 | 11/29/2022 |
2.5.2 | 317 | 11/29/2022 |
2.5.1 | 342 | 11/29/2022 |
2.5.0 | 385 | 11/22/2022 |
2.4.2 | 454 | 11/18/2022 |
2.4.1 | 439 | 11/17/2022 |
2.4.0-beta5 | 228 | 9/22/2022 |
2.4.0-beta4 | 152 | 9/22/2022 |
2.4.0-beta3 | 180 | 9/8/2022 |
2.4.0-beta2 | 197 | 7/19/2022 |
2.4.0-beta1 | 168 | 7/19/2022 |
2.3.0 | 868 | 7/1/2022 |
2.2.0-beta9 | 166 | 6/14/2022 |
2.2.0-beta8 | 467 | 5/27/2022 |
2.2.0-beta7 | 201 | 5/4/2022 |
2.2.0-beta6 | 198 | 2/17/2022 |
2.2.0-beta4 | 192 | 2/17/2022 |
2.2.0-beta3 | 227 | 1/19/2022 |
2.2.0-beta2 | 265 | 1/18/2022 |
2.2.0-beta1 | 185 | 1/14/2022 |
2.1.4 | 822 | 1/13/2022 |
2.1.3 | 485 | 1/12/2022 |
2.1.2 | 625 | 1/11/2022 |
2.1.1 | 876 | 12/3/2021 |
2.1.0 | 1,011 | 12/3/2021 |
2.1.0-beta1 | 757 | 12/1/2021 |
2.0.3 | 349 | 12/1/2021 |
2.0.2 | 347 | 12/1/2021 |
2.0.1 | 325 | 12/1/2021 |
2.0.0 | 329 | 11/30/2021 |
2.0.0-beta9 | 4,924 | 11/24/2021 |
2.0.0-beta8 | 258 | 11/13/2021 |
2.0.0-beta7 | 387 | 10/25/2021 |
2.0.0-beta6 | 227 | 10/25/2021 |
2.0.0-beta5 | 279 | 10/25/2021 |
2.0.0-beta4 | 218 | 10/6/2021 |
2.0.0-beta3 | 254 | 10/5/2021 |
2.0.0-beta2 | 262 | 9/30/2021 |
1.5.3 | 454 | 8/13/2021 |
1.5.2 | 384 | 8/11/2021 |
1.5.1 | 423 | 8/9/2021 |
1.5.0 | 499 | 8/1/2021 |
1.4.4 | 496 | 8/1/2021 |
1.4.3 | 467 | 7/29/2021 |
1.4.2 | 549 | 4/13/2021 |
1.4.1 | 401 | 4/13/2021 |
1.4.0 | 424 | 4/6/2021 |
1.3.9 | 419 | 2/11/2021 |
1.3.8 | 570 | 1/25/2021 |
1.3.7 | 438 | 1/15/2021 |
1.3.6 | 443 | 1/15/2021 |
1.3.5 | 559 | 12/8/2020 |
1.3.4 | 482 | 12/8/2020 |
1.3.2 | 665 | 9/9/2020 |
1.3.1 | 546 | 9/9/2020 |
1.3.0 | 530 | 8/19/2020 |
1.2.4 | 549 | 8/18/2020 |
1.2.3 | 579 | 8/12/2020 |
1.2.2 | 506 | 8/12/2020 |
1.2.1 | 541 | 7/16/2020 |
1.2.0 | 539 | 7/16/2020 |
1.1.0 | 649 | 6/1/2020 |
1.1.0-beta3 | 364 | 5/25/2020 |
1.1.0-beta2 | 344 | 5/20/2020 |
1.1.0-beta1 | 331 | 5/20/2020 |
1.1.0-alpha3 | 354 | 5/20/2020 |
1.1.0-alpha2 | 358 | 5/20/2020 |
1.1.0-alpha1 | 353 | 5/20/2020 |
1.0.0-rc3 | 343 | 5/19/2020 |
1.0.0-rc2 | 341 | 5/14/2020 |
1.0.0-rc1 | 309 | 5/14/2020 |
1.0.0-beta3 | 359 | 5/6/2020 |
1.0.0-beta2 | 358 | 5/4/2020 |
1.0.0-beta1 | 371 | 4/30/2020 |
0.15.4 | 664 | 3/18/2020 |
0.15.3 | 606 | 3/18/2020 |
0.14.2 | 660 | 11/22/2019 |
0.14.1 | 1,231 | 10/2/2019 |
0.13.5 | 633 | 9/25/2019 |
0.13.4 | 632 | 9/12/2019 |
0.13.3 | 598 | 9/11/2019 |
0.13.2 | 599 | 9/10/2019 |
0.13.1 | 620 | 9/10/2019 |
0.13.0 | 666 | 8/14/2019 |