--- nfo/site/htdocs/inc/common/common.php.inc 2004/08/31 02:41:40 1.6 +++ nfo/site/htdocs/inc/common/common.php.inc 2004/09/04 03:06:10 1.10 @@ -4,7 +4,7 @@ --- Setup and common functions include file. -------------------------------------------------------------------------------- --- rabit, 04:31 24.08.2004 ---- $Id: common.php.inc,v 1.6 2004/08/31 02:41:40 rabit Exp $ +--- $Id: common.php.inc,v 1.10 2004/09/04 03:06:10 rabit Exp $ ------------------------------------------------------------------------------*/ //------------------------------------------------------------------------------ @@ -24,7 +24,7 @@ } // The starting entry in the benchmark steps list: -common_benchmark_addstep('COMMON: start'); +common_benchmark_addstep('common: start'); //---------------------------------------------------------- //- Developer host setups: @@ -59,6 +59,8 @@ unset($hostsetups); +common_benchmark_addstep('common: host setup'); + //---------------------------------------------------------- //- Site variable setups: @@ -77,54 +79,65 @@ $common['page']['filename'] = substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/') + 1); $common['page']['url'] = $_SERVER['PHP_SELF']; -common_benchmark_addstep('COMMON: setup'); +common_benchmark_addstep('common: site/page setup'); //------------------------------------------------------------------------------ //- Includes: //common_include('cfg/cfg.php.inc'); -//common_benchmark_addstep('COMMON: CFG included'); +//common_benchmark_addstep('common: CFG included'); -common_include('xmlcp/xmlcp.php.inc'); -common_benchmark_addstep('COMMON: XMLCP included'); +include($common['site']['incroot'] . 'xmlcp/xmlcp.php.inc'); +common_benchmark_addstep('common: XMLCP included'); -common_include('cms/cms.php.inc'); -common_benchmark_addstep('COMMON: CMS included'); +include($common['site']['incroot'] . 'cms/cms.php.inc'); +common_benchmark_addstep('common: CMS included'); //------------------------------------------------------------------------------ //- MySQL connection: -$common['dbc']['dbconnected'] = common_dbc_connectdb(); - -common_benchmark_addstep('COMMON: connect database'); +common_dbc_connectdb(); +common_benchmark_addstep('common: connect database'); //------------------------------------------------------------------------------ //- Session setup: -// Neither proxies, nor the clients are allowed to cache session data: -session_cache_limiter('nocache'); +if(!isset($common['client']['session_enabled'])) { + + // Neither proxies, nor the clients are allowed to cache session data: + session_cache_limiter('nocache'); -// This is neccessary to make the $_SESSION global available: -session_start(); + // This is neccessary to make the $_SESSION global available: + session_start(); -common_benchmark_addstep('COMMON: session init'); +} + +common_benchmark_addstep('common: session init'); if(!isset($_SESSION['common_sessiondata'])) { // The session variable isn't set, create it: - common_benchmark_addstep('COMMON: New session: start'); + common_benchmark_addstep('common: New session: start'); $common_sessiondata = array( 'birthtime' => time(), 'firstrequest' => 1, // Mark the very first page request. - // Empty user data sub array: - 'userdata' => array( + // User data and authorisation: + 'user_auth' => array( 'name' => '', 'password' => '', - 'authorised' => false, + 'authorised' => false + ), + + // User preferences and preferred settings: + 'user_prefs' => array( + 'benchlist' => null, + 'debug' => null, + 'language_id' => null, + 'outputtype' => null ), // Content related additional data: @@ -132,17 +145,17 @@ ); - common_benchmark_addstep('COMMON: New session: create session'); + common_benchmark_addstep('common: New session: create session'); // Protocol the visitors hit and store the columns insertion ID: $common_sessiondata['hit_id'] = common_protocolhit(); - common_benchmark_addstep('COMMON: New session: protocol hit'); + common_benchmark_addstep('common: New session: protocol hit'); // Store a reference to the session data array: $_SESSION['common_sessiondata'] = &$common_sessiondata; - common_benchmark_addstep('COMMON: New session: store session/end'); + common_benchmark_addstep('common: New session: store session/end'); } else { @@ -156,34 +169,24 @@ $sql = "UPDATE hits SET requestcount=requestcount+1 WHERE id='" . $common_sessiondata['hit_id'] . "';"; - mysql_query($sql); + common_dbc_query($sql); - common_benchmark_addstep('COMMON: session/hit data updated'); + common_benchmark_addstep('common: session/hit data updated'); } //------------------------------------------------------------------------------ -//- URL parameter flags and variables: - -if(isset($_GET['devstate'])) $common_sessiondata['userdata']['devstate'] = $_GET['devstate']; - -if(isset($common_sessiondata['userdata']['devstate'])) $common['hostsetup']['devstate'] = $common_sessiondata['userdata']['devstate']; - -//------------------------------------------------------------------------------ //- Functions: -function common_checkauthorisation() { +function common_authorise($username, $password) { global $common_sessiondata; - $username = $common_sessiondata['userdata']['name']; - $password = $common_sessiondata['userdata']['password']; - if((strlen($username) < 2) || (strlen($password) < 2)) return false; $sql = "SELECT id, rights, logincount, lastlogin FROM users WHERE name='$username' AND password='$password';"; - $res = mysql_query($sql); + $res = common_dbc_query($sql); if(!$res) return false; @@ -191,6 +194,11 @@ // Congratulations - authorisation suxxessful! + $common_sessiondata['user_auth']['authorised'] = true; + + $common_sessiondata['user_auth']['name'] = $username; + $common_sessiondata['user_auth']['password'] = $password; + $logintime = time(); $userid = $row[0]; @@ -198,23 +206,19 @@ $logincount = $row[2] + 1; $lastlogin = $row[3]; - $common_sessiondata['userdata']['authorised'] = true; - - $common_sessiondata['userdata']['id'] = $userid; - $common_sessiondata['userdata']['lastlogin'] = $lastlogin; - $common_sessiondata['userdata']['rights'] = $rights; + $common_sessiondata['user_auth']['id'] = $userid; + $common_sessiondata['user_auth']['lastlogin'] = $lastlogin; + $common_sessiondata['user_auth']['rights'] = $rights; // Break if the user already has authorised in this session: - if(isset($common_sessiondata['userdata']['logintime'])) return false; + if(isset($common_sessiondata['user_auth']['logintime'])) return false; - $common_sessiondata['userdata']['logincount'] = $logincount; - $common_sessiondata['userdata']['logintime'] = $logintime; - -// print_r($common_sessiondata['userdata']); + $common_sessiondata['user_auth']['logincount'] = $logincount; + $common_sessiondata['user_auth']['logintime'] = $logintime; $sql = "UPDATE users SET logincount='$logincount', lastlogin=FROM_UNIXTIME('$logintime') WHERE id='$userid';"; - $res = mysql_query($sql); + $res = common_dbc_query($sql); if(!$res) return false; @@ -237,13 +241,7 @@ $sql = "INSERT INTO hits (id, timestamp, address, entryurl, referer, sessionid, useragent, requestcount) VALUES (NULL, FROM_UNIXTIME('$unixtime'), '$address', '$entryurl', '$referer', '$sessionid', '$useragent', '1');"; - $res = mysql_query($sql); - - if ($errstr = mysql_error()) { - - print $errstr . "\n"; - - } + $res = common_dbc_query($sql); if(!$res) return false; @@ -252,7 +250,6 @@ } //---------------------------------------------------------- - //- Database functions: function common_dbc_connect() { @@ -294,359 +291,55 @@ function common_dbc_connectdb() { - return (common_dbc_connect() && common_dbc_selectdb()); - -} - -//---------------------------------------------------------- - -//- File functions: - -function common_include($filename) { - global $common; - return include($common['site']['incroot'] . $filename); - -} - -//---------------------------------------------------------- - -//- XMLCP setup: - -xmlcp_registertagcallbacks('b', 'common_cb_xmlcp_start_bold', 'common_cb_xmlcp_end_bold'); -xmlcp_registertagcallbacks('h', 'common_cb_xmlcp_start_headline', 'common_cb_xmlcp_end_headline'); -xmlcp_registertagcallbacks('p', 'common_cb_xmlcp_start_paragraph', 'common_cb_xmlcp_end_paragraph'); -xmlcp_registertagcallbacks('page', 'common_cb_xmlcp_start_page', 'common_cb_xmlcp_end_page'); - -function common_cb_xmlcp_end_bold($h_parser, $tagname) { - -global $xmlcp_cdata; - - $xmlcp_cdata .= ''; - -} - -function common_cb_xmlcp_start_bold($h_parser, $tagname, $attribs) { - -global $xmlcp_cdata; - - $xmlcp_cdata .= ''; - -} - -function common_cb_xmlcp_end_page($h_parser, $tagname) { - -} - -function common_cb_xmlcp_start_page($h_parser, $tagname, $attribs) { - -} - -function common_cb_xmlcp_end_headline($h_parser, $tagname) { - -global $xmlcp_cdata; - - common_headline(trim($xmlcp_cdata)); - - $xmlcp_cdata = ''; - -} - -function common_cb_xmlcp_start_headline($h_parser, $tagname, $attribs) { - -global $xmlcp_cdata; - - $xmlcp_cdata = ''; + $common['dbc']['dbconnected'] = (common_dbc_connect() && common_dbc_selectdb()); -} - -function common_cb_xmlcp_end_paragraph($h_parser, $tagname) { - -global $xmlcp_cdata; - - common_paragraph(trim($xmlcp_cdata)); - - $xmlcp_cdata = ''; + return $common['dbc']['dbconnected']; } -function common_cb_xmlcp_start_paragraph($h_parser, $tagname, $attribs) { - -global $xmlcp_cdata; - - $xmlcp_cdata = ''; - -} - -//---------------------------------------------------------- - -//- ML functions: - -function common_codeparagraph($contents) { - - echo '

