using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Routing; using Microsoft.Extensions.Logging; using Microsoft.AspNetCore.Authorization; using Microsoft.EntityFrameworkCore; using AyaNova.Models; using AyaNova.Api.ControllerHelpers; using AyaNova.Biz; using System.Threading.Tasks; namespace AyaNova.Api.Controllers { [ApiController] [ApiVersion("8.0")] [Route("api/v{version:apiVersion}/global-ops-notification-setting")] [Produces("application/json")] [Authorize] public class GlobalOpsNotificationSettingsController : ControllerBase { private readonly AyContext ct; private readonly ILogger log; private readonly ApiServerState serverState; /// /// ctor /// /// /// /// public GlobalOpsNotificationSettingsController(AyContext dbcontext, ILogger logger, ApiServerState apiServerState) { ct = dbcontext; log = logger; serverState = apiServerState; } /// /// Get GlobalOpsNotificationSettings /// /// Global ops Notification settings object [HttpGet] public async Task GetGlobalOpsNotificationSettings() { if (serverState.IsClosed) return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason)); //Instantiate the business object handler GlobalOpsNotificationSettingsBiz biz = GlobalOpsNotificationSettingsBiz.GetBiz(ct, HttpContext); if (!Authorized.HasReadFullRole(HttpContext.Items, biz.BizType)) return StatusCode(403, new ApiNotAuthorizedResponse()); if (!ModelState.IsValid) return BadRequest(new ApiErrorResponse(ModelState)); var o = await biz.GetAsync(); if (o == null) return NotFound(new ApiErrorResponse(ApiErrorCode.NOT_FOUND)); return Ok(ApiOkResponse.Response(o)); } /// /// PUT Global ops Notification settings /// /// /// New concurrency token [HttpPut] public async Task ReplaceGlobalOpsNotificationSettings([FromBody] GlobalOpsNotificationSettings updatedObject) { if (serverState.IsClosed) return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason)); if (!ModelState.IsValid) return BadRequest(new ApiErrorResponse(ModelState)); GlobalOpsNotificationSettingsBiz biz = GlobalOpsNotificationSettingsBiz.GetBiz(ct, HttpContext); if (!Authorized.HasModifyRole(HttpContext.Items, biz.BizType)) return StatusCode(403, new ApiNotAuthorizedResponse()); var o = await biz.PutAsync(updatedObject); if (o == null) return StatusCode(409, new ApiErrorResponse(biz.Errors)); return Ok(ApiOkResponse.Response(new { Concurrency = o.Concurrency })); } /// /// Test SMTP mail delivery /// /// /// Status result [HttpPost("test-smtp-settings/{toAddress}")] [Authorize] public async Task PostTestSmtpDelivery([FromRoute] string toAddress) { if (serverState.IsClosed) return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason)); if (!Authorized.HasModifyRole(HttpContext.Items, AyaType.OpsNotificationSettings))//technically maybe this could be wider open, but for now keeping as locked down return StatusCode(403, new ApiNotAuthorizedResponse()); var res = await CoreJobNotify.TestSMTPDelivery(toAddress); if(res!="ok"){ return StatusCode(500, new ApiErrorResponse(ApiErrorCode.API_SERVER_ERROR, null, res)); } return Ok(ApiOkResponse.Response(res)); } // /// // /// Get Client app relevant GlobalOpsNotificationSettings // /// // /// Global ops Notification settings object // [HttpGet("client")] // public async Task GetClientGlobalOpsNotificationSettings() // { // //NOTE: currently this looks like a dupe of get above and it is // //but it's kept here in case want to return a subset of the settings only to client users // //where some internal server only stuff might not be desired to send to user // if (serverState.IsClosed) // return StatusCode(503, new ApiErrorResponse(serverState.ApiErrorCode, null, serverState.Reason)); // GlobalOpsNotificationSettingsBiz biz = GlobalOpsNotificationSettingsBiz.GetBiz(ct, HttpContext); // //this route is available to Ops role user only // if (!Authorized.HasReadFullRole(HttpContext.Items, biz.BizType)) // return StatusCode(403, new ApiNotAuthorizedResponse()); // if (!ModelState.IsValid) // return BadRequest(new ApiErrorResponse(ModelState)); // var o = await biz.GetAsync(); // if (o == null) // return NotFound(new ApiErrorResponse(ApiErrorCode.NOT_FOUND)); // return Ok(ApiOkResponse.Response(o)); // } }//eoc }//ens