using Microsoft.AspNetCore.Authorization; 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; using Roadie.Library.Models.Pagination; using System; using System.Net; using System.Threading.Tasks; using models = Roadie.Library.Models; namespace Roadie.Api.Controllers { [Produces("application/json")] [Route("tracks")] [ApiController] [Authorize] public class TrackController : EntityControllerBase { private ITrackService TrackService { get; } public TrackController(ITrackService trackService, ILoggerFactory logger, ICacheManager cacheManager, IConfiguration configuration, UserManager userManager) : base(cacheManager, configuration, userManager) { this.Logger = logger.CreateLogger("RoadieApi.Controllers.TrackController"); this.TrackService = trackService; } //[EnableQuery] //public IActionResult Get() //{ // return Ok(this._RoadieDbContext.Tracks.ProjectToType()); //} [HttpGet("{id}")] [ProducesResponseType(200)] [ProducesResponseType(404)] public async Task Get(Guid id, string inc = null) { var result = await this.TrackService.ById(await this.CurrentUserModel(), id, (inc ?? models.Track.DefaultIncludes).ToLower().Split(",")); if (result == null || result.IsNotFoundResult) { return NotFound(); } if (!result.IsSuccess) { return StatusCode((int)HttpStatusCode.InternalServerError); } return Ok(result); } [HttpGet] [ProducesResponseType(200)] public async Task List([FromQuery]PagedRequest request, string inc) { var result = await this.TrackService.List(roadieUser: await this.CurrentUserModel(), request: request); if (!result.IsSuccess) { return StatusCode((int)HttpStatusCode.InternalServerError); } return Ok(result); } } }