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 pathHotspotsController.php
121 lines (98 loc) · 2.73 KB
/
HotspotsController.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
<?php
namespace presentator\api\controllers;
use Yii;
use yii\web\NotFoundHttpException;
use presentator\api\models\forms\HotspotSearch;
use presentator\api\models\forms\HotspotForm;
/**
* Hotspots rest API controller.
*
* @author Gani Georgiev <[email protected]>
*/
class HotspotsController extends ApiController
{
/**
* Returns paginated list with `Hotspot` models.
*
* @return mixed
*/
public function actionIndex()
{
$user = Yii::$app->user->identity;
$searchModel = new HotspotSearch($user->findHotspotsQuery());
$dataProvider = $searchModel->search(Yii::$app->request->get());
return $dataProvider;
}
/**
* Creates a new `Hotspot` model.
*
* @return mixed
*/
public function actionCreate()
{
$user = Yii::$app->user->identity;
$model = new HotspotForm($user);
$model->load(Yii::$app->request->post());
if ($hotspot = $model->save()) {
return $hotspot;
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Updates an existing `Hotspot` model data.
*
* @param integer $id ID of the hotspot to update.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionUpdate($id)
{
$user = Yii::$app->user->identity;
$hotspot = $user->findHotspotById($id);
if (!$hotspot) {
throw new NotFoundHttpException();
}
$model = new HotspotForm($user, $hotspot);
$model->load(Yii::$app->request->post());
if ($hotspot = $model->save()) {
return $hotspot;
}
return $this->sendErrorResponse($model->getFirstErrors());
}
/**
* Returns an existing `Hotspot` model for detailed view.
*
* @param integer $id ID of the hotspot to view.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionView($id)
{
$user = Yii::$app->user->identity;
$hotspot = $user->findHotspotById($id);
if (!$hotspot) {
throw new NotFoundHttpException();
}
return $hotspot;
}
/**
* Deletes an existing `Hotspot` model by its id.
*
* @param integer $id ID of the hotspot to delete.
* @return mixed
* @throws NotFoundHttpException
*/
public function actionDelete($id)
{
$user = Yii::$app->user->identity;
$hotspot = $user->findHotspotById($id);
if (!$hotspot) {
throw new NotFoundHttpException();
}
if ($hotspot->delete()) {
Yii::$app->response->statusCode = 204;
return null;
}
return $this->sendErrorResponse();
}
}