using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Bank.Database.Entities
{
[Table("Clients")]
public class ClientEntity
{
[Key]
public int ID { get; set; }
public string Name { get; set; }
public BankAccountEntity Account { get; set; }
public List<CardEntity> Cards { get; set; }
public ClientEntity()
{
Cards = new List<CardEntity>();
}
}
}
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Bank.Database.Entities
{
[Table("Cards")]
public class CardEntity
{
[Key]
public int ID { get; set; }
public long CardNumber { get; set; }
public short Password { get; set; }
public int ClientFK { get; set; }
public ClientEntity Client { get; set; }
}
}
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Bank.Database.Entities
{
[Table("Accounts")]
public class BankAccountEntity
{
[Key]
public int ID { get; set; }
public long AccountNumber { get; set; }
public int ClientFK { get; set; }
public ClientEntity Client { get; set; }
}
}
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
.AddCookie(options =>
{
options.LoginPath = "/User/SignIn";
options.AccessDeniedPath = "/User/SignIn";
options.ExpireTimeSpan = TimeSpan.MaxValue;
options.SlidingExpiration = true;
});
services.AddAuthorization();
options.SlidingExpiration = true;
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
.AddCookie(options =>
{
options.LoginPath = "/User/SignIn";
options.AccessDeniedPath = "/User/SignIn";
options.ExpireTimeSpan = TimeSpan.MaxValue;
options.SlidingExpiration = true;
});
services.AddAuthorization();
public class AuthenticationService : IAuthenticationService
{
private readonly IHttpContextAccessor _accessor;
public AuthenticationService(IHttpContextAccessor accessor)
{
_accessor = accessor;
}
public void SignIn(UserEntity userEntity)
{
List<Claim> claims = new List<Claim>()
{
new Claim(ClaimsIdentity.DefaultNameClaimType, userEntity.Login),
new Claim(ClaimsIdentity.DefaultRoleClaimType, userEntity.Type.ToString()),
new Claim(ClaimTypes.Email, userEntity.Email),
};
ClaimsIdentity identity = new ClaimsIdentity(claims, "ApplicationCookie", ClaimsIdentity.DefaultNameClaimType, ClaimsIdentity.DefaultRoleClaimType);
_accessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(identity));
}
[IgnoreAntiforgeryToken]
[HttpPost]
public async Task<IActionResult> SignIn([FromBody]SignInViewModel viewModel)
{
if (!ModelState.IsValid)
{
return BadRequest(new { responseMessage = "Invalid data" });
}
var userList = _userService.GetByLoginAndPass(viewModel.Login, viewModel.Password);
if (userList.Count == 0)
{
return NotFound(new { responseMessage = "User not found" });
}
UserEntity userEntity = userList[0];
_authenticationService.SignIn(userEntity);
return Ok(new { responseMessage = "Success" });
}