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.
259 lines
9.9 KiB
259 lines
9.9 KiB
using EPAServeur.Context;
|
|
using EPAServeur.Exceptions;
|
|
using EPAServeur.IServices;
|
|
using EPAServeur.Models.Notes;
|
|
using IO.Swagger.DTO;
|
|
using IO.Swagger.ModelCollaborateur;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EPAServeur.Services
|
|
{
|
|
/// <summary>
|
|
/// Service permettant de gérer les notes (ajout, récupération, mise à jour, suppression)
|
|
/// </summary>
|
|
public class NoteService : INoteService
|
|
{
|
|
#region Variables
|
|
/// <summary>
|
|
/// API pour accéder aux données collaborateur en passant par le service collaborateur
|
|
/// </summary>
|
|
private readonly ICollaborateurService collaborateurService;
|
|
/// <summary>
|
|
/// Contexte pour interagir avec la base de données MySQL du serveur EP
|
|
/// </summary>
|
|
private readonly EpContext context;
|
|
#endregion
|
|
#region Constructeurs
|
|
public NoteService(ICollaborateurService _collaborateurService, EpContext _context)
|
|
{
|
|
collaborateurService = _collaborateurService;
|
|
context = _context;
|
|
}
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Ajouter une nouvelle note dans la base de données
|
|
/// </summary>
|
|
/// <param name="nouvelleNote">La nouvelle note a ajouté en base</param>
|
|
/// <returns></returns>
|
|
public DetailsNoteDTO AjouterNote(DetailsNoteDTO nouvelleNote)
|
|
{
|
|
if (!IsDetailsNoteValide(nouvelleNote))
|
|
throw new NoteInvalideException();
|
|
Note note = DetailsNoteDTOToNouvelleNote(nouvelleNote);
|
|
context.Note.Add(note);
|
|
context.SaveChanges();
|
|
return NoteToDetailSDTO(note);
|
|
}
|
|
|
|
#region Services
|
|
/// <summary>
|
|
/// Récupérer la liste des notes qu'un auteur a écrit sur un collaborateur
|
|
/// </summary>
|
|
/// <param name="idAuteur">Id de l'auteur des notes à récupérer</param>
|
|
/// <param name="idCollaborateur">Id du collaborateur pour lesquelles les notes ont été écrites</param>
|
|
/// <param name="asc">Précise si la liste est trié dans l'ordre croissant ou décroissant</param>
|
|
/// <param name="numPage">Numéro de la page qui est affiché du côté front</param>
|
|
/// <param name="parPage">Nombre de notes à renvoyer</param>
|
|
/// <param name="texte">permet de récupérer les notes les informations du collaborateur ou le titre de la note contient le texte</param>
|
|
/// <param name="tri">Choisir l'attribut par lequel est trié la liste</param>
|
|
/// <returns>Retour la liste des notes à afficher</returns>
|
|
public IEnumerable<AffichageNoteDTO> GetNotesByCollaborateur(Guid? idAuteur, Guid? idCollaborateur, bool? asc, int? numPage, int? parPage, string texte, string tri)
|
|
{
|
|
//Stopwatch stopwatch = new Stopwatch();
|
|
//stopwatch.Start();
|
|
if (collaborateurService.GetProfilById(idAuteur) == null)
|
|
throw new ReferentNotFoundException();
|
|
//stopwatch.Stop();
|
|
//Console.WriteLine("Durée d'exécution GetProfil 1: {0}", stopwatch.Elapsed.TotalSeconds);
|
|
//stopwatch.Restart();
|
|
if (collaborateurService.GetProfilById(idAuteur) == null || collaborateurService.GetProfilById(idCollaborateur) == null)
|
|
throw new CollaborateurNotFoundException();
|
|
//stopwatch.Stop();
|
|
//Console.WriteLine("Durée d'exécution GetProfil 2: {0}", stopwatch.Elapsed.TotalSeconds);
|
|
|
|
if (texte == null)
|
|
texte = "";
|
|
else
|
|
texte = texte.ToLower();
|
|
int skip = (numPage.Value - 1) * parPage.Value;
|
|
int take = parPage.Value;
|
|
IEnumerable<AffichageNoteDTO> AffichageNoteDTO = (from n in context.Note
|
|
where n.IdAuteur == idAuteur && n.IdCollaborateur == idCollaborateur
|
|
select NoteToAffichageDTO(n, collaborateurService));
|
|
AffichageNoteDTO = (from a in AffichageNoteDTO
|
|
where a.Titre.ToLower().Contains(texte)
|
|
select a).Skip(skip).Take(take);
|
|
return AffichageNoteDTO;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Récupérer une note en fonction de son id
|
|
/// </summary>
|
|
/// <param name="idNote">Id de la note à récupérer</param>
|
|
/// <returns>L'objet DTO de la note correspondant à l'id passé en paramètre</returns>
|
|
public DetailsNoteDTO GetNoteById(long? idNote)
|
|
{
|
|
Note note = context.Note.Find(idNote);
|
|
if (note == null)
|
|
throw new NoteNotFoundException();
|
|
return NoteToDetailSDTO(note);
|
|
}
|
|
|
|
public IEnumerable<AffichageNoteDTO> GetNotes(bool? asc, int? numPage, int? parPage, string texte, string tri)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Récupérer la liste des notes qu'un auteur a écrit sur un collaborateur
|
|
/// </summary>
|
|
/// <param name="idAuteur">Id de l'auteur des notes à récupérer</param>
|
|
/// <param name="asc">Précise si la liste est trié dans l'ordre croissant ou décroissant</param>
|
|
/// <param name="numPage">Numéro de la page qui est affiché du côté front</param>
|
|
/// <param name="parPage">Nombre de notes à renvoyer</param>
|
|
/// <param name="texte">permet de récupérer les notes les informations du collaborateur ou le titre de la note contient le texte</param>
|
|
/// <param name="tri">Choisir l'attribut par lequel est trié la liste</param>
|
|
/// <returns>Retour la liste des notes à afficher</returns>
|
|
public IEnumerable<AffichageNoteDTO> GetNotesByAuteur(Guid? idAuteur, bool? asc, int? numPage, int? parPage, string texte, string tri)
|
|
{
|
|
if (collaborateurService.GetCollaborateurById(idAuteur) == null)
|
|
throw new CollaborateurNotFoundException();
|
|
if (texte == null)
|
|
texte = "";
|
|
else
|
|
texte = texte.ToLower();
|
|
int skip = (numPage.Value - 1) * parPage.Value;
|
|
int take = parPage.Value;
|
|
//Stopwatch stopwatch = new Stopwatch();
|
|
//stopwatch.Start();
|
|
IEnumerable<AffichageNoteDTO> AffichageNoteDTO = (from n in context.Note
|
|
where n.IdAuteur == idAuteur
|
|
select NoteToAffichageDTO(n, collaborateurService));
|
|
//stopwatch.Stop();
|
|
//Console.WriteLine("Durée d'exécution numéro 1: {0}", stopwatch.Elapsed.TotalSeconds);
|
|
//stopwatch.Restart();
|
|
AffichageNoteDTO = (from a in AffichageNoteDTO
|
|
where a.Collaborateur.ToLower().Contains(texte) || a.Titre.ToLower().Contains(texte)
|
|
select a).Skip(skip).Take(take);
|
|
//stopwatch.Stop();
|
|
//Console.WriteLine("Durée d'exécution numéro 2: {0}", stopwatch.Elapsed.TotalSeconds);
|
|
return AffichageNoteDTO;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Supprimer une note en fonction de son Id
|
|
/// </summary>
|
|
/// <param name="idNote">Id de la note à supprimer</param>
|
|
/// <returns>Si oui ou non la notea bien été supprimé</returns>
|
|
public void SupprimerNote(long? idNote)
|
|
{
|
|
Note note = context.Note.Find(idNote);
|
|
if (note == null)
|
|
throw new NoteNotFoundException();
|
|
context.Remove(note);
|
|
context.SaveChanges();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Mettre à jour une note
|
|
/// </summary>
|
|
/// <param name="idNote">Id de la note à modifier</param>
|
|
/// <param name="note"></param>
|
|
/// <returns></returns>
|
|
public DetailsNoteDTO UpdateNote(long? idNote, DetailsNoteDTO note)
|
|
{
|
|
if (idNote != note.Id)
|
|
throw new NoteIdImcompatibleException();
|
|
if (!IsDetailsNoteValide(note))
|
|
throw new NoteInvalideException();
|
|
Note noteToUpdate = context.Note.Find(idNote);
|
|
noteToUpdate.Titre = note.Titre;
|
|
noteToUpdate.Texte = note.Texte;
|
|
noteToUpdate.DateUpdate = DateTime.Now;
|
|
context.SaveChanges();
|
|
return NoteToDetailSDTO(noteToUpdate);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Vérifier si un objet DetailsNoteDTO possède est valide pour ajout ou mise à jour
|
|
/// </summary>
|
|
/// <remarks> Un objet DetailsNoteDTO est valide si aucune de ses propriétés n'est à null</remarks>
|
|
/// <param name="note"></param>
|
|
/// <returns>true si l'objet est valide, false sinon</returns>
|
|
private bool IsDetailsNoteValide(DetailsNoteDTO note)
|
|
{
|
|
return !(note == null || note.IdAuteur == null || note.Collaborateur == null || note.Collaborateur.Id == null || note.Titre == null || note.Texte == null) ;
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region ObjectToDTO
|
|
/// <summary>
|
|
/// Transformer un objet note en objet pour afficher un note dans dans un tableau
|
|
/// </summary>
|
|
/// <param name="note">Note à transformer</param>
|
|
/// <param name="collaborateurService">Service collaborateur pour récupérer les informations des collaborateurs</param>
|
|
/// <returns>La note transformée pour être affichée</returns>
|
|
private static AffichageNoteDTO NoteToAffichageDTO(Note note, ICollaborateurService collaborateurService)
|
|
{
|
|
CollaborateurDTO collaborateur = collaborateurService.GetCollaborateurById(note.IdCollaborateur);
|
|
AffichageNoteDTO affichage = new AffichageNoteDTO()
|
|
{
|
|
Id = note.Id,
|
|
IdCollaborateur = note.IdCollaborateur,
|
|
Collaborateur = collaborateur.Prenom + collaborateur.Nom,
|
|
Titre = note.Titre,
|
|
DateMiseAjour = note.DateUpdate
|
|
};
|
|
return affichage;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Transformatino d'une note en DetailsNoteDTO
|
|
/// </summary>
|
|
/// <param name="note">Note à transformer</param>
|
|
/// <returns>Note transformer en DetailsNoteDTO</returns>
|
|
private DetailsNoteDTO NoteToDetailSDTO(Note note)
|
|
{
|
|
DetailsNoteDTO details = new DetailsNoteDTO()
|
|
{
|
|
Id = note.Id,
|
|
DateCreation = note.DateCreation,
|
|
DateMiseAjour = note.DateUpdate,
|
|
Titre = note.Titre,
|
|
Texte = note.Texte,
|
|
IdAuteur = note.IdAuteur,
|
|
Collaborateur = collaborateurService.GetCollaborateurById(note.IdCollaborateur)
|
|
};
|
|
return details;
|
|
}
|
|
#endregion
|
|
|
|
#region DTOToObject
|
|
/// <summary>
|
|
/// Transformer l'objet DTO d'une note en note
|
|
/// </summary>
|
|
/// <remarks>En général, de base, cette méthode est prévue pour être utilisée qu'à la création d'une nouvelle note, dateCreation et dateUpdate sont donc initialisée à ce moment là</remarks>
|
|
/// <param name="detailsNoteDTO">Objet DTO à transformer en note</param>
|
|
/// <returns>L'objet DTO transformé en note</returns>
|
|
private Note DetailsNoteDTOToNouvelleNote(DetailsNoteDTO detailsNoteDTO)
|
|
{
|
|
Note note = new Note()
|
|
{
|
|
IdAuteur = detailsNoteDTO.IdAuteur.Value,
|
|
IdCollaborateur = detailsNoteDTO.Collaborateur.Id.Value,
|
|
Texte = detailsNoteDTO.Texte,
|
|
Titre = detailsNoteDTO.Titre,
|
|
DateCreation = DateTime.Now,
|
|
DateUpdate = DateTime.Now
|
|
};
|
|
return note;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
|