mirror of
https://github.com/C9Glax/tranga.git
synced 2025-04-14 12:23:17 +02:00
96 lines
3.2 KiB
C#
96 lines
3.2 KiB
C#
using API.Schema;
|
|
using API.Schema.LibraryConnectors;
|
|
using Asp.Versioning;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using static Microsoft.AspNetCore.Http.StatusCodes;
|
|
|
|
namespace API.Controllers;
|
|
|
|
[ApiVersion(2)]
|
|
[ApiController]
|
|
[Route("v{v:apiVersion}/[controller]")]
|
|
public class LibraryConnectorController(PgsqlContext context) : Controller
|
|
{
|
|
/// <summary>
|
|
/// Gets all configured Library-Connectors
|
|
/// </summary>
|
|
/// <response code="200"></response>
|
|
[HttpGet]
|
|
[ProducesResponseType<LibraryConnector[]>(Status200OK, "application/json")]
|
|
public IActionResult GetAllConnectors()
|
|
{
|
|
LibraryConnector[] connectors = context.LibraryConnectors.ToArray();
|
|
return Ok(connectors);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns Library-Connector with requested ID
|
|
/// </summary>
|
|
/// <param name="LibraryControllerId">Library-Connector-ID</param>
|
|
/// <response code="200"></response>
|
|
/// <response code="404">Connector with ID not found.</response>
|
|
[HttpGet("{LibraryControllerId}")]
|
|
[ProducesResponseType<LibraryConnector>(Status200OK, "application/json")]
|
|
[ProducesResponseType(Status404NotFound)]
|
|
public IActionResult GetConnector(string LibraryControllerId)
|
|
{
|
|
LibraryConnector? ret = context.LibraryConnectors.Find(LibraryControllerId);
|
|
return (ret is not null) switch
|
|
{
|
|
true => Ok(ret),
|
|
false => NotFound()
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Library-Connector
|
|
/// </summary>
|
|
/// <param name="libraryConnector">Library-Connector</param>
|
|
/// <response code="201"></response>
|
|
/// <response code="500">Error during Database Operation</response>
|
|
[HttpPut]
|
|
[ProducesResponseType(Status201Created)]
|
|
[ProducesResponseType<string>(Status500InternalServerError, "text/plain")]
|
|
public IActionResult CreateConnector([FromBody]LibraryConnector libraryConnector)
|
|
{
|
|
try
|
|
{
|
|
context.LibraryConnectors.Add(libraryConnector);
|
|
context.SaveChanges();
|
|
return Created();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return StatusCode(500, e.Message);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the Library-Connector with the requested ID
|
|
/// </summary>
|
|
/// <param name="LibraryControllerId">Library-Connector-ID</param>
|
|
/// <response code="200"></response>
|
|
/// <response code="404">Connector with ID not found.</response>
|
|
/// <response code="500">Error during Database Operation</response>
|
|
[HttpDelete("{LibraryControllerId}")]
|
|
[ProducesResponseType(Status200OK)]
|
|
[ProducesResponseType(Status404NotFound)]
|
|
[ProducesResponseType<string>(Status500InternalServerError, "text/plain")]
|
|
public IActionResult DeleteConnector(string LibraryControllerId)
|
|
{
|
|
try
|
|
{
|
|
LibraryConnector? ret = context.LibraryConnectors.Find(LibraryControllerId);
|
|
if (ret is null)
|
|
return NotFound();
|
|
|
|
context.Remove(ret);
|
|
context.SaveChanges();
|
|
return Ok();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return StatusCode(500, e.Message);
|
|
}
|
|
}
|
|
} |