|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* OpenAPI spec version: 1.3.4
|
|
|
|
*
|
|
|
|
* 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 Swashbuckle.AspNetCore.SwaggerGen;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using IO.Swagger.Attributes;
|
|
|
|
using IO.Swagger.Security;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
using IO.Swagger.DTO;
|
|
|
|
using EPAServeur.IServices;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace IO.Swagger.Controllers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
[ApiController]
|
|
|
|
public class EngagementsApiController : ControllerBase
|
|
|
|
{
|
|
|
|
private readonly IEngagementService engagementService;
|
|
|
|
|
|
|
|
public EngagementsApiController(IEngagementService _engagementService)
|
|
|
|
{
|
|
|
|
engagementService = _engagementService;
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer la liste des engagements</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>
|
|
|
|
[HttpGet]
|
|
|
|
[Route("/api/engagements")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetEngagements")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(List<EngagementDTO>), description: "OK")]
|
|
|
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
|
|
|
public virtual IActionResult GetEngagements([FromQuery][Required()]bool? asc, [FromQuery][Required()]int? numPage, [FromQuery][Required()]int? parPAge, [FromQuery]long? idAgence, [FromQuery]string texte, [FromQuery]string tri)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
IEnumerable<EngagementDTO> engagements = engagementService.GetEngagements(asc, numPage, parPAge, idAgence, texte, tri);
|
|
|
|
if (engagements == null)
|
|
|
|
{
|
|
|
|
ErreurDTO erreur = new ErreurDTO()
|
|
|
|
{
|
|
|
|
Code = "404",
|
|
|
|
Message = "Aucun engagement"
|
|
|
|
};
|
|
|
|
return NotFound(erreur);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(engagements);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer la liste des engagements en attente</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>
|
|
|
|
[HttpGet]
|
|
|
|
[Route("/api/engagements/enattente")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetEngagementsEnAttente")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(List<EngagementDTO>), description: "OK")]
|
|
|
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
|
|
|
public virtual IActionResult GetEngagementsEnAttente([FromQuery][Required()]bool? asc, [FromQuery][Required()]int? numPage, [FromQuery][Required()]int? parPAge, [FromQuery]long? idAgence, [FromQuery]string texte, [FromQuery]string tri)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
IEnumerable<EngagementDTO> engagements = engagementService.GetEngagementsEnAttente(asc, numPage, parPAge, idAgence, texte, tri);
|
|
|
|
if (engagements == null)
|
|
|
|
{
|
|
|
|
ErreurDTO erreur = new ErreurDTO()
|
|
|
|
{
|
|
|
|
Code = "404",
|
|
|
|
Message = "Aucun engagement en attente"
|
|
|
|
};
|
|
|
|
return NotFound(erreur);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(engagements);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer la liste des engagements ayant reçu une réponse</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>
|
|
|
|
[HttpGet]
|
|
|
|
[Route("/api/engagements/repondus")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetEngagementsRepondus")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(List<EngagementDTO>), description: "OK")]
|
|
|
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
|
|
|
public virtual async Task<IActionResult> GetEngagementsRepondus([FromQuery][Required()]bool? asc, [FromQuery][Required()]int? numPage, [FromQuery][Required()]int? parPAge, [FromQuery]long? idAgence, [FromQuery]string texte, [FromQuery]string tri)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
IEnumerable<EngagementDTO> engagements = await engagementService.GetEngagementsRepondus(asc, numPage, parPAge, idAgence, texte, tri);
|
|
|
|
if (engagements == null)
|
|
|
|
{
|
|
|
|
ErreurDTO erreur = new ErreurDTO()
|
|
|
|
{
|
|
|
|
Code = "404",
|
|
|
|
Message = "Aucun engagement en repondu"
|
|
|
|
};
|
|
|
|
return NotFound(erreur);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(engagements);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Donnez une réponse à un engagement</remarks>
|
|
|
|
/// <param name="body"></param>
|
|
|
|
/// <param name="idEngagement">id engagement</param>
|
|
|
|
/// <response code="200">Engagement mise à jour</response>
|
|
|
|
/// <response code="403">Acces interdit</response>
|
|
|
|
[HttpPut]
|
|
|
|
[Route("/api/engagements/{idEngagement}/repondre")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("RepondreEngagement")]
|
|
|
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
|
|
|
public virtual async Task<IActionResult> RepondreEngagement([FromBody]EngagementDTO body, [FromRoute][Required]long? idEngagement)
|
|
|
|
{
|
|
|
|
//if (body != null && body.Realise == false && string.IsNullOrWhiteSpace(body.RaisonNonRealisable))
|
|
|
|
// return null; // A traiter ! Retourner une erreur
|
|
|
|
|
|
|
|
EngagementDTO engagement = await engagementService.RepondreEngagement(body, idEngagement);
|
|
|
|
|
|
|
|
return Ok(engagement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|