2016-09-01 10:15:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
|
|
|
|
|
|
|
|
require __DIR__ . '/../bootstrap.php';
|
|
|
|
|
|
|
|
$eh = EmotionHero\Application::getInstance();
|
|
|
|
|
|
|
|
$app = new Silex\Application([
|
|
|
|
'debug' => $eh->getConfig()['debug']
|
|
|
|
]);
|
|
|
|
|
2016-09-04 16:37:02 +00:00
|
|
|
// disable when going in production.
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
|
2016-09-20 09:27:36 +00:00
|
|
|
|
|
|
|
if(ini_get('max_file_uploads') < 50) {
|
|
|
|
throw new Exception("php directive 'max_file_uploads' should be >= 50");
|
|
|
|
}
|
|
|
|
|
2016-11-03 02:42:26 +00:00
|
|
|
// $http_origin = $_SERVER['HTTP_ORIGIN'];
|
|
|
|
// if ($http_origin == "https://emotionhero.com" || $http_origin == "http://emotionhero.com")
|
|
|
|
// {
|
|
|
|
// header("Access-Control-Allow-Origin: $http_origin");
|
|
|
|
// // header("Access-Control-Allow-Origin: https://emotionhero.com");
|
|
|
|
// header("Access-Control-Allow-Methods: POST, GET, OPTIONS");
|
|
|
|
// header("Access-Control-Allow-Headers: X-PINGOTHER");
|
|
|
|
// header("Access-Control-Max-Age: 1728000");
|
|
|
|
// }
|
2016-11-02 23:58:32 +00:00
|
|
|
|
2016-09-01 10:15:17 +00:00
|
|
|
/*
|
|
|
|
* JWT setup
|
|
|
|
*/
|
|
|
|
|
|
|
|
define('USER_ID_FIELD', 'id');
|
|
|
|
|
2016-09-01 13:08:43 +00:00
|
|
|
|
2016-09-04 10:54:48 +00:00
|
|
|
$app['entity.manager'] = function() {
|
|
|
|
return EmotionHero\Application::getInstance()->getEm();
|
|
|
|
};
|
|
|
|
|
2016-09-12 16:27:06 +00:00
|
|
|
$app['file.path'] = realpath(__DIR__ . "/../files");
|
|
|
|
|
2016-09-04 10:54:48 +00:00
|
|
|
|
2016-09-01 10:15:17 +00:00
|
|
|
|
|
|
|
$app['security.jwt'] = [
|
2016-09-01 13:08:43 +00:00
|
|
|
'secret_key' => $eh->getConfig()['secret_key'],
|
|
|
|
'life_time' => $eh->getConfig()['jwt_lifetime'],
|
2016-09-01 10:15:17 +00:00
|
|
|
'options' => [
|
|
|
|
'username_claim' => USER_ID_FIELD, // default name, option specifying claim containing username
|
|
|
|
'header_name' => 'X-Access-Token', // default null, option for usage normal oauth2 header
|
|
|
|
'token_prefix' => 'Bearer',
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$app['users'] = function () use ($eh) {
|
|
|
|
return $eh->getEm()->getRepository(EmotionHero\Models\User::class);
|
|
|
|
};
|
|
|
|
|
|
|
|
$app['serializer'] = function () use ($eh) {
|
|
|
|
return JMS\Serializer\SerializerBuilder::create()->build();
|
|
|
|
};
|
2016-09-04 12:03:48 +00:00
|
|
|
$app['serializer.json'] = function () use ($app) {
|
|
|
|
return function($data) use ($app) {
|
|
|
|
return $app['serializer']->serialize($data, 'json');
|
|
|
|
};
|
|
|
|
};
|
2016-09-01 10:15:17 +00:00
|
|
|
|
|
|
|
$app['security.firewalls'] = array(
|
|
|
|
'login' => [
|
2017-03-31 10:24:28 +00:00
|
|
|
'pattern' => 'login|register|oauth|token|interface|stats',
|
2016-09-01 10:15:17 +00:00
|
|
|
'anonymous' => true,
|
|
|
|
],
|
|
|
|
'secured' => array(
|
|
|
|
'pattern' => '^.*$',
|
|
|
|
'logout' => array('logout_path' => '/logout'),
|
|
|
|
'users' => $app['users'],
|
|
|
|
'jwt' => array(
|
|
|
|
'use_forward' => true,
|
|
|
|
'require_previous_session' => false,
|
|
|
|
'stateless' => true,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$app->register(new Silex\Provider\SecurityServiceProvider());
|
|
|
|
$app->register(new Silex\Provider\SecurityJWTServiceProvider());
|
|
|
|
|
|
|
|
|
2016-09-20 09:27:36 +00:00
|
|
|
$app->get('/sysinfo', function(Request $request) use ($app){
|
|
|
|
phpinfo();
|
|
|
|
return new Response(200);
|
|
|
|
});
|
2016-09-01 10:15:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get token for user
|
|
|
|
*/
|
|
|
|
$app->post('/api/register', function(Request $request) use ($app, $eh){
|
|
|
|
// return $app['serializer']->serialize($eh->getEm()->getRepository(EmotionHero\Models\User::class)->findAll(), 'json');
|
|
|
|
// validate user with... NOTING!!!
|
|
|
|
$user = new EmotionHero\Models\User();
|
|
|
|
$eh->getEm()->persist($user);
|
|
|
|
$eh->getEm()->flush();
|
|
|
|
return $app['serializer']->serialize($user, 'json');
|
|
|
|
});
|
|
|
|
/**
|
|
|
|
* Get token for user with UUID
|
|
|
|
* As it is already a generated token.. don't use password
|
|
|
|
*/
|
|
|
|
$app->post('/api/token', function(Request $request) use ($app){
|
|
|
|
$vars = json_decode($request->getContent(), true);
|
|
|
|
try {
|
|
|
|
if (empty($vars['userid'])) {
|
|
|
|
throw new UsernameNotFoundException(sprintf('Username "%s" does not exist.', $vars['userid']));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var $user EmotionHero\Models\User
|
|
|
|
*/
|
|
|
|
$user = $app['users']->loadUserByUsername($vars['userid']);
|
|
|
|
|
|
|
|
if (! $user) {
|
|
|
|
// if (! $app['security.encoder.digest']->isPasswordValid($user->getPassword(), $vars['password'], '')) { // no password set
|
|
|
|
throw new UsernameNotFoundException(sprintf('Username "%s" does not exist.', $vars['userid']));
|
|
|
|
} else {
|
|
|
|
$response = [
|
|
|
|
'success' => true,
|
|
|
|
'token' => $app['security.jwt.encoder']->encode([USER_ID_FIELD => $user->getUsername()]),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
} catch (UsernameNotFoundException $e) {
|
|
|
|
$response = [
|
|
|
|
'success' => false,
|
|
|
|
'error' => 'Invalid credentials',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $app->json($response, ($response['success'] == true ? Response::HTTP_OK : Response::HTTP_BAD_REQUEST));
|
|
|
|
})
|
|
|
|
;
|
|
|
|
/* EXAMPLE
|
|
|
|
$app->get('/api/protected_resource', function() use ($app){
|
|
|
|
$token = $app['security.token_storage']->getToken();
|
|
|
|
$jwt = 'no';
|
|
|
|
$token = $app['security.token_storage']->getToken();
|
|
|
|
if ($token instanceof Silex\Component\Security\Http\Token\JWTToken) {
|
|
|
|
$jwt = 'yes';
|
|
|
|
}
|
|
|
|
$granted = 'no';
|
|
|
|
if($app['security.authorization_checker']->isGranted('ROLE_ADMIN')) {
|
|
|
|
$granted = 'yes';
|
|
|
|
}
|
|
|
|
$granted_user = 'no';
|
|
|
|
if($app['security.authorization_checker']->isGranted('ROLE_USER')) {
|
|
|
|
$granted_user = 'yes';
|
|
|
|
}
|
|
|
|
$granted_super = 'no';
|
|
|
|
if($app['security.authorization_checker']->isGranted('ROLE_SUPER_ADMIN')) {
|
|
|
|
$granted_super = 'yes';
|
|
|
|
}
|
|
|
|
$user = $token->getUser();
|
|
|
|
return $app->json([
|
|
|
|
'hello' => $token->getUsername(),
|
|
|
|
'username' => $user->getUsername(),
|
|
|
|
'auth' => $jwt,
|
|
|
|
'granted' => $granted,
|
|
|
|
'granted_user' => $granted_user,
|
|
|
|
'granted_super' => $granted_super,
|
|
|
|
]);
|
|
|
|
});*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$app->mount('/', new EmotionHero\Api\ScoreControllerProvider());
|
2016-11-02 23:14:19 +00:00
|
|
|
$app->mount('/interface', new EmotionHero\Api\InterfaceControllerProvider());
|
2017-03-31 10:24:28 +00:00
|
|
|
$app->mount('/stats', new EmotionHero\Api\StatsControllerProvider());
|
2016-09-01 10:15:17 +00:00
|
|
|
|
2016-10-05 19:42:27 +00:00
|
|
|
// middlewares
|
2016-10-05 19:52:11 +00:00
|
|
|
$appStack = new EmotionHero\Api\ThrottleMiddleware($app, ['pdo'=>$eh->getEm()->getConnection()->getWrappedConnection()] );
|
2016-09-01 10:15:17 +00:00
|
|
|
|
2016-10-05 19:42:27 +00:00
|
|
|
$appStack->handle(Request::createFromGlobals())->send();
|