forked from Insolita/yii2-fractal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefaultController.php
executable file
·81 lines (66 loc) · 1.74 KB
/
DefaultController.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
<?php
namespace app\controllers;
use app\models\Category;
use app\models\User;
use insolita\fractal\DefaultTransformer;
use insolita\fractal\JsonApiController;
use insolita\fractal\JsonApiError;
use League\Fractal\Resource\Item;
use Yii;
use yii\base\NotSupportedException;
use yii\helpers\VarDumper;
use yii\web\ForbiddenHttpException;
use function json_decode;
class DefaultController extends JsonApiController
{
public function behaviors()
{
$behaviors = parent::behaviors();
return $behaviors;
}
public function actionIndex()
{
return new Item(['id' => $this->action->id, 'content' => 'hello world!'], new DefaultTransformer(), $this->id);
}
public function actionArray()
{
return ['foo' => 'bar', 'bar' => 'baz'];
}
public function actionString()
{
return 'some string output';
}
public function actionNull()
{
return null;
}
public function actionEmpty()
{
\str_replace('foo', 'bar', 'foobar');
}
public function actionModel()
{
return User::findOne(1);
}
public function actionJsonError()
{
return new JsonApiError(['title' => 'custom error', 'code' => 422, 'status' => 422, 'detail' => 'Just for test']);
}
public function actionForbidden()
{
throw new ForbiddenHttpException('Force thrown exception', 403);
}
public function actionException()
{
throw new NotSupportedException('Force thrown exception', 501);
}
public function actionFatal()
{
return json_decode(['wrong']);
}
public function actionMedia()
{
Yii::warning(VarDumper::dumpAsString(Yii::$app->request->getRawBody()));
return null;
}
}