2018-11-10 18:03:54 +00:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2018-11-10 23:26:04 +00:00
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
2018-11-02 21:04:49 +00:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2018-11-06 21:55:31 +00:00
|
|
|
|
using Roadie.Api.Services;
|
2018-11-02 21:04:49 +00:00
|
|
|
|
using Roadie.Library.Caching;
|
2018-11-10 23:26:04 +00:00
|
|
|
|
using Roadie.Library.Identity;
|
2018-11-07 04:33:22 +00:00
|
|
|
|
using Roadie.Library.Models;
|
2018-11-02 21:04:49 +00:00
|
|
|
|
using System;
|
2018-11-10 18:03:54 +00:00
|
|
|
|
using System.Net;
|
2018-11-06 21:55:31 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2018-11-02 21:04:49 +00:00
|
|
|
|
|
|
|
|
|
namespace Roadie.Api.Controllers
|
|
|
|
|
{
|
|
|
|
|
[Produces("application/json")]
|
|
|
|
|
[Route("artist")]
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Authorize]
|
|
|
|
|
public class ArtistController : EntityControllerBase
|
|
|
|
|
{
|
2018-11-10 18:03:54 +00:00
|
|
|
|
private IArtistService ArtistService { get; }
|
|
|
|
|
|
2018-11-10 23:26:04 +00:00
|
|
|
|
private UserManager<ApplicationUser> UserManager { get; }
|
|
|
|
|
|
|
|
|
|
public ArtistController(IArtistService artistService, ILoggerFactory logger, ICacheManager cacheManager, IConfiguration configuration, UserManager<ApplicationUser> userManager)
|
2018-11-07 04:33:22 +00:00
|
|
|
|
: base(cacheManager, configuration)
|
2018-11-02 21:04:49 +00:00
|
|
|
|
{
|
2018-11-05 00:08:37 +00:00
|
|
|
|
this._logger = logger.CreateLogger("RoadieApi.Controllers.ArtistController");
|
2018-11-10 18:03:54 +00:00
|
|
|
|
this.ArtistService = artistService;
|
2018-11-10 23:26:04 +00:00
|
|
|
|
this.UserManager = userManager;
|
2018-11-02 21:04:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 04:33:22 +00:00
|
|
|
|
//[EnableQuery]
|
|
|
|
|
//public IActionResult Get()
|
|
|
|
|
//{
|
|
|
|
|
// return Ok(this._RoadieDbContext.Artists.ProjectToType<models.Artist>());
|
|
|
|
|
//}
|
2018-11-02 21:04:49 +00:00
|
|
|
|
|
|
|
|
|
[HttpGet("{id}")]
|
|
|
|
|
[ProducesResponseType(200)]
|
|
|
|
|
[ProducesResponseType(404)]
|
2018-11-10 18:03:54 +00:00
|
|
|
|
public async Task<ActionResult<Artist>> Get(Guid id, string inc = null)
|
2018-11-02 21:04:49 +00:00
|
|
|
|
{
|
2018-11-10 18:03:54 +00:00
|
|
|
|
var result = await this.ArtistService.ArtistById(null, id, (inc ?? Artist.DefaultIncludes).ToLower().Split(","));
|
2018-11-07 04:33:22 +00:00
|
|
|
|
if (result == null)
|
|
|
|
|
{
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
2018-11-10 18:03:54 +00:00
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return StatusCode((int)HttpStatusCode.InternalServerError);
|
|
|
|
|
}
|
2018-11-02 21:04:49 +00:00
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|