You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
681 lines
29 KiB
681 lines
29 KiB
4 years ago
|
/*
|
||
|
* API du serveur de l'application de digitalisation des EP
|
||
|
*
|
||
|
* API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire.
|
||
|
*
|
||
4 years ago
|
* OpenAPI spec version: 1.3.4
|
||
4 years ago
|
*
|
||
4 years ago
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||
|
*/
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Swashbuckle.AspNetCore.Annotations;
|
||
|
using Newtonsoft.Json;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using IO.Swagger.Attributes;
|
||
4 years ago
|
using IO.Swagger.DTO;
|
||
4 years ago
|
using EPAServeur.IServices;
|
||
4 years ago
|
using System.Linq;
|
||
4 years ago
|
using System.Threading.Tasks;
|
||
4 years ago
|
using Microsoft.Extensions.Logging;
|
||
|
using EPAServeur.Exceptions;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
4 years ago
|
|
||
|
namespace IO.Swagger.Controllers
|
||
4 years ago
|
{
|
||
4 years ago
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
[ApiController]
|
||
|
public class FormationsApiController : ControllerBase
|
||
4 years ago
|
{
|
||
|
private readonly IFormationService formationService;
|
||
4 years ago
|
private readonly ILogger<FormationsApiController> logger;
|
||
4 years ago
|
|
||
4 years ago
|
public FormationsApiController(IFormationService _formationService, ILogger<FormationsApiController> _logger)
|
||
4 years ago
|
{
|
||
|
formationService = _formationService;
|
||
4 years ago
|
logger = _logger;
|
||
4 years ago
|
}
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Ajouter une nouvelle formation</remarks>
|
||
|
/// <param name="body"></param>
|
||
|
/// <response code="201">Formation créée avec succès</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpPost]
|
||
|
[Route("/api/formations")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("AjouterFormation")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> AjouterFormation([FromBody] FormationDTO body)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Ajout d'une nouvelle formation.");
|
||
|
|
||
|
FormationDTO nouvelleFormation = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
nouvelleFormation = await formationService.AddFormationAsync(body);
|
||
|
}
|
||
|
catch (FormationInvalidException)
|
||
|
{
|
||
|
logger.LogWarning("Des données sont manquants, la nouvelle formation ne peut pas être ajoutée.");
|
||
|
}
|
||
|
catch (DbUpdateException)
|
||
|
{
|
||
|
logger.LogError("Une erreur est survenue dans la base de données durant l'ajout de la nouvelle formation.");
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de l'ajout de la formation note.");
|
||
|
}
|
||
|
|
||
|
logger.LogInformation("Nouvelle formation ajoutée.");
|
||
4 years ago
|
|
||
4 years ago
|
return Created("", nouvelleFormation);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Supprimer une formation</remarks>
|
||
|
/// <param name="idFormation">id formation</param>
|
||
|
/// <response code="204">Formation supprimée avec succès</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpDelete]
|
||
4 years ago
|
[Route("/api/formations/{idFormation}/supprimer")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("DeleteFormation")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> DeleteFormation([FromRoute][Required] long? idFormation)
|
||
4 years ago
|
{
|
||
4 years ago
|
try
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Suppresion de la formation {idFormation}.", idFormation);
|
||
|
|
||
|
FormationDTO formation = await formationService.DeleteFormationByIdAsync(idFormation);
|
||
|
}
|
||
|
catch (FormationNotFoundException)
|
||
|
{
|
||
|
logger.LogError("Impossible de supprimer la formation d'id {idFormation} car elle n'existe pas.", idFormation);
|
||
|
|
||
4 years ago
|
ErreurDTO erreur = new ErreurDTO()
|
||
4 years ago
|
{
|
||
4 years ago
|
Code = "404",
|
||
|
Message = "Aucune formation trouvée"
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
4 years ago
|
}
|
||
4 years ago
|
catch (DbUpdateConcurrencyException)
|
||
|
{
|
||
|
logger.LogWarning("La formation {idFormation} n'a pas pu être supprimée car elle est prise par une autre ressource.", idFormation);
|
||
|
}
|
||
|
catch (DbUpdateException)
|
||
|
{
|
||
|
logger.LogError("Une erreur a eu lieu, la formation {idFormation} n'a pas pu être supprimée.", idFormation);
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la suppression de la formation {idFormation}.", idFormation);
|
||
|
}
|
||
|
|
||
|
logger.LogInformation("Formation {idFormation} supprimée avec succès.", idFormation);
|
||
4 years ago
|
|
||
4 years ago
|
return NoContent();
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les formations annulées</remarks>
|
||
|
/// <param name="asc">Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false)</param>
|
||
|
/// <param name="numPage">Numéro de la page du tableau qui affiche les données</param>
|
||
|
/// <param name="parPAge">Nombre d'éléments affiché sur chaque page du tableau</param>
|
||
|
/// <param name="idAgence">id de l'agence à laquelle sont rattachées les données à récupérer</param>
|
||
|
/// <param name="texte">Texte permettant d'identifier l'objet rechercher</param>
|
||
|
/// <param name="tri">Colonne du tableau sur lequel le tri s'effectue</param>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
/// <response code="404">Ressource n'a pas été trouvée</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/formations/annulees")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetFormationAnnulees")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<FormationDetailsDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
|
[SwaggerResponse(statusCode: 404, type: typeof(ErreurDTO), description: "Ressource n'a pas été trouvée")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetFormationAnnulees([FromQuery][Required()] bool? asc, [FromQuery][Required()] int? numPage, [FromQuery][Required()] int? parPAge, [FromQuery] int? idAgence, [FromQuery] string texte, [FromQuery] string tri)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des formations annulées.");
|
||
|
|
||
|
IEnumerable<FormationDTO> formations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formations = await formationService.GetFormationAnnuleesAsync(asc, numPage, parPAge, idAgence, texte, tri);
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des formations annulées est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des formations annulées.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (formations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucune formation annulée"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des formations annulées récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(formations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer une formation par son id</remarks>
|
||
|
/// <param name="idFormation">id formation</param>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
/// <response code="404">Ressource n'a pas été trouvée</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/formations/{idFormation}")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetFormationById")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(FormationDTO), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
|
[SwaggerResponse(statusCode: 404, type: typeof(ErreurDTO), description: "Ressource n'a pas été trouvée")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetFormationById([FromRoute][Required] long? idFormation)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la formation {idFormation}.", idFormation);
|
||
|
|
||
|
FormationDTO formationDTO = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formationDTO = await formationService.GetFormationByIdAsync(idFormation);
|
||
|
}
|
||
|
catch (FormationNotFoundException)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogError("Aucune formation ne correspond à l'id {idFormation} recherchée.", idFormation);
|
||
|
|
||
4 years ago
|
ErreurDTO erreurDTO = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
4 years ago
|
Message = "La formation n'existe pas",
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreurDTO);
|
||
|
}
|
||
4 years ago
|
catch (DbUpdateConcurrencyException)
|
||
|
{
|
||
|
logger.LogWarning("La formation {idFormation} n'a pas pu être récupérée car elle est prise par une autre ressource.", idFormation);
|
||
|
}
|
||
|
catch (DbUpdateException)
|
||
|
{
|
||
|
logger.LogError("Une erreur a eu lieu, la formation {idFormation} n'a pas pu être récupérée.", idFormation);
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la formation {idFormation}.", idFormation);
|
||
|
}
|
||
|
|
||
|
logger.LogInformation("Formation {idFormation} récupérée.", idFormation);
|
||
|
|
||
4 years ago
|
return Ok(formationDTO);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les formations réalisées</remarks>
|
||
|
/// <param name="asc">Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false)</param>
|
||
|
/// <param name="numPage">Numéro de la page du tableau qui affiche les données</param>
|
||
|
/// <param name="parPAge">Nombre d'éléments affiché sur chaque page du tableau</param>
|
||
|
/// <param name="idAgence">id de l'agence à laquelle sont rattachées les données à récupérer</param>
|
||
|
/// <param name="texte">Texte permettant d'identifier l'objet rechercher</param>
|
||
|
/// <param name="tri">Colonne du tableau sur lequel le tri s'effectue</param>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
/// <response code="404">Ressource n'a pas été trouvée</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/formations/realisees")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetFormationRealisee")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<FormationDetailsDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
|
[SwaggerResponse(statusCode: 404, type: typeof(ErreurDTO), description: "Ressource n'a pas été trouvée")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetFormationRealisee([FromQuery][Required()] bool? asc, [FromQuery][Required()] int? numPage, [FromQuery][Required()] int? parPAge, [FromQuery] int? idAgence, [FromQuery] string texte, [FromQuery] string tri)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des formations réalisées.");
|
||
|
|
||
|
IEnumerable<FormationDTO> formations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formations = await formationService.GetFormationRealiseeAsync(asc, numPage, parPAge, idAgence, texte, tri);
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des formations réalisées est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des formations réalisées.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (formations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucune formation réalisée"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des formations réalisées récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(formations);
|
||
4 years ago
|
}
|
||
|
|
||
4 years ago
|
|
||
4 years ago
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer la liste des formations</remarks>
|
||
|
/// <param name="asc">Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false)</param>
|
||
|
/// <param name="numPage">Numéro de la page du tableau qui affiche les données</param>
|
||
|
/// <param name="parPAge">Nombre d'éléments affiché sur chaque page du tableau</param>
|
||
|
/// <param name="idAgence">id de l'agence à laquelle sont rattachées les données à récupérer</param>
|
||
|
/// <param name="statutFormation">Statut de la formation</param>
|
||
|
/// <param name="texte">Texte permettant d'identifier l'objet rechercher</param>
|
||
|
/// <param name="tri">Colonne du tableau sur lequel le tri s'effectue</param>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/formations")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetFormations")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<FormationDetailsDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetFormations([FromQuery][Required()] bool? asc, [FromQuery][Required()] int? numPage, [FromQuery][Required()] int? parPAge, [FromQuery] int? idAgence, [FromQuery] int? statutFormation, [FromQuery] string texte, [FromQuery] string tri)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des formations.");
|
||
|
|
||
|
IEnumerable<FormationDTO> formations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formations = await formationService.GetFormationsAsync(asc, numPage, parPAge, idAgence, statutFormation, texte, tri);
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des formations est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des formations.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (formations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucune formation"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des formations récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(formations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les modes de formation</remarks>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/modesFormation")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetModesFormation")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<ModeFormationDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetModesFormation()
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des modes de formation.");
|
||
|
|
||
|
IEnumerable<ModeFormationDTO> modeFormations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
modeFormations = await formationService.GetModesFormationAsync();
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des modes de formation est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des modes de formation.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (modeFormations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucun mode de formation"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des modes de formation récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(modeFormations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les origines de formation</remarks>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/originesFormation")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetOriginesFormation")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<OrigineFormationDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetOriginesFormation()
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des origines de formation.");
|
||
|
|
||
|
IEnumerable<OrigineFormationDTO> origineFormations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
origineFormations = await formationService.GetOriginesFormationAsync();
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des origines de formation est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des origines de formation.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (origineFormations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucune origine de formation"
|
||
|
};
|
||
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des origines de formation récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(origineFormations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les formations plannifié et replannifié</remarks>
|
||
|
/// <param name="asc">Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false)</param>
|
||
|
/// <param name="numPage">Numéro de la page du tableau qui affiche les données</param>
|
||
|
/// <param name="parPAge">Nombre d'éléments affiché sur chaque page du tableau</param>
|
||
|
/// <param name="idAgence">id de l'agence à laquelle sont rattachées les données à récupérer</param>
|
||
|
/// <param name="texte">Texte permettant d'identifier l'objet rechercher</param>
|
||
|
/// <param name="tri">Colonne du tableau sur lequel le tri s'effectue</param>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
/// <response code="404">Ressource n'a pas été trouvée</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/formations/prochaines")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetProchainesFormation")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<FormationDetailsDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
|
[SwaggerResponse(statusCode: 404, type: typeof(ErreurDTO), description: "Ressource n'a pas été trouvée")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetProchainesFormation([FromQuery][Required()] bool? asc, [FromQuery][Required()] int? numPage, [FromQuery][Required()] int? parPAge, [FromQuery] int? idAgence, [FromQuery] string texte, [FromQuery] string tri)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des prochaines formations.");
|
||
|
|
||
|
IEnumerable<FormationDTO> formations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formations = await formationService.GetProchainesFormationAsync(asc, numPage, parPAge, idAgence, texte, tri);
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des prochaines formations est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des prochaines formations.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (formations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucune prochaine formation"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des prochaines formations récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(formations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les statuts de formation</remarks>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/statutsFormation")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetStatutsFormation")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<StatutFormationDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetStatutsFormation()
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des statuts de formation.");
|
||
|
|
||
|
IEnumerable<StatutFormationDTO> statutFormations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
statutFormations = await formationService.GetStatutsFormationAsync();
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des statuts de formation est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des statuts de formation.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (statutFormations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucun statut de formation"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des statuts de formation récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(statutFormations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Récupérer les types de formation</remarks>
|
||
|
/// <response code="200">OK</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpGet]
|
||
|
[Route("/api/typesFormation")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("GetTypesFormation")]
|
||
|
[SwaggerResponse(statusCode: 200, type: typeof(List<TypeFormationDTO>), description: "OK")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> GetTypesFormation()
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Récupération de la liste des types de formation.");
|
||
|
|
||
|
IEnumerable<TypeFormationDTO> typeFormations = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
typeFormations = await formationService.GetTypesFormationAsync();
|
||
|
}
|
||
4 years ago
|
catch (ArgumentNullException)
|
||
|
{
|
||
|
logger.LogError("Un des arguments passés dans la requête pour récupérer la liste des types de formation est invalide.");
|
||
|
}
|
||
4 years ago
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la récupération de la liste des types de formation.");
|
||
|
}
|
||
|
|
||
4 years ago
|
if (typeFormations == null)
|
||
4 years ago
|
{
|
||
|
ErreurDTO erreur = new ErreurDTO()
|
||
|
{
|
||
|
Code = "404",
|
||
|
Message = "Aucun type de formation"
|
||
|
};
|
||
4 years ago
|
|
||
4 years ago
|
return NotFound(erreur);
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
logger.LogInformation("Liste des types de formation récupérée.");
|
||
|
|
||
4 years ago
|
return Ok(typeFormations);
|
||
4 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
///
|
||
4 years ago
|
/// </summary>
|
||
|
/// <remarks>Mettre à jour une formation</remarks>
|
||
|
/// <param name="body"></param>
|
||
4 years ago
|
/// <param name="idFormation">id formation</param>
|
||
4 years ago
|
/// <response code="200">formation mise à jour</response>
|
||
|
/// <response code="201">Formation créée avec succès</response>
|
||
|
/// <response code="403">Acces interdit</response>
|
||
|
[HttpPut]
|
||
4 years ago
|
[Route("/api/formations/{idFormation}/update")]
|
||
4 years ago
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
||
4 years ago
|
[ValidateModelState]
|
||
|
[SwaggerOperation("UpdateFormation")]
|
||
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
||
4 years ago
|
public virtual async Task<IActionResult> UpdateFormation([FromBody] FormationDTO body, [FromRoute][Required] long? idFormation)
|
||
4 years ago
|
{
|
||
4 years ago
|
logger.LogInformation("Mise à jour de la formation d'id {idFormation}.", idFormation);
|
||
|
|
||
|
FormationDTO formation = null;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
formation = await formationService.UpdateFormationAsync(idFormation, body);
|
||
|
}
|
||
|
catch (FormationInvalidException)
|
||
|
{
|
||
|
logger.LogWarning("Des données sont manquants, la formation {idFormation} ne peut pas être mise à jour.", idFormation);
|
||
|
}
|
||
|
catch (FormationIncompatibleIdException)
|
||
|
{
|
||
|
logger.LogError("L'id de la formation à mettre à jour {body.Id} et l'id de la formation avec les nouvelles informations {idFormation} sont différents.", body.Id, idFormation);
|
||
|
}
|
||
|
catch (DbUpdateConcurrencyException)
|
||
|
{
|
||
|
logger.LogError("La formation {idFormation} n'a pas pu être mise à jour car elle est prise par une autre ressource.", idFormation);
|
||
|
}
|
||
|
catch (DbUpdateException)
|
||
|
{
|
||
|
logger.LogError("Une erreur est survenue dans la base de données lors de la mise à jour de la formation {idFormation}.", idFormation);
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de la mise à jour de la formation {idFormation}.", idFormation);
|
||
|
}
|
||
|
|
||
4 years ago
|
if (formation == null)
|
||
4 years ago
|
{
|
||
4 years ago
|
try
|
||
|
{
|
||
|
formation = await formationService.AddFormationAsync(body);
|
||
|
}
|
||
|
catch (FormationInvalidException)
|
||
|
{
|
||
|
logger.LogWarning("Des données sont manquants, la nouvelle formation ne peut pas être ajoutée.");
|
||
|
}
|
||
|
catch (DbUpdateException)
|
||
|
{
|
||
|
logger.LogError("Une erreur est survenue dans la base de données durant l'ajout de la nouvelle formation.");
|
||
|
}
|
||
|
catch (Exception)
|
||
|
{
|
||
|
logger.LogError("Une erreur inconnue est survenue lors de l'ajout de la formation note.");
|
||
|
}
|
||
|
|
||
|
logger.LogInformation("Nouvelle formation ajoutée.");
|
||
|
|
||
4 years ago
|
return Created("", formation);
|
||
4 years ago
|
}
|
||
4 years ago
|
|
||
|
logger.LogInformation("Update effectué avec succès");
|
||
|
|
||
4 years ago
|
return Ok(formation);
|
||
4 years ago
|
}
|
||
|
}
|
||
|
}
|