From b09e861c3a9ef058e9dbb915c2537671c306d794 Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Sun, 11 Oct 2020 22:20:14 +0200 Subject: [PATCH] Entity Framework first steps --- CoviDok/Controllers/DoctorsController.cs | 123 +++++++++++++++++++++++ CoviDok/CoviDok.csproj | 7 ++ CoviDok/Startup.cs | 18 ++-- CoviDok/data/Case.cs | 1 + CoviDok/data/Image.cs | 4 +- CoviDok/data/MySQLContext.cs | 23 +++++ CoviDok/data/Update.cs | 1 + 7 files changed, 168 insertions(+), 9 deletions(-) create mode 100644 CoviDok/Controllers/DoctorsController.cs create mode 100644 CoviDok/data/MySQLContext.cs diff --git a/CoviDok/Controllers/DoctorsController.cs b/CoviDok/Controllers/DoctorsController.cs new file mode 100644 index 0000000..57f6da1 --- /dev/null +++ b/CoviDok/Controllers/DoctorsController.cs @@ -0,0 +1,123 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using CoviDok.data; + +namespace CoviDok.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class DoctorsController : ControllerBase + { + private readonly MySQLContext _context; + + public DoctorsController(MySQLContext context) + { + _context = context; + } + + // GET: api/Doctors + [HttpGet] + public async Task>> GetDoctors() + { + return await _context.Doctors.ToListAsync(); + } + + // GET: api/Doctors/5 + [HttpGet("{id}")] + public async Task> GetDoctor(string id) + { + var doctor = await _context.Doctors.FindAsync(id); + + if (doctor == null) + { + return NotFound(); + } + + return doctor; + } + + // PUT: api/Doctors/5 + // To protect from overposting attacks, enable the specific properties you want to bind to, for + // more details, see https://go.microsoft.com/fwlink/?linkid=2123754. + [HttpPut("{id}")] + public async Task PutDoctor(string id, Doctor doctor) + { + if (id != doctor.Id) + { + return BadRequest(); + } + + _context.Entry(doctor).State = EntityState.Modified; + + try + { + await _context.SaveChangesAsync(); + } + catch (DbUpdateConcurrencyException) + { + if (!DoctorExists(id)) + { + return NotFound(); + } + else + { + throw; + } + } + + return NoContent(); + } + + // POST: api/Doctors + // To protect from overposting attacks, enable the specific properties you want to bind to, for + // more details, see https://go.microsoft.com/fwlink/?linkid=2123754. + [HttpPost] + public async Task> PostDoctor(Doctor doctor) + { + _context.Doctors.Add(doctor); + try + { + await _context.SaveChangesAsync(); + } + catch (DbUpdateException) + { + if (DoctorExists(doctor.Id)) + { + return Conflict(); + } + else + { + throw; + } + } + + return CreatedAtAction("GetDoctor", new { id = doctor.Id }, doctor); + } + + // DELETE: api/Doctors/5 + [HttpDelete("{id}")] + public async Task> DeleteDoctor(string id) + { + var doctor = await _context.Doctors.FindAsync(id); + if (doctor == null) + { + return NotFound(); + } + + _context.Doctors.Remove(doctor); + await _context.SaveChangesAsync(); + + return doctor; + } + + private bool DoctorExists(string id) + { + return _context.Doctors.Any(e => e.Id == id); + } + } +} diff --git a/CoviDok/CoviDok.csproj b/CoviDok/CoviDok.csproj index 43df7ad..ddedeaa 100644 --- a/CoviDok/CoviDok.csproj +++ b/CoviDok/CoviDok.csproj @@ -7,7 +7,14 @@ + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + diff --git a/CoviDok/Startup.cs b/CoviDok/Startup.cs index 8c89764..61f37d6 100644 --- a/CoviDok/Startup.cs +++ b/CoviDok/Startup.cs @@ -5,6 +5,7 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -16,6 +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(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. @@ -28,13 +30,15 @@ namespace CoviDok app.UseRouting(); - app.UseEndpoints(endpoints => - { - endpoints.MapGet("/", async context => - { - await context.Response.WriteAsync("Hello World!"); - }); - }); + app.UseMvc(); + + //app.UseEndpoints(endpoints => + //{ + // endpoints.MapGet("/", async context => + // { + // await context.Response.WriteAsync("Hello World!"); + // }); + //}); } } } diff --git a/CoviDok/data/Case.cs b/CoviDok/data/Case.cs index d9d403c..4043962 100644 --- a/CoviDok/data/Case.cs +++ b/CoviDok/data/Case.cs @@ -7,6 +7,7 @@ namespace CoviDok.data { public class Case { + public string Id { get; set; } public string DoctorID { get; set; } public string ParentID { get; set; } public string ChildID { get; set; } diff --git a/CoviDok/data/Image.cs b/CoviDok/data/Image.cs index 6453057..0c27561 100644 --- a/CoviDok/data/Image.cs +++ b/CoviDok/data/Image.cs @@ -8,7 +8,7 @@ namespace CoviDok.data //Store Image ID, get actual content from MinIO backend. public class Image { - public string ImageID { get; set; } - + public string Id { get; set; } + } } diff --git a/CoviDok/data/MySQLContext.cs b/CoviDok/data/MySQLContext.cs new file mode 100644 index 0000000..33acf82 --- /dev/null +++ b/CoviDok/data/MySQLContext.cs @@ -0,0 +1,23 @@ +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +namespace CoviDok.data +{ + public class MySQLContext : DbContext + { + public DbSet Cases { get; set; } + public DbSet Children { get; set; } + public DbSet Doctors { get; set; } + public DbSet Images { get; set; } + public DbSet Parents { get; set; } + public DbSet Updates { get; set; } + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + optionsBuilder.UseMySQL("server=localhost;database=library;user=user;password=password"); + } + } +} diff --git a/CoviDok/data/Update.cs b/CoviDok/data/Update.cs index fe499d0..c73cc27 100644 --- a/CoviDok/data/Update.cs +++ b/CoviDok/data/Update.cs @@ -7,6 +7,7 @@ namespace CoviDok.data { public class Update { + public string Id { get; set; } public string Sender { get; set; } public string Content { get; set; }