diff --git a/CoviDok/Controllers/AuthController.cs b/CoviDok/Controllers/AuthController.cs new file mode 100644 index 0000000..776e6ad --- /dev/null +++ b/CoviDok/Controllers/AuthController.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using CoviDok.Api; +using CoviDok.Api.Request; +using CoviDok.Api.Response; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + + +namespace CoviDok.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class AuthController : ControllerBase + { + // POST: /api/Auth/login + [HttpPost("login")] + public async Task> PostLogin(AuthLogin authLogin) + { + AuthIdentity authIdentity = new AuthIdentity(); + if (authLogin.Email == "a" && authLogin.Password == "a") + { + authIdentity.FirstName = "Sajt"; + authIdentity.LastName = "Osperec"; + authIdentity.Id = "asdfasdfadf"; + authIdentity.Role = Api.Role.Doc; + return authIdentity; + } + return Unauthorized(); + } + + // POST: /api/Auth/register + [HttpPost("register")] + public async Task> PostRegister(AuthRegistration authRegistration) + { + GenericResponse genericResponse = new GenericResponse(); + if (authRegistration.Email == "a") + { + genericResponse.Status = Status.Error; + genericResponse.Body["reason"] = authRegistration.Email + " is already registered!"; + } else if (authRegistration.Password == "1") + { + genericResponse.Status = Status.Error; + genericResponse.Body["reason"] = "Password dows not meet complexity requirements!"; + } + else + { + genericResponse.Status = Status.Success; + } + + return genericResponse; + } + + // POST /api/Auth/child + [HttpPost("child")] + public async Task> PostAddChild(AuthChild authChild) + { + GenericResponse genericResponse = new GenericResponse(); + if (authChild.SocSecNum == "111111111") + { + genericResponse.Status = Status.Error; + genericResponse.Body["reason"] = "SSN Already exists!"; + } + else + { + genericResponse.Status = Status.Success; + genericResponse.Body["childID"] = "asdfaasdas"; + } + + return genericResponse; + } + } +} diff --git a/CoviDok/Startup.cs b/CoviDok/Startup.cs index 61f37d6..591f002 100644 --- a/CoviDok/Startup.cs +++ b/CoviDok/Startup.cs @@ -17,7 +17,7 @@ namespace CoviDok // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { - services.AddMvc(); + services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. @@ -28,7 +28,7 @@ namespace CoviDok app.UseDeveloperExceptionPage(); } - app.UseRouting(); + //app.UseRouting(); app.UseMvc(); diff --git a/CoviDok/data/Case.cs b/CoviDok/data/Case.cs index 4043962..9960088 100644 --- a/CoviDok/data/Case.cs +++ b/CoviDok/data/Case.cs @@ -12,10 +12,19 @@ namespace CoviDok.data public string ParentID { get; set; } public string ChildID { get; set; } + public CaseStatus CaseStatus { get; set; } + public ICollection updates = new List(); public string Assignee { get; set; } } + + public enum CaseStatus + { + InProgress, + Cured, + Certified + } }