0
1
Fork 0
hedera-web-mindshore/web/service.php

337 lines
7.7 KiB
PHP
Raw Normal View History

<?php
namespace Vn\Web;
use Vn\Lib\Locale;
2016-09-23 22:47:34 +00:00
use Vn\Lib\UserException;
2016-10-04 15:27:49 +00:00
const MIN = 60;
const HOUR = 60 * MIN;
const DAY = 24 * HOUR;
const WEEK = 7 * DAY;
/**
* Thrown when user credentials could not be fetched.
**/
2016-09-23 22:47:34 +00:00
class SessionExpiredException extends UserException {}
/**
* Thrown when user credentials are invalid.
**/
2016-09-23 22:47:34 +00:00
class BadLoginException extends UserException {}
/**
* Thrown when client version is outdated.
**/
2016-09-23 22:47:34 +00:00
class OutdatedVersionException extends UserException {}
/**
* Main class for web applications.
**/
abstract class Service
{
protected $app;
2016-09-23 22:47:34 +00:00
protected $db;
protected $userDb = NULL;
function __construct ($app)
{
$this->app = $app;
2016-09-23 22:47:34 +00:00
$this->db = $app->getSysConn ();
}
/**
* Starts the user session.
**/
function startSession ()
{
2016-09-23 22:47:34 +00:00
$db = $this->db;
2016-09-19 06:40:18 +00:00
2016-09-24 14:32:31 +00:00
ini_set ('session.cookie_secure', $this->isHttps ());
2016-09-23 22:47:34 +00:00
ini_set ('session.hash_function', 'sha256');
2016-09-19 06:40:18 +00:00
session_set_save_handler (new DbSessionHandler ($db));
session_start ();
2016-09-19 06:40:18 +00:00
// Setting the locale
if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE']))
2016-09-19 06:40:18 +00:00
if (!isset ($_SESSION['httpLanguage'])
|| $_SESSION['httpLanguage'] != $_SERVER['HTTP_ACCEPT_LANGUAGE'])
{
2016-09-19 06:40:18 +00:00
$_SESSION['httpLanguage'] = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
$regexp = '/([a-z]{1,4})(?:-[a-z]{1,4})?\s*(?:;\s*q\s*=\s*(?:1|0\.[0-9]+))?,?/i';
preg_match_all ($regexp, $_SERVER['HTTP_ACCEPT_LANGUAGE'], $languages);
foreach ($languages[1] as $lang)
if (stream_resolve_include_path ("locale/$lang"))
{
$_SESSION['lang'] = $lang;
break;
}
}
if (!isset ($_SESSION['lang']))
$_SESSION['lang'] = NULL;
Locale::set ($_SESSION['lang']);
Locale::addPath ('vn/web');
// Registering the visit
2016-10-17 12:36:52 +00:00
if (isset ($_COOKIE['PHPSESSID'])
|| isset ($_SESSION['access'])
|| isset ($_SESSION['skipVisit']))
return;
$agent = $_SERVER['HTTP_USER_AGENT'];
$browser = get_browser ($agent, TRUE);
2016-10-16 14:16:08 +00:00
if (!empty ($browser['crawler']))
{
$_SESSION['skipVisit'] = TRUE;
return;
}
if (isset ($_SERVER['REMOTE_ADDR']))
$ip = ip2long ($_SERVER['REMOTE_ADDR']);
$row = $db->getRow (
2016-09-19 06:40:18 +00:00
'CALL visitRegister (#, #, #, #, #, #, #, #, #)',
[
2016-09-19 06:40:18 +00:00
nullIf ($_COOKIE, 'vnVisit')
,nullIf ($browser, 'platform')
,nullIf ($browser, 'browser')
,nullIf ($browser, 'version')
,nullIf ($browser, 'javascript')
,nullIf ($browser, 'cookies')
,isset ($agent) ? $agent : NULL
,isset ($ip) && $ip ? $ip : NULL
,nullIf ($_SERVER, 'HTTP_REFERER')
]
);
if (isset ($row['access']))
{
2016-09-19 06:40:18 +00:00
setcookie ('vnVisit', $row['visit'], time () + 31536000); // 1 Year
$_SESSION['access'] = $row['access'];
}
else
$_SESSION['skipVisit'] = TRUE;
}
2016-09-20 18:36:22 +00:00
/**
* Tries to retrieve user credentials from many sources such as POST,
* SESSION or COOKIES. If $_POST['remember'] is defined the user credentials
* are saved on the client brownser for future logins, cookies names are
* 'vn_user' for the user name and 'vn_pass' for user password, the
* password is encoded using base64_encode() function and should be decoded
* using base64_decode().
*
* return Db\Conn The database connection
**/
function login ()
{
2016-09-23 22:47:34 +00:00
$db = $this->db;
$anonymousUser = FALSE;
2016-09-20 18:36:22 +00:00
if (isset ($_POST['user']) && isset ($_POST['password']))
{
$user = strtolower ($_POST['user']);
try {
$db->query ('CALL account.userLogin (#, #)',
[$user, $_POST['password']]);
}
catch (\Exception $e)
{
throw new BadLoginException ();
}
}
else
{
if (isset ($_POST['token']) || isset ($_GET['token']))
{
if (isset ($_POST['token']))
$token = $_POST['token'];
if (isset ($_GET['token']))
$token = $_GET['token'];
2016-09-24 14:32:31 +00:00
$key = $db->getValue ('SELECT jwtKey FROM config');
2016-09-20 18:36:22 +00:00
$jwtPayload = Jwt::decode ($token, $key);
$expiration = $jwtPayload['exp'];
2016-09-24 14:32:31 +00:00
if (empty ($expiration) || $expiration <= time())
2016-09-20 18:36:22 +00:00
throw new SessionExpiredException ();
2016-09-24 14:32:31 +00:00
$user = $jwtPayload['sub'];
2016-10-14 10:58:35 +00:00
if (!empty ($jwtPayload['recover']))
$db->query (
2016-10-14 10:58:35 +00:00
'UPDATE account.user SET recoverPass = TRUE
WHERE name = #',
[$user]
);
2016-10-14 10:58:35 +00:00
}
2016-09-20 18:36:22 +00:00
else
{
2016-09-20 18:36:22 +00:00
$user = $db->getValue ('SELECT guest_user FROM config');
$anonymousUser = TRUE;
}
2016-09-20 18:36:22 +00:00
$db->query ('CALL account.userLoginWithName (#)', [$user]);
}
$userChanged = !$anonymousUser
&& (empty ($_SESSION['user']) || $_SESSION['user'] != $user);
2016-09-20 18:36:22 +00:00
$_SESSION['user'] = $user;
// Registering the user access
if (isset ($_SESSION['access']) && $userChanged)
2016-09-20 18:36:22 +00:00
$db->query (
'CALL visitUserNew (#, #)',
[$_SESSION['access'], session_id ()]
);
}
/**
* Logouts the current user. Cleans the last saved used credentials.
**/
function logout ()
{
unset ($_SESSION['user']);
}
2016-09-23 22:47:34 +00:00
/**
* Creates or returns a database connection where the authenticated user
* is the current logged user.
*
* @return {Db\Conn} The database connection
**/
function getUserDb ($user)
{
if ($this->userDb)
return $this->userDb;
2016-09-24 14:32:31 +00:00
$password = $this->db->getValue (
'SELECT password FROM account.user WHERE name = #', [$user]);
return $this->userDb = $this->app->createConnection ($user, $password);
2016-09-23 22:47:34 +00:00
}
2016-10-04 15:27:49 +00:00
/**
* Generates a JWT authentication token for the specified $user.
*
* @param {string} $user The user name
* @param {boolean} $remember Wether to create long live token
2016-10-14 10:58:35 +00:00
* @param {boolean} $recover Wether to enable recovery mode on login
2016-10-04 15:27:49 +00:00
* @return {string} The JWT generated token
**/
2016-10-14 10:58:35 +00:00
function createToken ($user, $remember = FALSE, $recover = FALSE)
2016-10-04 15:27:49 +00:00
{
if ($remember)
$tokenLife = WEEK;
else
$tokenLife = 30 * MIN;
$payload = [
'sub' => $user,
'exp' => time () + $tokenLife
];
2016-10-16 14:16:08 +00:00
if ($recover)
2016-10-14 10:58:35 +00:00
$payload['recover'] = 'TRUE';
2016-10-04 15:27:49 +00:00
$key = $this->db->getValue ('SELECT jwtKey FROM config');
return Jwt::encode ($payload, $key);
}
2016-09-23 22:47:34 +00:00
/**
* Runs a method.
**/
function loadMethod ($class)
{
$db = $this->db;
$this->login ();
$method = $this->app->loadMethod (
$_REQUEST['method'], $class, './rest');
2016-09-24 14:32:31 +00:00
$method->service = $this;
2016-09-23 22:47:34 +00:00
if ($method::SECURITY == Security::DEFINER)
{
$isAuthorized = $db->getValue ('SELECT userCheckRestPriv (#)',
[$_REQUEST['method']]);
if (!$isAuthorized)
throw new UserException (s('You don\'t have enough privileges'));
2016-09-23 22:47:34 +00:00
$methodDb = $db;
}
else
2016-09-24 14:32:31 +00:00
$methodDb = $this->getUserDb ($_SESSION['user']);
2016-09-23 22:47:34 +00:00
if ($method::PARAMS !== NULL && !$method->checkParams ($_REQUEST, $method::PARAMS))
throw new UserException (s('Missing parameters'));
Locale::addPath ("rest/{$_REQUEST['method']}");
2016-09-23 22:47:34 +00:00
$res = $method->run ($methodDb);
$db->query ('CALL account.userLogout ()');
return $res;
}
/**
* Checks if the HTTP connection is secure.
*
* @return boolean Return %TRUE if its secure, %FALSE otherwise
**/
function isHttps ()
{
return isset ($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on';
}
/**
* Returns the current URL without the GET part.
*
* @return string The current URL
**/
function getUrl ()
{
$proto = $this->isHttps () ? 'https' : 'http';
return "$proto://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
}
/**
* Obtains the application version number. It is based on de last
* modification date of the main script.
2016-09-24 14:32:31 +00:00
*
* @return string The version number
**/
function getVersion ()
{
return (int) strftime ('%G%m%d%H%M%S',
2016-08-30 07:43:47 +00:00
filectime ($_SERVER['SCRIPT_FILENAME']));
}
2016-09-24 14:32:31 +00:00
/**
* Obtains the relative path to document root from an absolute path.
*
* @return string The relative path
**/
function getDir ($absoluteDir)
{
error_log ("Absolute: $absoluteDir");
error_log ("Root: {$_SERVER['DOCUMENT_ROOT']}");
error_log ("Script: {$_SERVER['SCRIPT_FILENAME']}");
error_log ("Self: {$_SERVER['PHP_SELF']}");
$rootLen = strlen ($_SERVER['DOCUMENT_ROOT']);
return substr ($absoluteDir, $rootLen);
}
}