mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
9c658f5bd9
В модуль Authserver добавлены хелперы для логирования Исправлена ошибка в MinecraftAccessKey Ускорено тестирование всего приложения
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
namespace api\modules\authserver;
|
|
|
|
use Yii;
|
|
use yii\base\BootstrapInterface;
|
|
use yii\base\InvalidConfigException;
|
|
|
|
class Module extends \yii\base\Module implements BootstrapInterface {
|
|
|
|
public $id = 'authserver';
|
|
|
|
public $defaultRoute = 'index';
|
|
|
|
/**
|
|
* @var string базовый домен, запросы на который этот модуль должен обрабатывать
|
|
*/
|
|
public $baseDomain = 'https://authserver.ely.by';
|
|
|
|
public function init() {
|
|
parent::init();
|
|
if ($this->baseDomain === null) {
|
|
throw new InvalidConfigException('base domain must be specified');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param \yii\base\Application $app the application currently running
|
|
*/
|
|
public function bootstrap($app) {
|
|
$app->getUrlManager()->addRules([
|
|
$this->baseDomain . '/' . $this->id . '/auth/<action>' => $this->id . '/authentication/<action>',
|
|
], false);
|
|
}
|
|
|
|
public static function info($message) {
|
|
Yii::info($message, 'legacy-authserver');
|
|
}
|
|
|
|
public static function error($message) {
|
|
Yii::info($message, 'legacy-authserver');
|
|
}
|
|
|
|
}
|