/[cvs]/nfo/site/htdocs/inc/common/common.php.inc
ViewVC logotype

Diff of /nfo/site/htdocs/inc/common/common.php.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by rabit, Tue Aug 31 02:41:40 2004 UTC revision 1.7 by rabit, Wed Sep 1 08:58:40 2004 UTC
# Line 24  global $common; Line 24  global $common;
24  }  }
25    
26  // The starting entry in the benchmark steps list:  // The starting entry in the benchmark steps list:
27  common_benchmark_addstep('COMMON: start');  common_benchmark_addstep('common: start');
28    
29  //----------------------------------------------------------  //----------------------------------------------------------
30  //- Developer host setups:  //- Developer host setups:
# Line 59  if(isset($hostsetups[$_SERVER['SERVER_NA Line 59  if(isset($hostsetups[$_SERVER['SERVER_NA
59    
60  unset($hostsetups);  unset($hostsetups);
61    
62    common_benchmark_addstep('common: host setup');
63    
64  //----------------------------------------------------------  //----------------------------------------------------------
65  //- Site variable setups:  //- Site variable setups:
66    
# Line 77  $common['site']['gfxurl'] = $common['sit Line 79  $common['site']['gfxurl'] = $common['sit
79  $common['page']['filename'] = substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/') + 1);  $common['page']['filename'] = substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/') + 1);
80  $common['page']['url'] = $_SERVER['PHP_SELF'];  $common['page']['url'] = $_SERVER['PHP_SELF'];
81    
82  common_benchmark_addstep('COMMON: setup');  common_benchmark_addstep('common: site/page setup');
83    
84  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
85  //- Includes:  //- Includes:
86    
87  //common_include('cfg/cfg.php.inc');  //common_include('cfg/cfg.php.inc');
88  //common_benchmark_addstep('COMMON: CFG included');  //common_benchmark_addstep('common: CFG included');
89    
90  common_include('xmlcp/xmlcp.php.inc');  include($common['site']['incroot'] . 'xmlcp/xmlcp.php.inc');
91  common_benchmark_addstep('COMMON: XMLCP included');  common_benchmark_addstep('common: XMLCP included');
92    
93  common_include('cms/cms.php.inc');  include($common['site']['incroot'] . 'cms/cms.php.inc');
94  common_benchmark_addstep('COMMON: CMS included');  common_benchmark_addstep('common: CMS included');
95    
96  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
97  //- MySQL connection:  //- MySQL connection:
98    
99  $common['dbc']['dbconnected'] = common_dbc_connectdb();  common_dbc_connectdb();
100    common_benchmark_addstep('common: connect database');
 common_benchmark_addstep('COMMON: connect database');  
