Refactoring, database structure changed
This commit is contained in:
74
WatchIt.DTO/Models/Controllers/Photos/PhotosMappers.cs
Normal file
74
WatchIt.DTO/Models/Controllers/Photos/PhotosMappers.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using WatchIt.DTO.Models.Controllers.Photos.Photo;
|
||||
using WatchIt.DTO.Models.Controllers.Photos.PhotoBackground;
|
||||
|
||||
namespace WatchIt.DTO.Models.Controllers.Photos;
|
||||
|
||||
public static class PhotosMappers
|
||||
{
|
||||
#region PUBLIC METHODS
|
||||
|
||||
#region Photo
|
||||
|
||||
public static Database.Model.Photos.Photo ToEntity(this PhotoRequest request) => new Database.Model.Photos.Photo
|
||||
{
|
||||
MediumId = request.MediumId,
|
||||
Image = request.Image,
|
||||
MimeType = request.MimeType,
|
||||
};
|
||||
|
||||
public static PhotoResponse ToResponse(this Database.Model.Photos.Photo entity) => new PhotoResponse
|
||||
{
|
||||
Id = entity.Id,
|
||||
MediumId = entity.MediumId,
|
||||
Image = entity.Image,
|
||||
MimeType = entity.MimeType,
|
||||
UploadDate = entity.UploadDate,
|
||||
Background = entity.Background?.ToResponse()
|
||||
};
|
||||
|
||||
public static PhotoRequest ToRequest(this PhotoResponse response) => new PhotoRequest
|
||||
{
|
||||
Image = response.Image,
|
||||
MimeType = response.MimeType,
|
||||
MediumId = response.MediumId,
|
||||
BackgroundData = response.Background?.ToRequest()
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
||||
#region PhotoBackground
|
||||
|
||||
public static Database.Model.Photos.PhotoBackground ToEntity(this PhotoBackgroundRequest request, Guid photoId) => new Database.Model.Photos.PhotoBackground
|
||||
{
|
||||
PhotoId = photoId,
|
||||
IsUniversal = request.IsUniversal,
|
||||
FirstGradientColor = request.FirstGradientColor,
|
||||
SecondGradientColor = request.SecondGradientColor,
|
||||
};
|
||||
|
||||
public static void UpdateWithRequest(this Database.Model.Photos.PhotoBackground entity, PhotoBackgroundRequest request)
|
||||
{
|
||||
entity.IsUniversal = request.IsUniversal;
|
||||
entity.FirstGradientColor = request.FirstGradientColor;
|
||||
entity.SecondGradientColor = request.SecondGradientColor;
|
||||
}
|
||||
|
||||
public static PhotoBackgroundResponse ToResponse(this Database.Model.Photos.PhotoBackground entity) => new PhotoBackgroundResponse
|
||||
{
|
||||
Id = entity.Id,
|
||||
IsUniversal = entity.IsUniversal,
|
||||
FirstGradientColor = entity.FirstGradientColor,
|
||||
SecondGradientColor = entity.SecondGradientColor,
|
||||
};
|
||||
|
||||
public static PhotoBackgroundRequest ToRequest(this PhotoBackgroundResponse response) => new PhotoBackgroundRequest
|
||||
{
|
||||
IsUniversal = response.IsUniversal,
|
||||
FirstGradientColor = response.FirstGradientColor,
|
||||
SecondGradientColor = response.SecondGradientColor,
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user