BE.Auto.Api 1.0.0

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

// Install BE.Auto.Api as a Cake Tool
#tool nuget:?package=BE.Auto.Api&version=1.0.0                

BE.Auto.Api

Overview

The BE.Auto.Api module streamlines the configuration and automation of API-related settings for ASP.NET Core applications. This module simplifies the process of generating API controllers automatically from application services, offering features for effortless route generation, flexible case formatting, and comprehensive Swagger documentation.

Configuration

Configure the module in your application startup using the following code:

builder.Services.AddMvcCore().AddAutoApi(opt =>
{
    opt.RouteOptions.RootPath = "api/app";
    opt.RouteOptions.CaseType = RouteCaseType.KebabCase;
    opt.RouteOptions.IgnoredKeywords = new[] {"Async","App","Application","Service","Manager" };
});

Example Service Implementation Consider the implementation of a service, UserAppService, as an example:

public class UserAppService : IUserAppService
{
    public async Task<bool> UpdateProfilePictureAsync(IFormFile file)
    {
        if (file.Length == 0)
            return false;

        var filePath = Path.Combine(Directory.GetCurrentDirectory(), "uploads", file.FileName);

        await using var stream = new FileStream(filePath, FileMode.Create);
        await file.CopyToAsync(stream);

        return true;
    }

    public async Task<string> GetUserNameAsync()
    {
        return await Task.FromResult("Burak ESER");
    }
}

Service Interfaces Define service interfaces that extend IApplicationService:

public interface IUserAppService : IApplicationService
{
    Task<bool> UpdateProfilePictureAsync(IFormFile file);
    Task<string> GetUserNameAsync();
}

public interface IApplicationService : ITransientDependency, IAutoApi
{
 
}

AutoApi Usage Use IAutoApi or AutoApiAttribute on the service interfaces or classes.

Case Types Choose from various case types for route formatting:

None UpperCase LowerCase TitleCase CamelCase PascalCase SnakeCase KebabCase SentenceCase InverseCase

Swagger JSON The Swagger JSON for the configured routes is generated as follows:

{ "openapi": "3.0.1", "info": { "title": "Your API", "version": "v1" }, "paths": { "/api/app/user/update-profile-picture": { "put": { "tags": [ "User App Service" ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" } } }, "encoding": { "file": { "style": "form" } } } } }, "responses": { "200": { "description": "Success", "content": { "text/plain": { "schema": { "type": "boolean" } }, "application/json": { "schema": { "type": "boolean" } }, "text/json": { "schema": { "type": "boolean" } } } } } } }, "/api/app/user/get-user-name": { "get": { "tags": [ "User App Service" ], "responses": { "200": { "description": "Success", "content": { "text/plain": { "schema": { "type": "string" } }, "application/json": { "schema": { "type": "string" } }, "text/json": { "schema": { "type": "string" } } } } } } } }, "components": {} }

Product 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

    • No dependencies.

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
1.0.0 248 11/16/2023