-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.php
193 lines (169 loc) · 7.72 KB
/
paths.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
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
<?php
/**
* Constants for paths and other global metadata.
*
* @copyright Roy Rosenzweig Center for History and New Media, 2009-2011
* @license http://www.gnu.org/licenses/gpl-3.0.txt
* @package Omeka
*/
/**
* Define the current version of Omeka.
*/
define('OMEKA_VERSION', '1.5');
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV',
(getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
// The name of the Item Type Metadata element set. This is used wherever it is
// important to distinguish this particular element set from other element sets.
// @todo Localize this and other constants to avoid too many things in the
// global scope.
define('ELEMENT_SET_ITEM_TYPE', 'Item Type Metadata');
if (APPLICATION_ENV == 'development') {
// Report strict in development.
error_reporting(E_ALL | E_STRICT);
} else {
// Report all errors except E_NOTICE.
error_reporting(E_ALL ^ E_NOTICE);
}
// Workaround for PHP 5.3 behavior for timezones.
// If date.timezone is not set, this will query the OS for the timezone
// and set that as the default.
date_default_timezone_set(@date_default_timezone_get());
// Set the zlib config values if the extension has been loaded.
if (extension_loaded('zlib')) {
ini_set('zlib.output_compression', true);
ini_set('zlib.output_compression_level', '5');
}
// Set directory names:
$site['application'] = 'application';
$site['core'] = 'core';
$site['libraries'] = 'libraries';
$site['helpers'] = 'helpers';
$site['controllers'] = 'controllers';
$site['forms'] = 'forms';
$site['models'] = 'models';
$site['config'] = 'config';
$site['admin'] = 'admin';
$site['plugins'] = 'plugins';
$site['logs'] = 'logs';
$site['archive'] = 'archive';
$site['fullsize'] = 'fullsize';
$site['thumbnails'] = 'thumbnails';
$site['square_thumbnails'] = 'square_thumbnails';
$site['files'] = 'files';
$site['public_theme'] = 'themes';
$site['admin_theme'] = 'themes';
$site['views'] = 'views';
$site['scripts'] = 'scripts';
$site['migrations'] = 'migrations';
$site['install'] = 'install';
$site['theme_uploads'] = 'theme_uploads';
$site['languages'] = 'languages';
// Define directory path constants:
define('BASE_DIR', dirname(__FILE__));
define('APP_DIR', BASE_DIR . '/' . $site['application']);
define('PLUGIN_DIR', BASE_DIR . '/' . $site['plugins']);
define('ADMIN_DIR', BASE_DIR . '/' . $site['admin']);
define('ARCHIVE_DIR', BASE_DIR . '/' . $site['archive']);
define('ADMIN_THEME_DIR', BASE_DIR . '/' . $site['admin'] . '/' . $site['admin_theme']);
define('PUBLIC_THEME_DIR', BASE_DIR . '/' . $site['public_theme']);
define('INSTALL_DIR', BASE_DIR . '/' . $site['install']);
define('CORE_DIR', APP_DIR . '/' . $site['core']);
define('MODEL_DIR', APP_DIR . '/' . $site['models']);
define('FORM_DIR', APP_DIR . '/' . $site['forms']);
define('CONTROLLER_DIR', APP_DIR . '/' . $site['controllers']);
define('LIB_DIR', APP_DIR . '/' . $site['libraries']);
define('HELPER_DIR', APP_DIR . '/' . $site['helpers']);
define('CONFIG_DIR', APP_DIR . '/' . $site['config']);
define('LOGS_DIR', APP_DIR . '/' . $site['logs']);
define('VIEW_SCRIPTS_DIR', APP_DIR . '/' . $site['views'] . '/' . $site['scripts']);
define('UPGRADE_DIR', APP_DIR . '/' . $site['migrations']);
define('LANGUAGES_DIR', APP_DIR . '/' . $site['languages']);
define('THUMBNAIL_DIR', ARCHIVE_DIR . '/' . $site['thumbnails']);
define('SQUARE_THUMBNAIL_DIR', ARCHIVE_DIR . '/' . $site['square_thumbnails']);
define('FULLSIZE_DIR', ARCHIVE_DIR . '/' . $site['fullsize']);
define('FILES_DIR', ARCHIVE_DIR . '/' . $site['files']);
define('THEME_UPLOADS_DIR', ARCHIVE_DIR . '/' . $site['theme_uploads']);
define('BACKGROUND_BOOTSTRAP_PATH', CORE_DIR . '/background.php');
// Define the script that loads all the helpers:
define('HELPERS', HELPER_DIR . '/all.php');
// Define the web address constants:
defined('WEB_ROOT') || _define_web_root();
define('WEB_THEME', WEB_DIR . '/themes');
define('WEB_PLUGIN', WEB_ROOT . '/' . $site['plugins']);
define('WEB_ARCHIVE', WEB_ROOT . '/' . $site['archive']);
define('WEB_PUBLIC_THEME', WEB_ROOT . '/' . $site['public_theme']);
define('WEB_VIEW_SCRIPTS', WEB_ROOT . '/' . $site['application'] . '/' . $site['views'] . '/' . $site['scripts']);
define('WEB_THUMBNAILS', WEB_ARCHIVE . '/' . $site['thumbnails']);
define('WEB_SQUARE_THUMBNAILS', WEB_ARCHIVE . '/' . $site['square_thumbnails']);
define('WEB_FULLSIZE', WEB_ARCHIVE . '/' . $site['fullsize']);
define('WEB_FILES', WEB_ARCHIVE . '/' . $site['files']);
define('WEB_THEME_UPLOADS', WEB_ARCHIVE . '/' . $site['theme_uploads']);
// Set the include path for the models directory.
set_include_path(LIB_DIR. PATH_SEPARATOR . MODEL_DIR . PATH_SEPARATOR . get_include_path());
/**
* Most of this has been borrowed directly from Drupal 6.1's
* bootstrap code (bootstrap.inc, conf_init())
*
* @access private
* @todo rename the WEB_ROOT, WEB_DIR constants and add a new one for the
* $base_path
* @return void
**/
function _define_web_root()
{
// Create base URL
$base_root = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
// As $_SERVER['HTTP_HOST'] is user input, ensure it only contains
// characters allowed in hostnames.
$base_url = $base_root .= '://' . preg_replace('/[^a-z0-9-:._]/i', '', $_SERVER['HTTP_HOST']);
// Handle non-standard ports
$port = $_SERVER['SERVER_PORT'];
if (($base_root == 'http' && $port != '80') || ($base_root == 'https' && $port != '443')) {
$base_url .= ":$port";
}
// $_SERVER['SCRIPT_NAME'] can, in contrast to $_SERVER['PHP_SELF'], not
// be modified by a visitor.
if ($dir = trim(dirname($_SERVER['SCRIPT_NAME']), '\,/')) {
$base_path = "/$dir";
$base_url .= $base_path;
$base_path .= '/';
} else {
$base_path = '/';
}
// WEB_ROOT is always the root of the site, whereas WEB_DIR depends on the
// bootstrap used (public/admin)
// @hack Remove the '/admin' part of the URL by regex (only if necessary)
if (defined('ADMIN')) {
$dir = preg_replace('/(.*)admin$/', '$1', $dir, 1);
$dir = rtrim($dir, '/');
}
define('WEB_ROOT', $base_root . (!empty($dir) ? '/' . $dir : '') );
define('WEB_DIR', $base_url);
}
// Get the directory that the bootstrap sits in.
$dir = trim(dirname($_SERVER['SCRIPT_NAME']), '\,/');
// current path should be empty and not a '/' if there is no directory path.
$currentPath = !empty($dir) ? "/$dir" : '';
$adminDir = $site['admin'];
// This is how we determine whether or not we are in the admin bootstrap.
if (defined('ADMIN')) {
$adminPath = $currentPath;
// Strip off the admin directory to get the public dir.
// @hack Remove the '/admin' part of the URL by regex (only if necessary).
$publicPath = rtrim(preg_replace("/(.*)$adminDir$/", '$1', $currentPath, 1), '/');
} else {
$adminPath = "$currentPath/$adminDir";
$publicPath = $currentPath;
}
define('ADMIN_BASE_URL', $adminPath);
define('PUBLIC_BASE_URL', $publicPath);
define('CURRENT_BASE_URL', $currentPath);
// Set up the Zend_Loader autoloader to work for all classes.
// The Omeka namespace must be manually specified to avoid incompatibility with the
// resource autoloader.
require_once 'Zend/Loader/Autoloader.php';
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace('Omeka_');
$autoloader->setFallbackAutoloader(true);
$autoloader->suppressNotFoundWarnings(true);