Throw exception instead of exit.
This commit is contained in:
parent
591a038ad3
commit
37e0201a5f
38 changed files with 156 additions and 149 deletions
|
@ -3,12 +3,12 @@
|
|||
/**
|
||||
* Global and Local Hooks for the API key Management plugin
|
||||
* Global Hooks are defined with the prefix(name of the plugin)
|
||||
* Local Hooks are defined with normal function name
|
||||
*
|
||||
* Local Hooks are defined with normal function name
|
||||
*
|
||||
* All the Global Hooks are called during the page load
|
||||
* and Local Hooks are called according to conditions
|
||||
*
|
||||
* @author shubham meena mentored by Matthew Lagoe
|
||||
*
|
||||
* @author shubham meena mentored by Matthew Lagoe
|
||||
*/
|
||||
|
||||
// Global variable to store the data which is
|
||||
|
@ -27,7 +27,7 @@ function api_key_management_hook_display()
|
|||
global $return_set;
|
||||
// to display plugin name in menu bar
|
||||
$return_set['menu_display'] = 'API Key Management';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Local Hook to validate the posted data
|
||||
|
@ -37,12 +37,12 @@ function hook_validate( $var )
|
|||
if ( isset( $var ) && !empty( $var ) )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Local Hook to set the POST variables and validate them
|
||||
|
@ -51,7 +51,7 @@ function hook_variables()
|
|||
{
|
||||
global $var_set;
|
||||
global $return_set;
|
||||
|
||||
|
||||
if ( hook_validate( $_POST['expDate'] ) && hook_validate( $_POST['sp_name'] ) && hook_validate( $_POST['api_type'] )
|
||||
&& hook_validate( $_POST['character_name'] ) )
|
||||
{
|
||||
|
@ -63,12 +63,12 @@ function hook_variables()
|
|||
$var_set['AddedOn'] = date( "Y-m-d H:i:s" );
|
||||
$var_set['Items'] = '';
|
||||
$return_set['gen_key_validate'] = 'true';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$return_set['gen_key_validate'] = 'false';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Global Hook to create table of the API_key_management
|
||||
|
@ -108,12 +108,12 @@ function api_key_management_hook_create_tb()
|
|||
--
|
||||
ALTER TABLE `ams_api_keys`
|
||||
ADD CONSTRAINT `ams_api_keys_ibfk_1` FOREIGN KEY (`User`) REFERENCES `ryzom_ams`.`ams_user` (`Login`);";
|
||||
|
||||
|
||||
$dbl -> executeWithoutParams( $sql );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook to store data to database which is sent as post
|
||||
* Hook to store data to database which is sent as post
|
||||
* method from the forms in this plugin
|
||||
* It also calls the local hook
|
||||
*/
|
||||
|
@ -121,63 +121,63 @@ function api_key_management_hook_store_db()
|
|||
{
|
||||
global $var_set;
|
||||
global $return_set;
|
||||
|
||||
|
||||
// if the form been submited move forward
|
||||
if ( @hook_validate( $_POST['gen_key'] ) ) {
|
||||
|
||||
|
||||
// local hook to validate the POST variables
|
||||
hook_variables();
|
||||
|
||||
|
||||
// if validation successfull move forward
|
||||
if ( $return_set['gen_key_validate'] == 'true' && $_GET['plugin_action'] == 'generate_key' )
|
||||
{
|
||||
// this part generated the access token
|
||||
include 'generate_key.php';
|
||||
$var_set['AccessToken'] = generate_key :: randomToken( 56, false, true, false );
|
||||
|
||||
|
||||
// database connection
|
||||
$db = new DBLayer( 'lib' );
|
||||
// insert the form data to the database
|
||||
$db -> insert( 'ams_api_keys', $var_set );
|
||||
|
||||
|
||||
// redirect to the the main page with success code
|
||||
// 1 refers to the successfull addition of key to the database
|
||||
header( "Location: index.php?page=layout_plugin&&name=API_key_management&&success=1" );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Global Hook to load the data from db and set it
|
||||
* Global Hook to load the data from db and set it
|
||||
* into the global array to return it to the template
|
||||
*/
|
||||
function api_key_management_hook_load_db()
|
||||
{
|
||||
global $var_set;
|
||||
global $return_set;
|
||||
|
||||
|
||||
$db = new DBLayer( 'lib' );
|
||||
|
||||
|
||||
if ( isset( $_SESSION['user'] ) )
|
||||
{
|
||||
// returns the registered keys
|
||||
$sth = $db -> select( 'ams_api_keys', array( 'user' => $_SESSION['user'] ), 'User = :user' );
|
||||
$row = $sth -> fetchAll();
|
||||
$return_set['api_keys'] = $row;
|
||||
|
||||
|
||||
// fetch the character from the array to compare
|
||||
$com = array_column( $return_set['api_keys'], 'UserCharacter' );
|
||||
|
||||
|
||||
// returns the characters with respect to the user id in the ring_tool->characters
|
||||
$db = new DBLayer( 'ring' );
|
||||
$sth = $db -> selectWithParameter( 'char_name', 'characters' , array(), '1' );
|
||||
$row = $sth -> fetch();
|
||||
|
||||
|
||||
// loop through the character list and remove the character if already have an api key
|
||||
$return_set['characters'] = array_diff( $row, $com );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Global Hook to update or delete the data from db
|
||||
|
@ -186,24 +186,24 @@ function api_key_management_hook_update_db()
|
|||
{
|
||||
global $var_set;
|
||||
global $return_set;
|
||||
|
||||
|
||||
$db = new DBLayer( 'lib' );
|
||||
if ( isset( $_GET['delete_id'] ) )
|
||||
{
|
||||
// removes the registered key using get variable which contains the id of the registered key
|
||||
$db -> delete( 'ams_api_keys', array( 'SNo' => $_GET['delete_id'] ), 'SNo = :SNo' );
|
||||
|
||||
|
||||
// redirecting to the API_key_management plugins template with success code
|
||||
// 2 refers to the succssfull delete condition
|
||||
header( "Location: index.php?page=layout_plugin&&name=API_key_management&&success=2" );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Global Hook to return global variables which contains
|
||||
* the content to use in the smarty templates
|
||||
*
|
||||
*
|
||||
* @return $return_set global array returns the template data
|
||||
*/
|
||||
function api_key_management_hook_return_global()
|
||||
|
|
|
@ -22,20 +22,20 @@ function activate_plugin() {
|
|||
{
|
||||
// if result is successfull it redirects and shows success message
|
||||
header( "Location: index.php?page=plugins&result=3" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else
|
||||
{
|
||||
//if result is unsuccessfull it redirects and throws error
|
||||
header( "Location: index.php?page=plugins&result=4" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//if $_GET variable is not set it redirects and shows error
|
||||
header( "Location: index.php?page=plugins&result=4" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,12 +41,12 @@ function add_sgroup(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -30,13 +30,13 @@ function add_user(){
|
|||
if(Helpers::check_if_game_client()){
|
||||
//if registering ingame then we have to set the header and dont need to reload the template.
|
||||
header('Location: email_sent.php');
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
$pageElements['status'] = $status;
|
||||
$pageElements['no_visible_elements'] = 'TRUE';
|
||||
$pageElements['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
helpers :: loadtemplate( 'register_feedback', $pageElements);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}elseif (isset($_POST['page']) && $_POST['page']=="settings"){
|
||||
// pass error and reload template accordingly
|
||||
$result['prevUsername'] = $_POST["Username"];
|
||||
|
@ -45,7 +45,7 @@ function add_user(){
|
|||
$result['prevEmail'] = $_POST["Email"];
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}else{
|
||||
// pass error and reload template accordingly
|
||||
$result['prevUsername'] = $_POST["Username"];
|
||||
|
@ -55,7 +55,7 @@ function add_user(){
|
|||
$result['no_visible_elements'] = 'TRUE';
|
||||
$pageElements['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
helpers :: loadtemplate( 'register', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -83,7 +83,7 @@ function write_user($newUser){
|
|||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -40,18 +40,18 @@ function add_user_to_sgroup(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_sgroup&id=".$id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -97,29 +97,29 @@ function change_info(){
|
|||
global $INGAME_WEBPATH;
|
||||
$result['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
//ERROR: permission denied!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
header("Location: index.php?page=settings");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: user is not logged in
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ function change_mail(){
|
|||
}
|
||||
}
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
$result['EMAIL'] = $reply;
|
||||
|
@ -72,31 +72,31 @@ function change_mail(){
|
|||
}
|
||||
}
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: permission denied!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
header("Location: index.php?page=settings");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: user is not logged in
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ function change_password(){
|
|||
$succresult['username'] = $_SESSION['user'];
|
||||
$succresult['target_id'] = $_POST['target_id'];
|
||||
helpers :: loadtemplate( 'settings', $succresult);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
|
||||
|
@ -65,31 +65,31 @@ function change_password(){
|
|||
|
||||
$result = array_merge($result,$settings);
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: permission denied!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
header("Location: index.php?page=settings");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: user is not logged in
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -27,30 +27,30 @@ function change_receivemail(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=settings&id=".$user_id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
//ERROR: permission denied!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
header("Location: index.php?page=settings");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: user is not logged in
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -35,32 +35,32 @@ function create_ticket(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_ticket&id=".$ticket_id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//ERROR: LIB DB is not online!
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: permission denied!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
header("Location: index.php?page=create_ticket");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: user is not logged in
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -23,13 +23,13 @@ function deactivate_plugin() {
|
|||
{
|
||||
// if result is successfull it redirects and shows success message
|
||||
header( "Location: index.php?page=plugins&result=5" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else
|
||||
{
|
||||
// if result is unsuccessfull it redirects and shows success message
|
||||
header( "Location: index.php?page=plugins&result=6" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ function deactivate_plugin() {
|
|||
{
|
||||
//if $_GET variable is not set it redirects and shows error
|
||||
header( "Location: index.php?page=plugins&result=6" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,14 +30,14 @@ function delete_plugin() {
|
|||
|
||||
//if result successfull redirect and show success message
|
||||
header( "Location: index.php?page=plugins&result=2" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
// if result unsuccessfull redirect and show error message
|
||||
header( "Location: index.php?page=plugins&result=0" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ function delete_plugin() {
|
|||
{
|
||||
// if result unsuccessfull redirect and show error message
|
||||
header( "Location: index.php?page=plugins&result=0" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ function forgot_password(){
|
|||
$result['EMAIL_ERROR'] = 'TRUE';
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'forgot_password', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
$webUser = new WebUsers($target_id);
|
||||
$target_username = $webUser->getUsername();
|
||||
|
@ -44,7 +44,7 @@ function forgot_password(){
|
|||
$result['prevEmail'] = $email;
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'forgot_password', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -59,17 +59,17 @@ function install_plugin() {
|
|||
if ( $x == '1' )
|
||||
{
|
||||
echo "update found";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else if ( $x == '2' )
|
||||
{
|
||||
echo "Plugin already exists with same name .";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else if ( $x == '3' )
|
||||
{
|
||||
echo "Update info is not present in the update";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
|
||||
|
@ -80,18 +80,18 @@ function install_plugin() {
|
|||
{
|
||||
if ( move_uploaded_file( $fileTmpLoc, $temp_path . "/" . $fileName ) ) {
|
||||
echo "$fileName upload is complete.</br>" . "<button type='submit' class='btn btn-primary' style='margin-left:5px; margin-top:10px;' name='install_plugin'>Install Plugin</button></br>";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "Error in uploading file.";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "Please select a file with .zip extension to upload.";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -126,28 +126,28 @@ function install_plugin() {
|
|||
|
||||
// if everything is successfull redirecting to the plugin template
|
||||
header( "Location: index.php?page=plugins&result=1" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else
|
||||
{
|
||||
// file .info not exists
|
||||
rmdir( $target_path );
|
||||
header( "Location: index.php?page=install_plugin&result=2" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
} else
|
||||
{
|
||||
// extraction failed
|
||||
header( "Location: index.php?page=install_plugin&result=0" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "Please Browse for a file before clicking the upload button";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +279,7 @@ function checkForUpdate( $fileName, $findPath, $tempFile, $tempPath )
|
|||
if ( pluginUpdateExists( $info['Id'], $tempPath . "/" . trim( $fileName, ".zip" ) . "_" . $result['Version'] . ".zip" ) )
|
||||
{
|
||||
echo "Update already exists";
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
else {
|
||||
// removing the preivous update
|
||||
|
@ -294,7 +294,7 @@ function checkForUpdate( $fileName, $findPath, $tempFile, $tempPath )
|
|||
$update['UpdateInfo'] = json_encode( $result );
|
||||
$dbr -> insert( "updates", $update );
|
||||
header( "Location: index.php?page=plugins&result=7" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,21 +38,21 @@ function login(){
|
|||
}else{
|
||||
header( 'Location: '. $WEBPATH . $GETString);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}else{
|
||||
//handle login failure
|
||||
$result = Array();
|
||||
$result['login_error'] = 'TRUE';
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'login', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//go to error page or something, because can't access website db
|
||||
print_r($e);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -49,18 +49,18 @@ function modify_email_of_sgroup(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_sgroup&id=".$sgroupid);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -46,25 +46,25 @@ function reply_on_ticket(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_ticket&id=".$ticket_id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}catch (PDOException $e) {
|
||||
//ERROR: LIB DB is not online!
|
||||
print_r($e);
|
||||
//header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ function reset_password(){
|
|||
}
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'reset_success', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
$GETString = "";
|
||||
foreach($_GET as $key => $value){
|
||||
|
@ -38,7 +38,7 @@ function reset_password(){
|
|||
$result['prevConfirmNewPass'] = $confirmpass;
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'reset_password', $result);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ function update_plugin() {
|
|||
|
||||
// if update is installed succesffully redirect to show success message
|
||||
header( "Location: index.php?page=plugins&result=8" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ function change_permission(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_user&id=".$user_id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
|
||||
}else{
|
||||
|
@ -37,21 +37,21 @@ function change_permission(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_user&id=".$user_id);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ function createticket(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}else{
|
||||
//if user_id is given, then set it as the target_id
|
||||
|
@ -48,7 +48,7 @@ function createticket(){
|
|||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -30,14 +30,14 @@ function dashboard(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ function login() {
|
|||
} else {
|
||||
header('Location: ' . $WEBPATH);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
$pageElements['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
|
|
|
@ -33,7 +33,7 @@ function plugins()
|
|||
// ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header( "Location: index.php?page=error" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -31,6 +31,6 @@ function plugins_update()
|
|||
// ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header( "Location: index.php?page=error" );
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,6 +26,6 @@ function reset_password(){
|
|||
global $WEBPATH;
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: ".$WEBPATH."?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ function settings(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}else{
|
||||
$webUser = new Webusers($_GET['id']);
|
||||
$result = $webUser->getInfo();
|
||||
|
@ -47,7 +47,7 @@ function settings(){
|
|||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ function sgroup_list(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=sgroup_list");
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
if(Ticket_User::isAdmin(unserialize($_SESSION['ticket_user']))){
|
||||
$result['isAdmin'] = "TRUE";
|
||||
|
@ -34,12 +34,12 @@ function sgroup_list(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -149,19 +149,19 @@ function show_queue(){
|
|||
//ERROR: Doesn't exist!
|
||||
$_SESSION['error_code'] = "404";
|
||||
header("Location: ams?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -44,11 +44,11 @@ function show_reply(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ function show_sgroup(){
|
|||
}else{
|
||||
header("Location: ".$WEBPATH."?page=show_sgroup&id=" . $result['target_id']);
|
||||
}
|
||||
die();
|
||||
throw new SystemExit();
|
||||
|
||||
}
|
||||
|
||||
|
@ -65,19 +65,19 @@ function show_sgroup(){
|
|||
//ERROR: No page specified!
|
||||
$_SESSION['error_code'] = "404";
|
||||
header("Location: ams?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}else{
|
||||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -83,11 +83,11 @@ function show_ticket(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,11 +50,11 @@ function show_ticket_info(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -68,11 +68,11 @@ function show_ticket_log(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,11 +42,11 @@ function show_user(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}else{
|
||||
//ERROR: not logged in!
|
||||
header("Location: index.php");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,6 +31,6 @@ function syncing(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,6 +31,6 @@ function userlist(){
|
|||
//ERROR: No access!
|
||||
$_SESSION['error_code'] = "403";
|
||||
header("Location: index.php?page=error");
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,10 +14,14 @@
|
|||
// load required pages and turn error reporting on/off
|
||||
error_reporting( E_ALL );
|
||||
ini_set( 'display_errors', 'on' );
|
||||
|
||||
class SystemExit extends Exception {}
|
||||
try {
|
||||
|
||||
if (!file_exists( '../is_installed')) {
|
||||
header("Cache-Control: max-age=1");
|
||||
header('Location: ../setup', true, 303);
|
||||
die();
|
||||
throw new SystemExit();
|
||||
}
|
||||
|
||||
require( '../config.php' );
|
||||
|
@ -129,3 +133,6 @@ foreach( $hook_content as $key => $value )
|
|||
|
||||
// load the template with the variables in the $return array
|
||||
helpers :: loadTemplate( $page , $return );
|
||||
|
||||
}
|
||||
catch (SystemExit $e) { /* do nothing */ }
|
||||
|
|
Loading…
Reference in a new issue