- -' . $contents . ' - -

- -'; - -} - -//---------------------------------------------------------- - -function common_headline($caption) { - - echo '

' . $caption . '

- -'; - -} - -//---------------------------------------------------------- - -function common_page($keyname, $language_id = 0) { +function common_dbc_query($sql) { global $common; - common_benchmark_addstep('COMMON: PAGE: start'); - - $list = cms_getlist('xmlpage', $keyname); - - common_benchmark_addstep('COMMON: PAGE: CMS get list'); - - $contentdata = cms_getcontent('xmlpage', $keyname, $language_id); - - common_benchmark_addstep('COMMON: PAGE: CMS get content'); - - $xml = $contentdata['content']; - - common_pageheader(); - - common_benchmark_addstep('COMMON: PAGE: header'); - - if($xml) { - - $titledata = ''; - - for($i = 0; $i < count($list); $i++) { - - $imgtag = ''; - - $titledata .= ($i ? ' -' : '') . (($language_id == $list[$i][3]) ? $imgtag : '' . $imgtag . ''); - - } + if(!$common['dbc']['dbconnected']) return false; - common_pagetitle($contentdata['description'], $titledata . '
'); - - xmlcp_xmlpage2html($xml); - - common_benchmark_addstep('COMMON: PAGE: xmlpage2html'); - -/* - common_headline('$list array, readable:'); - common_codeparagraph('$list = ' . nl2br(htmlentities(print_r($list, true)))); - - common_headline('$contentdata array, readable:'); - common_codeparagraph('$contentdata = ' . nl2br(htmlentities(print_r($contentdata, true)))); - - common_headline('$common array, readable:'); - common_codeparagraph('$common = ' . nl2br(htmlentities(print_r($common, true)))); - - common_headline('$common_sessiondata array, readable:'); - common_codeparagraph('$common_sessiondata = ' . nl2br(htmlentities(print_r($common_sessiondata, true)))); - - common_headline('Content XML:'); - common_codeparagraph(nl2br(htmlentities($xml))); + $res = mysql_query($sql); -*/ + if($errormsg = mysql_error()) { - // Only show the informations when "devstate" is set: - if($common['hostsetup']['devstate']) { + // >>> MTC <<< - common_paragraph(' -Content informations:
+ echo $errormsg . '

