forked from osclass/Osclass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·151 lines (139 loc) · 6.61 KB
/
index.php
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
<?php
/*
* Osclass – software for creating and publishing online classified
* advertising platforms
*
* Copyright (C) 2012 OSCLASS
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
define('ABS_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . '/');
if(PHP_SAPI==='cli') {
define('CLI', true);
}
require_once ABS_PATH . 'oc-load.php';
if( CLI ) {
$cli_params = getopt('p:t:');
Params::setParam('page', $cli_params['p']);
Params::setParam('cron-type', $cli_params['t']);
if(Params::getParam('page')=='upgrade') {
require_once(osc_lib_path() . 'osclass/upgrade-funcs.php');
exit(1);
} else if( !in_array(Params::getParam('page'), array('cron')) && !in_array(Params::getParam('cron-type'), array('hourly', 'daily', 'weekly')) ) {
exit(1);
}
}
if( file_exists(ABS_PATH . '.maintenance') ) {
if(!osc_is_admin_user_logged_in()) {
require_once LIB_PATH . 'osclass/helpers/hErrors.php';
$title = sprintf(__('Maintenance » %s'), osc_page_title());
$message = sprintf(__('We are sorry for any inconvenience. %s is undergoing maintenance.') . '.', osc_page_title() );
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 900');
osc_die($title, $message);
} else {
define('__OSC_MAINTENANCE__', true);
}
}
if(!osc_users_enabled() && osc_is_web_user_logged_in()) {
Session::newInstance()->_drop('userId');
Session::newInstance()->_drop('userName');
Session::newInstance()->_drop('userEmail');
Session::newInstance()->_drop('userPhone');
Cookie::newInstance()->pop('oc_userId');
Cookie::newInstance()->pop('oc_userSecret');
Cookie::newInstance()->set();
}
if(osc_is_web_user_logged_in()) {
User::newInstance()->lastAccess(osc_logged_user_id(), date('Y-m-d H:i:s'), $_SERVER['REMOTE_ADDR'], 3600);
}
switch( Params::getParam('page') )
{
case ('cron'): // cron system
define('__FROM_CRON__', true);
require_once(osc_lib_path() . 'osclass/cron.php');
break;
case ('user'): // user pages (with security)
if(Params::getParam('action')=='change_email_confirm' || Params::getParam('action')=='activate_alert'
|| (Params::getParam('action')=='unsub_alert' && !osc_is_web_user_logged_in())
|| Params::getParam('action')=='contact_post'
|| Params::getParam('action')=='pub_profile') {
require_once(osc_lib_path() . 'osclass/controller/user-non-secure.php');
$do = new CWebUserNonSecure();
$do->doModel();
} else {
require_once(osc_lib_path() . 'osclass/controller/user.php');
$do = new CWebUser();
$do->doModel();
}
break;
case ('item'): // item pages
require_once(osc_lib_path() . 'osclass/controller/item.php');
$do = new CWebItem();
$do->doModel();
break;
case ('search'): // search pages
require_once(osc_lib_path() . 'osclass/controller/search.php');
$do = new CWebSearch();
$do->doModel();
break;
case ('page'): // static pages
require_once(osc_lib_path() . 'osclass/controller/page.php');
$do = new CWebPage();
$do->doModel();
break;
case ('register'): // register page
require_once(osc_lib_path() . 'osclass/controller/register.php');
$do = new CWebRegister();
$do->doModel();
break;
case ('ajax'): // ajax
require_once(osc_lib_path() . 'osclass/controller/ajax.php');
$do = new CWebAjax();
$do->doModel();
break;
case ('login'): // login page
require_once(osc_lib_path() . 'osclass/controller/login.php');
$do = new CWebLogin();
$do->doModel();
break;
case ('language'): // set language
require_once(osc_lib_path() . 'osclass/controller/language.php');
$do = new CWebLanguage();
$do->doModel();
break;
case ('contact'): //contact
require_once(osc_lib_path() . 'osclass/controller/contact.php');
$do = new CWebContact();
$do->doModel();
break;
case ('custom'): //contact
require_once(osc_lib_path() . 'osclass/controller/custom.php');
$do = new CWebCustom();
$do->doModel();
break;
default: // home and static pages that are mandatory...
require_once(osc_lib_path() . 'osclass/controller/main.php');
$do = new CWebMain();
$do->doModel();
break;
}
if(!defined('__FROM_CRON__')) {
if( osc_auto_cron() ) {
osc_doRequest(osc_base_url(), array('page' => 'cron'));
}
}
/* file end: ./index.php */
?>