Aiursoft.AiurProtocol.Server 8.0.3

dotnet add package Aiursoft.AiurProtocol.Server --version 8.0.3
NuGet\Install-Package Aiursoft.AiurProtocol.Server -Version 8.0.3
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="Aiursoft.AiurProtocol.Server" Version="8.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aiursoft.AiurProtocol.Server --version 8.0.3
#r "nuget: Aiursoft.AiurProtocol.Server, 8.0.3"
#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 Aiursoft.AiurProtocol.Server as a Cake Addin
#addin nuget:?package=Aiursoft.AiurProtocol.Server&version=8.0.3

// Install Aiursoft.AiurProtocol.Server as a Cake Tool
#tool nuget:?package=Aiursoft.AiurProtocol.Server&version=8.0.3

AiurProtocol

MIT licensed Pipeline stat Test Coverage NuGet version (Aiursoft.AiurProtocol.Abstractions) NuGet version (Aiursoft.AiurProtocol) NuGet version (Aiursoft.AiurProtocol.Server) ManHours

AiurProtocol defines an API programming practice to easily build a RESTful API. It simplifies the process of

  • Auto HTTP request path building
  • Strong-typed API model sharing
  • Auto HTTP status code translation
  • Auto error handling\error pass through
  • Auto input model validation\local validation
  • Auto serialization and deserialization
  • Document generation

And the API it built is also standard Restful HTTP API, so you can call it with any programming language.

With AiurProtocol, you can focus on designing your API and forget about those complications!

Why this project?

API development is a challenging task that requires handling various aspects such as HTTP status codes, error handling, input validation, documentation writing, and log checking. However, this project aims to simplify the API development process by providing a unified best practice approach. By following this approach, developers can efficiently handle HTTP status codes, error handling, input validation, documentation writing, and log checking. This project's goal is to save time and effort, allowing developers to focus more on developing new features.

Installation

Run the following command to install Aiursoft.AiurProtocol.Server to your ASP.NET Core project from nuget.org:

dotnet add package Aiursoft.AiurProtocol.Server

Run the following command to install Aiursoft.AiurProtocol to your SDK project which sending requests to your server from nuget.org:

dotnet add package Aiursoft.AiurProtocol

dependency diagram

How to use on Server

Register AiurProtocol in your Startup.cs

// Your startup.cs on server
using Aiursoft.AiurProtocol.Server;

public void ConfigureServices(IServiceCollection services)
{
    services
        .AddControllers()
        .AddAiurProtocol(); // <---- Add this after add controllers!
}

Now you can go to your Controller and return the protocol!

// Your controller
using Aiursoft.AiurProtocol.Server;

[ApiExceptionHandler(
    PassthroughRemoteErrors = true, 
    PassthroughAiurServerException = true)]
[ApiModelStateChecker]
public class HomeController : ControllerBase
{
    [Route("/api/hello-world")]
    public IActionResult Index()
    {
        return this.Protocol(Code.ResultShown, "Welcome to this API project!");
    }
}

How to use it to build an SDK

Now you need to write an SDK for your API.

After creating a new class library project, add the dependencies:


<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <TargetFramework>net8.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
    </PropertyGroup>
    <ItemGroup>
        <PackageReference Include="Aiursoft.AiurProtocol" Version="8.0.0" />
    </ItemGroup>
</Project>

Write the following method:

// In SDK
using Aiursoft.AiurProtocol;
using Microsoft.Extensions.DependencyInjection;

public class DemoServerConfig
{
    public string Instance { get; set; } = string.Empty;
}

public class DemoAccess
{
    private readonly AiurProtocolClient _http;
    private readonly DemoServerConfig _demoServerLocator;

    public DemoAccess(
        AiurProtocolClient http,
        IOptions<DemoServerConfig> demoServerLocator)
    {
        _http = http;
        _demoServerLocator = demoServerLocator.Value;
    }

    public async Task<AiurResponse> IndexAsync()
    {
        var url = new AiurApiEndpoint(host: _demoServerLocator.Instance, route: "/api/hello-world", param: new {});
        var result = await _http.Get<AiurResponse>(url);
        return result;
    }
}

public static IServiceCollection AddDemoService(this IServiceCollection services, string endPointUrl)
{
    services.AddAiurProtocolClient();
    services.Configure<DemoServerConfig>(options => options.Instance = endPointUrl);
    services.AddScoped<DemoAccess>();
    return services;
}

How to use your new SDK

Now you can write a new console app to use your new SDK to call your server!

// To get your SDK:
var services = new ServiceCollection();
services.AddDemoService(endpointUrl);
var serviceProvider = services.BuildServiceProvider();
var sdk = serviceProvider.GetRequiredService<DemoAccess>(); // Or from dependency injection

// To use your SDK:
var result = await sdk?.IndexAsync()!;

That's it! It will use your SDK to generate a new call to your server, and the result is right at your hand!

Advanced usage

Future features

It will support the following features in the future:

  • API rate limit
  • API version control
  • API documentation
  • API request logging and report

How to contribute

There are many ways to contribute to the project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.

Even if you with push rights on the repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your workflow cruft out of sight.

We're also interested in your feedback on the future of this project. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Aiursoft.AiurProtocol.Server:

Package Downloads
Aiursoft.SDK

The base class, tools and extends for Aiursoft web apps.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aiursoft.AiurProtocol.Server:

Repository Stars
AiursoftWeb/Infrastructures
Mirror of: https://gitlab.aiursoft.cn/aiursoft/infrastructures
Version Downloads Last updated
8.0.3 98 3/17/2024
8.0.2 75 2/25/2024
8.0.1 161 2/19/2024
8.0.0 94 2/19/2024
7.0.24 104 2/14/2024
7.0.23 83 2/4/2024
7.0.22 74 2/2/2024
7.0.21 76 2/2/2024
7.0.20 78 1/30/2024
7.0.19 95 1/18/2024
7.0.18 85 1/10/2024
7.0.17 108 1/4/2024
7.0.16 481 12/30/2023
7.0.15 106 12/24/2023
7.0.14 138 12/1/2023
7.0.13 246 11/26/2023
7.0.12 180 11/22/2023
7.0.11 188 11/21/2023
7.0.10 144 11/12/2023
7.0.7 161 11/2/2023
7.0.6 118 11/2/2023
7.0.5 155 10/31/2023
7.0.4 123 10/27/2023
7.0.3 237 10/11/2023
7.0.2 207 9/23/2023
7.0.1 175 9/13/2023
7.0.0 233 9/5/2023
6.0.11 151 8/20/2023
6.0.10 290 7/9/2023
6.0.9 198 7/9/2023
6.0.8 182 7/3/2023
6.0.7 187 6/26/2023
6.0.6 122 6/26/2023