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 pathGuidelineAssetsController.php
131 lines (105 loc) · 3.37 KB
/
GuidelineAssetsController.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
<?php
namespace presentator\api\controllers;
use Yii;
use yii\web\UploadedFile;
use yii\web\NotFoundHttpException;
use presentator\api\models\GuidelineAsset;
use presentator\api\models\forms\GuidelineAssetSearch;
use presentator\api\models\forms\GuidelineAssetForm;
/**
* GuidelineAssets rest API controller.
*
* @author Gani Georgiev <[email protected]>
*/
class GuidelineAssetsController extends ApiController
{
/**
* Returns paginated list with guideline colors.
*
* @return mixed
*/
public function actionIndex()
{
$user = Yii::$app->user->identity;
$searchModel = new GuidelineAssetSearch($user->findGuidelineAssetsQuery());
$dataProvider = $searchModel->search(Yii::$app->request->get());
return $dataProvider;
}
/**
* Creates a new `GuidelineAsset` model.
*
* @return mixed
*/
public function actionCreate()
{
$user = Yii::$app->user->identity;
$scenario = Yii::$app->request->post('type') == GuidelineAsset::TYPE['FILE'] ?
GuidelineAssetForm::SCENARIO_FILE_CREATE : GuidelineAssetForm::SCENARIO_COLOR_CREATE;
$model = new GuidelineAssetForm($user, null, ['scenario' => $scenario]);
$model->load(Yii::$app->request->post());
$model->file = UploadedFile::getInstanceByName('file');
if ($asset = $model->save()) {
return $asset;
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Updates an existing `GuidelineAsset` model data.
*
* @param integer $id ID of the guideline asset to update.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionUpdate($id)
{
$user = Yii::$app->user->identity;
$asset = $user->findGuidelineAssetById($id);
if (!$asset) {
throw new NotFoundHttpException();
}
$scenario = $asset->type == GuidelineAsset::TYPE['FILE'] ?
GuidelineAssetForm::SCENARIO_FILE_UPDATE : GuidelineAssetForm::SCENARIO_COLOR_UPDATE;
$model = new GuidelineAssetForm($user, $asset, ['scenario' => $scenario]);
$model->load(Yii::$app->request->post());
if ($asset = $model->save()) {
return $asset;
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Returns an existing `GuidelineAsset` model for detailed view.
*
* @param integer $id ID of the guideline asset to view.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionView($id)
{
$user = Yii::$app->user->identity;
$asset = $user->findGuidelineAssetById($id);
if (!$asset) {
throw new NotFoundHttpException();
}
return $asset;
}
/**
* Deletes an existing `GuidelineAsset` model by its id.
*
* @param integer $id ID of the guideline asset to delete.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionDelete($id)
{
$user = Yii::$app->user->identity;
$asset = $user->findGuidelineAssetById($id);
if (!$asset) {
throw new NotFoundHttpException();
}
if ($asset->delete()) {
Yii::$app->response->statusCode = 204;
return null;
}
return $this->sendErrorResponse();
}
}