forked from dakanji/G2Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.inc
260 lines (228 loc) · 9.14 KB
/
init.inc
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2008 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
/**
* Perform all necessary initialization of the Gallery framework
* @package Gallery
* @author Bharat Mediratta <[email protected]>
* @version $Revision: 20968 $
*/
require_once(dirname(__FILE__) . '/modules/core/classes/GalleryUtilities.class');
function GalleryInitFirstPass($params=array()) {
global $gallery;
ini_set('magic_quotes_runtime', 0);
ini_set('magic_quotes_sybase', 0);
if (function_exists('date_default_timezone_set')) {
/* PHP 5.3 requires a default be set before using any date/time functions */
@date_default_timezone_set(date_default_timezone_get());
}
/* Specify that when an assertion fails, we terminate right away */
assert_options(ASSERT_WARNING, 1);
assert_options(ASSERT_BAIL, 1);
/* Load all the core Gallery classes */
$galleryBase = dirname(__FILE__) . '/';
/*
* Conditional class loading confuses APC resulting in
* "Cannot redeclare class gallerycoreapi"
* log spam. Only load GalleryCoreApi if it isn't loaded.
*/
if (!class_exists("GalleryCoreApi")) {
require_once($galleryBase . 'modules/core/classes/GalleryCoreApi.class');
}
GalleryCoreApi::requireOnce('modules/core/classes/GalleryConstants.class');
GalleryCoreApi::requireOnce('modules/core/classes/GalleryCapabilities.class');
GalleryCoreApi::requireOnce('modules/core/classes/GalleryView.class');
GalleryCoreApi::requireOnce('modules/core/classes/GalleryModule.class');
/*
* Extra hack code for APC: preload some common classes.
*/
if (function_exists("apc_add")) {
GalleryCoreApi::requireOnce('modules/core/classes/GalleryPhotoItem.class');
GalleryCoreApi::requireOnce('modules/core/classes/GalleryMovieItem.class');
}
if (!strncasecmp(PHP_OS, 'win', 3)) {
GalleryCoreApi::requireOnce('modules/core/classes/GalleryPlatform/WinNtPlatform.class');
$platform = new WinNtPlatform();
} else {
GalleryCoreApi::requireOnce('modules/core/classes/GalleryPlatform/UnixPlatform.class');
$platform = new UnixPlatform();
}
$gallery->setPlatform($platform);
$slash = $platform->getDirectorySeparator();
if (isset($params['debug'])) {
$gallery->setDebug($params['debug']);
}
/* Sanitize the data path */
$dataBase = $gallery->getConfig('data.gallery.base');
if ($dataBase{strlen($dataBase) - 1} != $slash) {
$dataBase .= $slash;
$gallery->setConfig('data.gallery.base', $dataBase);
}
/* Init for downloadable plugins. Allow config.php to override. */
$repositoryUrl = @$gallery->getConfig('repository.url');
if (empty($repositoryUrl)) {
$gallery->setConfig('repository.url', 'http://gallery.menalto.com/repository/');
}
$gallery->setConfig('repository.cache', $dataBase . 'cache' . $slash . 'repository' . $slash);
/* Set our various data paths */
$gallery->setConfig('data.gallery.cache', $dataBase . 'cache' . $slash);
$gallery->setConfig('data.gallery.albums', $dataBase . 'albums' . $slash);
$gallery->setConfig('data.gallery.locks', $dataBase . 'locks'. $slash);
$gallery->setConfig('data.gallery.tmp', $dataBase . 'tmp' . $slash);
$gallery->setConfig('data.smarty.base', $dataBase . 'smarty' . $slash);
$gallery->setConfig('data.smarty.templates_c',
$dataBase . 'smarty' . $slash . 'templates_c' . $slash);
$gallery->setConfig('data.gallery.plugins', $galleryBase . 'plugins' . $slash);
$gallery->setConfig('data.gallery.plugins_data', $dataBase . 'plugins_data' . $slash);
$gallery->setConfig('data.gallery.version', $dataBase . 'versions.dat');
$gallery->setConfig('data.gallery.backup', $dataBase . 'backups' . $slash);
$gallery->setConfig('data.gallery.locale', $dataBase . 'locale' . $slash);
/* Configure our url generator */
if (!isset($params['noDatabase'])) {
/*
* Swallow error to prevent GalleryFactoryHelper_loadRegistry cache from breaking upgrade to
* core 1.0.6
*/
list ($ret, $urlGenerator) = @GalleryCoreApi::newFactoryInstance('GalleryUrlGenerator');
/* Swallow ERROR_STORAGE_FAILURE, or automatic upgrading fails */
if ($ret && !($ret->getErrorCode() & ERROR_STORAGE_FAILURE)) {
return $ret;
}
}
if (!isset($urlGenerator)) {
GalleryCoreApi::requireOnce('modules/core/classes/GalleryUrlGenerator.class');
$urlGenerator = new GalleryUrlGenerator();
}
/* Allow for overrides from GalleryEmbed ($param) or from config.php */
$configBaseUri = @$gallery->getConfig('baseUri');
$ret = $urlGenerator->init(
isset($params['baseUri']) ? $params['baseUri']
: (!empty($configBaseUri) ? $configBaseUri : null),
isset($params['g2Uri']) ? $params['g2Uri'] : null,
isset($params['embedSessionString']) ? $params['embedSessionString'] : null);
if ($ret) {
return $ret;
}
$gallery->setUrlGenerator($urlGenerator);
/* Initialize our session */
if (!isset($params['noDatabase'])) {
if (isset($params['gallerySessionId'])) {
GalleryCoreApi::requireOnce('modules/core/classes/GallerySession.class');
GalleryUtilities::putRequestVariable(SESSION_ID_PARAMETER, $params['gallerySessionId']);
}
$ret = $gallery->initSession();
if ($ret) {
return $ret;
}
} else {
$gallery->initEmptySession();
}
/* Initialize our translator */
$language = GalleryUtilities::getRequestVariables('language');
if (isset($params['activeLanguage']) || !empty($language)) {
GalleryCoreApi::requireOnce('modules/core/classes/GalleryTranslator.class');
list ($language) = GalleryTranslator::getSupportedLanguageCode(
empty($language) ? $params['activeLanguage'] : $language);
$gallery->setActiveLanguageCode($language);
}
$ret = $gallery->initTranslator(isset($params['noDatabase']));
if ($ret) {
return $ret;
}
return null;
}
function GalleryInitSecondPass() {
global $gallery;
$session =& $gallery->getSession();
$urlGenerator =& $gallery->getUrlGenerator();
$ret = $urlGenerator->initNavigation();
if ($ret) {
return $ret;
}
/*
* Set our active user. Try getting our active user from registered authentication plugins. If
* not, make us the anonymous user. If we don't have a session, this will initiate one for us.
*/
list ($ret, $pluginIds) = GalleryCoreApi::getAllFactoryImplementationIds('GalleryAuthPlugin');
if ($ret) {
return $ret;
}
foreach ($pluginIds as $pluginId => $className) {
list ($ret, $plugin) =
GalleryCoreApi::newFactoryInstanceById('GalleryAuthPlugin', $pluginId);
if ($ret) {
return $ret;
}
list ($ret, $user) = $plugin->getUser();
if ($ret) {
return $ret;
}
if (isset($user)) {
break;
}
}
if (!isset($user)) {
/* Missing user, be anonymous */
list ($ret, $userId) = GalleryCoreApi::getAnonymousUserId();
if ($ret) {
return $ret;
}
list ($ret, $user) = GalleryCoreApi::loadEntitiesById($userId, 'GalleryUser');
if ($ret) {
return $ret;
}
}
$gallery->setActiveUser($user);
return null;
}
/**
* Interceptor for the standard PHP error handler. We log any errors in the database, then
* proceed with the regular error handler.
* @see http://www.php.net/manual/en/function.set-error-handler.php
*
* @param int $errorNumber the code for the error
* @param string $errorString an error message
* @param string $file the file where the error occurred
* @param int $line the line number of the error
* @param mixed $context the complete context at the time of the error
* @return boolean true if we should skip the regular PHP error handler
*/
function GalleryPhpErrorHandler($errorNumber, $errorString, $file, $line, $context) {
if (error_reporting() == 0) {
/* The @ error suppression operator was used, so don't log this error. */
return false;
}
$errorType = array(
E_ERROR => 'Error', E_WARNING => 'Warning', E_PARSE => 'Parsing Error',
E_NOTICE => 'Notice', E_CORE_ERROR => 'Core Error', E_CORE_WARNING => 'Core Warning',
E_COMPILE_ERROR => 'Compile Error', E_COMPILE_WARNING => 'Compile Warning',
E_USER_ERROR => 'User Error', E_USER_WARNING => 'User Warning',
E_USER_NOTICE => 'User Notice',
/* PHP5+: E_STRICT => 'Runtime Notice' */
/* PHP5.2+: E_RECOVERABLE_ERROR => 'Catchable Fatal Error' */
);
GalleryCoreApi::addEventLogEntry(
'PHP Error',
sprintf("[%s] %s in file %s on line %d", $errorType[$errorNumber],
$errorString, $file, $line),
$errorString);
/* Fall back to the internal error handler */
return false;
}
?>