101    
102  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
103  //- Session setup:  //- Session setup:
# Line 107  session_cache_limiter('nocache'); Line 108  session_cache_limiter('nocache');
108  // This is neccessary to make the $_SESSION global available:  // This is neccessary to make the $_SESSION global available:
109  session_start();  session_start();
110    
111  common_benchmark_addstep('COMMON: session init');  common_benchmark_addstep('common: session init');
112    
113  if(!isset($_SESSION['common_sessiondata'])) {  if(!isset($_SESSION['common_sessiondata'])) {
114    
115    // The session variable isn't set, create it:    // The session variable isn't set, create it:
116    
117    common_benchmark_addstep('COMMON: New session: start');    common_benchmark_addstep('common: New session: start');
118    
119    $common_sessiondata = array(    $common_sessiondata = array(
120    
# Line 132  if(!isset($_SESSION['common_sessiondata' Line 133  if(!isset($_SESSION['common_sessiondata'
133    
134    );    );
135    
136    common_benchmark_addstep('COMMON: New session: create session');    common_benchmark_addstep('common: New session: create session');
137    
138    // Protocol the visitors hit and store the columns insertion ID:    // Protocol the visitors hit and store the columns insertion ID:
139    $common_sessiondata['hit_id'] = common_protocolhit();    $common_sessiondata['hit_id'] = common_protocolhit();
140    
141    common_benchmark_addstep('COMMON: New session: protocol hit');    common_benchmark_addstep('common: New session: protocol hit');
142    
143    // Store a reference to the session data array:    // Store a reference to the session data array:
144    $_SESSION['common_sessiondata'] = &$common_sessiondata;    $_SESSION['common_sessiondata'] = &$common_sessiondata;
145    
146    common_benchmark_addstep('COMMON: New session: store session/end');    common_benchmark_addstep('common: New session: store session/end');
147    
148  } else {  } else {
149    
# Line 156  if(!isset($_SESSION['common_sessiondata' Line 157  if(!isset($_SESSION['common_sessiondata'
157    
158    $sql = "UPDATE hits SET requestcount=requestcount+1 WHERE id='" . $common_sessiondata['hit_id'] . "';";    $sql = "UPDATE hits SET requestcount=requestcount+1 WHERE id='" . $common_sessiondata['hit_id'] . "';";
159    
160    mysql_query($sql);    common_dbc_query($sql);
161    
162    common_benchmark_addstep('COMMON: session/hit data updated');    common_benchmark_addstep('common: session/hit data updated');
163    
164  }  }
165    
# Line 183  global $common_sessiondata; Line 184  global $common_sessiondata;
184    
185    $sql = "SELECT id, rights, logincount, lastlogin FROM users WHERE name='$username' AND password='$password';";    $sql = "SELECT id, rights, logincount, lastlogin FROM users WHERE name='$username' AND password='$password';";
186    
187    $res = mysql_query($sql);    $res = common_dbc_query($sql);
188    
189    if(!$res) return false;    if(!$res) return false;
190    
# Line 214  global $common_sessiondata; Line 215  global $common_sessiondata;
215    
216    $sql = "UPDATE users SET logincount='$logincount', lastlogin=FROM_UNIXTIME('$logintime') WHERE id='$userid';";    $sql = "UPDATE users SET logincount='$logincount', lastlogin=FROM_UNIXTIME('$logintime') WHERE id='$userid';";
217    
218    $res = mysql_query($sql);    $res = common_dbc_query($sql);
219    
220    if(!$res) return false;    if(!$res) return false;
221    
# Line 237  global $common, $common_sessiondata; Line 238  global $common, $common_sessiondata;
238    
239    $sql = "INSERT INTO hits (id, timestamp, address, entryurl, referer, sessionid, useragent, requestcount) VALUES (NULL, FROM_UNIXTIME('$unixtime'), '$address', '$entryurl', '$referer', '$sessionid', '$useragent', '1');";    $sql = "INSERT INTO hits (id, timestamp, address, entryurl, referer, sessionid, useragent, requestcount) VALUES (NULL, FROM_UNIXTIME('$unixtime'), '$address', '$entryurl', '$referer', '$sessionid', '$useragent', '1');";
240    
241    $res = mysql_query($sql);    $res = common_dbc_query($sql);
   
   if ($errstr = mysql_error()) {  
   
     print $errstr . "\n";  
   
   }  
242    
243    if(!$res) return false;    if(!$res) return false;
244    
# Line 252  global $common, $common_sessiondata; Line 247  global $common, $common_sessiondata;
247  }  }
248    
249  //----------------------------------------------------------  //----------------------------------------------------------
   
