aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/mayor-base/www/include/base/base.php
blob: f2d6458323273c1cab628f1b87f22df9835b72bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
/*
    Module: base
*/

function isMobile() {
    if(preg_match('/(up.browser|up.link|windows ce|iemobile|mmp|symbian|smartphone|midp|wap|phone| vodafone|o2|pocket|mobile|pda|psp)/i',strtolower($_SERVER['HTTP_USER_AGENT'])))
	return true;
    //if(((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'text/vnd.wap.wml')>0) or (strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0)) or ((((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE']) or isset($_SERVER['X-OperaMini-Features']) or isset($_SERVER['UA-pixels']))))))
    $mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4));
    $mobile_agents = array('acs-','alav','alca','amoi','audi','aste','avan','benq' ,'bird','blac','blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno','ipaq','java' ,'jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-','maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-','newt','noki','opwv','palm','pana','pant','pdxg' ,'phil','play','pluc','port','prox','qtek','qwap', 'sage','sams','sany','sch-','sec-','send','seri','sgh-','shar','sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-','tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp','wapr','webc','winw','winw' ,'xda','xda-');
    if(in_array($mobile_ua,$mobile_agents)) {
	return true;
    }
}

// ------------------------------------------
// PHP session
// ------------------------------------------

    session_start();

// ------------------------------------------
// Böngésző azonosítás
// ------------------------------------------

    if (defined('_ALLOWPDAIDENTIFICATION') && isMobile()) define('_USER_AGENT','ppc'); // inkább ketté kéne bontani [wap,ppc] tartalomra
    else
    if (strpos($_SERVER['HTTP_USER_AGENT'],'Opera') !== false) define('_USER_AGENT','opera');
    elseif (strpos($_SERVER['HTTP_USER_AGENT'],'Gecko') !== false) define('_USER_AGENT','gecko');
    elseif (strpos($_SERVER['HTTP_USER_AGENT'],'MSIE') !== false) define('_USER_AGENT','msie');
    else define('_USER_AGENT','');

    if (strstr($_SERVER['HTTP_USER_AGENT'],'iPhone')!=false) define('_USER_AGENT_PLUS','iPhone');
    else define('_USER_AGENT_PLUS','');

    if (($_SESSION['isMobile']=isMobile())===true) $_SESSION['pageLayout']=1; // patch

// MaYoR revision konstans definiálása

    if (@file_exists(_LOGDIR.'/revision')) {
	$_rf = @fopen(_LOGDIR.'/revision', "r");
	if ($_rf) $rev = @fgets($_rf, 64);
	@fclose($_rf);
    } else {
	//rev missing...
    }
    define('_MAYORREV',chop($rev));
    unset($rev);

