mirror of
https://github.com/sphildreth/roadie
synced 2025-02-16 21:18:26 +00:00
148 lines
No EOL
5.4 KiB
C#
148 lines
No EOL
5.4 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
using Roadie.Api.Services;
|
|
using Roadie.Library.Caching;
|
|
using Roadie.Library.Identity;
|
|
using Roadie.Library.Models.Pagination;
|
|
using System;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
using models = Roadie.Library.Models;
|
|
|
|
namespace Roadie.Api.Controllers
|
|
{
|
|
[Produces("application/json")]
|
|
[Route("artists")]
|
|
[ApiController]
|
|
[Authorize]
|
|
public class ArtistController : EntityControllerBase
|
|
{
|
|
private IArtistService ArtistService { get; }
|
|
|
|
public ArtistController(IArtistService artistService, ILoggerFactory logger, ICacheManager cacheManager, IConfiguration configuration, UserManager<ApplicationUser> userManager)
|
|
: base(cacheManager, configuration, userManager)
|
|
{
|
|
this.Logger = logger.CreateLogger("RoadieApi.Controllers.ArtistController");
|
|
this.ArtistService = artistService;
|
|
}
|
|
|
|
[HttpGet("{id}")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(204)]
|
|
[ProducesResponseType(404)]
|
|
public async Task<IActionResult> Get(Guid id, string inc = null)
|
|
{
|
|
var user = await this.CurrentUserModel();
|
|
var result = await this.CacheManager.GetAsync($"urn:artist_by_id_for_user:{ id }: { user?.Id }", async () =>
|
|
{
|
|
return await this.ArtistService.ById(user, id, (inc ?? models.Artist.DefaultIncludes).ToLower().Split(","));
|
|
}, ControllerCacheRegionUrn);
|
|
if (result == null || result.IsNotFoundResult)
|
|
{
|
|
return NotFound();
|
|
}
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
|
|
[HttpGet]
|
|
[ProducesResponseType(200)]
|
|
public async Task<IActionResult> List([FromQuery]PagedRequest request, string inc, bool? doRandomize = false)
|
|
{
|
|
var result = await this.ArtistService.List(roadieUser: await this.CurrentUserModel(),
|
|
request: request,
|
|
doRandomize: doRandomize ?? false,
|
|
onlyIncludeWithReleases: false);
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
|
|
[HttpPost("mergeArtists/{artistToMergeId}/{artistToMergeIntoId}")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(404)]
|
|
[Authorize(Policy = "Editor")]
|
|
public async Task<IActionResult> MergeArtists(Guid artistToMergeId, Guid artistToMergeIntoId)
|
|
{
|
|
var result = await this.ArtistService.MergeArtists(await this.CurrentUserModel(), artistToMergeId, artistToMergeIntoId);
|
|
if (result == null || result.IsNotFoundResult)
|
|
{
|
|
return NotFound();
|
|
}
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
|
|
|
|
[HttpPost("setImageByUrl/{id}/{imageUrl}")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(404)]
|
|
[Authorize(Policy = "Editor")]
|
|
public async Task<IActionResult> SetArtistImageByUrl(Guid id, string imageUrl)
|
|
{
|
|
var result = await this.ArtistService.SetReleaseImageByUrl(await this.CurrentUserModel(), id, HttpUtility.UrlDecode(imageUrl));
|
|
if (result == null || result.IsNotFoundResult)
|
|
{
|
|
return NotFound();
|
|
}
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
|
|
[HttpPost("uploadImage/{id}")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(404)]
|
|
[Authorize(Policy = "Editor")]
|
|
public async Task<IActionResult> UploadImage(Guid id, IFormFile file)
|
|
{
|
|
var result = await this.ArtistService.UploadArtistImage(await this.CurrentUserModel(), id, file);
|
|
if (result == null || result.IsNotFoundResult)
|
|
{
|
|
return NotFound();
|
|
}
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
|
|
[HttpPost("edit")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(404)]
|
|
[Authorize(Policy = "Editor")]
|
|
public async Task<IActionResult> Update(models.Artist artist)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return BadRequest(ModelState);
|
|
}
|
|
var result = await this.ArtistService.UpdateArtist(await this.CurrentUserModel(), artist);
|
|
if (result == null || result.IsNotFoundResult)
|
|
{
|
|
return NotFound();
|
|
}
|
|
if (!result.IsSuccess)
|
|
{
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
}
|
|
return Ok(result);
|
|
}
|
|
}
|
|
} |