250  //- Database functions:  //- Database functions:
251    
252  function common_dbc_connect() {  function common_dbc_connect() {
# Line 294  global $common; Line 288  global $common;
288    
289  function common_dbc_connectdb() {  function common_dbc_connectdb() {
290    
   return (common_dbc_connect() && common_dbc_selectdb());  
   
 }  
   
 //----------------------------------------------------------  
   
 //- File functions:  
   
 function common_include($filename) {  
   
291  global $common;  global $common;
292    
293    return include($common['site']['incroot'] . $filename);    $common['dbc']['dbconnected'] = (common_dbc_connect() && common_dbc_selectdb());
   
 }  
   
 //----------------------------------------------------------  
   
 //- 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 .= '</b>';  
   
 }  
   
 function common_cb_xmlcp_start_bold($h_parser, $tagname, $attribs) {  
294    
295  global $xmlcp_cdata;    return $common['dbc']['dbconnected'];
   
   $xmlcp_cdata .= '<b>';  
   
 }  
   
 function common_cb_xmlcp_end_page($h_parser, $tagname) {  
   
 }  
   
 function common_cb_xmlcp_start_page($h_parser, $tagname, $attribs) {  
296    
297  }  }
298    
299  function common_cb_xmlcp_end_headline($h_parser, $tagname) {  function common_dbc_query($sql) {
   
 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 = '';  
   
 }  
   
 function common_cb_xmlcp_end_paragraph($h_parser, $tagname) {  
   
 global $xmlcp_cdata;  
   
   common_paragraph(trim($xmlcp_cdata));  
   
   $xmlcp_cdata = '';  
   
 }  
   
 function common_cb_xmlcp_start_paragraph($h_parser, $tagname, $attribs) {  
   
 global $xmlcp_cdata;  
   
   $xmlcp_cdata = '';  
   
 }  
   
 //----------------------------------------------------------  
   
 //- ML functions:  
   
 function common_codeparagraph($contents) {  
   
   echo '<p align="justify" class="hl11">  
 <code>  
 ' . $contents . '  
 </code>  
 </p>  
   
 ';  
   
 }  
   
 //----------------------------------------------------------  
   
 function common_headline($caption) {  
   
   echo '<h4>' . $caption . '</h4>  
   
 ';  
   
 }  
   
 //----------------------------------------------------------  
   
 function common_page($keyname, $language_id = 0) {  
300    
301  global $common;  global $common;
302    
303    common_benchmark_addstep('COMMON: PAGE: start');    if(!$common['dbc']['dbconnected']) return false;
   
   $list = cms_getlist('xmlpage', $keyname);  
304    
305    common_benchmark_addstep('COMMON: PAGE: CMS get list');    $res = mysql_query($sql);
   
   $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 = '<img border="0" height="12" src="' . $common['site']['gfxurl'] . 'icons/flags/' . $list[$i][3] . '.gif" width="17" />';  
   
       $titledata .= ($i ? '  
 ' : '') . (($language_id == $list[$i][3]) ? $imgtag : '<a href="?li=' . $list[$i][3] . '">' . $imgtag . '</a>');  
   
     }  
   
     common_pagetitle($contentdata['description'], $titledata . '<br />');  
   
     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)));  
