opensupports/server/libs/Controller.php

108 lines
3.1 KiB
PHP
Raw Normal View History

<?php
require_once 'libs/Validator.php';
require_once 'models/Session.php';
abstract class Controller {
2017-01-14 22:19:21 +01:00
private static $dataRequester;
/**
* Instance-related stuff
*/
abstract public function handler();
abstract public function validations();
public function getHandler() {
return function () {
try {
$this->validate();
$this->handler();
} catch (\Exception $exception) {
Response::respondError($exception->getMessage());
return;
}
};
}
public function validate() {
$validator = new Validator();
$validator->validate($this->validations());
}
2017-01-14 22:19:21 +01:00
public static function init() {
self::$dataRequester = function ($key) {
$app = self::getAppInstance();
2017-02-18 19:28:23 +01:00
if (Controller::getAppInstance()->request()->isGet()) {
2017-02-15 20:14:27 +01:00
$value = $app->request()->get($key);
2017-02-18 19:28:23 +01:00
} else {
$value = $app->request()->post($key);
2017-02-15 20:14:27 +01:00
}
return $value;
2017-01-14 22:19:21 +01:00
};
}
2017-01-14 22:19:21 +01:00
public static function setDataRequester($dataRequester) {
self::$dataRequester = $dataRequester;
}
public static function request($key) {
return call_user_func(self::$dataRequester, $key);
}
public static function getLoggedUser() {
$session = Session::getInstance();
if ($session->isStaffLogged()) {
2017-02-18 19:28:23 +01:00
return Staff::getUser($session->getUserId());
} else {
2017-02-18 19:28:23 +01:00
return User::getUser($session->getUserId());
}
}
public static function isUserLogged() {
$session = Session::getInstance();
return $session->checkAuthentication(array(
'userId' => Controller::request('csrf_userid'),
'token' => Controller::request('csrf_token')
));
}
public static function isStaffLogged($level = 1) {
return Controller::isUserLogged() && (Controller::getLoggedUser()->level >= $level);
}
public static function getAppInstance() {
return \Slim\Slim::getInstance();
}
public function uploadFile() {
$allowAttachments = Setting::getSetting('allow-attachments')->getValue();
if(!isset($_FILES['file']) || !$allowAttachments) return '';
$maxSize = Setting::getSetting('max-size')->getValue();
$fileGap = Setting::getSetting('file-gap')->getValue();
$fileFirst = Setting::getSetting('file-first-number')->getValue();
$fileQuantity = Setting::getSetting('file-quantity');
$fileUploader = FileUploader::getInstance();
$fileUploader->setMaxSize($maxSize);
$fileUploader->setGeneratorValues($fileGap, $fileFirst, $fileQuantity->getValue());
if($fileUploader->upload($_FILES['file'])) {
$fileQuantity->value++;
$fileQuantity->store();
2017-01-15 21:33:33 +01:00
return $fileUploader;
} else {
throw new Exception(ERRORS::INVALID_FILE);
}
}
public static function isUserSystemEnabled() {
return Setting::getSetting('user-system-enabled')->getValue();
}
}