guild/frontend/modules/api/controllers/SkillsController.php

52 lines
1.2 KiB
PHP
Raw Normal View History

2021-06-09 18:06:13 +03:00
<?php
namespace frontend\modules\api\controllers;
2021-06-14 17:26:05 +03:00
use common\behaviors\GsCors;
2021-06-09 18:06:13 +03:00
use common\models\Options;
use yii\filters\AccessControl;
2021-08-05 18:52:07 +03:00
use yii\filters\auth\CompositeAuth;
use yii\filters\auth\HttpBearerAuth;
2021-08-05 14:08:00 +03:00
use yii\filters\auth\QueryParamAuth;
2021-11-29 18:21:50 +03:00
use yii\filters\ContentNegotiator;
use yii\web\Response;
2021-06-09 18:06:13 +03:00
2021-11-29 18:21:50 +03:00
class SkillsController extends ApiController
2021-06-09 18:06:13 +03:00
{
public function behaviors()
{
2021-11-29 18:21:50 +03:00
$parent = parent::behaviors();
$b = [
2021-06-09 18:06:13 +03:00
[
2021-11-29 18:21:50 +03:00
'class' => ContentNegotiator::className(),
2021-06-09 18:06:13 +03:00
'formats' => [
2021-11-29 18:21:50 +03:00
'application/json' => Response::FORMAT_JSON,
2021-06-09 18:06:13 +03:00
],
],
2021-08-05 18:52:07 +03:00
'authenticator' => [
'class' => CompositeAuth::class,
'authMethods' => [
HttpBearerAuth::class,
],
]
2021-06-09 18:06:13 +03:00
];
2021-11-29 18:21:50 +03:00
return array_merge($parent, $b);
2021-06-09 18:06:13 +03:00
}
public function actionIndex()
{
return ['some' => 'rrr'];
}
public function actionSkillsOnMainPage()
{
$data = \common\models\Options::getValue('skills_on_main_page_to_front');
if ($data) $data = json_decode($data, true);
else return [];
return $data;
}
}