debug switch finally works
[mirrors/Kyberia-bloodline.git] / wwwroot / nodes.php
CommitLineData
51ff3226 1<?php
cae06914 2//requiring main config file with path/database etc. constants
3require_once('config/config.inc');
4
5//Ask for auth if enabled...
6//if(isset($realm) && isset($users)) require_once(INCLUDE_DIR.'http_auth.php');
7
51ff3226 8//starting timer for benchmarking purposes
9$timer_start=Time()+SubStr(MicroTime(),0,8);
51ff3226 10//setting PHPSESSID cookie and starting user session
11session_start();
12
5c9aff9f 13@ini_set('magic_quotes_gpc' , 'off');
cae06914 14if(get_magic_quotes_gpc()) {
15 die("Error: magic_quotes_gpc needs to be disabled! F00K!\n");
16}
5c9aff9f 17
4dd26acd 18//Smarty from DB
00be2b5c
H
19$smarty_resource = 'kyberia';
20//$smarty_resource = ''; //same as 'file' (fallback)
21/* I have moved old templates to DB using following lame script:
cae06914 22 * for i in *.tpl; do j=$(echo "$i" | cut -d . -f 1);
23 echo UPDATE nodes SET node_content = "'$(php -r
24 "echo mysql_escape_string(file_get_contents('$i'));")'" WHERE
25 node_id = "'$j'" COLLATE utf8_bin LIMIT '1;';
26 done | mysql --user=kyberia --password=PASSSSSSS kyberia
27 * In future we should have some mechanism for distributing templates
28 * because they are very important part of kyberia source...
00be2b5c 29 */
822594dc 30
51ff3226 31//connecting to database and creating universal $db object
1675d71f 32//require_once(INCLUDE_DIR.'senate.inc'); // in config already
cb5cd120
H
33require_once(INCLUDE_DIR.'log.inc');
34require_once(INCLUDE_DIR.'ubik.inc');
35require_once(INCLUDE_DIR.'nodes.inc');
36require_once(INCLUDE_DIR.'error_messages.inc');
37require_once(INCLUDE_DIR.'database.inc');
38require_once(INCLUDE_DIR.'transports.inc');
51ff3226 39
e23557a6 40$db = new CLASS_DATABASE();
51ff3226 41
08f5f7a7
DH
42if (preg_match('/id\/([0-9]+)(?:\/([0-9]+)\/?)?/',$_SERVER['PATH_INFO'],$match)) {
43// print_r($match);
44 $_GET['node_id']=$match[1];
5996a28e 45 if (!empty($match[2])) {
08f5f7a7
DH
46 $_GET['template_id']=$match[2];
47 }
5996a28e 48} elseif (preg_match('/k\/([a-z0-9]{1,7})(?:\/([a-z0-9]{1,7}))?/',$_SERVER['PATH_INFO'],$match)) {
08f5f7a7 49 $_GET['node_id']=base_convert($match[1], 36, 10);
5996a28e
DH
50 if (!empty($match[2])) {
51 $_GET['template_id']=base_convert($match[2],36,10);
08f5f7a7
DH
52 }
53} elseif (preg_match('/name\/(.*?)\/?$/',$_SERVER['PATH_INFO'],$match)) {
54 $_GET['node_id'] = nodes::getNodeIdByName($match[1]);
55}
56
51ff3226 57if (!empty($_GET['template_id'])) {
58 $template_id=$_GET['template_id'];
5b9c0808 59} else {
60 $template_id=false;
51ff3226 61}
51ff3226 62
08f5f7a7
DH
63error_reporting(1);
64$_SESSION['debugging']=0;
65//unset($_SESSION['debugging']);
66//Well... we should make some event
67//or JavaScript page to turning this on/off...
68//exit;
69if ($_SESSION['debugging']) {
70 error_reporting(E_ALL);
71 echo 'GET VARIABLES::<br/>';
72 print_r($_GET);
73 echo 'POST VARIABLES::<br/>';
74 print_r($_POST);
75 echo '<b>SESSION VARIABLES::</b><br/>';
76 print_r($_SESSION);
77}
78
79
80
81//initializing node
82if (!is_numeric($_GET['node_id'])) {
83 $_GET['node_id']=WELCOME_NODE;
51ff3226 84}
85
08f5f7a7
DH
86$node = nodes::getNodeById($_GET['node_id'],(isset($_SESSION['user_id']))?$_SESSION['user_id']:'');
87
065440d5 88//XXX Paths are wrong (!)
51ff3226 89//loading smarty template engine and setting main parameters
90require(SMARTY_DIR.'Smarty.class.php');
91$smarty = new Smarty;
6a967e24 92require(INCLUDE_DIR.'smarty/resource.kyberia.php');
00be2b5c 93$smarty->default_resource_type=$smarty_resource;
51ff3226 94
065440d5 95//$smarty->php_handling = SMARTY_PHP_REMOVE; //XXX
39244cfc 96$smarty->template_dir = TEMPLATE_DIR;
51ff3226 97//echo TEMPLATE_DIR.TEMPLATE_SET;
98//echo $smarty->template_dir;
a81e2af2 99$smarty->compile_dir = SYSTEM_DATA.'templates_c/';
175043f4 100$smarty->config_dir = SMARTY_DIR.'configs/'; //XXX neexistuje
51ff3226 101$smarty->cache_dir = SMARTY_DIR.'cache/';
102$smarty->plugins_dir = SMARTY_PLUGIN_DIR ;
103if ($_SESSION['debugging']) $smarty->debugging=true;
104
9850bdc4 105// initializing variables
106// preg_replace prevents LFI
65c78def 107if (empty($_POST['event'])) $event='display';
9850bdc4 108else $event= preg_replace( "![^a-zA-Z0-9_]+!", "", $_POST['event']);
51ff3226 109
110
111if ($_SESSION['debugging']) {
112 echo "<pre><b>NODE::";
113 print_r($node);
114 echo "</pre>";
115}
116
12425f11 117if ((isset($_SESSION['user_id']) && ($node['node_creator']==$_SESSION['user_id']))) {
006bd683 118 $node['node_permission']='owner';
119}
51ff3226 120
006bd683 121if (isset($_SESSION['cube_vector']) && ($_SESSION['cube_vector'])) {
51ff3226 122 if (strpos($node['node_vector'],$_SESSION['cube_vector'])===false) {
123 echo "node::".$node['node_vector'];
124 echo "cube_Vector::".$_SESSION['cube_vector'];
125 echo "you are out of allowed cwbe. access forbidden";
126 die();
127 }
128}
129
570ab4b6 130@include_once(INCLUDE_DIR.'mail_rss.inc'); //haluz...
51ff3226 131
132//checking permissions
133function _checkPermissions()
134{
135 global $permissions, $node;
e909f81b 136 require(INCLUDE_DIR.'permissions.inc');
51ff3226 137 $permissions=permissions::checkPermissions($node);
138 $permissions['h']=permissions::isHierarch($node);
139}
51ff3226 140_checkPermissions();
141
08f5f7a7
DH
142
143// DO NOT MESS WITH THIS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
144//creating neural network
145$db->update("update nodes set node_views=node_views+1 where node_id='".$node['node_id']."'");
146if (isset($referer_id) && is_numeric($referer_id)) {
147 $q="update neurons set synapse=synapse+1 where dst='".$node['node_id']."' and src='$referer_id'";
148 $result=$db->update($q);
149 if (!$result) {
150 $q="insert into neurons set synapse_creator='".$_SESSION['user_id']."',dst='".$node['node_id']."',src='$referer_id',synapse=1";
151 $db->query($q);
152 }
153} else {
154 logger::log('enter',$node['node_id'],'failed');
155}
156
157
158
570ab4b6 159//entering the node (executing the eventz)
51ff3226 160if (($permissions['r']) || ($event != 'register')) {
5b9c0808 161 //performing node_events (based on update/insert/delete db queries)
162 if ($event) {
163 require(INCLUDE_DIR.'eventz.inc');
164 }
51ff3226 165}
166
51ff3226 167?>
This page took 0.330811 seconds and 4 git commands to generate.