Aiursoft.DocGenerator 8.0.1

ASP.NET Core API Document Generator

MIT licensed Pipeline stat Test Coverage NuGet version (Aiursoft.DocGenerator) ManHours Website

A basic API document generator for ASP.NET Core applications. Open source, offline and free.

Features

  • Generate Markdown
  • Generate Json

Open the example

Supports

  • ASP.NET Core 6.0

How to use

First, install Aiursoft.DocGenerator to your ASP.NET Core project from nuget.org:

dotnet add package Aiursoft.DocGenerator

Simply add this line in your Startup.cs:

using Aiursoft.DocGenerator.Services;

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    // ...
    // your middlewares
    // ...
    
    app.UseAiursoftDocGenerator(); // <- Add this.
}

Start your application and browse:

/doc

It just returns your document in JSON format.

[{
	"ControllerName": "HomeController",
	"ActionName": "Index",
	"AuthRequired": false,
	"IsPost": false,
	"Arguments": [],
	"PossibleResponses": ["{\"code\":0,\"message\":\"success.\"}"]
}]

That's all! Happy coding!

Continue? Try runing the example project! Or continue reading.

Customization and API

Change document output address

app.UseAiursoftDocGenerator(options =>
{
    // Default value is '/doc'. You can change it to other path.
    options.DocAddress = "/my-doc";
});

Change document output format

app.UseAiursoftDocGenerator(options =>
{
    // Default format is JSON. You can change it to markdown.
    options.Format = DocFormat.Markdown;
});

Set global possible responses

app.UseAiursoftDocGenerator(options =>
{
    // Default global possible response is an empty list.
    options.GlobalPossibleResponse.Add(new { code = 0, message = "success." });
});

Set possible response for one API

When you can ensure the possible response for one API, add this line to your action:

[Produces(typeof(ResponseModel))] // <- add this in your controller.
public IActionResult HasOutput()
{
    var model = new ResponseModel(); // <- your own class and logic
    return Json(model);
}

Document generation filter

By default, only controllers and actions with [GenerateDoc] attributes will be generated.

To mark a controller or action which generates document, add attribute [GenerateDoc] like this:

using Aiursoft.DocGenerator.Attribute;

[GenerateDoc] // Add this, the entire controller will generate document.
public class HomeController : Controller
{
    [GenerateDoc] // Add this, the action will generate document.
    public IActionResult MyAPI()
    {
        return Json(null);
    }
}

You can change that logic to your own filter:

app.UseAiursoftDocGenerator(options =>
{
    options.IsAPIAction = (action, controller) =>
    {
        // Your own logic. Return bool.
        return action.CustomAttributes.Any(t => t.AttributeType == typeof(GenerateDoc));
    };
}

Authorized action detector

If your API is authorized required, we can detect that in the document. And you can customzie the logic:

using Microsoft.AspNetCore.Authorization;

app.UseAiursoftDocGenerator(options =>
{
    options.JudgeAuthorized = (action, controller) =>
    {
        // Your own logic here. Return bool.
        return
            action.CustomAttributes.Any(t => t.AttributeType == typeof(AuthorizeAttribute)) ||
            controller.CustomAttributes.Any(t => t.AttributeType == typeof(AuthorizeAttribute));
    };
}

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.

Showing the top 20 packages that depend on Aiursoft.DocGenerator.

Packages Downloads
Aiursoft.SDK
The base class, tools and extends for Aiursoft web apps.
59
Aiursoft.SDK
The base class, tools and extends for Aiursoft web apps.
2
Aiursoft.SDK
Package Description
2

Version Downloads Last updated
8.0.1 144 03/25/2024
8.0.0 1 04/29/2024
7.0.3 2 03/31/2024
7.0.2 1 04/29/2024
7.0.1 57 03/26/2024
7.0.0 2 04/02/2024
6.0.26 2 04/02/2024
6.0.25 2 04/02/2024
6.0.24 5 04/02/2024
6.0.22 2 04/02/2024
6.0.21 2 04/02/2024
6.0.20 2 04/02/2024
6.0.19 3 03/27/2024
6.0.18 4 04/02/2024
6.0.17 2 04/02/2024
6.0.16 2 04/02/2024
6.0.15 3 04/02/2024
6.0.14 2 04/02/2024
6.0.13 3 04/02/2024
6.0.12 2 04/02/2024
6.0.11 2 04/02/2024
6.0.10 2 04/02/2024
6.0.9 2 04/02/2024
6.0.8 2 04/02/2024
6.0.7 2 04/02/2024
6.0.6 3 04/01/2024
6.0.5 2 04/02/2024
6.0.0 2 04/02/2024
5.0.9 2 04/02/2024
5.0.8 2 04/02/2024
5.0.7 2 04/02/2024
5.0.6 2 04/02/2024
5.0.5 2 04/02/2024
5.0.4 4 04/02/2024
5.0.3 3 03/31/2024
5.0.2 2 04/02/2024
5.0.1 2 04/02/2024
5.0.0 2 04/02/2024
3.2.11 2 04/02/2024
3.2.10 2 04/02/2024
3.2.9 3 04/02/2024
3.2.8 4 04/01/2024
3.2.7 2 04/02/2024
3.2.6 3 03/28/2024
3.2.5 2 04/02/2024
3.2.4 2 04/02/2024
3.2.3 3 04/02/2024
3.2.2 4 04/02/2024
3.2.1 2 04/02/2024
3.2.0 2 04/02/2024
3.1.14 2 04/02/2024
3.1.13 3 04/02/2024
3.1.12 2 04/02/2024
3.1.11 2 04/02/2024
3.1.10 3 04/02/2024
3.1.9 4 04/02/2024
3.1.8 1 04/29/2024
3.1.7 2 04/02/2024
3.1.6 2 04/02/2024
3.1.5 2 04/02/2024
3.1.4 2 04/02/2024
3.1.3 2 04/02/2024
3.1.2.2 3 04/02/2024
3.1.2.1 2 04/02/2024
3.1.2 2 04/02/2024
3.1.1.8 2 04/02/2024
3.1.1.7 2 04/02/2024
3.1.1.6 2 04/02/2024
3.1.1.5 2 04/02/2024
3.1.1.4 2 04/02/2024
3.1.1.2 2 04/02/2024
3.1.1 2 04/02/2024