mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
59 lines
No EOL
1.9 KiB
C#
59 lines
No EOL
1.9 KiB
C#
using Mapster;
|
|
using Microsoft.AspNet.OData;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
using Roadie.Library.Caching;
|
|
using Roadie.Library.Data;
|
|
using System;
|
|
using System.Linq;
|
|
using models = Roadie.Library.Models;
|
|
|
|
namespace Roadie.Api.Controllers
|
|
{
|
|
[Produces("application/json")]
|
|
[Route("artist")]
|
|
[ApiController]
|
|
[Authorize]
|
|
public class ArtistController : EntityControllerBase
|
|
{
|
|
public ArtistController(IRoadieDbContext RoadieDbContext, ILoggerFactory logger, ICacheManager cacheManager, IConfiguration configuration)
|
|
: base(RoadieDbContext, cacheManager, configuration)
|
|
{
|
|
this._logger = logger.CreateLogger("RoadieApi.Controllers.ArtistController");
|
|
}
|
|
|
|
[EnableQuery]
|
|
public IActionResult Get()
|
|
{
|
|
return Ok(this._RoadieDbContext.Artists.ProjectToType<models.Artist>());
|
|
}
|
|
|
|
[HttpGet("{id}")]
|
|
[ProducesResponseType(200)]
|
|
[ProducesResponseType(404)]
|
|
public IActionResult Get(Guid id)
|
|
{
|
|
var key = id.ToString();
|
|
var result = this._cacheManager.Get<models.Artist>(key, () =>
|
|
{
|
|
var d = this._RoadieDbContext.Artists
|
|
.Include(x => x.AssociatedArtists).Include("AssociatedArtists.AssociatedArtist")
|
|
.FirstOrDefault(x => x.RoadieId == id);
|
|
if (d != null)
|
|
{
|
|
// var info = d.AssociatedArtists.Adapt<models.AssociatedArtistInfo>();
|
|
return d.Adapt<models.Artist>();
|
|
}
|
|
return null;
|
|
}, key);
|
|
if (result == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
return Ok(result);
|
|
}
|
|
}
|
|
} |