// ------------------------------------------
// Default értékek
// ------------------------------------------
    /*
	$policy - hozzáférési mód                  - kötelező
	$page   - megjelenítendő oldal             - kötelező
	$sub    - aloldal                          - opcionális
	$f      - file                             - kötelező
	$lang   - az oldal nyelve                  - kötelező
	skin    - az oldal témája, "bőre"          - kötelező
	$action - elvégzendő feladat megjelölésére - opcionális
	$_SESSION['alert']  - figyelmeztető üzenet (tömb)      - opcionális
    */

    if (!defined('_DEFAULT_LANG')) define('_DEFAULT_LANG','hu_HU');

    if (($__key = array_search('blue', $SKINS)) !== false) unset($SKINS[$__key]);
    if (($__key = array_search('pda', $SKINS)) !== false) unset($SKINS[$__key]);
    if ($AUTH['public']['skin'] == 'blue') $AUTH['public']['skin'] = 'classic';
    if ($AUTH['private']['skin'] == 'blue') $AUTH['private']['skin'] = 'classic';
    if ($AUTH['parent']['skin'] == 'blue') $AUTH['parent']['skin'] = 'classic';
    // itt beolvassuk, később még egy szigorítás is van

    if (_RUNLEVEL=='cron') {
	$policy = 'private';
	@$page = readVariable($_SERVER['argv'][1],'strictstring');
	@$sub = readVariable($_SERVER['argv'][2],'strictstring');
	@$f = readVariable($_SERVER['argv'][3],'strictstring');
	@$sessionID = "cron";
    } else {
	@$policy = readVariable($_REQUEST['policy'],'strictstring',null,$POLICIES);
	@$page = readVariable($_REQUEST['page'],'strictstring');
	@$sub = readVariable($_REQUEST['sub'],'strictstring');
	@$f = readVariable($_REQUEST['f'],'strictstring');
	@$sessionID = readVariable($_GET['sessionID'],'hexa');
    }
    if ($f == '') {
	if ($sub != '') $f = $sub;
	elseif ($page != '') $f = $page;
    }
    @$lang = readVariable($_GET['lang'],'strictstring',null,$LANGUAGES);
    if (_RUNLEVEL === 'cron') $skin = 'cron';
    else @$skin = readVariable($_POST['skin'],'strictstring',readVariable($_GET['skin'],'strictstring',null,$SKINS),$SKINS);
    @$action = readVariable($_REQUEST['action'],'strictstring',null);
    // ++ ha még mindig üres a skin, és pocketpc-ről/pda jövünk (de megengedjük a felülírást)
    // if (_USER_AGENT==='ppc' && $skin=='') $skin='pda';
    // ++
    //--
    if (is_array($POLICIES) && !in_array($policy, $POLICIES)) $policy = _DEFAULT_POLICY;

    define('_POLICY', $policy);

    // Miert ne csatolnánk be az összes policy beállítsait? --> config.php

    if ($f=='' && is_array($DEFAULT_PSF[$policy])) extract($DEFAULT_PSF[$policy], EXTR_OVERWRITE);
    if (!in_array($lang, $LANGUAGES)) $lang=_DEFAULT_LANG;
    // ha a skin még mindig üres, akkor az ellenőrzésnél a default-ot állítjuk be...
    if (!@in_array($skin, $SKINS)) $skin = (isset($AUTH[$policy]['skin'])) ? $AUTH[$policy]['skin'] : _DEFAULT_SKIN;

    if (file_exists("lang/$lang/base/base.php")) {
        require("lang/$lang/base/base.php");
    } elseif (file_exists('lang/'._DEFAULT_LANG.'/base/base.php')) {
        require('lang/'._DEFAULT_LANG.'/base/base.php');
    }

    // A skin-hez tartozó beállátosok.. ha vannak... - ide való? De még a *-pre elé!
    if (file_exists(_CONFIGDIR."/skin-$skin/config.php")) {
        require(_CONFIGDIR."/skin-$skin/config.php");
    } elseif (file_exists(_CONFIGDIR.'/skin-'._DEFAULT_SKIN.'/config.php')) {
        require(_CONFIGDIR.'/skin-'._DEFAULT_SKIN.'/config.php');
    }

// -----------------------------------------------------------------
//  page()
// -----------------------------------------------------------------

