Muonroi.BuildingBlock 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Muonroi.BuildingBlock --version 1.0.0                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Muonroi.BuildingBlock --version 1.0.0                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Muonroi.BuildingBlock&version=1.0.0                
nuke :add-package Muonroi.BuildingBlock --version 1.0.0                

API Library with Dependency Injection and Serilog Configuration

Introduction

This library provides entities such as User, Role, Permission, and Language, and comes with built-in Dependency Injection features, Bearer Token management, JSON handling utilities, string conversion, and localization for multiple languages.

Usage Guide

1. Configuring Program.cs

Here's how to configure your Program.cs file:

using Serilog;
using Autofac;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using System.Reflection;

Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .CreateBootstrapLogger();

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);

// Add application configurations
_ = builder.AddAppConfigurations();

// Add Autofac configuration
_ = builder.AddAutofacConfiguration();

// Configure Serilog
_ = builder.Host.UseSerilog(MSerilogAction.Configure);

Log.Information("Starting {ApplicationName} API up", builder.Environment.ApplicationName);

try
{
    IConfiguration configuration = builder.Configuration;
    Assembly assembly = Assembly.GetExecutingAssembly();
    IServiceCollection services = builder.Services;

    // Add services to DI container
    _ = services.AddApplication(assembly);
    _ = services.AddInfrastructure(configuration);
    _ = services.AddDbContextConfigure<ApiDbContext>(configuration);
    _ = services.SwaggerConfig(builder.Environment.ApplicationName);
    _ = services.AddScopeServices(typeof(ApiDbContext).Assembly);
    _ = services.AddValidateBearerToken<MTokenInfo>();

    WebApplication app = builder.Build();

    // Add localization and middleware
    _ = app.AddLocalization(assembly);
    _ = app.UseRouting();
    _ = app.UseAuthentication();
    _ = app.UseAuthorization();
    _ = app.ConfigureEndpoints();
    _ = app.MigrateDatabase();
    _ = app.UseMiddleware<MExceptionMiddleware>();

    await app.RunAsync();
}
catch (Exception ex)
{
    string type = ex.GetType().Name;

    if (type.Equals("StopTheHostException", StringComparison.Ordinal))
    {
        throw;
    }

    Log.Fatal(ex, "Unhandled exception: ", ex.Message);
}
finally
{
    Log.Information("Shut down ", builder.Environment.ApplicationName + " complete");
    await Log.CloseAndFlushAsync();
}

2. Example appsettings.json Configuration

Here's an example of the appsettings.json configuration that can be used with this library:

{
  "ConnectionStrings": {
    "DefaultConnection": ""
  },
  "ApiKey": "",
  "TokenConfigs": {
    "Issuer": "https://exampledomain.com",
    "Audience": "https://searchpartners.exampledomain.com",
    "SigningKeys": "",
    "ExpiryMinutes": 30,
    "PublicKey": "-----BEGIN PUBLIC KEY-----\n-----END PUBLIC KEY-----",
    "PrivateKey": "-----BEGIN RSA PRIVATE KEY-----

-----END RSA PRIVATE KEY-----"
  },
  "PaginationConfigs": {
    "DefaultPageIndex": 1,
    "DefaultPageSize": 10,
    "MaxPageSize": 10
  },
  "ResourceSetting": {
    "ResourceName": "Resources.ErrorMessages",
    "lang": "vi-VN"
  },
  "Serilog": {
    "Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.Elasticsearch" ],
    "MinimumLevel": {
      "Default": "Information",
      "Override": {
        "Microsoft.AspNetCore": "Warning",
        "System": "Warning"
      }
    },
    "WriteTo": [
      {
        "Name": "Console"
      },
      {
        "Name": "Elasticsearch",
        "Args": {
          "nodeUris": "http://localhost:9200",
          "autoRegisterTemplate": true,
          "indexFormat": "notifications_system-{0:yyyy.MM.dd}",
          "inlineFields": true,
          "numberOfShards": 2,
          "numberOfReplicas": 2,
          "autoRegisterTemplateVersion": "ESv7"
        }
      }
    ],
    "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
    "Properties": {
      "Application": "Notifications"
    }
  },
  "ErrorInAverageEveryNTime": 2,
  "WarningInAverageEveryNTime": 2
}

