Skip to content

Commit

Permalink
Updated to version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed May 2, 2017
1 parent e808904 commit 705831c
Show file tree
Hide file tree
Showing 70 changed files with 71 additions and 71 deletions.
4 changes: 2 additions & 2 deletions common.php
Expand Up @@ -21,13 +21,13 @@
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.0.1
* @version 0.0.2
* @link http://my-aac.org
*/
session_start();

define('MYAAC', true);
define('MYAAC_VERSION', '0.0.1');
define('MYAAC_VERSION', '0.0.2');
define('TABLE_PREFIX', 'myaac_');
define('START_TIME', microtime(true));
define('MYAAC_OS', (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'WINDOWS' : 'LINUX');
Expand Down
2 changes: 1 addition & 1 deletion config.php
Expand Up @@ -13,7 +13,7 @@
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.0.1
* @version 0.0.2
* @link http://my-aac.org
*/

Expand Down
2 changes: 1 addition & 1 deletion index.php
@@ -1 +1 @@
<?php/** * Project: MyAAC * Automatic Account Creator for Open Tibia Servers * File: index.php * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @package MyAAC * @author Slawkens <slawkens@gmail.com> * @copyright 2017 MyAAC * @version 0.0.1 * @link http://my-aac.org */require_once('common.php');require_once(BASE . 'config.local.php');if(file_exists(BASE . 'install') && (!isset($config['installed']) || !$config['installed'])){ header('Location: ' . BASE_DIR . '/install/'); die('Setup detected that <b>install/</b> directory exists. Please visit <a href="' . BASE_DIR . '/install">this</a> url to start MyAAC Installation.<br/>Delete <b>install/</b> directory if you already installed MyAAC.<br/>Remember to REFRESH this page when you\'re done!');}// define page visited, so it can be used within events system$page = isset($_REQUEST['subtopic']) ? $_REQUEST['subtopic'] : (isset($_GET['p']) ? $_GET['p'] : '');if(empty($page) || preg_match('/[^A-z0-9_\-]/', $page)) $page = 'news';$page = strtolower($page);define('PAGE', $page);$template_place_holders = array();// event systemrequire_once(SYSTEM . 'events.php');$events = new Events();$events->trigger('STARTUP');require_once(SYSTEM . 'functions.php');require_once(SYSTEM . 'init.php');require_once(SYSTEM . 'login.php');require_once(SYSTEM . 'status.php');require_once(SYSTEM . 'template.php');if($config['views_counter']) require_once(SYSTEM . 'counter.php');if($config['visitors_counter']){ require_once(SYSTEM . 'libs/visitors.php'); $visitors = new Visitors($config['visitors_counter_ttl']);}// page content loadingif(!isset($content[0])) $content = '';$load_it = true;// check if site has been closedif($config['site_closed']){ if(!admin()) { $title = $config['site_closed_title']; $content .= $config['site_closed_message']; $load_it = false; } if(!$logged) { ob_start(); require(SYSTEM . 'pages/accountmanagement.php'); $content .= ob_get_contents(); ob_end_clean(); $load_it = false; }}if($config['backward_support']) { // backward support for gesior define('INITIALIZED', true); $SQL = $db; $layout_header = template_header(); $layout_name = $template_path; $main_content = $content; $config['access_admin_panel'] = 2; $group_id_of_acc_logged = 0; if($logged && $account_logged) $group_id_of_acc_logged = $account_logged->getGroupId(); $config['site'] = &$config; $config['server'] = &$config['lua']; //$config['gifts_system'] = ($config['site']['shop_system'] == 1); $config['site']['shop_system'] = $config['gifts_system']; $config['serverinfo_page'] = 1; $config['download_page'] = 1; if($config['forum'] != '') $config['forum_link'] = (strtolower($config['forum']) == 'site' ? internalLayoutLink('forum') : $config['forum']);}if($load_it){ if($config['site_closed'] && admin()) $content .= '<p class="note">Site is under maintenance (closed mode). Only privileged users can see it.</p>'; if($config['backward_support']) require(SYSTEM . 'compat_pages.php'); $ignore = false; $file = SYSTEM . 'pages/' . $page . '.php'; if(!@file_exists($file)) { $logged_access = 0; if($logged && $account_logged && $account_logged->isLoaded()) { $logged_access = $account_logged->getAccess(); } $query = $db->query( 'SELECT `title`, `body`, `php`' . ' FROM `' . TABLE_PREFIX . 'pages`' . ' WHERE `name` LIKE ' . $db->quote($page) . ' AND `hidden` != 1 AND `access` <= ' . $db->quote($logged_access)); if($query->rowCount() > 0) // found page { $ignore = true; $query = $query->fetch(); $title = $query['title']; if($query['php'] == '1') // execute it as php code { $tmp = substr($query['body'], 0, 10); if(($pos = strpos($tmp, '<?php')) !== false) { $tmp = preg_replace('/<\?php/', '', $query['body'], 1); } else if(($pos = strpos($tmp, '<?')) !== false) { $tmp = preg_replace('/<\?/', '', $query['body'], 1); } else $tmp = $query['body']; $php_errors = array(); function error_handler($errno, $errstr) { global $php_errors; $php_errors[] = array('errno' => $errno, 'errstr' => $errstr); } set_error_handler('error_handler'); ob_start(); eval($tmp); $content .= ob_get_contents(); ob_end_clean(); restore_error_handler(); if(isset($php_errors[0]) && superAdmin()) { var_dump($php_errors); } } else $content .= $query['body']; // plain html } else { $page = '404'; $file = SYSTEM . 'pages/404.php'; } } ob_start(); if($events->trigger('BEFORE_PAGE')) { if(!$ignore) require($file); } if($config['backward_support'] && isset($main_content)) $content .= $main_content; $content .= ob_get_contents(); ob_end_clean(); $events->trigger('AFTER_PAGE');}$title_full = (isset($title) ? $title . $config['title_separator'] : '') . $config['lua']['serverName'];if(file_exists($template_path . '/index.php')) require($template_path . '/index.php');else if(file_exists($template_path . '/template.php')) // deprecated require($template_path . '/template.php');else if($config['backward_support'] && file_exists($template_path . '/layout.php')){ require($template_path . '/layout.php');}else{ // TODO: save more info to log file die('ERROR: Cannot load template.');}echo '<!-- MyAAC ' . MYAAC_VERSION . ' :: http://www.my-aac.org/ -->' . "\n";if(($config['debug_level'] & 1) == 1) echo '<!-- Generated in :: ' . round(microtime(true) - START_TIME, 4) . ' -->';if(($config['debug_level'] & 2) == 2) echo "\n" . '<!-- Queries done :: ' . $db->queries() . ' -->';if(($config['debug_level'] & 4) == 4 && function_exists('memory_get_peak_usage')) echo "\n" . '<!-- Peak memory usage: ' . convert_bytes(memory_get_peak_usage(true)) . ' -->';$events->trigger('FINISH');?>
<?php/** * Project: MyAAC * Automatic Account Creator for Open Tibia Servers * File: index.php * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @package MyAAC * @author Slawkens <slawkens@gmail.com> * @copyright 2017 MyAAC * @version 0.0.2 * @link http://my-aac.org */require_once('common.php');require_once(BASE . 'config.local.php');if(file_exists(BASE . 'install') && (!isset($config['installed']) || !$config['installed'])){ header('Location: ' . BASE_DIR . '/install/'); die('Setup detected that <b>install/</b> directory exists. Please visit <a href="' . BASE_DIR . '/install">this</a> url to start MyAAC Installation.<br/>Delete <b>install/</b> directory if you already installed MyAAC.<br/>Remember to REFRESH this page when you\'re done!');}// define page visited, so it can be used within events system$page = isset($_REQUEST['subtopic']) ? $_REQUEST['subtopic'] : (isset($_GET['p']) ? $_GET['p'] : '');if(empty($page) || preg_match('/[^A-z0-9_\-]/', $page)) $page = 'news';$page = strtolower($page);define('PAGE', $page);$template_place_holders = array();// event systemrequire_once(SYSTEM . 'events.php');$events = new Events();$events->trigger('STARTUP');require_once(SYSTEM . 'functions.php');require_once(SYSTEM . 'init.php');require_once(SYSTEM . 'login.php');require_once(SYSTEM . 'status.php');require_once(SYSTEM . 'template.php');if($config['views_counter']) require_once(SYSTEM . 'counter.php');if($config['visitors_counter']){ require_once(SYSTEM . 'libs/visitors.php'); $visitors = new Visitors($config['visitors_counter_ttl']);}// page content loadingif(!isset($content[0])) $content = '';$load_it = true;// check if site has been closedif($config['site_closed']){ if(!admin()) { $title = $config['site_closed_title']; $content .= $config['site_closed_message']; $load_it = false; } if(!$logged) { ob_start(); require(SYSTEM . 'pages/accountmanagement.php'); $content .= ob_get_contents(); ob_end_clean(); $load_it = false; }}if($config['backward_support']) { // backward support for gesior define('INITIALIZED', true); $SQL = $db; $layout_header = template_header(); $layout_name = $template_path; $main_content = $content; $config['access_admin_panel'] = 2; $group_id_of_acc_logged = 0; if($logged && $account_logged) $group_id_of_acc_logged = $account_logged->getGroupId(); $config['site'] = &$config; $config['server'] = &$config['lua']; //$config['gifts_system'] = ($config['site']['shop_system'] == 1); $config['site']['shop_system'] = $config['gifts_system']; $config['serverinfo_page'] = 1; $config['download_page'] = 1; if($config['forum'] != '') $config['forum_link'] = (strtolower($config['forum']) == 'site' ? internalLayoutLink('forum') : $config['forum']);}if($load_it){ if($config['site_closed'] && admin()) $content .= '<p class="note">Site is under maintenance (closed mode). Only privileged users can see it.</p>'; if($config['backward_support']) require(SYSTEM . 'compat_pages.php'); $ignore = false; $file = SYSTEM . 'pages/' . $page . '.php'; if(!@file_exists($file)) { $logged_access = 0; if($logged && $account_logged && $account_logged->isLoaded()) { $logged_access = $account_logged->getAccess(); } $query = $db->query( 'SELECT `title`, `body`, `php`' . ' FROM `' . TABLE_PREFIX . 'pages`' . ' WHERE `name` LIKE ' . $db->quote($page) . ' AND `hidden` != 1 AND `access` <= ' . $db->quote($logged_access)); if($query->rowCount() > 0) // found page { $ignore = true; $query = $query->fetch(); $title = $query['title']; if($query['php'] == '1') // execute it as php code { $tmp = substr($query['body'], 0, 10); if(($pos = strpos($tmp, '<?php')) !== false) { $tmp = preg_replace('/<\?php/', '', $query['body'], 1); } else if(($pos = strpos($tmp, '<?')) !== false) { $tmp = preg_replace('/<\?/', '', $query['body'], 1); } else $tmp = $query['body']; $php_errors = array(); function error_handler($errno, $errstr) { global $php_errors; $php_errors[] = array('errno' => $errno, 'errstr' => $errstr); } set_error_handler('error_handler'); ob_start(); eval($tmp); $content .= ob_get_contents(); ob_end_clean(); restore_error_handler(); if(isset($php_errors[0]) && superAdmin()) { var_dump($php_errors); } } else $content .= $query['body']; // plain html } else { $page = '404'; $file = SYSTEM . 'pages/404.php'; } } ob_start(); if($events->trigger('BEFORE_PAGE')) { if(!$ignore) require($file); } if($config['backward_support'] && isset($main_content)) $content .= $main_content; $content .= ob_get_contents(); ob_end_clean(); $events->trigger('AFTER_PAGE');}$title_full = (isset($title) ? $title . $config['title_separator'] : '') . $config['lua']['serverName'];if(file_exists($template_path . '/index.php')) require($template_path . '/index.php');else if(file_exists($template_path . '/template.php')) // deprecated require($template_path . '/template.php');else if($config['backward_support'] && file_exists($template_path . '/layout.php')){ require($template_path . '/layout.php');}else{ // TODO: save more info to log file die('ERROR: Cannot load template.');}echo '<!-- MyAAC ' . MYAAC_VERSION . ' :: http://www.my-aac.org/ -->' . "\n";if(($config['debug_level'] & 1) == 1) echo '<!-- Generated in :: ' . round(microtime(true) - START_TIME, 4) . ' -->';if(($config['debug_level'] & 2) == 2) echo "\n" . '<!-- Queries done :: ' . $db->queries() . ' -->';if(($config['debug_level'] & 4) == 4 && function_exists('memory_get_peak_usage')) echo "\n" . '<!-- Peak memory usage: ' . convert_bytes(memory_get_peak_usage(true)) . ' -->';$events->trigger('FINISH');?>
Expand Down
2 changes: 1 addition & 1 deletion system/compat_pages.php
Expand Up @@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.0.1
* @version 0.0.2
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
Expand Down
2 changes: 1 addition & 1 deletion system/counter.php
Expand Up @@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.0.1
* @version 0.0.2
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
Expand Down

0 comments on commit 705831c

Please sign in to comment.