function page($page, $sub, $f, $lang, $skin, $policy = _DEFAULT_POLICY) {

    global $_JSON;
    if (html_alert($_SESSION['alert'])) { // A figyelmeztető üzenet letilthatja az oldal további megjelenítését.
        if ($sub != '') {
            $load = "$sub/$f";
        } else {
            $load = $f;
        }

	// --TEST $API_DICTIONARY['api']['naplo']['orarend']['orarend'] = true;
	if ($skin=='api') {
	    $_JSON['api']['version'] = '1.0';
	    if (isset($API_DICTIONARY[$skin][$page][$sub][$f])===false) { // --TODO API_DICTIONARY
		return false;
	    }
	}

        if (file_exists("policy/$policy/$page/$load.php")) {
    	    if (file_exists("lang/$lang/module-$page/base.php")) {
		require_once("lang/$lang/module-$page/base.php");
	    } elseif (file_exists("lang/"._DEFAULT_LANG."/module-$page/base.php")) {
		require_once("lang/"._DEFAULT_LANG."/module-$page/base.php");
    	    }
    	    if (file_exists("lang/$lang/module-$page/$load.php")) {
		require_once("lang/$lang/module-$page/$load.php");
	    } elseif (file_exists("lang/"._DEFAULT_LANG."/module-$page/$load.php")) {
		require_once("lang/"._DEFAULT_LANG."/module-$page/$load.php");
    	    }
    	    if (file_exists("skin/$skin/module-$page/html/base.phtml")) {
		require_once("skin/$skin/module-$page/html/base.phtml");
	    } elseif ($skin!=='api' && file_exists("skin/"._DEFAULT_SKIN."/module-$page/html/base.phtml")) { // api esetén nem töltjük be a default skin phtml-t
		require_once("skin/"._DEFAULT_SKIN."/module-$page/html/base.phtml");
    	    }
    	    if (file_exists("skin/$skin/module-$page/html/$load.phtml")) {
		require_once("skin/$skin/module-$page/html/$load.phtml");
	    } elseif ($skin!=='api' && file_exists("skin/"._DEFAULT_SKIN."/module-$page/html/$load.phtml")) { // api esetén nem töltjük be a default skin phtml-t
		require_once("skin/"._DEFAULT_SKIN."/module-$page/html/$load.phtml");
    	    }
	    $_JSON['api']['debug'] = serialize($page.$load);

	    include("policy/$policy/$page/$load.php");
        } elseif (file_exists("static/$lang/$page/$load.html")) {
	    include("static/$lang/$page/$load.html");
        } else {
            //??? ha már kiírtuk a hibaüzeneteket, újabbat nem írhatunk ki sajnos :( html_alert(array('page:page_missing:'."[$page]:[$sub]:[$f]")); --> rights.php
        }
    }
}

function href($href,$get = array('sessionID','lang','skin','policy')) {

    global $sessionID,$lang,$skin,$policy,$page,$sub,$f,$action;
    global $SKINS;
    if ($href!='') {
        if (strpos($href,'?') === false) {
            $href .= '?';
        } else {
            $href.='&';
        }
	for ($i=0;$i<count($get);$i++) {
	    $par = $get[$i];
	    if ($par == 'skin' && $skin == 'ajax') $value = readVariable($_GET['toSkin'],'enum',null,$SKINS);
	    else $value = $$par;
	    if (is_array($value)) { // pl. $_SESSION['alert']
		for ($j=0;$j<count($value);$j++) {
		    $href .= $par.'[]='.$value[$j].'&';
		}
	    } else {
		$href .= "$par=".$value.'&';
	    }
	}
	$href = substr($href,0,-1);
	if ($skin == 'pda') $href .= '&rand='.rand(); // PDA hack - mer' a szemétje nem olvassa újra, hiába a fejlécen a sok okos varázslat... :(
        $href = str_replace('&','&#38;',str_replace('&#38;','&',$href));
    }
    return $href;

}

function location($href,$get = array('sessionID','lang','skin','policy')) {

    global $sessionID,$lang,$skin,$policy,$page,$sub,$f,$action;

    if ($href!='') {
        if (strpos($href,'?')===false) {
            $href.='?';
        } else {
            $href.='&';
        }
	for ($i=0;$i<count($get);$i++) {
	    $par = $get[$i];
	    if (is_array($$par)) { // pl. $_SESSION['alert']
		for ($j=0;$j<count($$par);$j++) {
		    $href .= $par.'[]='.${$par}[$j].'&';
		}
	    } else {
		$href .= "$par=".$$par.'&';
	    }
	}
	$href = substr($href,0,-1);
        $href = str_replace('&#38;','&',$href);
    }

    return $href;

}

?>