guild/frontend/config/main.php

108 lines
3.5 KiB
PHP
Raw Normal View History

2018-10-11 11:15:09 +03:00
<?php
$params = array_merge(
require __DIR__ . '/../../common/config/params.php',
require __DIR__ . '/../../common/config/params-local.php',
require __DIR__ . '/params.php',
require __DIR__ . '/params-local.php'
);
return [
'id' => 'app-frontend',
2019-11-18 13:39:26 +03:00
'name' => 'Guild',
2018-10-11 11:15:09 +03:00
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'controllerNamespace' => 'frontend\controllers',
'modules' => [
2021-06-09 18:06:13 +03:00
'api' => [
2021-07-28 18:15:38 +03:00
'components' => [
'user' => [
'identityClass' => 'frontend\modules\api\models\User',
'enableAutoLogin' => true,
'enableSession' => false,
'class' => 'frontend\modules\api\models\User',
//'identityCookie' => ['name' => '_identity-api', 'httpOnly' => true],
],
],
2021-06-09 18:06:13 +03:00
'class' => 'frontend\modules\api\Api',
],
'access' => [
'class' => 'frontend\modules\access\Access',
],
'card' => [
'class' => 'frontend\modules\card\Card',
],
2020-02-05 12:08:01 +03:00
'reports' => [
'class' => 'frontend\modules\reports\Reports',
],
],
2018-10-11 11:15:09 +03:00
'components' => [
'response' => [
'formatters' => [
'json' => [
'class' => 'yii\web\JsonResponseFormatter',
'prettyPrint' => YII_DEBUG,
'encodeOptions' => JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE,
],
],
],
2018-10-11 11:15:09 +03:00
'request' => [
'csrfParam' => '_csrf-frontend',
2019-06-21 18:05:58 +03:00
'baseUrl' => '',
2021-07-28 18:15:38 +03:00
'parsers' => [
'application/json' => 'yii\web\JsonParser',
'application/xml' => 'yii\web\XmlParser',
2021-07-28 18:15:38 +03:00
],
2018-10-11 11:15:09 +03:00
],
'user' => [
'identityClass' => 'common\models\User',
'enableAutoLogin' => true,
2018-10-11 11:15:09 +03:00
'identityCookie' => ['name' => '_identity-frontend', 'httpOnly' => true],
],
'session' => [
// this is the name of the session cookie used for login on the frontend
'name' => 'advanced-frontend',
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
'site/index' => 'card/user-card/index',
2021-06-25 18:11:30 +03:00
'api/profile/<id:\d+>' => 'api/profile/index',
'api/reports/<id:\d+>' => 'api/reports/view',
'' => 'card/user-card/index',
2021-06-09 18:06:13 +03:00
['class' => 'yii\rest\UrlRule', 'controller' => 'skills'],
],
2018-10-11 11:15:09 +03:00
],
'telegram_bot' => [
'class' => 'kavalar\TelegramBotApi',
'templates' => [
'interview_request' =>
"Пришёл запрос на интервью.\n".
"Профиль: ~profile_id~\n".
"Телефон: ~phone~\n".
"Email: ~email~\n".
"Комментарий: ~comment~"
],
'telegramBotToken' => $params['telegramBotToken'],
2021-08-27 13:08:12 +03:00
'telegramChatId' => $params['telegramBotChatId'],
],
2018-11-21 17:02:14 +03:00
2018-10-11 11:15:09 +03:00
],
'params' => $params,
2019-11-18 16:14:06 +03:00
];