Antelcat / Server

Server side of foundation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Antelcat.Foundation.Server

Server side of code foundation

Reference to :

Dependency-Injection

Authentication

  • Jwt

    Easily configure jwt authentication by serialize model into claims and back :

    builder.Services.ConfigureJwt<IdentityModel>(
        configure: static jwt => jwt.Secret = "Your secret key",
        validation: static async (identity,context) => {
            if (identity.Id < 0) context.Fail("Jwt token invalid"); 
        },
        failed: static context => "You are an unauthorized audience"
    );

    when inherit from BaseController, controllers can resolve identity like :

    [ApiController]
    public class IdentityController : BaseController{
        
        [Autowired]
        private JwtConfigure<IdentityModel> configure;
    
        [HttpPost]
        [AllowAnonymous]
        public IActionResult MyToken([FromBody]IdentityModel identity){
            return configure.CreateToken(identity);
        }
    
        [HttpGet]
        [Authorize]
        public IActionResult WhoAmI(){
            return base.Identity<IdentityModel>();
        }
    }

About

Server side of foundation

License:MIT License


Languages

Language:C# 100.0%