| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 |
- <?php
- function upgradeCheck() {
- $compare = new Composer\Semver\Comparator;
- // Upgrade check start for vserion below
- $versionCheck = '2.25.0-alpha.101';
- $config = loadConfig();
- if (isset($config['dbLocation']) && (!isset($config['configVersion']) || $compare->lessThan($config['configVersion'], $versionCheck))) {
- $oldVer = $config['configVersion'];
- return 'Upgraded Needed - Current Version '.$oldVer.' - New Version: '.$versionCheck;
- // Upgrade database to latest version
- //updateDB($GLOBALS['dbLocation'],$GLOBALS['dbName'],$oldVer);
- // Update Version and Commit
- //$config['configVersion'] = $versionCheck;
- //copy('config/config.php', 'config/config['.date('Y-m-d_H-i-s').'][1.40].bak.php');
- //$createConfigSuccess = createConfig($config);
- //unset($config);
- }else{
- //unset($config);
- return 'No Upgraded Needed - Current Version Above: '.$versionCheck;
- }
- return true;
- }
- function wizardConfig($array){
- foreach ($array['data'] as $items) {
- foreach ($items as $key => $value) {
- if($key == 'name'){
- $newKey = $value;
- }
- if($key == 'value'){
- $newValue = $value;
- }
- if(isset($newKey) && isset($newValue)){
- $$newKey = $newValue;
- }
- }
- }
- $location = cleanDirectory($location);
- $dbName = $dbName.'.db';
- $configVersion = $GLOBALS['installedVersion'];
- $configArray = array(
- 'dbName' => $dbName,
- 'dbLocation' => $location,
- 'license' => $license,
- 'organizrHash' => $hashKey,
- 'organizrAPI' => $api,
- 'registrationPassword' => $registrationPassword,
- );
- // Create Config
- if(createConfig($configArray)){
- // Call DB Create
- if(createDB($location,$dbName)){
- // Add in first user
- if(createFirstAdmin($location,$dbName,$username,$password,$email)){
- if(createToken($username,$email,gravatar($email),'Admin',0,$hashKey,1)){
- return true;
- }
- }
- }
- }
- return false;
- }
- function register($array){
- // Grab username and password from login form
- foreach ($array['data'] as $items) {
- foreach ($items as $key => $value) {
- if($key == 'name'){
- $newKey = $value;
- }
- if($key == 'value'){
- $newValue = $value;
- }
- if(isset($newKey) && isset($newValue)){
- $$newKey = $newValue;
- }
- }
- }
- if($registrationPassword == $GLOBALS['registrationPassword']){
- $defaults = defaultUserGroup();
- writeLog('success', 'Registration Function - Registration Password Verified', $username);
- if(createUser($username,$password,$defaults,$email)){
- writeLog('success', 'Registration Function - A User has registered', $username);
- if(createToken($username,$email,gravatar($email),$defaults['group'],$defaults['group_id'],$GLOBALS['organizrHash'],1)){
- writeLoginLog($username, 'success');
- writeLog('success', 'Login Function - A User has logged in', $username);
- return true;
- }
- }else{
- writeLog('error', 'Registration Function - An error occured', $username);
- return 'username taken';
- }
- }else{
- writeLog('warning', 'Registration Function - Wrong Password', $username);
- return 'mismatch';
- }
- }
- function editUser($array){
- return $array;
- }
- function logout(){
- coookie('delete','organizrToken');
- $GLOBALS['organizrUser'] = false;
- return true;
- }
- function qualifyRequest($accessLevelNeeded){
- if(getUserLevel() <= $accessLevelNeeded){
- return true;
- }else{
- return false;
- }
- }
- function getUserLevel(){
- $requesterToken = isset(getallheaders()['Token']) ? getallheaders()['Token'] : false;
- // Check token or API key
- // If API key, return 0 for admin
- if(strlen($requesterToken) == 20 && $requesterToken == $GLOBALS['organizrAPI']){
- //DO API CHECK
- return 0;
- }elseif(isset($GLOBALS['organizrUser'])){
- return $GLOBALS['organizrUser']['groupID'];
- }
- // All else fails? return guest id
- return 999;
- }
- function organizrStatus(){
- $status = array();
- $dependenciesActive = array();
- $dependenciesInactive = array();
- $extensions = array("PDO_SQLITE", "PDO", "SQLITE3", "zip", "cURL", "openssl", "simplexml", "json", "session");
- $functions = array("hash", "fopen", "fsockopen", "fwrite", "fclose", "readfile");
- foreach($extensions as $check){
- if(extension_loaded($check)){
- array_push($dependenciesActive,$check);
- }else{
- array_push($dependenciesInactive,$check);
- }
- }
- foreach($functions as $check){
- if(function_exists($check)){
- array_push($dependenciesActive,$check);
- }else{
- array_push($dependenciesInactive,$check);
- }
- }
- if(!file_exists('config'.DIRECTORY_SEPARATOR.'config.php')){
- $status['status'] = "wizard";//wizard - ok for test
- }
- if(count($dependenciesInactive)>0 || !is_writable(dirname(__DIR__,2))){
- $status['status'] = "dependencies";
- }
- $status['status'] = (!empty($status['status'])) ? $status['status'] : $status['status'] = "ok";
- $status['writable'] = is_writable(dirname(__DIR__,2)) ? 'yes' : 'no';
- $status['dependenciesActive'] = $dependenciesActive;
- $status['dependenciesInactive'] = $dependenciesInactive;
- $status['version'] = $GLOBALS['installedVersion'];
- $status['os'] = getOS();
- $status['php'] = phpversion();
- return $status;
- }
- function loadAppearance(){
- $appearance = array();
- $appearance['logo'] = $GLOBALS['logo'];
- $appearance['title'] = $GLOBALS['title'];
- $appearance['useLogo'] = $GLOBALS['useLogo'];
- $appearance['headerColor'] = $GLOBALS['headerColor'];
- $appearance['loginWallpaper'] = $GLOBALS['loginWallpaper'];
- return $appearance;
- }
- function getCustomizeAppearance(){
- if(file_exists(dirname(__DIR__,1).DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php')){
- return array(
- 'config' => array(/*
- array(
- 'type' => 'select',
- 'name' => 'branch',
- 'label' => 'Organizr Branch',
- 'value' => $GLOBALS['branch'],
- 'options' => array(
- 'Master' => 'v2-master',
- 'Develop' => 'v2-develop'
- )
- ),*/
- array(
- 'type' => 'input',
- 'name' => 'logo',
- 'label' => 'Logo',
- 'value' => $GLOBALS['logo']
- ),
- array(
- 'type' => 'input',
- 'name' => 'loginWallpaper',
- 'label' => 'Login Wallpaper',
- 'value' => $GLOBALS['loginWallpaper']
- ),
- array(
- 'type' => 'input',
- 'name' => 'title',
- 'label' => 'Title',
- 'value' => $GLOBALS['title']
- ),
- array(
- 'type' => 'switch',
- 'name' => 'useLogo',
- 'label' => 'Use Logo instead of Title',
- 'value' => $GLOBALS['useLogo']
- ),
- array(
- 'type' => 'input',
- 'name' => 'headerColor',
- 'label' => 'Nav Bar Color',
- 'value' => $GLOBALS['headerColor'],
- 'class' => 'colorpicker',
- 'disabled' => true
- ),
- array(
- 'type' => 'select',
- 'name' => 'theme',
- 'label' => 'Theme',
- 'class' => 'themeChanger',
- 'value' => $GLOBALS['theme'],
- 'options' => getThemes()
- )
- ),
- 'database' => array(
- )
- );
- }
- }
- function editAppearance($array){
- switch ($array['data']['value']) {
- case 'true':
- $array['data']['value'] = (bool) true;
- break;
- case 'false':
- $array['data']['value'] = (bool) false;
- break;
- default:
- $array['data']['value'] = $array['data']['value'];
- }
- //return gettype($array['data']['value']).' - '.$array['data']['value'];
- switch ($array['data']['action']) {
- case 'editCustomizeAppearance':
- $newItem = array(
- $array['data']['name'] => $array['data']['value']
- );
- return (updateConfig($newItem)) ? true : false;
- break;
- default:
- # code...
- break;
- }
- }
- function updateConfigItem($array){
- switch ($array['data']['value']) {
- case 'true':
- $array['data']['value'] = (bool) true;
- break;
- case 'false':
- $array['data']['value'] = (bool) false;
- break;
- default:
- $array['data']['value'] = $array['data']['value'];
- }
- // Hash
- if($array['data']['type'] == 'password'){
- $array['data']['value'] = encrypt($array['data']['value']);
- }
- //return gettype($array['data']['value']).' - '.$array['data']['value'];
- $newItem = array(
- $array['data']['name'] => $array['data']['value']
- );
- return (updateConfig($newItem)) ? true : false;
- }
- function getPlugins(){
- if(file_exists(dirname(__DIR__,1).DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php')){
- $pluginList = array();
- foreach($GLOBALS['plugins'] as $plugin){
- foreach ($plugin as $key => $value) {
- $plugin[$key]['enabled'] = $GLOBALS[$value['configPrefix'].'-enabled'];
- }
- $pluginList = array_merge($pluginList, $plugin);
- }
- return $pluginList;
- }
- return false;
- }
- function editPlugins($array){
- switch ($array['data']['action']) {
- case 'enable':
- $newItem = array(
- $array['data']['configName'] => true
- );
- writeLog('success', 'Plugin Function - Enabled Plugin ['.$_POST['data']['name'].']', $GLOBALS['organizrUser']['username']);
- return (updateConfig($newItem)) ? true : false;
- break;
- case 'disable':
- $newItem = array(
- $array['data']['configName'] => false
- );
- writeLog('success', 'Plugin Function - Disabled Plugin ['.$_POST['data']['name'].']', $GLOBALS['organizrUser']['username']);
- return (updateConfig($newItem)) ? true : false;
- break;
- default:
- # code...
- break;
- }
- }
- function auth(){
- $debug = false; // CAREFUL WHEN SETTING TO TRUE AS THIS OPENS AUTH UP
- $ban = isset($_GET['ban']) ? strtoupper($_GET['ban']) : "";
- $whitelist = isset($_GET['whitelist']) ? $_GET['whitelist'] : false;
- $blacklist = isset($_GET['blacklist']) ? $_GET['blacklist'] : false;
- $group = isset($_GET['group']) ? $_GET['group'] : 0;
- $currentIP = userIP();
- $currentUser = $GLOBALS['organizrUser']['username'];
- if ($whitelist) {
- if(in_array($currentIP, arrayIP($whitelist))) {
- !$debug ? exit(http_response_code(200)) : die("$currentIP Whitelist Authorized");
- }
- }
- if ($blacklist) {
- if(in_array($currentIP, arrayIP($blacklist))) {
- !$debug ? exit(http_response_code(401)) : die("$currentIP Blacklisted");
- }
- }
- if($group !== null){
- if(qualifyRequest($group)){
- !$debug ? exit(http_response_code(200)) : die("$currentUser on $currentIP Authorized");
- }else{
- !$debug ? exit(http_response_code(401)) : die("$currentUser on $currentIP Not Authorized");
- }
- }else{
- !$debug ? exit(http_response_code(401)) : die("Not Authorized Due To No Parameters Set");
- }
- }
- function logoOrText(){
- if($GLOBALS['useLogo'] == false){
- return '<h1>'.$GLOBALS['title'].'</h1>';
- }else{
- return '<img style="max-width: 350px;" src="'.$GLOBALS['logo'].'" alt="Home" />';
- }
- }
- function getImages(){
- $dirname = dirname(__DIR__,2).DIRECTORY_SEPARATOR.'plugins'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'tabs'.DIRECTORY_SEPARATOR;
- $path = 'plugins/images/tabs/';
- $images = scandir($dirname);
- $ignore = Array(".", "..", "._.DS_Store", ".DS_Store");
- $allIcons = array();
- foreach($images as $image){
- if(!in_array($image, $ignore)) {
- $allIcons[] = $path.$image;
- }
- }
- return $allIcons;
- }
- function editImages(){
- $array = array();
- $postCheck = array_filter($_POST);
- $filesCheck = array_filter($_FILES);
- if(!empty($postCheck)){
- if($_POST['data']['action'] == 'deleteImage'){
- if(file_exists(dirname(__DIR__,2).DIRECTORY_SEPARATOR.$_POST['data']['imagePath'])){
- writeLog('success', 'Image Manager Function - Deleted Image ['.$_POST['data']['imageName'].']', $GLOBALS['organizrUser']['username']);
- return (unlink(dirname(__DIR__,2).DIRECTORY_SEPARATOR.$_POST['data']['imagePath'])) ? true : false;
- }
- }
- }
- if(!empty($filesCheck)){
- ini_set('upload_max_filesize', '10M');
- ini_set('post_max_size', '10M');
- $tempFile = $_FILES['file']['tmp_name'];
- $targetPath = dirname(__DIR__,2).DIRECTORY_SEPARATOR.'plugins'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'tabs'.DIRECTORY_SEPARATOR;
- $targetFile = $targetPath. $_FILES['file']['name'];
- return (move_uploaded_file($tempFile,$targetFile)) ? true : false;
- }
- return false;
- }
- function getThemes(){
- $themes = array();
- foreach (glob(dirname(__DIR__,2).DIRECTORY_SEPARATOR.'css' . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . "*.css") as $filename){
- $themes[] = array(
- 'name' => preg_replace('/\\.[^.\\s]{3,4}$/', '', basename($filename)),
- 'value' => preg_replace('/\\.[^.\\s]{3,4}$/', '', basename($filename))
- );
- }
- return $themes;
- }
- /*
- function sendEmail($email = null, $username = "Organizr User", $subject, $body, $cc = null, $bcc = null){
- try {
- $mail = new PHPMailer(true);
- $mail->isSMTP();
- $mail->Host = $GLOBALS['smtpHost'];
- $mail->SMTPAuth = $GLOBALS['smtpHostAuth'];
- $mail->Username = $GLOBALS['smtpHostUsername'];
- $mail->Password = $GLOBALS['smtpHostPassword'];
- $mail->SMTPSecure = $GLOBALS['smtpHostType'];
- $mail->Port = $GLOBALS['smtpHostPort'];
- $mail->setFrom($GLOBALS['smtpHostSenderEmail'], $GLOBALS['smtpHostSenderName']);
- $mail->addReplyTo($GLOBALS['smtpHostSenderEmail'], $GLOBALS['smtpHostSenderName']);
- $mail->isHTML(true);
- if($email){
- $mail->addAddress($email, $username);
- }
- if($cc){
- $mail->addCC($cc);
- }
- if($bcc){
- if(strpos($bcc , ',') === false){
- $mail->addBCC($bcc);
- }else{
- $allEmails = explode(",",$bcc);
- foreach($allEmails as $gotEmail){
- $mail->addBCC($gotEmail);
- }
- }
- }
- $mail->Subject = $subject;
- $mail->Body = $body;
- $mail->send();
- writeLog('success', 'Mail Function - E-Mail Sent', $GLOBALS['organizrUser']['username']);
- return true;
- } catch (Exception $e) {
- writeLog('error', 'Mail Function - E-Mail Failed['.$mail->ErrorInfo.']', $GLOBALS['organizrUser']['username']);
- return false;
- }
- return false;
- }
- //EMAIL SHIT
- function sendTestEmail($to, $from, $host, $auth, $username, $password, $type, $port, $sendername){
- try {
- $mail = new PHPMailer(true);
- $mail->isSMTP();
- $mail->Host = $host;
- $mail->SMTPAuth = $auth;
- $mail->Username = $username;
- $mail->Password = $password;
- $mail->SMTPSecure = $type;
- $mail->Port = $port;
- $mail->setFrom($from, $sendername);
- $mail->addReplyTo($from, $sendername);
- $mail->isHTML(true);
- $mail->addAddress($to, "Organizr Admin");
- $mail->Subject = "Organizr Test E-Mail";
- $mail->Body = "This was just a test!";
- $mail->send();
- writeLog('success', 'Mail Function - E-Mail Test Sent', $GLOBALS['organizrUser']['username']);
- return true;
- } catch (Exception $e) {
- writeLog('error', 'Mail Function - E-Mail Test Failed['.$mail->ErrorInfo.']', $GLOBALS['organizrUser']['username']);
- return false;
- }
- return false;
- }
- */
|