|
|
|
/*
|
|
|
|
* 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.1
|
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
namespace IO.Swagger.Controllers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
[ApiController]
|
|
|
|
public class CollaborateursApiController : ControllerBase
|
|
|
|
{
|
|
|
|
private readonly ICollaborateurService collaborateurService;
|
|
|
|
public CollaborateursApiController(ICollaborateurService _collaborateurService)
|
|
|
|
{
|
|
|
|
collaborateurService = _collaborateurService;
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer un collaboratuer par son id</remarks>
|
|
|
|
/// <param name="idCollaborateur">id collaborateur</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/collaborateurs/{idCollaborateur}")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetCollaborateurById")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(CollaborateurDTO), 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")]
|
|
|
|
public virtual IActionResult GetCollaborateurById([FromRoute][Required]Guid? idCollaborateur)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(200, default(CollaborateurDTO));
|
|
|
|
|
|
|
|
CollaborateurDTO collaborateurDTO = collaborateurService.GetCollaborateurById(idCollaborateur);
|
|
|
|
if( collaborateurDTO == null)
|
|
|
|
{
|
|
|
|
ErreurDTO erreurDTO = new ErreurDTO()
|
|
|
|
{
|
|
|
|
Code = "404",
|
|
|
|
Message = "Le collaborateur n'existe pas",
|
|
|
|
};
|
|
|
|
return NotFound(erreurDTO);
|
|
|
|
}
|
|
|
|
return Ok(collaborateurDTO);
|
|
|
|
//TODO: Uncomment the next line to return response 403 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(403, default(ErreurDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 404 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(404, default(ErreurDTO));
|
|
|
|
/*string exampleJson = null;
|
|
|
|
exampleJson = "{\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n}";
|
|
|
|
|
|
|
|
var example = exampleJson != null
|
|
|
|
? JsonConvert.DeserializeObject<CollaborateurDTO>(exampleJson)
|
|
|
|
: default(CollaborateurDTO); //TODO: Change the data returned
|
|
|
|
return new ObjectResult(example);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer un collaborateur par son mail</remarks>
|
|
|
|
/// <param name="mail">mail de l'utilisateur connecté (mail obtenu via le token Keycloak)</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/collaborateurs/mail/{mail}")]
|
|
|
|
[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetCollaborateurByMail")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(CollaborateurDTO), 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")]
|
|
|
|
public virtual IActionResult GetCollaborateurByMail([FromRoute][Required]string mail)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(200, default(CollaborateurDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 403 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(403, default(ErreurDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 404 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(404, default(ErreurDTO));
|
|
|
|
string exampleJson = null;
|
|
|
|
exampleJson = "{\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n}";
|
|
|
|
|
|
|
|
var example = exampleJson != null
|
|
|
|
? JsonConvert.DeserializeObject<CollaborateurDTO>(exampleJson)
|
|
|
|
: default(CollaborateurDTO); //TODO: Change the data returned
|
|
|
|
return new ObjectResult(example);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer la liste des collaborateurs</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="fonctions">Liste des fonctions des collaborateurs que l'on veut récupérer</param>
|
|
|
|
/// <param name="idAgence">id de l'agence à laquelle sont rattachées les données à récupérer</param>
|
|
|
|
/// <param name="idBU">id de la business unit à 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/collaborateurs")]
|
|
|
|
//[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetCollaborateurs")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(List<CollaborateurDTO>), description: "OK")]
|
|
|
|
[SwaggerResponse(statusCode: 403, type: typeof(ErreurDTO), description: "Acces interdit")]
|
|
|
|
public virtual IActionResult GetCollaborateurs([FromQuery][Required()]bool? asc, [FromQuery][Required()]int? numPage, [FromQuery][Required()]int? parPAge, [FromQuery]List<string> fonctions, [FromQuery]int? idAgence, [FromQuery]int? idBU, [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(..), ...
|
|
|
|
return StatusCode(200, collaborateurService.GetCollaborateurs());
|
|
|
|
//TODO: Uncomment the next line to return response 403 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(403, default(ErreurDTO));
|
|
|
|
/*string exampleJson = null;
|
|
|
|
exampleJson = "[ {\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n}, {\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n} ]";
|
|
|
|
|
|
|
|
var example = exampleJson != null
|
|
|
|
? JsonConvert.DeserializeObject<List<CollaborateurDTO>>(exampleJson)
|
|
|
|
: default(List<CollaborateurDTO>); //TODO: Change the data returned
|
|
|
|
return new ObjectResult(example);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer la liste des collaborateurs dont le référent à la charge</remarks>
|
|
|
|
/// <param name="asc">Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false)</param>
|
|
|
|
/// <param name="idReferent">id referent</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="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/collaborateurs/referent/{idReferent}")]
|
|
|
|
[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetCollaborateursByReferent")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(List<CollaborateurDTO>), 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")]
|
|
|
|
public virtual IActionResult GetCollaborateursByReferent([FromQuery][Required()]bool? asc, [FromRoute][Required]Guid? idReferent, [FromQuery][Required()]int? numPage, [FromQuery][Required()]int? parPAge, [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(..), ...
|
|
|
|
// return StatusCode(200, default(List<CollaborateurDTO>));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 403 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(403, default(ErreurDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 404 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(404, default(ErreurDTO));
|
|
|
|
string exampleJson = null;
|
|
|
|
exampleJson = "[ {\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n}, {\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"id\" : \"046b6c7f-0b8a-43b9-b35d-6489e6daee91\",\n \"dateDepart\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n} ]";
|
|
|
|
|
|
|
|
var example = exampleJson != null
|
|
|
|
? JsonConvert.DeserializeObject<List<CollaborateurDTO>>(exampleJson)
|
|
|
|
: default(List<CollaborateurDTO>); //TODO: Change the data returned
|
|
|
|
return new ObjectResult(example);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Récupérer un profil collaborateur par mail</remarks>
|
|
|
|
/// <param name="mail">mail de l'utilisateur connecté (mail obtenu via le token Keycloak)</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/collaborateurs/profil/{mail}/")]
|
|
|
|
[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
|
|
|
|
[ValidateModelState]
|
|
|
|
[SwaggerOperation("GetProfilCollaborateurByMail")]
|
|
|
|
[SwaggerResponse(statusCode: 200, type: typeof(ProfilDTO), 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")]
|
|
|
|
public virtual IActionResult GetProfilCollaborateurByMail([FromRoute][Required]string mail)
|
|
|
|
{
|
|
|
|
//TODO: Uncomment the next line to return response 200 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(200, default(ProfilDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 403 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(403, default(ErreurDTO));
|
|
|
|
|
|
|
|
//TODO: Uncomment the next line to return response 404 or use other options such as return this.NotFound(), return this.BadRequest(..), ...
|
|
|
|
// return StatusCode(404, default(ErreurDTO));
|
|
|
|
string exampleJson = null;
|
|
|
|
exampleJson = "{\n \"businessUnit\" : {\n \"agence\" : {\n \"bu\" : [ null, null ],\n \"id\" : 6.027456183070403,\n \"nom\" : \"nom\"\n },\n \"id\" : 0.8008281904610115,\n \"nom\" : \"nom\"\n },\n \"mailApside\" : \"\",\n \"dateArrivee\" : \"2000-01-23T04:56:07.000+00:00\",\n \"nom\" : \"nom\",\n \"prenom\" : \"prenom\"\n}";
|
|
|
|
|
|
|
|
var example = exampleJson != null
|
|
|
|
? JsonConvert.DeserializeObject<ProfilDTO>(exampleJson)
|
|
|
|
: default(ProfilDTO); //TODO: Change the data returned
|
|
|
|
return new ObjectResult(example);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|