This repository was archived by the owner on Jan 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScreenCommentsController.php
172 lines (140 loc) · 4.3 KB
/
ScreenCommentsController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
namespace presentator\api\controllers;
use Yii;
use yii\web\NotFoundHttpException;
use presentator\api\models\ScreenComment;
use presentator\api\models\forms\ScreenCommentSearch;
use presentator\api\models\forms\ScreenCommentForm;
use presentator\api\data\ArrayDataProvider;
/**
* ScreenComments rest API controller.
*
* @author Gani Georgiev <[email protected]>
*/
class ScreenCommentsController extends ApiController
{
/**
* Returns paginated list with screen comments.
*
* @return mixed
*/
public function actionIndex()
{
$user = Yii::$app->user->identity;
$searchModel = new ScreenCommentSearch($user->findScreenCommentsQuery());
$dataProvider = $searchModel->search(Yii::$app->request->get());
return $dataProvider;
}
/**
* Creates a new `ScreenComment` model.
*
* @return mixed
*/
public function actionCreate()
{
$user = Yii::$app->user->identity;
$model = new ScreenCommentForm($user, null, [
'scenario' => ScreenCommentForm::SCENARIO_CREATE,
]);
$model->load(Yii::$app->request->post());
if ($comment = $model->save()) {
return $comment->toArray([], ['fromUser']);
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Updates an existing `ScreenComment` model data.
*
* @param integer $id ID of the comment to update.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionUpdate($id)
{
$user = Yii::$app->user->identity;
$comment = $user->findScreenCommentById($id);
if (!$comment) {
throw new NotFoundHttpException();
}
$model = new ScreenCommentForm($user, $comment, [
'scenario' => ScreenCommentForm::SCENARIO_UPDATE,
]);
$model->load(Yii::$app->request->post());
if ($comment = $model->save()) {
return $comment->toArray([], ['fromUser']);
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Returns an existing `ScreenComment` model for detailed view.
*
* @param integer $id ID of the comment to view.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionView($id)
{
$user = Yii::$app->user->identity;
$comment = $user->findScreenCommentById($id);
if (!$comment) {
throw new NotFoundHttpException();
}
return $comment->toArray([], ['fromUser']);
}
/**
* Deletes an existing `ScreenComment` model by its id.
*
* @param integer $id ID of the comment to delete.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionDelete($id)
{
$user = Yii::$app->user->identity;
$comment = $user->findScreenCommentById($id);
if (!$comment) {
throw new NotFoundHttpException();
}
if ($comment->delete()) {
Yii::$app->response->statusCode = 204;
return null;
}
return $this->sendErrorResponse();
}
/**
* Returns array with all unread screen comments related to the authenticated user.
*
* @return mixed
*/
public function actionListUnread()
{
$user = Yii::$app->user->identity;
$comments = $user->findUnreadScreenComments();
ScreenComment::eagerLoad($comments, ['fromUser', 'screen.prototype.project']);
return new ArrayDataProvider([
'allModels' => $comments,
'pagination' => false,
'expand' => ['fromUser', 'metaData'],
]);
}
/**
* Marks a single comment as read for the authenticated in user (if notification was sent).
*
* @param integer $id ID of the comment to mark.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionRead($id)
{
$user = Yii::$app->user->identity;
$comment = $user->findScreenCommentById($id);
if (!$comment) {
throw new NotFoundHttpException();
}
if ($comment->markAsReadForUser($user)) {
Yii::$app->response->statusCode = 204;
return null;
}
return $this->sendErrorResponse();
}
}