Browse Source

Removed AuthGet, replaced with plain string

master
Daniel Gyulai 4 years ago
parent
commit
302bec7496
  1. 20
      CoviDok/Controllers/CaseController.cs
  2. 8
      CoviDok/Controllers/ChildController.cs
  3. 4
      CoviDok/Controllers/DoctorController.cs
  4. 8
      CoviDok/Controllers/ParentController.cs
  5. 12
      CoviDok/api/Request/AuthGet.cs

20
CoviDok/Controllers/CaseController.cs

@ -25,9 +25,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{id} // POST /api/Case/{id}
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<Case>> PostGetCase(int id, AuthGet auth) public async Task<ActionResult<Case>> PostGetCase(int id, string SessionID)
{ {
Session s = await Handler.GetSession(auth.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
@ -83,9 +83,9 @@ namespace CoviDok.Controllers
} }
[HttpPost("{id}/updates")] [HttpPost("{id}/updates")]
public async Task<ActionResult<List<Update>>> GetUpdatesForCase(int id, AuthGet get) public async Task<ActionResult<List<Update>>> GetUpdatesForCase(int id, string SessionID)
{ {
Session s = await Handler.GetSession(get.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
return await mgr.GetUpdatesForCase(s, id); return await mgr.GetUpdatesForCase(s, id);
@ -101,9 +101,9 @@ namespace CoviDok.Controllers
} }
[HttpPost("updates/{id}")] [HttpPost("updates/{id}")]
public async Task<ActionResult<Update>> GetUpdate(int id, AuthGet get) public async Task<ActionResult<Update>> GetUpdate(int id, string SessionID)
{ {
Session s = await Handler.GetSession(get.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -121,9 +121,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/close")] [HttpPost("{id}/close")]
public async Task<IActionResult> PostClose(int id, CaseUpdate data) public async Task<IActionResult> PostClose(int id, string SessionID)
{ {
Session s = await Handler.GetSession(data.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -141,9 +141,9 @@ namespace CoviDok.Controllers
} }
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/cure")] [HttpPost("{id}/cure")]
public async Task<IActionResult> PostCured(int id, CaseUpdate data) public async Task<IActionResult> PostCured(int id, string SessionID)
{ {
Session s = await Handler.GetSession(data.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

8
CoviDok/Controllers/ChildController.cs

@ -23,9 +23,9 @@ namespace CoviDok.Controllers
// POST: api/Child/5 // POST: api/Child/5
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<PublicChild>> GetPublicChild(int id, AuthGet get) public async Task<ActionResult<PublicChild>> GetPublicChild(int id, string SessionID)
{ {
Session s = await Handler.GetSession(get.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
@ -67,9 +67,9 @@ namespace CoviDok.Controllers
} }
[HttpPost("parent")] [HttpPost("parent")]
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(AuthGet auth) public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(string SessionID)
{ {
Session s = await Handler.GetSession(auth.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
return ChildManager.ChildrenOfParent(s.ID); return ChildManager.ChildrenOfParent(s.ID);
} }

4
CoviDok/Controllers/DoctorController.cs

@ -97,9 +97,9 @@ namespace CoviDok.Controllers
// GET /api/Doc/{id}/children // GET /api/Doc/{id}/children
[HttpPost("{id}/children")] [HttpPost("{id}/children")]
public async Task<ActionResult<ICollection<PublicChild>>> GetChildrenOfDoctor(int id, AuthGet get) public async Task<ActionResult<ICollection<PublicChild>>> GetChildrenOfDoctor(int id, string SessionID)
{ {
Session s = await Handler.GetSession(get.SessionID); Session s = await Handler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

8
CoviDok/Controllers/ParentController.cs

@ -22,9 +22,9 @@ namespace CoviDok.Controllers
private readonly ParentManager parentManager = new ParentManager(); private readonly ParentManager parentManager = new ParentManager();
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<PublicParent>> GetParent(int id, AuthGet get) public async Task<ActionResult<PublicParent>> GetParent(int id, string SessionID)
{ {
Session s = await sessionHandler.GetSession(get.SessionID); Session s = await sessionHandler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
return await parentManager.GetParent(id); return await parentManager.GetParent(id);
@ -58,9 +58,9 @@ namespace CoviDok.Controllers
} }
} }
[HttpPost("{id}/children")] [HttpPost("{id}/children")]
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(int id, AuthGet get) public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(int id, string SessionID)
{ {
Session s = await sessionHandler.GetSession(get.SessionID); Session s = await sessionHandler.GetSession(SessionID);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

12
CoviDok/api/Request/AuthGet.cs

@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Api.Request
{
public class AuthGet
{
public string SessionID { get; set; }
}
}
Loading…
Cancel
Save