aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/PostController.cs
diff options
context:
space:
mode:
authorVictor S <57849063+transtrike@users.noreply.github.com>2021-02-05 10:54:49 -0800
committerGitHub <noreply@github.com>2021-02-05 10:54:49 -0800
commitf4a70c6430db923af9fa9958a11c2d6612cb52cc (patch)
treeca0ea403ba5500df20bc8854ec50529a25c64245 /src/DevHive.Web/Controllers/PostController.cs
parent1ccdefdac025b1b986ad2bd0bc3eda7505d6e7c3 (diff)
parent2269b5aa6c8d3dcb407c34fa256200bdc573585a (diff)
downloadDevHive-0.1.tar
DevHive-0.1.tar.gz
DevHive-0.1.zip
Merge pull request #18 from Team-Kaleidoscope/devv0.1
First stage: Complete. Awaiting further progress...
Diffstat (limited to 'src/DevHive.Web/Controllers/PostController.cs')
-rw-r--r--src/DevHive.Web/Controllers/PostController.cs89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/DevHive.Web/Controllers/PostController.cs b/src/DevHive.Web/Controllers/PostController.cs
new file mode 100644
index 0000000..d3fdbf6
--- /dev/null
+++ b/src/DevHive.Web/Controllers/PostController.cs
@@ -0,0 +1,89 @@
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Mvc;
+using AutoMapper;
+using System;
+using DevHive.Web.Models.Post;
+using DevHive.Services.Models.Post;
+using Microsoft.AspNetCore.Authorization;
+using DevHive.Services.Interfaces;
+
+namespace DevHive.Web.Controllers
+{
+ [ApiController]
+ [Route("/api/[controller]")]
+ [Authorize(Roles = "User,Admin")]
+ public class PostController
+ {
+ private readonly IPostService _postService;
+ private readonly IMapper _postMapper;
+
+ public PostController(IPostService postService, IMapper postMapper)
+ {
+ this._postService = postService;
+ this._postMapper = postMapper;
+ }
+
+ #region Create
+ [HttpPost]
+ public async Task<IActionResult> Create(Guid userId, [FromForm] CreatePostWebModel createPostWebModel, [FromHeader] string authorization)
+ {
+ if (!await this._postService.ValidateJwtForCreating(userId, authorization))
+ return new UnauthorizedResult();
+
+ CreatePostServiceModel createPostServiceModel =
+ this._postMapper.Map<CreatePostServiceModel>(createPostWebModel);
+ createPostServiceModel.CreatorId = userId;
+
+ Guid id = await this._postService.CreatePost(createPostServiceModel);
+
+ return id == Guid.Empty ?
+ new BadRequestObjectResult("Could not create post!") :
+ new OkObjectResult(new { Id = id });
+ }
+ #endregion
+
+ #region Read
+ [HttpGet]
+ [AllowAnonymous]
+ public async Task<IActionResult> GetById(Guid id)
+ {
+ ReadPostServiceModel postServiceModel = await this._postService.GetPostById(id);
+ ReadPostWebModel postWebModel = this._postMapper.Map<ReadPostWebModel>(postServiceModel);
+
+ return new OkObjectResult(postWebModel);
+ }
+ #endregion
+
+ #region Update
+ [HttpPut]
+ public async Task<IActionResult> Update(Guid userId, [FromForm] UpdatePostWebModel updatePostWebModel, [FromHeader] string authorization)
+ {
+ if (!await this._postService.ValidateJwtForPost(updatePostWebModel.PostId, authorization))
+ return new UnauthorizedResult();
+
+ UpdatePostServiceModel updatePostServiceModel =
+ this._postMapper.Map<UpdatePostServiceModel>(updatePostWebModel);
+ updatePostServiceModel.CreatorId = userId;
+
+ Guid id = await this._postService.UpdatePost(updatePostServiceModel);
+
+ return id == Guid.Empty ?
+ new BadRequestObjectResult("Could not update post!") :
+ new OkObjectResult(new { Id = id });
+ }
+ #endregion
+
+ #region Delete
+ [HttpDelete]
+ public async Task<IActionResult> Delete(Guid id, [FromHeader] string authorization)
+ {
+ if (!await this._postService.ValidateJwtForPost(id, authorization))
+ return new UnauthorizedResult();
+
+ return await this._postService.DeletePost(id) ?
+ new OkResult() :
+ new BadRequestObjectResult("Could not delete Post");
+ }
+ #endregion
+ }
+}