Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tsi1-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rodrigo Sastre Marotta
tsi1-backend
Merge requests
!6
remove https and docker
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
remove https and docker
feature/remove-https
into
master
Overview
0
Commits
3
Pipelines
0
Changes
51
Merged
Lucca Santangelo Dodera
requested to merge
feature/remove-https
into
master
4 years ago
Overview
0
Commits
3
Pipelines
0
Changes
51
Expand
0
0
Merge request reports
Viewing commit
0e77295d
Prev
Next
Show latest version
51 files
+
2485
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
51
Search (e.g. *.vue) (Ctrl+P)
0e77295d
merge from master
· 0e77295d
Lucca Santangelo
authored
4 years ago
Tsi1.Api/Tsi1.Api/Controllers/ForumController.cs
0 → 100644
+
84
−
0
Options
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Threading.Tasks
;
using
Microsoft.AspNetCore.Authorization
;
using
Microsoft.AspNetCore.Http
;
using
Microsoft.AspNetCore.Mvc
;
using
Tsi1.BusinessLayer.Dtos
;
using
Tsi1.BusinessLayer.Helpers
;
using
Tsi1.BusinessLayer.Interfaces
;
namespace
Tsi1.Api.Controllers
{
[
Route
(
"api/[controller]"
)]
[
ApiController
]
public
class
ForumController
:
ControllerBase
{
private
readonly
IForumService
_forumService
;
public
ForumController
(
IForumService
forumService
)
{
_forumService
=
forumService
;
}
[
Authorize
(
Roles
=
UserTypes
.
Student
+
", "
+
UserTypes
.
Professor
)]
[
HttpGet
(
"GetForums/{courseId}"
)]
public
async
Task
<
IActionResult
>
GetForums
(
int
courseId
)
{
var
result
=
await
_forumService
.
GetForums
(
courseId
);
if
(
result
.
HasError
)
{
return
BadRequest
(
result
.
Message
);
}
return
Ok
(
result
.
Data
);
}
[
Authorize
(
UserTypes
.
Professor
)]
[
HttpPost
(
"Create"
)]
public
async
Task
<
IActionResult
>
Create
(
ForumCreateDto
newForum
)
{
var
result
=
await
_forumService
.
Create
(
newForum
);
if
(
result
.
HasError
)
{
return
BadRequest
(
result
.
Message
);
}
return
Ok
();
}
[
Authorize
(
UserTypes
.
Professor
)]
[
HttpDelete
(
"Delete/{forumId}"
)]
public
async
Task
<
IActionResult
>
Delete
(
int
forumId
)
{
var
result
=
await
_forumService
.
Delete
(
forumId
);
if
(
result
.
HasError
)
{
return
BadRequest
(
result
.
Message
);
}
return
Ok
();
}
[
Authorize
(
Roles
=
UserTypes
.
Student
)]
[
HttpGet
(
"Subscribe/{forumId}"
)]
public
async
Task
<
IActionResult
>
Subscribe
(
int
forumId
)
{
var
userId
=
int
.
Parse
(
HttpContext
.
User
.
Claims
.
FirstOrDefault
(
x
=>
x
.
Type
==
"Id"
).
Value
);
var
result
=
await
_forumService
.
Subscribe
(
forumId
,
userId
);
if
(
result
.
HasError
)
{
return
BadRequest
(
result
.
Message
);
}
return
Ok
();
}
}
}
Loading