50 lines
3.1 KiB
PHP
50 lines
3.1 KiB
PHP
<?php
|
|
namespace SYSTEM\SAI;
|
|
class saigui extends \SYSTEM\PAGE\Page {
|
|
const SAI_MOD_POSTFIELD = 'sai_mod';
|
|
|
|
public function html(){
|
|
//register docu here, we require path so system must be started
|
|
\SYSTEM\DOCU\docu::register(array( 'id' => 'system',
|
|
'inpath' => new \SYSTEM\PSYSTEM(),
|
|
'outpath' => new \SYSTEM\PSYSTEM('docu/system/'),
|
|
'cachepath' => new \SYSTEM\PSYSTEM('docu/system/cache/'),
|
|
'ignore' => array( 'lib/animate/*',
|
|
'lib/bootstrap/*',
|
|
'lib/bootstrap_growl/*',
|
|
'lib/git/*',
|
|
'lib/jqbootstrapvalidation/*',
|
|
'lib/jquery/*',
|
|
'lib/lettering/*',
|
|
'lib/markdown/*',
|
|
'lib/minify/*',
|
|
'lib/phpdocumentor/*',
|
|
'lib/scssphp/*',
|
|
'lib/tablesorter/*',
|
|
'lib/texttilate/*',
|
|
'lib/tinymce/*'),
|
|
'sourcecode' => true,
|
|
'parseprivate' => false,
|
|
'title' => 'SYSTEM - PHP Framework'));
|
|
|
|
\SYSTEM\SECURITY\Security::isLoggedIn(); // refresh session
|
|
//Direct JSON Input
|
|
$pg = json_decode(file_get_contents("php://input"), true);
|
|
if(!$pg){
|
|
$pg = array_merge($_POST,$_GET);}
|
|
if(isset($pg[self::SAI_MOD_POSTFIELD])){
|
|
$classname = \str_replace('.', '\\', $pg[self::SAI_MOD_POSTFIELD]);
|
|
$pg[self::SAI_MOD_POSTFIELD] = \str_replace('.', '_', $pg[self::SAI_MOD_POSTFIELD]);
|
|
|
|
$mods = \SYSTEM\SAI\sai::getAllModules();
|
|
if( $classname &&
|
|
\array_search($classname, $mods) !== false &&
|
|
( \call_user_func(array($classname, 'right_public')) ||
|
|
\call_user_func(array($classname, 'right_right')))){
|
|
return \SYSTEM\API\api::run('\SYSTEM\API\verify', $classname , $pg, 42, true, false);
|
|
} else {
|
|
return '<meta http-equiv="refresh" content="0; url=./sai.php">You are no longer logged in. Page reload in 5sec...';}
|
|
} else {
|
|
return \SYSTEM\API\api::run('\SYSTEM\API\verify', '\SYSTEM\SAI\SaiModule', $pg, 42, false, true);}
|
|
}
|
|
} |