Main Components

1. Entities

  • User: Manages users.
  • Role: Manages user roles.
  • Permission: Manages access permissions.
  • Language: Manages languages.

2. Dependency Injection

  • Integrates necessary services via Dependency Injection (DI) to manage the application lifecycle.

3. Bearer Token

  • Manages Bearer Token, authentication, and authorization.

4. JSON Utilities

  • Provides utilities for handling JSON, such as converting between strings and objects.

5. Localization

  • Supports language localization within the application for various languages.

Contribution

Please submit pull requests or open issues on GitHub to contribute or report bugs for this project.

License

This library is licensed under the MIT License. Please see the LICENSE file for more details.


Please customize the configuration details (such as ConnectionStrings, ApiKey, TokenConfigs, etc.) according to your application�s requirements.

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.

This package has no dependencies.

Version Downloads Last updated
1.3.6 43 11/11/2024
1.3.5 41 11/11/2024
1.3.4 39 11/11/2024
1.3.3 39 11/10/2024
1.3.2 32 11/10/2024
1.3.1 35 11/10/2024
1.3.0 35 11/10/2024
1.2.9 39 11/8/2024
1.2.8 77 10/27/2024
1.2.7 85 10/27/2024 1.2.7 is deprecated because it has critical bugs.
1.2.6 87 10/27/2024 1.2.6 is deprecated because it has critical bugs.
1.2.5 81 10/27/2024 1.2.5 is deprecated because it has critical bugs.
1.2.4 90 10/26/2024 1.2.4 is deprecated because it has critical bugs.
1.2.3 78 10/25/2024 1.2.3 is deprecated because it has critical bugs.
1.2.2 104 10/18/2024 1.2.2 is deprecated because it has critical bugs.
1.2.1 107 10/1/2024 1.2.1 is deprecated because it has critical bugs.
1.2.0 123 9/8/2024 1.2.0 is deprecated because it has critical bugs.
1.1.9 101 9/2/2024 1.1.9 is deprecated because it has critical bugs.
1.1.8 114 9/2/2024 1.1.8 is deprecated because it has critical bugs.
1.1.7 108 9/1/2024 1.1.7 is deprecated because it has critical bugs.
1.1.6 105 9/1/2024 1.1.6 is deprecated because it has critical bugs.
1.1.5 111 9/1/2024 1.1.5 is deprecated because it has critical bugs.
1.1.4 105 9/1/2024 1.1.4 is deprecated because it has critical bugs.
1.1.3 108 9/1/2024 1.1.3 is deprecated because it has critical bugs.
1.1.2 112 9/1/2024 1.1.2 is deprecated because it has critical bugs.
1.1.1 104 8/31/2024 1.1.1 is deprecated because it has critical bugs.
1.1.0 105 8/29/2024 1.1.0 is deprecated because it has critical bugs.
1.0.9 108 8/29/2024 1.0.9 is deprecated because it has critical bugs.
1.0.8 144 8/27/2024 1.0.8 is deprecated because it has critical bugs.
1.0.7 133 8/26/2024 1.0.7 is deprecated because it has critical bugs.
1.0.6 112 8/26/2024 1.0.6 is deprecated because it has critical bugs.
1.0.5 131 8/25/2024 1.0.5 is deprecated because it has critical bugs.
1.0.4 129 8/25/2024 1.0.4 is deprecated because it has critical bugs.
1.0.3 137 8/25/2024 1.0.3 is deprecated because it has critical bugs.
1.0.2 134 8/25/2024 1.0.2 is deprecated because it has critical bugs.
1.0.1 128 8/25/2024 1.0.1 is deprecated because it has critical bugs.
1.0.0 224 8/25/2024 1.0.0 is deprecated because it has critical bugs.

This library will help you whenever you create a new project without needing much configuration, as everything is already set up, from bearer tokens to authentication, and more.