Merge pull request #93 from mateuszskoczek/features/person_endpoints
Features/person endpoints
This commit is contained in:
13
WatchIt.Common/WatchIt.Common.Model/Genders/Gender.cs
Normal file
13
WatchIt.Common/WatchIt.Common.Model/Genders/Gender.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Genders;
|
||||||
|
|
||||||
|
public class Gender
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[JsonPropertyName("name")]
|
||||||
|
public required string Name { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Genders;
|
||||||
|
|
||||||
|
public class GenderResponse : Gender
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[JsonPropertyName("id")]
|
||||||
|
public required short? Id { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region CONSTRUCTORS
|
||||||
|
|
||||||
|
[SetsRequiredMembers]
|
||||||
|
public GenderResponse(Database.Model.Common.Gender gender)
|
||||||
|
{
|
||||||
|
Id = gender.Id;
|
||||||
|
Name = gender.Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -17,9 +17,9 @@ public class GenreQueryParameters : QueryParameters<GenreResponse>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region PUBLIC METHODS
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
public override bool IsMeetingConditions(GenreResponse item) =>
|
protected override bool IsMeetingConditions(GenreResponse item) =>
|
||||||
(
|
(
|
||||||
TestStringWithRegex(item.Name, Name)
|
TestStringWithRegex(item.Name, Name)
|
||||||
&&
|
&&
|
||||||
|
|||||||
@@ -59,9 +59,9 @@ public class MediaQueryParameters : QueryParameters<MediaResponse>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region PUBLIC METHODS
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
public override bool IsMeetingConditions(MediaResponse item) =>
|
protected override bool IsMeetingConditions(MediaResponse item) =>
|
||||||
(
|
(
|
||||||
Test(item.Type, Type)
|
Test(item.Type, Type)
|
||||||
&&
|
&&
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ public class MediaResponse : Media, IQueryOrderable<MediaResponse>
|
|||||||
ReleaseDate = media.ReleaseDate;
|
ReleaseDate = media.ReleaseDate;
|
||||||
Length = media.Length;
|
Length = media.Length;
|
||||||
Type = mediaType;
|
Type = mediaType;
|
||||||
Rating = new RatingResponse(media.RatingMedia);
|
Rating = RatingResponse.Create(media.RatingMedia);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -65,9 +65,9 @@ public class MovieQueryParameters : QueryParameters<MovieResponse>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region PUBLIC METHODS
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
public override bool IsMeetingConditions(MovieResponse item) =>
|
protected override bool IsMeetingConditions(MovieResponse item) =>
|
||||||
(
|
(
|
||||||
TestStringWithRegex(item.Title, Title)
|
TestStringWithRegex(item.Title, Title)
|
||||||
&&
|
&&
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public class MovieResponse : Movie, IQueryOrderable<MovieResponse>
|
|||||||
ReleaseDate = mediaMovie.Media.ReleaseDate;
|
ReleaseDate = mediaMovie.Media.ReleaseDate;
|
||||||
Length = mediaMovie.Media.Length;
|
Length = mediaMovie.Media.Length;
|
||||||
Budget = mediaMovie.Budget;
|
Budget = mediaMovie.Budget;
|
||||||
Rating = new RatingResponse(mediaMovie.Media.RatingMedia);
|
Rating = RatingResponse.Create(mediaMovie.Media.RatingMedia);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
25
WatchIt.Common/WatchIt.Common.Model/Persons/Person.cs
Normal file
25
WatchIt.Common/WatchIt.Common.Model/Persons/Person.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
public class Person
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[JsonPropertyName("name")]
|
||||||
|
public required string Name { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("full_name")]
|
||||||
|
public string? FullName { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("description")]
|
||||||
|
public string? Description { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("birth_date")]
|
||||||
|
public DateOnly? BirthDate { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("death_date")]
|
||||||
|
public DateOnly? DeathDate { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using WatchIt.Common.Query;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
public class PersonQueryParameters : QueryParameters<PersonResponse>
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[FromQuery(Name = "name")]
|
||||||
|
public string? Name { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "full_name")]
|
||||||
|
public string? FullName { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "description")]
|
||||||
|
public string? Description { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "birth_date")]
|
||||||
|
public DateOnly? BirthDate { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "birth_date_from")]
|
||||||
|
public DateOnly? BirthDateFrom { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "birth_date_to")]
|
||||||
|
public DateOnly? BirthDateTo { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "death_date")]
|
||||||
|
public DateOnly? DeathDate { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "death_date_from")]
|
||||||
|
public DateOnly? DeathDateFrom { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "death_date_to")]
|
||||||
|
public DateOnly? DeathDateTo { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "gender_id")]
|
||||||
|
public short? GenderId { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_average")]
|
||||||
|
public decimal? RatingAverage { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_average_from")]
|
||||||
|
public decimal? RatingAverageFrom { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_average_to")]
|
||||||
|
public decimal? RatingAverageTo { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_count")]
|
||||||
|
public long? RatingCount { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_count_from")]
|
||||||
|
public long? RatingCountFrom { get; set; }
|
||||||
|
|
||||||
|
[FromQuery(Name = "rating_count_to")]
|
||||||
|
public long? RatingCountTo { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region PUBLIC METHODS
|
||||||
|
|
||||||
|
protected override bool IsMeetingConditions(PersonResponse item) =>
|
||||||
|
(
|
||||||
|
TestStringWithRegex(item.Name, Name)
|
||||||
|
&&
|
||||||
|
TestStringWithRegex(item.FullName, FullName)
|
||||||
|
&&
|
||||||
|
TestStringWithRegex(item.Description, Description)
|
||||||
|
&&
|
||||||
|
TestComparable(item.BirthDate, BirthDate, BirthDateFrom, BirthDateTo)
|
||||||
|
&&
|
||||||
|
TestComparable(item.DeathDate, DeathDate, DeathDateFrom, DeathDateTo)
|
||||||
|
&&
|
||||||
|
Test(item.Gender?.Id, GenderId)
|
||||||
|
&&
|
||||||
|
TestComparable(item.Rating.Average, RatingAverage, RatingAverageFrom, RatingAverageTo)
|
||||||
|
&&
|
||||||
|
TestComparable(item.Rating.Count, RatingCount, RatingCountFrom, RatingCountTo)
|
||||||
|
);
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
39
WatchIt.Common/WatchIt.Common.Model/Persons/PersonRequest.cs
Normal file
39
WatchIt.Common/WatchIt.Common.Model/Persons/PersonRequest.cs
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
public class PersonRequest : Person
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[JsonPropertyName("gender_id")]
|
||||||
|
public short? GenderId { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region PUBLIC METHODS
|
||||||
|
|
||||||
|
public Database.Model.Person.Person CreatePerson() => new Database.Model.Person.Person
|
||||||
|
{
|
||||||
|
Name = Name,
|
||||||
|
FullName = FullName,
|
||||||
|
Description = Description,
|
||||||
|
BirthDate = BirthDate,
|
||||||
|
DeathDate = DeathDate,
|
||||||
|
GenderId = GenderId,
|
||||||
|
};
|
||||||
|
|
||||||
|
public void UpdatePerson(Database.Model.Person.Person person)
|
||||||
|
{
|
||||||
|
person.Name = Name;
|
||||||
|
person.FullName = FullName;
|
||||||
|
person.Description = Description;
|
||||||
|
person.BirthDate = BirthDate;
|
||||||
|
person.DeathDate = DeathDate;
|
||||||
|
person.GenderId = GenderId;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
using WatchIt.Common.Model.Genders;
|
||||||
|
using WatchIt.Common.Model.Rating;
|
||||||
|
using WatchIt.Common.Query;
|
||||||
|
|
||||||
|
namespace WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
public class PersonResponse : Person, IQueryOrderable<PersonResponse>
|
||||||
|
{
|
||||||
|
#region PROPERTIES
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public static IDictionary<string, Func<PersonResponse, IComparable>> OrderableProperties { get; } = new Dictionary<string, Func<PersonResponse, IComparable>>
|
||||||
|
{
|
||||||
|
{ "id", x => x.Id },
|
||||||
|
{ "name", x => x.Name },
|
||||||
|
{ "full_name", x => x.FullName },
|
||||||
|
{ "description", x => x.Description },
|
||||||
|
{ "birth_date", x => x.BirthDate },
|
||||||
|
{ "death_date", x => x.BirthDate },
|
||||||
|
{ "gender", x => x.Gender.Name },
|
||||||
|
{ "rating.average", x => x.Rating.Average },
|
||||||
|
{ "rating.count", x => x.Rating.Count }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
[JsonPropertyName("id")]
|
||||||
|
public required long Id { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("gender")]
|
||||||
|
public GenderResponse? Gender { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("rating")]
|
||||||
|
public required RatingResponse Rating { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region CONSTRUCTORS
|
||||||
|
|
||||||
|
[SetsRequiredMembers]
|
||||||
|
public PersonResponse(Database.Model.Person.Person person)
|
||||||
|
{
|
||||||
|
Id = person.Id;
|
||||||
|
Name = person.Name;
|
||||||
|
FullName = person.FullName;
|
||||||
|
Description = person.Description;
|
||||||
|
BirthDate = person.BirthDate;
|
||||||
|
DeathDate = person.DeathDate;
|
||||||
|
Gender = person.Gender is not null ? new GenderResponse(person.Gender) : null;
|
||||||
|
Rating = RatingResponse.Create(person.PersonActorRoles, person.PersonCreatorRoles);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -32,9 +32,9 @@ public class PhotoQueryParameters : QueryParameters<PhotoResponse>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region PUBLIC METHODS
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
public override bool IsMeetingConditions(PhotoResponse item) =>
|
protected override bool IsMeetingConditions(PhotoResponse item) =>
|
||||||
(
|
(
|
||||||
TestStringWithRegex(item.MimeType, MimeType)
|
TestStringWithRegex(item.MimeType, MimeType)
|
||||||
&&
|
&&
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
using WatchIt.Database.Model.Person;
|
||||||
using WatchIt.Database.Model.Rating;
|
using WatchIt.Database.Model.Rating;
|
||||||
|
|
||||||
namespace WatchIt.Common.Model.Rating;
|
namespace WatchIt.Common.Model.Rating;
|
||||||
@@ -24,14 +25,24 @@ public class RatingResponse
|
|||||||
public RatingResponse() {}
|
public RatingResponse() {}
|
||||||
|
|
||||||
[SetsRequiredMembers]
|
[SetsRequiredMembers]
|
||||||
public RatingResponse(IEnumerable<RatingMedia> ratingMedia) : this(ratingMedia.Any() ? (decimal)ratingMedia.Average(x => x.Rating) : 0, ratingMedia.Count()) {}
|
private RatingResponse(long ratingSum, long ratingCount)
|
||||||
|
|
||||||
[SetsRequiredMembers]
|
|
||||||
public RatingResponse(decimal ratingAverage, long ratingCount)
|
|
||||||
{
|
{
|
||||||
Average = ratingAverage;
|
Average = ratingCount > 0 ? (decimal)ratingSum / ratingCount : 0;
|
||||||
Count = ratingCount;
|
Count = ratingCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static RatingResponse Create(long ratingSum, long ratingCount) => new RatingResponse(ratingSum, ratingCount);
|
||||||
|
|
||||||
|
public static RatingResponse Create(IEnumerable<RatingMedia> ratingMedia) => new RatingResponse(ratingMedia.Sum(x => x.Rating), ratingMedia.Count());
|
||||||
|
|
||||||
|
public static RatingResponse Create(IEnumerable<PersonActorRole> personActorRoles, IEnumerable<PersonCreatorRole> personCreatorRoles)
|
||||||
|
{
|
||||||
|
IEnumerable<RatingPersonActorRole> ratingsActorRoles = personActorRoles.SelectMany(x => x.RatingPersonActorRole);
|
||||||
|
IEnumerable<RatingPersonCreatorRole> ratingsCreatorRoles = personCreatorRoles.SelectMany(x => x.RatingPersonCreatorRole);
|
||||||
|
long ratingSum = ratingsActorRoles.Sum(x => x.Rating) + ratingsCreatorRoles.Sum(x => x.Rating);
|
||||||
|
long ratingCount = ratingsActorRoles.Count() + ratingsCreatorRoles.Count();
|
||||||
|
return new RatingResponse(ratingSum, ratingCount);
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@@ -59,9 +59,9 @@ public class SeriesQueryParameters : QueryParameters<SeriesResponse>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region PUBLIC METHODS
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
public override bool IsMeetingConditions(SeriesResponse item) =>
|
protected override bool IsMeetingConditions(SeriesResponse item) =>
|
||||||
(
|
(
|
||||||
TestStringWithRegex(item.Title, Title)
|
TestStringWithRegex(item.Title, Title)
|
||||||
&&
|
&&
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public class SeriesResponse : Series, IQueryOrderable<SeriesResponse>
|
|||||||
ReleaseDate = mediaSeries.Media.ReleaseDate;
|
ReleaseDate = mediaSeries.Media.ReleaseDate;
|
||||||
Length = mediaSeries.Media.Length;
|
Length = mediaSeries.Media.Length;
|
||||||
HasEnded = mediaSeries.HasEnded;
|
HasEnded = mediaSeries.HasEnded;
|
||||||
Rating = new RatingResponse(mediaSeries.Media.RatingMedia);
|
Rating = RatingResponse.Create(mediaSeries.Media.RatingMedia);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ public abstract class QueryParameters<T> : QueryParameters where T : IQueryOrder
|
|||||||
{
|
{
|
||||||
#region PUBLIC METHODS
|
#region PUBLIC METHODS
|
||||||
|
|
||||||
public abstract bool IsMeetingConditions(T item);
|
protected abstract bool IsMeetingConditions(T item);
|
||||||
|
|
||||||
public IEnumerable<T> PrepareData(IEnumerable<T> data)
|
public IEnumerable<T> PrepareData(IEnumerable<T> data)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,84 @@
|
|||||||
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
using WatchIt.WebAPI.Services.Controllers.Persons;
|
||||||
|
|
||||||
|
namespace WatchIt.WebAPI.Controllers;
|
||||||
|
|
||||||
|
[ApiController]
|
||||||
|
[Route("persons")]
|
||||||
|
public class PersonsController : ControllerBase
|
||||||
|
{
|
||||||
|
#region SERVICES
|
||||||
|
|
||||||
|
private readonly IPersonsControllerService _personsControllerService;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region CONSTRUCTORS
|
||||||
|
|
||||||
|
public PersonsController(IPersonsControllerService personsControllerService)
|
||||||
|
{
|
||||||
|
_personsControllerService = personsControllerService;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region METHODS
|
||||||
|
|
||||||
|
#region Main
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
[AllowAnonymous]
|
||||||
|
[ProducesResponseType(typeof(IEnumerable<PersonResponse>), StatusCodes.Status200OK)]
|
||||||
|
public async Task<ActionResult> GetAllMovies(PersonQueryParameters query) => await _personsControllerService.GetAllPersons(query);
|
||||||
|
|
||||||
|
[HttpGet("{id}")]
|
||||||
|
[AllowAnonymous]
|
||||||
|
[ProducesResponseType(typeof(PersonResponse), StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
||||||
|
public async Task<ActionResult> GetMovie([FromRoute] long id) => await _personsControllerService.GetPerson(id);
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
|
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
||||||
|
[ProducesResponseType(typeof(PersonResponse), StatusCodes.Status201Created)]
|
||||||
|
[ProducesResponseType(typeof(ValidationProblemDetails), StatusCodes.Status400BadRequest)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status401Unauthorized)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status403Forbidden)]
|
||||||
|
public async Task<ActionResult> PostMovie([FromBody] PersonRequest body) => await _personsControllerService.PostPerson(body);
|
||||||
|
|
||||||
|
[HttpPut("{id}")]
|
||||||
|
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(typeof(ValidationProblemDetails), StatusCodes.Status400BadRequest)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status401Unauthorized)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status403Forbidden)]
|
||||||
|
public async Task<ActionResult> PutMovie([FromRoute] long id, [FromBody]PersonRequest body) => await _personsControllerService.PutPerson(id, body);
|
||||||
|
|
||||||
|
[HttpDelete("{id}")]
|
||||||
|
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status204NoContent)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status401Unauthorized)]
|
||||||
|
[ProducesResponseType(typeof(void), StatusCodes.Status403Forbidden)]
|
||||||
|
public async Task<ActionResult> DeleteMovie([FromRoute] long id) => await _personsControllerService.DeletePerson(id);
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region View count
|
||||||
|
|
||||||
|
[HttpGet("view")]
|
||||||
|
[AllowAnonymous]
|
||||||
|
[ProducesResponseType(typeof(IEnumerable<PersonResponse>), StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
||||||
|
public async Task<ActionResult> GetMoviesViewRank([FromQuery] int first = 5, [FromQuery] int days = 7) => await _personsControllerService.GetPersonsViewRank(first, days);
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -17,6 +17,7 @@
|
|||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Genres\WatchIt.WebAPI.Services.Controllers.Genres.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Genres\WatchIt.WebAPI.Services.Controllers.Genres.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Media\WatchIt.WebAPI.Services.Controllers.Media.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Media\WatchIt.WebAPI.Services.Controllers.Media.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Movies\WatchIt.WebAPI.Services.Controllers.Movies.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Movies\WatchIt.WebAPI.Services.Controllers.Movies.csproj" />
|
||||||
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Persons\WatchIt.WebAPI.Services.Controllers.Persons.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Photos\WatchIt.WebAPI.Services.Controllers.Photos.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Photos\WatchIt.WebAPI.Services.Controllers.Photos.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Series\WatchIt.WebAPI.Services.Controllers.Series.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Series\WatchIt.WebAPI.Services.Controllers.Series.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ public class MediaControllerService(DatabaseContext database, IUserService userS
|
|||||||
return RequestResult.NotFound();
|
return RequestResult.NotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
RatingResponse ratingResponse = new RatingResponse(item.RatingMedia);
|
RatingResponse ratingResponse = RatingResponse.Create(item.RatingMedia);
|
||||||
|
|
||||||
return RequestResult.Ok(ratingResponse);
|
return RequestResult.Ok(ratingResponse);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
using WatchIt.WebAPI.Services.Controllers.Common;
|
||||||
|
|
||||||
|
namespace WatchIt.WebAPI.Services.Controllers.Persons;
|
||||||
|
|
||||||
|
public interface IPersonsControllerService
|
||||||
|
{
|
||||||
|
Task<RequestResult> GetAllPersons(PersonQueryParameters query);
|
||||||
|
Task<RequestResult> GetPerson(long id);
|
||||||
|
Task<RequestResult> PostPerson(PersonRequest data);
|
||||||
|
Task<RequestResult> PutPerson(long id, PersonRequest data);
|
||||||
|
Task<RequestResult> DeletePerson(long id);
|
||||||
|
Task<RequestResult> GetPersonsViewRank(int first, int days);
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
using WatchIt.Database;
|
||||||
|
using WatchIt.WebAPI.Services.Controllers.Common;
|
||||||
|
using WatchIt.WebAPI.Services.Utility.User;
|
||||||
|
using Person = WatchIt.Database.Model.Person.Person;
|
||||||
|
|
||||||
|
namespace WatchIt.WebAPI.Services.Controllers.Persons;
|
||||||
|
|
||||||
|
public class PersonsControllerService : IPersonsControllerService
|
||||||
|
{
|
||||||
|
#region SERVICES
|
||||||
|
|
||||||
|
private readonly DatabaseContext _database;
|
||||||
|
private readonly IUserService _userService;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region CONSTRUCTORS
|
||||||
|
|
||||||
|
public PersonsControllerService(DatabaseContext database, IUserService userService)
|
||||||
|
{
|
||||||
|
_database = database;
|
||||||
|
_userService = userService;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region PUBLIC METHODS
|
||||||
|
|
||||||
|
#region Main
|
||||||
|
|
||||||
|
public async Task<RequestResult> GetAllPersons(PersonQueryParameters query)
|
||||||
|
{
|
||||||
|
IEnumerable<Person> rawData = await _database.Persons.ToListAsync();
|
||||||
|
IEnumerable<PersonResponse> data = rawData.Select(x => new PersonResponse(x));
|
||||||
|
data = query.PrepareData(data);
|
||||||
|
return RequestResult.Ok(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<RequestResult> GetPerson(long id)
|
||||||
|
{
|
||||||
|
Person? item = await _database.Persons.FirstOrDefaultAsync(x => x.Id == id);
|
||||||
|
if (item is null)
|
||||||
|
{
|
||||||
|
return RequestResult.NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
PersonResponse data = new PersonResponse(item);
|
||||||
|
return RequestResult.Ok(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<RequestResult> PostPerson(PersonRequest data)
|
||||||
|
{
|
||||||
|
UserValidator validator = _userService.GetValidator().MustBeAdmin();
|
||||||
|
if (!validator.IsValid)
|
||||||
|
{
|
||||||
|
return RequestResult.Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
Person personItem = data.CreatePerson();
|
||||||
|
await _database.Persons.AddAsync(personItem);
|
||||||
|
await _database.SaveChangesAsync();
|
||||||
|
|
||||||
|
return RequestResult.Created($"persons/{personItem.Id}", new PersonResponse(personItem));
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<RequestResult> PutPerson(long id, PersonRequest data)
|
||||||
|
{
|
||||||
|
UserValidator validator = _userService.GetValidator().MustBeAdmin();
|
||||||
|
if (!validator.IsValid)
|
||||||
|
{
|
||||||
|
return RequestResult.Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
Person? item = await _database.Persons.FirstOrDefaultAsync(x => x.Id == id);
|
||||||
|
if (item is null)
|
||||||
|
{
|
||||||
|
return RequestResult.NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
data.UpdatePerson(item);
|
||||||
|
|
||||||
|
await _database.SaveChangesAsync();
|
||||||
|
|
||||||
|
return RequestResult.Ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<RequestResult> DeletePerson(long id)
|
||||||
|
{
|
||||||
|
UserValidator validator = _userService.GetValidator().MustBeAdmin();
|
||||||
|
if (!validator.IsValid)
|
||||||
|
{
|
||||||
|
return RequestResult.Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
Person? item = await _database.Persons.FirstOrDefaultAsync(x => x.Id == id);
|
||||||
|
if (item is null)
|
||||||
|
{
|
||||||
|
return RequestResult.NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
_database.PersonCreatorRoles.AttachRange(item.PersonCreatorRoles);
|
||||||
|
_database.PersonCreatorRoles.RemoveRange(item.PersonCreatorRoles);
|
||||||
|
_database.PersonActorRoles.AttachRange(item.PersonActorRoles);
|
||||||
|
_database.PersonActorRoles.RemoveRange(item.PersonActorRoles);
|
||||||
|
_database.ViewCountsPerson.AttachRange(item.ViewCountsPerson);
|
||||||
|
_database.ViewCountsPerson.RemoveRange(item.ViewCountsPerson);
|
||||||
|
_database.Persons.Attach(item);
|
||||||
|
_database.Persons.Remove(item);
|
||||||
|
await _database.SaveChangesAsync();
|
||||||
|
|
||||||
|
return RequestResult.NoContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region View count
|
||||||
|
|
||||||
|
public async Task<RequestResult> GetPersonsViewRank(int first, int days)
|
||||||
|
{
|
||||||
|
if (first < 1 || days < 1)
|
||||||
|
{
|
||||||
|
return RequestResult.BadRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
DateOnly startDate = DateOnly.FromDateTime(DateTime.Now).AddDays(-days);
|
||||||
|
IEnumerable<Person> rawData = await _database.Persons.OrderByDescending(x => x.ViewCountsPerson.Where(y => y.Date >= startDate)
|
||||||
|
.Sum(y => y.ViewCount))
|
||||||
|
.ThenBy(x => x.Id)
|
||||||
|
.Take(first)
|
||||||
|
.ToListAsync();
|
||||||
|
|
||||||
|
IEnumerable<PersonResponse> data = rawData.Select(x => new PersonResponse(x));
|
||||||
|
|
||||||
|
return RequestResult.Ok(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\..\..\..\WatchIt.Common\WatchIt.Common.Model\WatchIt.Common.Model.csproj" />
|
||||||
|
<ProjectReference Include="..\..\..\..\WatchIt.Database\WatchIt.Database\WatchIt.Database.csproj" />
|
||||||
|
<ProjectReference Include="..\..\WatchIt.WebAPI.Services.Utility\WatchIt.WebAPI.Services.Utility.User\WatchIt.WebAPI.Services.Utility.User.csproj" />
|
||||||
|
<ProjectReference Include="..\WatchIt.WebAPI.Services.Controllers.Common\WatchIt.WebAPI.Services.Controllers.Common.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
using FluentValidation;
|
||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
namespace WatchIt.WebAPI.Validators.Persons;
|
||||||
|
|
||||||
|
public class PersonRequestValidator : AbstractValidator<PersonRequest>
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -13,6 +13,7 @@ using WatchIt.WebAPI.Services.Controllers.Accounts;
|
|||||||
using WatchIt.WebAPI.Services.Controllers.Genres;
|
using WatchIt.WebAPI.Services.Controllers.Genres;
|
||||||
using WatchIt.WebAPI.Services.Controllers.Media;
|
using WatchIt.WebAPI.Services.Controllers.Media;
|
||||||
using WatchIt.WebAPI.Services.Controllers.Movies;
|
using WatchIt.WebAPI.Services.Controllers.Movies;
|
||||||
|
using WatchIt.WebAPI.Services.Controllers.Persons;
|
||||||
using WatchIt.WebAPI.Services.Controllers.Photos;
|
using WatchIt.WebAPI.Services.Controllers.Photos;
|
||||||
using WatchIt.WebAPI.Services.Controllers.Series;
|
using WatchIt.WebAPI.Services.Controllers.Series;
|
||||||
using WatchIt.WebAPI.Services.Utility.Configuration;
|
using WatchIt.WebAPI.Services.Utility.Configuration;
|
||||||
@@ -158,6 +159,7 @@ public static class Program
|
|||||||
builder.Services.AddTransient<IMediaControllerService, MediaControllerService>();
|
builder.Services.AddTransient<IMediaControllerService, MediaControllerService>();
|
||||||
builder.Services.AddTransient<ISeriesControllerService, SeriesControllerService>();
|
builder.Services.AddTransient<ISeriesControllerService, SeriesControllerService>();
|
||||||
builder.Services.AddTransient<IPhotosControllerService, PhotosControllerService>();
|
builder.Services.AddTransient<IPhotosControllerService, PhotosControllerService>();
|
||||||
|
builder.Services.AddTransient<IPersonsControllerService, PersonsControllerService>();
|
||||||
|
|
||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\WatchIt.Database\WatchIt.Database\WatchIt.Database.csproj" />
|
<ProjectReference Include="..\..\WatchIt.Database\WatchIt.Database\WatchIt.Database.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Controllers\WatchIt.WebAPI.Controllers.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Controllers\WatchIt.WebAPI.Controllers.csproj" />
|
||||||
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Persons\WatchIt.WebAPI.Services.Controllers.Persons.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Utility\WatchIt.WebAPI.Services.Utility.Configuration\WatchIt.WebAPI.Services.Utility.Configuration.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Utility\WatchIt.WebAPI.Services.Utility.Configuration\WatchIt.WebAPI.Services.Utility.Configuration.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Utility\WatchIt.WebAPI.Services.Utility.Tokens\WatchIt.WebAPI.Services.Utility.Tokens.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Utility\WatchIt.WebAPI.Services.Utility.Tokens\WatchIt.WebAPI.Services.Utility.Tokens.csproj" />
|
||||||
<ProjectReference Include="..\WatchIt.WebAPI.Validators\WatchIt.WebAPI.Validators.csproj" />
|
<ProjectReference Include="..\WatchIt.WebAPI.Validators\WatchIt.WebAPI.Validators.csproj" />
|
||||||
|
|||||||
@@ -9,4 +9,5 @@ public class Endpoints
|
|||||||
public Movies Movies { get; set; }
|
public Movies Movies { get; set; }
|
||||||
public Series Series { get; set; }
|
public Series Series { get; set; }
|
||||||
public Photos Photos { get; set; }
|
public Photos Photos { get; set; }
|
||||||
|
public Persons Persons { get; set; }
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
||||||
|
|
||||||
|
public class Persons
|
||||||
|
{
|
||||||
|
public string Base { get; set; }
|
||||||
|
public string GetAllPersons { get; set; }
|
||||||
|
public string GetPerson { get; set; }
|
||||||
|
public string PostPerson { get; set; }
|
||||||
|
public string PutPerson { get; set; }
|
||||||
|
public string DeletePerson { get; set; }
|
||||||
|
public string GetPersonsViewRank { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
|
||||||
|
namespace WatchIt.Website.Services.WebAPI.Persons;
|
||||||
|
|
||||||
|
public interface IPersonsWebAPIService
|
||||||
|
{
|
||||||
|
Task GetAllPersons(PersonQueryParameters? query = null, Action<IEnumerable<PersonResponse>>? successAction = null);
|
||||||
|
Task GetPerson(long id, Action<PersonResponse>? successAction = null, Action? notFoundAction = null);
|
||||||
|
Task PostPerson(PersonRequest data, Action<PersonResponse>? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null);
|
||||||
|
Task PutPerson(long id, PersonRequest data, Action? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null);
|
||||||
|
Task DeletePerson(long id, Action? successAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null);
|
||||||
|
Task GetPersonsViewRank(int? first = null, int? days = null, Action<IEnumerable<PersonResponse>>? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null);
|
||||||
|
}
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
using System.Text;
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
|
using Microsoft.Extensions.Primitives;
|
||||||
|
using WatchIt.Common.Model.Persons;
|
||||||
|
using WatchIt.Common.Services.HttpClient;
|
||||||
|
using WatchIt.Website.Services.Utility.Configuration;
|
||||||
|
using WatchIt.Website.Services.WebAPI.Common;
|
||||||
|
|
||||||
|
namespace WatchIt.Website.Services.WebAPI.Persons;
|
||||||
|
|
||||||
|
public class PersonsWebAPIService : BaseWebAPIService, IPersonsWebAPIService
|
||||||
|
{
|
||||||
|
#region SERVICES
|
||||||
|
|
||||||
|
private IHttpClientService _httpClientService;
|
||||||
|
private IConfigurationService _configurationService;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region CONSTRUCTORS
|
||||||
|
|
||||||
|
public PersonsWebAPIService(IHttpClientService httpClientService, IConfigurationService configurationService) : base(configurationService)
|
||||||
|
{
|
||||||
|
_httpClientService = httpClientService;
|
||||||
|
_configurationService = configurationService;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region PUBLIC METHODS
|
||||||
|
|
||||||
|
#region Main
|
||||||
|
|
||||||
|
public async Task GetAllPersons(PersonQueryParameters? query = null, Action<IEnumerable<PersonResponse>>? successAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.GetAllPersons);
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Get, url);
|
||||||
|
request.Query = query;
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task GetPerson(long id, Action<PersonResponse>? successAction = null, Action? notFoundAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.GetPerson, id);
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Get, url);
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.RegisterActionFor404NotFound(notFoundAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task PostPerson(PersonRequest data, Action<PersonResponse>? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.PostPerson);
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Post, url);
|
||||||
|
request.Body = data;
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.RegisterActionFor400BadRequest(badRequestAction)
|
||||||
|
.RegisterActionFor401Unauthorized(unauthorizedAction)
|
||||||
|
.RegisterActionFor403Forbidden(forbiddenAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task PutPerson(long id, PersonRequest data, Action? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.PutPerson, id);
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Put, url);
|
||||||
|
request.Body = data;
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.RegisterActionFor400BadRequest(badRequestAction)
|
||||||
|
.RegisterActionFor401Unauthorized(unauthorizedAction)
|
||||||
|
.RegisterActionFor403Forbidden(forbiddenAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task DeletePerson(long id, Action? successAction = null, Action? unauthorizedAction = null, Action? forbiddenAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.DeletePerson, id);
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Delete, url);
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.RegisterActionFor401Unauthorized(unauthorizedAction)
|
||||||
|
.RegisterActionFor403Forbidden(forbiddenAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region View count
|
||||||
|
|
||||||
|
public async Task GetPersonsViewRank(int? first = null, int? days = null, Action<IEnumerable<PersonResponse>>? successAction = null, Action<IDictionary<string, string[]>>? badRequestAction = null)
|
||||||
|
{
|
||||||
|
string url = GetUrl(EndpointsConfiguration.Persons.GetPersonsViewRank);
|
||||||
|
if (first.HasValue || days.HasValue)
|
||||||
|
{
|
||||||
|
StringBuilder urlBuilder = new StringBuilder(url);
|
||||||
|
urlBuilder.Append('?');
|
||||||
|
bool firstParameter = true;
|
||||||
|
if (first.HasValue)
|
||||||
|
{
|
||||||
|
urlBuilder.Append($"first={first.Value}");
|
||||||
|
firstParameter = false;
|
||||||
|
}
|
||||||
|
if (days.HasValue)
|
||||||
|
{
|
||||||
|
if (!firstParameter)
|
||||||
|
{
|
||||||
|
urlBuilder.Append('&');
|
||||||
|
}
|
||||||
|
urlBuilder.Append($"days={days.Value}");
|
||||||
|
}
|
||||||
|
url = urlBuilder.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
HttpRequest request = new HttpRequest(HttpMethodType.Get, url);
|
||||||
|
|
||||||
|
HttpResponse response = await _httpClientService.SendRequestAsync(request);
|
||||||
|
response.RegisterActionFor2XXSuccess(successAction)
|
||||||
|
.RegisterActionFor400BadRequest(badRequestAction)
|
||||||
|
.ExecuteAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region PRIVATE METHODS
|
||||||
|
|
||||||
|
protected override string GetServiceBase() => EndpointsConfiguration.Persons.Base;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\..\..\..\WatchIt.Common\WatchIt.Common.Services\WatchIt.Common.Services.HttpClient\WatchIt.Common.Services.HttpClient.csproj" />
|
||||||
|
<ProjectReference Include="..\WatchIt.Website.Services.WebAPI.Common\WatchIt.Website.Services.WebAPI.Common.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -70,6 +70,15 @@
|
|||||||
"DeletePhoto": "/{0}",
|
"DeletePhoto": "/{0}",
|
||||||
"PutPhotoBackgroundData": "/{0}/background_data",
|
"PutPhotoBackgroundData": "/{0}/background_data",
|
||||||
"DeletePhotoBackgroundData": "/{0}/background_data"
|
"DeletePhotoBackgroundData": "/{0}/background_data"
|
||||||
|
},
|
||||||
|
"Persons": {
|
||||||
|
"Base": "/persons",
|
||||||
|
"GetAllPersons": "",
|
||||||
|
"GetPerson": "/{0}",
|
||||||
|
"PostPerson": "",
|
||||||
|
"PutPerson": "/{0}",
|
||||||
|
"DeletePerson": "/{0}",
|
||||||
|
"GetPersonsViewRank": "/view"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
14
WatchIt.sln
14
WatchIt.sln
@@ -88,6 +88,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WatchIt.WebAPI.Services.Con
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WatchIt.Website.Services.WebAPI.Photos", "WatchIt.Website\WatchIt.Website.Services\WatchIt.Website.Services.WebAPI\WatchIt.Website.Services.WebAPI.Photos\WatchIt.Website.Services.WebAPI.Photos.csproj", "{960A833F-C195-4D1D-AD4F-D00B57067181}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WatchIt.Website.Services.WebAPI.Photos", "WatchIt.Website\WatchIt.Website.Services\WatchIt.Website.Services.WebAPI\WatchIt.Website.Services.WebAPI.Photos\WatchIt.Website.Services.WebAPI.Photos.csproj", "{960A833F-C195-4D1D-AD4F-D00B57067181}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WatchIt.WebAPI.Services.Controllers.Persons", "WatchIt.WebAPI\WatchIt.WebAPI.Services\WatchIt.WebAPI.Services.Controllers\WatchIt.WebAPI.Services.Controllers.Persons\WatchIt.WebAPI.Services.Controllers.Persons.csproj", "{335686F5-65B8-4D66-AAA8-C5032906451D}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WatchIt.Website.Services.WebAPI.Persons", "WatchIt.Website\WatchIt.Website.Services\WatchIt.Website.Services.WebAPI\WatchIt.Website.Services.WebAPI.Persons\WatchIt.Website.Services.WebAPI.Persons.csproj", "{83D42D72-FF67-4577-8280-2ABD5B20F985}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -134,6 +138,8 @@ Global
|
|||||||
{783C743A-85BF-4382-BFE5-7A90E3F3B8B6} = {46E3711F-18BD-4004-AF53-EA4D8643D92F}
|
{783C743A-85BF-4382-BFE5-7A90E3F3B8B6} = {46E3711F-18BD-4004-AF53-EA4D8643D92F}
|
||||||
{ABDF8471-2FAB-4930-B016-7DD3E48AE6B8} = {CEC468DB-CC49-47D3-9E3E-1CC9530C3CE7}
|
{ABDF8471-2FAB-4930-B016-7DD3E48AE6B8} = {CEC468DB-CC49-47D3-9E3E-1CC9530C3CE7}
|
||||||
{960A833F-C195-4D1D-AD4F-D00B57067181} = {46E3711F-18BD-4004-AF53-EA4D8643D92F}
|
{960A833F-C195-4D1D-AD4F-D00B57067181} = {46E3711F-18BD-4004-AF53-EA4D8643D92F}
|
||||||
|
{335686F5-65B8-4D66-AAA8-C5032906451D} = {CEC468DB-CC49-47D3-9E3E-1CC9530C3CE7}
|
||||||
|
{83D42D72-FF67-4577-8280-2ABD5B20F985} = {46E3711F-18BD-4004-AF53-EA4D8643D92F}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{23383776-1F27-4B5D-8C7C-57BFF75FA473}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{23383776-1F27-4B5D-8C7C-57BFF75FA473}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
@@ -264,5 +270,13 @@ Global
|
|||||||
{960A833F-C195-4D1D-AD4F-D00B57067181}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{960A833F-C195-4D1D-AD4F-D00B57067181}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{960A833F-C195-4D1D-AD4F-D00B57067181}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{960A833F-C195-4D1D-AD4F-D00B57067181}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{960A833F-C195-4D1D-AD4F-D00B57067181}.Release|Any CPU.Build.0 = Release|Any CPU
|
{960A833F-C195-4D1D-AD4F-D00B57067181}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{335686F5-65B8-4D66-AAA8-C5032906451D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{335686F5-65B8-4D66-AAA8-C5032906451D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{335686F5-65B8-4D66-AAA8-C5032906451D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{335686F5-65B8-4D66-AAA8-C5032906451D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{83D42D72-FF67-4577-8280-2ABD5B20F985}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{83D42D72-FF67-4577-8280-2ABD5B20F985}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{83D42D72-FF67-4577-8280-2ABD5B20F985}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{83D42D72-FF67-4577-8280-2ABD5B20F985}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
Reference in New Issue
Block a user