This repository has been 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 pathProjectsController.php
274 lines (223 loc) · 7.45 KB
/
ProjectsController.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<?php
namespace presentator\api\controllers;
use Yii;
use yii\web\NotFoundHttpException;
use yii\helpers\ArrayHelper;
use presentator\api\models\User;
use presentator\api\models\forms\ProjectSearch;
use presentator\api\models\forms\ProjectForm;
/**
* Projects rest API controller.
*
* @author Gani Georgiev <[email protected]>
*/
class ProjectsController extends ApiController
{
/**
* Returns paginated list with `Project` models.
*
* @return mixed
*/
public function actionIndex()
{
$user = Yii::$app->user->identity;
$searchModel = new ProjectSearch($user->findProjectsQuery());
$dataProvider = $searchModel->search(Yii::$app->request->get());
return $dataProvider;
}
/**
* Creates a new `Project` model owned by the authenticated user.
*
* @return mixed
*/
public function actionCreate()
{
$user = Yii::$app->user->identity;
$model = new ProjectForm($user);
$model->load(Yii::$app->request->post());
if ($project = $model->save()) {
return $project->toArray([], ['featuredScreen']);
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Updates an existing `Project` model data.
*
* @param integer $id ID of the project to update.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionUpdate($id)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
$model = new ProjectForm($user, $project);
$model->load(Yii::$app->request->post());
if ($project = $model->save()) {
return $project->toArray([], ['featuredScreen']);
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Returns an existing `Project` model for detailed view.
*
* @param integer $id ID of the project to view.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionView($id)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
return $project->toArray([], ['featuredScreen']);
}
/**
* Deletes an existing `Project` model by its id.
*
* @param integer $id ID of the project to delete.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionDelete($id)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
if ($project->delete()) {
Yii::$app->response->statusCode = 204;
return null;
}
return $this->sendErrorResponse();
}
/**
* Returns list with all project's collaborators - linked users and screen commentators (including guests).
*
* @param integer $id ID of the project to return collaborators for.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionListCollaborators($id)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
return $project->findAllCollaborators();
}
/**
* Searches for new users to link (aka. adding new project admins).
*
* @param integer $id ID of the project to search users for.
* @param string $search Search term to apply to the search query.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionSearchUsers($id, $search)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
if (is_string($search) && strlen($search) >= 2) {
$currentUserIds = ArrayHelper::getColumn($project->userProjectRels, 'userId');
$users = User::searchUsers($search, $currentUserIds, Yii::$app->params['looseProjectUsersSearch']);
return ArrayHelper::toArray($users, [
User::class => ['id', 'email', 'firstName', 'lastName', 'avatar'],
]);
}
return [];
}
/**
* Returns list with all linked project users.
*
* @param integer $id Project ID.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionListUsers($id)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException();
}
return ArrayHelper::toArray($project->users, [
User::class => ['id', 'email', 'firstName', 'lastName', 'avatar'],
]);
}
/**
* Links an user to a project.
*
* @param integer $id ID of the project to link user to.
* @param integer $userId ID of the user to link.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionLinkUser($id, $userId)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException('The requested project does not exist or you do not have access to.');
}
$userToLink = User::findById($userId);
if (!$userToLink) {
throw new NotFoundHttpException('The user to link does not exist or is inactive.');
}
try {
if (!$userToLink->isLinkedToProject($project)) {
$project->linkOnce('users', $userToLink);
$userToLink->sendLinkedToProjectEmail($project);
}
Yii::$app->response->statusCode = 204;
return null;
} catch (\Exception | \Throwable $e) {
Yii::error($e->getMessage());
}
return $this->sendErrorResponse();
}
/**
* Unlinks an user from a project.
*
* @param integer $id ID of the project to unlink user from.
* @param integer $userId ID of the user to unlink.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionUnlinkUser($id, $userId)
{
$user = Yii::$app->user->identity;
$project = $user->findProjectById($id);
if (!$project) {
throw new NotFoundHttpException('The requested project does not exist or you do not have access to.');
}
$userToUnlink = User::findById($userId);
if (!$userToUnlink) {
throw new NotFoundHttpException('The user to unlink does not exist or is inactive.');
}
if (!$user->isSuperUser() && count($project->userProjectRels) == 1) {
return $this->sendErrorResponse([], Yii::t('app', 'You cannot unlink the only user of the project.'));
}
try {
if ($userToUnlink->isLinkedToProject($project)) {
$project->unlink('users', $userToUnlink, true);
$userToUnlink->sendUnlinkedFromProjectEmail($project);
}
Yii::$app->response->statusCode = 204;
return null;
} catch (\Exception | \Throwable $e) {
Yii::error($e->getMessage());
}
return $this->sendErrorResponse();
}
}