60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of the pws-server package.
|
|
*
|
|
* (c) meta-tech.academy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace MetaTech\PwsServer;
|
|
|
|
use MetaTech\Silex\Application as App;
|
|
use MetaTech\Silex\Provider\ControllerServiceProvider as CtrlProvider;
|
|
use MetaTech\Silex\Provider\UserProvider;
|
|
use MetaTech\Db\PdoWrapper;
|
|
use MetaTech\Db\Profile;
|
|
use MetaTech\PwsAuth\Authenticator;
|
|
use MetaTech\PwsServer\Ctrl\Test;
|
|
use MetaTech\PwsServer\Ctrl\WebService;
|
|
use MetaTech\PwsServer\Ctrl\OtherWebService;
|
|
|
|
/*!
|
|
* @package MetaTech\PwsServer
|
|
* @class Application
|
|
* @extends Silex\Application
|
|
* @author a-Sansara
|
|
* @date 2017-03-12 21:46:43 CET
|
|
*/
|
|
class Application extends App
|
|
{
|
|
/*!
|
|
* @method setServices
|
|
* @protected
|
|
*/
|
|
protected function setServices()
|
|
{
|
|
$app = $this;
|
|
$app['ws.authenticator'] = function ($app) {
|
|
return new Authenticator($app['config']['pwsauth']);
|
|
};
|
|
$app['pdo'] = function ($app) {
|
|
return new PdoWrapper(new Profile($app['config']['db']['default']));
|
|
};
|
|
$app['user.provider'] = function ($app) {
|
|
return new UserProvider($app['pdo']);
|
|
};
|
|
}
|
|
|
|
/*!
|
|
* @method routingDefinition
|
|
* @protected
|
|
*/
|
|
protected function routingDefinition()
|
|
{
|
|
$this->register(new CtrlProvider(Test::class , [$this], '/'));
|
|
$this->register(new CtrlProvider(WebService::class , [$this], '/ws'));
|
|
$this->register(new CtrlProvider(OtherWebService::class, [$this], '/ws/deep'));
|
|
}
|
|
}
|