-Description: "' . $contentdata['description'] . '" (Type: "xmlpage")
-Creator: "' . $contentdata['creator_name'] . '"
-Date, Time: "' . date('d.m.Y, H:i:s', $contentdata['unixtime']) . '"
-Language: "' . $contentdata['language_name'] . '"
-XML content size: ' . strlen($xml) . ' bytes -
', 'box2'); - - } - - } else { - - common_pagetitle('Bad content request'); - - common_paragraph('Sorry, but the requested content is unknown.'); - - } - - common_benchmark_addstep('COMMON: PAGE: content'); - - common_pagefooter(); - -} - -//---------------------------------------------------------- - -function common_pageheader() { - -global $common, $common_sessiondata; - - echo ' - - - - -www.netfrag.org - - - - - -
- - - - - -
-www.netfrag.org - -  - - - - - - - - -
User
login
 User: 
 Pass:
-
-
- '; -} - -//---------------------------------------------------------- - -function common_pagefooter() { - -global $common; - - // Only show the benchmark list when "devstate" is set: - if($common['hostsetup']['devstate']) { - - $contents = ''; - - for($i = 0; $i < count($common['benchmark']); $i++) { - - $mtimesegs = explode(' ', $common['benchmark'][$i][1]); - $contents .= '"' . $common['benchmark'][$i][0] . '": '; - - if($i) { - - $timediff = (float)($mtimesegs[1] - $lastmtimesegs[1]); - $timediff += $mtimesegs[0] - $lastmtimesegs[0]; - - $contents .= '+' . round($timediff * 1000000) / 1000 . ' ms
-'; - - } else { - - $contents .= 'Start time: ' . date('H:i:s', $mtimesegs[1]) . substr($mtimesegs[0], 1, 4) . '
-'; - - } - - $lastmtimesegs = $mtimesegs; - - } - - common_paragraph(' -Partial execution times:
-
-' . $contents . '
', 'box2'); - } - common_benchmark_addstep('COMMON: page footer'); - - $endmtimesegs = explode(' ', microtime()); - $startmtimesegs = explode(' ', $common['benchmark'][0][1]); - $timediff = (float)($endmtimesegs[1] - $startmtimesegs[1]); - $timediff += $endmtimesegs[0] - $startmtimesegs[0]; - - $devstate = $common['hostsetup']['devstate']; - - echo ' - - - - -
-Page execution time: ' . round($timediff * 100000) / 100 . ' ms.
-[ ' . ($devstate ? 'devstate off' : 'devstate on') . ' ] -
This page is valid XHTML 1.0 -Valid CSS!
- - + if(!$res) return false; - -'; + return $res; } //---------------------------------------------------------- - -function common_pagetitle($title, $additionalcontents = '') { - - echo '

-• ' . $title . '  -' . ($additionalcontents ? $additionalcontents . ' -' : '') . '

- -'; - -} +//- File functions: //---------------------------------------------------------- +//- Utility functions: -function common_paragraph($contents, $class = '') { +function common_get_baseurl() { - echo '

-' . $contents . ' -

+global $common; -'; + return $common['site']['url']; } //------------------------------------------------------------------------------ -common_benchmark_addstep('COMMON: end'); +common_benchmark_addstep('common: end'); //------------------------------------------------------------------------------