web-base/core/Objects/User.class.php

213 lines
6.0 KiB
PHP
Raw Normal View History

2020-02-09 23:02:19 +01:00
<?php
namespace Objects;
2020-04-02 21:19:06 +02:00
use \External\JWT;
2020-04-02 00:02:51 +02:00
use Driver\SQL\Column\Column;
use Driver\SQL\Condition\Compare;
use Driver\SQL\Condition\CondBool;
2020-02-09 23:02:19 +01:00
class User extends ApiObject {
private $sql;
private $configuration;
private $loggedIn;
private $session;
private $uid;
private $username;
private $language;
public function __construct($configuration) {
2020-02-17 00:18:37 +01:00
session_start();
2020-02-09 23:02:19 +01:00
$this->configuration = $configuration;
$this->setLangauge(Language::DEFAULT_LANGUAGE());
$this->reset();
$this->connectDb();
$this->parseCookies();
}
public function __destruct() {
if($this->sql && $this->sql->isConnected()) {
$this->sql->close();
}
}
private function connectDb() {
$databaseConf = $this->configuration->getDatabase();
if($databaseConf) {
2020-04-02 00:02:51 +02:00
$this->sql = \Driver\SQL\SQL::createConnection($databaseConf);
2020-02-09 23:02:19 +01:00
}
}
public function getId() { return $this->uid; }
public function isLoggedIn() { return $this->loggedIn; }
public function getUsername() { return $this->username; }
public function getSQL() { return $this->sql; }
public function getLanguage() { return $this->language; }
public function setLangauge($language) { $this->language = $language; $language->load(); }
public function getSession() { return $this->session; }
public function getConfiguration() { return $this->configuration; }
public function __debugInfo() {
$debugInfo = array(
'loggedIn' => $this->loggedIn,
'language' => $this->language->getName(),
);
if($this->loggedIn) {
$debugInfo['uid'] = $this->uid;
$debugInfo['username'] = $this->username;
}
return $debugInfo;
}
public function jsonSerialize() {
return array(
'uid' => $this->uid,
'name' => $this->username,
'language' => $this->language,
'session' => $this->session,
);
}
private function reset() {
$this->uid = 0;
$this->username = '';
$this->loggedIn = false;
$this->session = false;
}
public function logout() {
2020-04-02 00:02:51 +02:00
$success = true;
2020-02-09 23:02:19 +01:00
if($this->loggedIn) {
2020-04-02 00:02:51 +02:00
$success = $this->session->destroy();
2020-02-09 23:02:19 +01:00
$this->reset();
}
2020-04-02 00:02:51 +02:00
return $success;
2020-02-09 23:02:19 +01:00
}
public function updateLanguage($lang) {
2020-02-10 00:52:25 +01:00
if($this->sql) {
$request = new \Api\SetLanguage($this);
return $request->execute(array("langCode" => $lang));
}
2020-02-09 23:02:19 +01:00
}
public function sendCookies() {
if($this->loggedIn) {
$this->session->sendCookie();
}
$this->language->sendCookie();
}
public function readData($userId, $sessionId, $sessionUpdate = true) {
2020-02-17 00:18:37 +01:00
2020-04-02 00:02:51 +02:00
$res = $this->sql->select("User.name", "Language.uid as langId", "Language.code as langCode", "Language.name as langName",
"Session.data", "Session.stay_logged_in")
->from("User")
->innerJoin("Session", "Session.user_id", "User.uid")
->leftJoin("Language", "User.language_id", "Language.uid")
->where(new Compare("User.uid", $userId))
->where(new Compare("Session.uid", $sessionId))
->where(new Compare("Session.active", true))
2020-04-02 15:08:14 +02:00
->where(new CondBool("Session.stay_logged_in"), new Compare("Session.expires", $this->sql->currentTimestamp(), '>'))
2020-04-02 00:02:51 +02:00
->execute();
$success = ($res !== FALSE);
2020-02-09 23:02:19 +01:00
if($success) {
2020-04-02 00:02:51 +02:00
if(empty($res)) {
2020-02-09 23:02:19 +01:00
$success = false;
} else {
2020-04-02 00:02:51 +02:00
$row = $res[0];
$this->username = $row['name'];
2020-02-09 23:02:19 +01:00
$this->uid = $userId;
2020-02-10 00:52:25 +01:00
$this->session = new Session($this, $sessionId);
2020-04-02 21:32:26 +02:00
$this->session->setData(json_decode($row["data"] ?? '{}'));
2020-04-02 00:02:51 +02:00
$this->session->stayLoggedIn($row["stay_logged_in"]);
2020-02-09 23:02:19 +01:00
if($sessionUpdate) $this->session->update();
$this->loggedIn = true;
if(!is_null($row['langId'])) {
2020-02-10 00:52:25 +01:00
$this->setLangauge(Language::newInstance($row['langId'], $row['langCode'], $row['langName']));
2020-02-09 23:02:19 +01:00
}
}
}
return $success;
}
private function parseCookies() {
if(isset($_COOKIE['session'])
&& is_string($_COOKIE['session'])
&& !empty($_COOKIE['session'])
&& ($jwt = $this->configuration->getJWT())) {
try {
$token = $_COOKIE['session'];
2020-04-02 21:19:06 +02:00
$decoded = (array)JWT::decode($token, $jwt->getKey());
2020-02-09 23:02:19 +01:00
if(!is_null($decoded)) {
$userId = (isset($decoded['userId']) ? $decoded['userId'] : NULL);
$sessionId = (isset($decoded['sessionId']) ? $decoded['sessionId'] : NULL);
if(!is_null($userId) && !is_null($sessionId)) {
$this->readData($userId, $sessionId);
}
}
2020-04-02 21:19:06 +02:00
} catch(\Exception $e) {
// ignored
2020-02-09 23:02:19 +01:00
}
}
if(isset($_GET['lang']) && is_string($_GET["lang"]) && !empty($_GET["lang"])) {
$this->updateLanguage($_GET['lang']);
2020-02-17 00:18:37 +01:00
} else if(isset($_COOKIE['lang']) && is_string($_COOKIE["lang"]) && !empty($_COOKIE["lang"])) {
2020-02-09 23:02:19 +01:00
$this->updateLanguage($_COOKIE['lang']);
2020-02-17 00:18:37 +01:00
}
2020-02-09 23:02:19 +01:00
}
2020-02-17 00:18:37 +01:00
public function createSession($userId, $stayLoggedIn) {
2020-02-09 23:02:19 +01:00
$this->uid = $userId;
2020-02-17 00:18:37 +01:00
$this->session = Session::create($this, $stayLoggedIn);
if($this->session) {
$this->loggedIn = true;
return true;
}
return false;
2020-02-09 23:02:19 +01:00
}
public function authorize($apiKey) {
2020-04-02 00:02:51 +02:00
2020-02-09 23:02:19 +01:00
if($this->loggedIn)
return true;
2020-04-02 00:02:51 +02:00
$res = $this->sql->select("ApiKey.user_id as uid", "User.name as username", "Language.uid as langId", "Language.code as langCode", "Language.name as langName")
->from("ApiKey")
->innerJoin("User", "ApiKey.user_id", "User.uid")
->leftJoin("Language", "User.language_id", "Language.uid")
->where(new Compare("ApiKey.api_key", $apiKey))
2020-04-02 15:08:14 +02:00
->where(new Compare("valid_until", $this->sql->currentTimestamp(), ">"))
2020-04-02 00:02:51 +02:00
->where(new COmpare("ApiKey.active", 1))
->execute();
2020-02-09 23:02:19 +01:00
2020-04-02 00:02:51 +02:00
$success = ($res !== FALSE);
2020-02-09 23:02:19 +01:00
if($success) {
2020-04-02 00:02:51 +02:00
if(empty($res)) {
2020-02-09 23:02:19 +01:00
$success = false;
} else {
2020-04-02 00:02:51 +02:00
$row = $res[0];
2020-02-09 23:02:19 +01:00
$this->uid = $row['uid'];
$this->username = $row['username'];
if(!is_null($row['langId'])) {
2020-04-02 00:02:51 +02:00
$this->setLangauge(Language::newInstance($row['langId'], $row['langCode'], $row['langName']));
2020-02-09 23:02:19 +01:00
}
}
}
return $success;
}
}
?>