2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder main web interface file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
error_reporting( E_ALL );
|
|
|
|
|
|
|
|
$debug = false;
|
|
|
|
if ( $debug )
|
|
|
|
{
|
|
|
|
// Use these for debugging, though not both at once!
|
|
|
|
phpinfo( INFO_VARIABLES );
|
|
|
|
//error_reporting( E_ALL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use new style autoglobals where possible
|
|
|
|
if ( version_compare( phpversion(), "4.1.0", "<") )
|
|
|
|
{
|
|
|
|
$_SESSION = &$HTTP_SESSION_VARS;
|
|
|
|
$_SERVER = &$HTTP_SERVER_VARS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Useful debugging lines for mobile devices
|
|
|
|
if ( false )
|
|
|
|
{
|
|
|
|
ob_start();
|
|
|
|
phpinfo( INFO_VARIABLES );
|
|
|
|
$fp = fopen( "/tmp/env.html", "w" );
|
|
|
|
fwrite( $fp, ob_get_contents() );
|
|
|
|
fclose( $fp );
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on' )
|
|
|
|
{
|
|
|
|
$protocol = 'https';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$protocol = 'http';
|
|
|
|
}
|
|
|
|
define( "ZM_BASE_URL", $protocol.'://'.$_SERVER['HTTP_HOST'] );
|
|
|
|
|
|
|
|
if ( isset($_GET['skin']) )
|
|
|
|
$skin = $_GET['skin'];
|
|
|
|
elseif ( isset($_COOKIE['zmSkin']) )
|
|
|
|
$skin = $_COOKIE['zmSkin'];
|
|
|
|
else
|
|
|
|
$skin = "classic";
|
|
|
|
|
2008-07-16 21:23:32 +08:00
|
|
|
define( "ZM_BASE_PATH", dirname( $_SERVER['REQUEST_URI'] ) );
|
2008-07-14 21:54:50 +08:00
|
|
|
define( "ZM_SKIN_PATH", "skins/$skin" );
|
|
|
|
|
2008-07-23 17:57:11 +08:00
|
|
|
$skinBase = array(); // To allow for inheritance of skins
|
2008-07-14 21:54:50 +08:00
|
|
|
if ( !file_exists( ZM_SKIN_PATH ) )
|
2011-06-21 17:19:10 +08:00
|
|
|
Fatal( "Invalid skin '$skin'" );
|
2008-07-14 21:54:50 +08:00
|
|
|
require_once( ZM_SKIN_PATH.'/includes/init.php' );
|
2008-07-23 17:57:11 +08:00
|
|
|
$skinBase[] = $skin;
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
ini_set( "session.name", "ZMSESSID" );
|
|
|
|
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
if ( !isset($_SESSION['skin']) || isset($_REQUEST['skin']) )
|
|
|
|
{
|
|
|
|
$_SESSION['skin'] = $skin;
|
|
|
|
setcookie( "zmSkin", $skin );
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once( 'includes/config.php' );
|
2011-06-21 17:19:10 +08:00
|
|
|
require_once( 'includes/logger.php' );
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
if ( ZM_OPT_USE_AUTH )
|
|
|
|
if ( isset( $_SESSION['user'] ) )
|
|
|
|
$user = $_SESSION['user'];
|
|
|
|
else
|
|
|
|
unset( $user );
|
|
|
|
else
|
2008-07-16 16:42:28 +08:00
|
|
|
$user = $defaultUser;
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
require_once( 'includes/lang.php' );
|
|
|
|
require_once( 'includes/functions.php' );
|
2008-09-26 17:47:20 +08:00
|
|
|
|
|
|
|
if ( isset($_REQUEST['view']) )
|
2011-07-22 16:37:01 +08:00
|
|
|
$view = detaintPath($_REQUEST['view']);
|
|
|
|
|
|
|
|
if ( isset($_REQUEST['request']) )
|
|
|
|
$request = detaintPath($_REQUEST['request']);
|
2008-09-26 17:47:20 +08:00
|
|
|
|
|
|
|
if ( isset($_REQUEST['action']) )
|
2011-07-22 16:37:01 +08:00
|
|
|
$action = detaintPath($_REQUEST['action']);
|
2008-09-26 17:47:20 +08:00
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
require_once( 'includes/actions.php' );
|
|
|
|
|
|
|
|
foreach ( getSkinIncludes( 'skin.php' ) as $includeFile )
|
|
|
|
require_once $includeFile;
|
|
|
|
|
|
|
|
if ( isset( $_REQUEST['request'] ) )
|
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
foreach ( getSkinIncludes( 'ajax/'.$request.'.php', true, true ) as $includeFile )
|
|
|
|
{
|
|
|
|
if ( !file_exists( $includeFile ) )
|
2011-06-21 17:19:10 +08:00
|
|
|
Fatal( "Request '$request' does not exist" );
|
2008-07-14 21:54:50 +08:00
|
|
|
require_once $includeFile;
|
2008-09-26 17:47:20 +08:00
|
|
|
}
|
2008-08-03 23:05:33 +08:00
|
|
|
return;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
if ( $includeFiles = getSkinIncludes( 'views/'.$view.'.php', true, true ) )
|
2008-07-14 21:54:50 +08:00
|
|
|
{
|
|
|
|
foreach ( $includeFiles as $includeFile )
|
2008-09-26 17:47:20 +08:00
|
|
|
{
|
|
|
|
if ( !file_exists( $includeFile ) )
|
2011-06-21 17:19:10 +08:00
|
|
|
Fatal( "View '$view' does not exist" );
|
2008-07-14 21:54:50 +08:00
|
|
|
require_once $includeFile;
|
2008-09-26 17:47:20 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2008-09-26 17:47:20 +08:00
|
|
|
if ( !$includeFiles || $view == 'error' )
|
2008-07-14 21:54:50 +08:00
|
|
|
{
|
|
|
|
foreach ( getSkinIncludes( 'views/error.php', true, true ) as $includeFile )
|
|
|
|
require_once $includeFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|