306    
307  */    if($errormsg = mysql_error()) {
308    
309      // Only show the informations when "devstate" is set:      // >>> MTC <<<
     if($common['hostsetup']['devstate']) {  
310    
311        common_paragraph('<small>      echo $errormsg . '<br />
 <b>Content informations:</b><br />  
312  <br />  <br />
 Description: "<b>' . $contentdata['description'] . '</b>" (Type: "xmlpage")<br />  
 Creator: "<b>' . $contentdata['creator_name'] . '</b>"<br />  
 Date, Time: "<b>' . date('d.m.Y, H:i:s', $contentdata['unixtime']) . '</b>"<br />  
 Language: "<b>' . $contentdata['language_name'] . '</b>"<br />  
 XML content size: <b>' . strlen($xml) . '</b> bytes  
 </small>', '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 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
   
 <html xmlns="http://www.w3.org/1999/xhtml">  
   
 <head>  
 <title>www.netfrag.org</title>  
 <style type="text/css"><!--  
 body, input, table { font: 10pt verdana, serif; }  
 h4 { font-size:12pt; }  
 input { border:1px; }  
 small { font-size:8pt; }  
 .bg11, .box1, .f11, .hl11 { background-color:#50f8f0; }  
 .bg12, .f12 { background-color:#40e8e0; }  
 .bg13 { background-color:#20a0c0; }  
 .bg21, .box2, .f21, .hl21 { background-color:#90fff0; }  
 .bg22, .f22 { background-color:#80f0e0; }  
 .bg23 { background-color:#40c080; }  
 .box1, .f11, .f12 { border:2px solid #20a0c0; }  
 .box2, .f21, .f22 { border:1px solid #40c080; }  
 .box1, .box2, .hl11, .hl21 { padding:4px; }  
 --></style>  
 </head>  
   
 <body>  
   
 <form action="" method="post">  
 <table cellspacing="0" cellpadding="0" width="100%">  
 <tr>  
 <th class="box1" width="100%">  
 <font size="5" style="letter-spacing:4pt;"><b>www.netfrag.org</b></font>  
 </td>  
 <td>&nbsp;</td>  
 <td>  
 <table cellspacing="0" cellpadding="2" class="f22">  
 <tr>  
 <th class="box2" rowspan="2"><b>User<br />login</b></th>  
 <td>&nbsp;User:</td><td><input name="un" size="8" type="text" value="' . $common_sessiondata['userdata']['name'] . '" /></td>  
 <td rowspan="2"><input type="submit" value="Go" />&nbsp;</td>  
 <tr>  
 <td>&nbsp;Pass:</td><td><input name="pw" size="8" type="password" /></td>  
 </tr>  
 </table>  
 </td>  
 </tr>  
 </table>  
 </form>  
   
313  ';  ';
314    
 }  
   
 //----------------------------------------------------------  
   
 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 .= '"<b>' . $common['benchmark'][$i][0] . '</b>": ';  
   
       if($i) {  
   
         $timediff = (float)($mtimesegs[1] - $lastmtimesegs[1]);  
         $timediff += $mtimesegs[0] - $lastmtimesegs[0];  
   
         $contents .= '<b>+' . round($timediff * 1000000) / 1000 . '</b> ms<br />  
 ';  
   
       } else {  
   
         $contents .= 'Start time: <b>' . date('H:i:s', $mtimesegs[1]) . substr($mtimesegs[0], 1, 4) . '</b><br />  
 ';  
   
       }  
   
       $lastmtimesegs = $mtimesegs;  
   
     }  
   
     common_paragraph('<small>  
 <b>Partial execution times:</b><br />  
 <br />  
 ' . $contents . '</small>', 'box2');  
   
315    }    }
316    
317    common_benchmark_addstep('COMMON: page footer');    if(!$res) return false;
   
   $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 '<table cellspacing="0" cellpadding="0" class="box1" width="100%">  
 <tr>  
 <td valign="top">  
 Page execution time: <code>' . round($timediff * 100000) / 100 . '</code> ms.<br />  
 [ ' . ($devstate ? '<a href="?devstate=0">devstate off</a>' : '<a href="?devstate=1">devstate on</a>') . ' ]  
 </td>  
 <td align="right" valign="middle"><a href="http://validator.w3.org/check?uri=referer" target="_blank"><img alt="This page is valid XHTML 1.0" border="0" height="31" src="http://www.w3.org/Icons/valid-xhtml10" width="88" /></a>  
 <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"><img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" /></a></td>  
 </tr>  
 </table>  
   
 </body>  
   
 </html>  
 ';  
   
 }  
   
 //----------------------------------------------------------  
   
 function common_pagetitle($title, $additionalcontents = '') {  
318    
319    echo '<p class="box2">    return $res;
 <big><b>&bull; ' . $title . '</b>&nbsp;</big>  
 ' . ($additionalcontents ? $additionalcontents . '  
 ' : '') . '</p>  
   
 ';  
320    
321  }  }
322    
323  //----------------------------------------------------------  //----------------------------------------------------------
324    //- File functions:
325    
 function common_paragraph($contents, $class = '') {  
   
   echo '<p align="justify"' . ($class ? ' class="' . $class . '"' : '') . '>  
 ' . $contents . '  
 </p>  
   
 ';  
326    
 }  
327    
328  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
329    
330  common_benchmark_addstep('COMMON: end');  common_benchmark_addstep('common: end');
331    
332  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
333    

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed