author | Dan |
Thu, 03 Jan 2008 00:53:33 -0500 | |
changeset 345 | 4ccdfeee9a11 |
parent 335 | 67bd3121a12e |
child 348 | 87e08a6e4fec |
permissions | -rw-r--r-- |
205 | 1 |
<?php |
2 |
||
3 |
/* |
|
4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
5 |
* Version 1.1.1 |
|
6 |
* Copyright (C) 2006-2007 Dan Fuhry |
|
7 |
* |
|
8 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
9 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
10 |
* |
|
11 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
12 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
13 |
*/ |
|
14 |
||
15 |
/** |
|
16 |
* Language class - processes, stores, and retrieves language strings. |
|
17 |
* @package Enano |
|
18 |
* @subpackage Localization |
|
19 |
* @copyright 2007 Dan Fuhry |
|
20 |
* @license GNU General Public License |
|
21 |
*/ |
|
22 |
||
23 |
class Language |
|
24 |
{ |
|
25 |
||
26 |
/** |
|
27 |
* The numerical ID of the loaded language. |
|
28 |
* @var int |
|
29 |
*/ |
|
30 |
||
31 |
var $lang_id; |
|
32 |
||
33 |
/** |
|
34 |
* The ISO-639-3 code for the loaded language. This should be grabbed directly from the database. |
|
35 |
* @var string |
|
36 |
*/ |
|
37 |
||
38 |
var $lang_code; |
|
210
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
39 |
|
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
40 |
/** |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
41 |
* Used to track when a language was last changed, to allow browsers to cache language data |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
42 |
* @var int |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
43 |
*/ |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
44 |
|
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
45 |
var $lang_timestamp; |
205 | 46 |
|
47 |
/** |
|
48 |
* Will be an object that holds an instance of the class configured with the site's default language. Only instanciated when needed. |
|
49 |
* @var object |
|
50 |
*/ |
|
51 |
||
52 |
var $default; |
|
53 |
||
54 |
/** |
|
55 |
* The list of loaded strings. |
|
56 |
* @var array |
|
57 |
* @access private |
|
58 |
*/ |
|
59 |
||
60 |
var $strings = array(); |
|
61 |
||
62 |
/** |
|
63 |
* Constructor. |
|
64 |
* @param int|string Language ID or code to load. |
|
65 |
*/ |
|
66 |
||
67 |
function __construct($lang) |
|
68 |
{ |
|
69 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
70 |
||
71 |
if ( defined('IN_ENANO_INSTALL') ) |
|
72 |
{ |
|
73 |
// special case for the Enano installer: it will load its own strings from a JSON file and just use this API for fetching and templatizing them. |
|
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
74 |
$this->lang_id = 1; |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
75 |
$this->lang_code = $lang; |
205 | 76 |
return true; |
77 |
} |
|
78 |
if ( is_string($lang) ) |
|
79 |
{ |
|
80 |
$sql_col = 'lang_code="' . $db->escape($lang) . '"'; |
|
81 |
} |
|
82 |
else if ( is_int($lang) ) |
|
83 |
{ |
|
84 |
$sql_col = 'lang_id=' . $lang . ''; |
|
85 |
} |
|
86 |
else |
|
87 |
{ |
|
88 |
$db->_die('lang.php - attempting to pass invalid value to constructor'); |
|
89 |
} |
|
90 |
||
239
0f1b353570a7
Fix a comparison logic SQL error in lang.php; fix attempt to call mysql_real_escape_string() in install without a working DB connection
Dan
parents:
215
diff
changeset
|
91 |
$lang_default = ( $x = getConfig('default_language') ) ? intval($x) : '\'def\''; |
210
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
92 |
$q = $db->sql_query("SELECT lang_id, lang_code, last_changed, ( lang_id = $lang_default ) AS is_default FROM " . table_prefix . "language WHERE $sql_col OR lang_id = $lang_default ORDER BY is_default DESC LIMIT 1;"); |
205 | 93 |
|
94 |
if ( !$q ) |
|
95 |
$db->_die('lang.php - main select query'); |
|
96 |
||
97 |
if ( $db->numrows() < 1 ) |
|
98 |
$db->_die('lang.php - There are no languages installed'); |
|
99 |
||
100 |
$row = $db->fetchrow(); |
|
101 |
||
102 |
$this->lang_id = intval( $row['lang_id'] ); |
|
103 |
$this->lang_code = $row['lang_code']; |
|
210
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
104 |
$this->lang_timestamp = $row['last_changed']; |
205 | 105 |
} |
106 |
||
107 |
/** |
|
108 |
* Fetches language strings from the database, or a cache file if it's available. |
|
109 |
* @param bool If true (default), allows the cache to be used. |
|
110 |
*/ |
|
111 |
||
112 |
function fetch($allow_cache = true) |
|
113 |
{ |
|
114 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
115 |
||
116 |
$lang_file = ENANO_ROOT . "/cache/lang_{$this->lang_id}.php"; |
|
117 |
// Attempt to load the strings from a cache file |
|
118 |
if ( file_exists($lang_file) && $allow_cache ) |
|
119 |
{ |
|
120 |
// Yay! found it |
|
121 |
$this->load_cache_file($lang_file); |
|
122 |
} |
|
123 |
else |
|
124 |
{ |
|
125 |
// No cache file - select and retrieve from the database |
|
126 |
$q = $db->sql_unbuffered_query("SELECT string_category, string_name, string_content FROM " . table_prefix . "language_strings WHERE lang_id = {$this->lang_id};"); |
|
127 |
if ( !$q ) |
|
128 |
$db->_die('lang.php - selecting language string data'); |
|
129 |
if ( $row = $db->fetchrow() ) |
|
130 |
{ |
|
131 |
$strings = array(); |
|
132 |
do |
|
133 |
{ |
|
134 |
$cat =& $row['string_category']; |
|
135 |
if ( !is_array($strings[$cat]) ) |
|
136 |
{ |
|
137 |
$strings[$cat] = array(); |
|
138 |
} |
|
139 |
$strings[$cat][ $row['string_name'] ] = $row['string_content']; |
|
140 |
} |
|
141 |
while ( $row = $db->fetchrow() ); |
|
142 |
// all done fetching |
|
143 |
$this->merge($strings); |
|
144 |
} |
|
145 |
else |
|
146 |
{ |
|
241
c671f3bb8aed
Trying to get lang import to work in the installer; it's not working ATM - cache file is generated with lang_id = 0. Syncing to Nighthawk.
Dan
parents:
239
diff
changeset
|
147 |
if ( !defined('ENANO_ALLOW_LOAD_NOLANG') ) |
c671f3bb8aed
Trying to get lang import to work in the installer; it's not working ATM - cache file is generated with lang_id = 0. Syncing to Nighthawk.
Dan
parents:
239
diff
changeset
|
148 |
$db->_die('lang.php - No strings for language ' . $this->lang_code); |
205 | 149 |
} |
150 |
} |
|
151 |
} |
|
152 |
||
153 |
/** |
|
154 |
* Loads a file from the disk cache (treated as PHP) and merges it into RAM. |
|
155 |
* @param string File to load |
|
156 |
*/ |
|
157 |
||
158 |
function load_cache_file($file) |
|
159 |
{ |
|
160 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
161 |
||
162 |
// We're using eval() here because it makes handling scope easier. |
|
163 |
||
164 |
if ( !file_exists($file) ) |
|
165 |
$db->_die('lang.php - requested cache file doesn\'t exist'); |
|
166 |
||
167 |
$contents = file_get_contents($file); |
|
168 |
$contents = preg_replace('/([\s]*)<\?php/', '', $contents); |
|
169 |
||
170 |
@eval($contents); |
|
171 |
||
172 |
if ( !isset($lang_cache) || ( isset($lang_cache) && !is_array($lang_cache) ) ) |
|
173 |
$db->_die('lang.php - the cache file is invalid (didn\'t set $lang_cache as an array)'); |
|
174 |
||
175 |
$this->merge($lang_cache); |
|
176 |
} |
|
177 |
||
178 |
/** |
|
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
179 |
* Loads a JSON language file and parses the strings into RAM. Will use the cache if possible, but stays far away from the database, |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
180 |
* which we assume doesn't exist yet. |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
181 |
*/ |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
182 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
183 |
function load_file($file) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
184 |
{ |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
185 |
global $db, $session, $paths, $template, $plugins; // Common objects |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
186 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
187 |
if ( !file_exists($file) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
188 |
$db->_die('lang.php - requested JSON file doesn\'t exist'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
189 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
190 |
$contents = trim(@file_get_contents($file)); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
191 |
if ( empty($contents) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
192 |
$db->_die('lang.php - empty language file...'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
193 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
194 |
// Trim off all text before and after the starting and ending braces |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
195 |
$contents = preg_replace('/^([^{]+)\{/', '{', $contents); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
196 |
$contents = preg_replace('/\}([^}]+)$/', '}', $contents); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
197 |
$contents = trim($contents); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
198 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
199 |
if ( empty($contents) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
200 |
$db->_die('lang.php - no meat to the language file...'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
201 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
202 |
$checksum = md5($contents); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
203 |
if ( file_exists("./cache/lang_json_{$checksum}.php") ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
204 |
{ |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
205 |
$this->load_cache_file("./cache/lang_json_{$checksum}.php"); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
206 |
} |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
207 |
else |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
208 |
{ |
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
209 |
$langdata = enano_json_decode($contents); |
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
210 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
211 |
if ( !is_array($langdata) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
212 |
$db->_die('lang.php - invalid language file'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
213 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
214 |
if ( !isset($langdata['categories']) || !isset($langdata['strings']) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
215 |
$db->_die('lang.php - language file does not contain the proper items'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
216 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
217 |
$this->merge($langdata['strings']); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
218 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
219 |
$lang_file = "./cache/lang_json_{$checksum}.php"; |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
220 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
221 |
$handle = @fopen($lang_file, 'w'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
222 |
if ( !$handle ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
223 |
// Couldn't open the file. Silently fail and let the strings come from RAM. |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
224 |
return false; |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
225 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
226 |
// The file's open, that means we should be good. |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
227 |
fwrite($handle, '<?php |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
228 |
// This file was generated automatically by Enano. You should not edit this file because any changes you make |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
229 |
// to it will not be visible in the ACP and all changes will be lost upon any changes to strings in the admin panel. |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
230 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
231 |
$lang_cache = '); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
232 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
233 |
$exported = $this->var_export_string($this->strings); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
234 |
if ( empty($exported) ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
235 |
// Ehh, that's not good |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
236 |
$db->_die('lang.php - load_file(): var_export_string() failed'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
237 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
238 |
fwrite($handle, $exported . '; ?>'); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
239 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
240 |
// Clean up |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
241 |
unset($exported, $langdata); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
242 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
243 |
// Done =) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
244 |
fclose($handle); |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
245 |
} |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
246 |
} |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
247 |
|
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
248 |
/** |
205 | 249 |
* Merges a standard language assoc array ($arr[cat][stringid]) with the master in RAM. |
250 |
* @param array |
|
251 |
*/ |
|
252 |
||
253 |
function merge($strings) |
|
254 |
{ |
|
255 |
// This is stupidly simple. |
|
256 |
foreach ( $strings as $cat_id => $contents ) |
|
257 |
{ |
|
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
258 |
if ( !isset($this->strings[$cat_id]) || ( isset($this->strings[$cat_id]) && !is_array($this->strings[$cat_id]) ) ) |
205 | 259 |
$this->strings[$cat_id] = array(); |
260 |
foreach ( $contents as $string_id => $string ) |
|
261 |
{ |
|
262 |
$this->strings[$cat_id][$string_id] = $string; |
|
263 |
} |
|
264 |
} |
|
265 |
} |
|
266 |
||
267 |
/** |
|
268 |
* Imports a JSON-format language file into the database and merges with current strings. |
|
269 |
* @param string Path to the JSON file to load |
|
270 |
*/ |
|
271 |
||
272 |
function import($file) |
|
273 |
{ |
|
274 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
275 |
||
276 |
if ( !file_exists($file) ) |
|
277 |
$db->_die('lang.php - can\'t import language file: string file doesn\'t exist'); |
|
278 |
||
241
c671f3bb8aed
Trying to get lang import to work in the installer; it's not working ATM - cache file is generated with lang_id = 0. Syncing to Nighthawk.
Dan
parents:
239
diff
changeset
|
279 |
if ( $this->lang_id == 0 ) |
c671f3bb8aed
Trying to get lang import to work in the installer; it's not working ATM - cache file is generated with lang_id = 0. Syncing to Nighthawk.
Dan
parents:
239
diff
changeset
|
280 |
$db->_die('lang.php - BUG: trying to perform import when $lang->lang_id == 0'); |
c671f3bb8aed
Trying to get lang import to work in the installer; it's not working ATM - cache file is generated with lang_id = 0. Syncing to Nighthawk.
Dan
parents:
239
diff
changeset
|
281 |
|
205 | 282 |
$contents = trim(@file_get_contents($file)); |
283 |
||
284 |
if ( empty($contents) ) |
|
285 |
$db->_die('lang.php - can\'t load the contents of the language file'); |
|
286 |
||
287 |
// Trim off all text before and after the starting and ending braces |
|
288 |
$contents = preg_replace('/^([^{]+)\{/', '{', $contents); |
|
289 |
$contents = preg_replace('/\}([^}]+)$/', '}', $contents); |
|
290 |
||
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
291 |
// Correct syntax to be nice to the json parser |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
292 |
|
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
293 |
// eliminate comments |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
294 |
$contents = preg_replace(array( |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
295 |
// eliminate single line comments in '// ...' form |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
296 |
'#^\s*//(.+)$#m', |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
297 |
// eliminate multi-line comments in '/* ... */' form, at start of string |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
298 |
'#^\s*/\*(.+)\*/#Us', |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
299 |
// eliminate multi-line comments in '/* ... */' form, at end of string |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
300 |
'#/\*(.+)\*/\s*$#Us' |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
301 |
), '', $contents); |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
302 |
|
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
303 |
$contents = preg_replace('/([,\{\[])([\s]*?)([a-z0-9_]+)([\s]*?):/', '\\1\\2"\\3" :', $contents); |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
304 |
|
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
305 |
try |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
306 |
{ |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
307 |
$langdata = enano_json_decode($contents); |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
308 |
} |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
309 |
catch(Zend_Json_Exception $e) |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
310 |
{ |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
334
diff
changeset
|
311 |
$db->_die('lang.php - Exception caught by JSON parser</p><pre>' . htmlspecialchars(print_r($e, true)) . '</pre><p>'); |
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
312 |
exit; |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
313 |
} |
205 | 314 |
|
315 |
if ( !is_array($langdata) ) |
|
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
316 |
{ |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
317 |
$db->_die('lang.php - invalid or non-well-formed language file'); |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
243
diff
changeset
|
318 |
} |
205 | 319 |
|
320 |
if ( !isset($langdata['categories']) || !isset($langdata['strings']) ) |
|
321 |
$db->_die('lang.php - language file does not contain the proper items'); |
|
322 |
||
323 |
$insert_list = array(); |
|
324 |
$delete_list = array(); |
|
325 |
||
326 |
foreach ( $langdata['categories'] as $category ) |
|
327 |
{ |
|
328 |
if ( isset($langdata['strings'][$category]) ) |
|
329 |
{ |
|
330 |
foreach ( $langdata['strings'][$category] as $string_name => $string_value ) |
|
331 |
{ |
|
332 |
$string_name = $db->escape($string_name); |
|
333 |
$string_value = $db->escape($string_value); |
|
334 |
$category_name = $db->escape($category); |
|
335 |
$insert_list[] = "({$this->lang_id}, '$category_name', '$string_name', '$string_value')"; |
|
336 |
$delete_list[] = "( lang_id = {$this->lang_id} AND string_category = '$category_name' AND string_name = '$string_name' )"; |
|
337 |
} |
|
338 |
} |
|
339 |
} |
|
340 |
||
341 |
$delete_list = implode(" OR\n ", $delete_list); |
|
342 |
$sql = "DELETE FROM " . table_prefix . "language_strings WHERE $delete_list;"; |
|
343 |
||
344 |
// Free some memory |
|
345 |
unset($delete_list); |
|
346 |
||
347 |
// Run the query |
|
348 |
$q = $db->sql_query($sql); |
|
349 |
if ( !$q ) |
|
350 |
$db->_die('lang.php - couldn\'t kill off them old strings'); |
|
351 |
||
352 |
$insert_list = implode(",\n ", $insert_list); |
|
353 |
$sql = "INSERT INTO " . table_prefix . "language_strings(lang_id, string_category, string_name, string_content) VALUES\n $insert_list;"; |
|
354 |
||
355 |
// Free some memory |
|
356 |
unset($insert_list); |
|
357 |
||
358 |
// Run the query |
|
359 |
$q = $db->sql_query($sql); |
|
360 |
if ( !$q ) |
|
361 |
$db->_die('lang.php - couldn\'t insert strings in import()'); |
|
362 |
||
363 |
// YAY! done! |
|
364 |
// This will regenerate the cache file if possible. |
|
365 |
$this->regen_caches(); |
|
366 |
} |
|
367 |
||
368 |
/** |
|
369 |
* Refetches the strings and writes out the cache file. |
|
370 |
*/ |
|
371 |
||
372 |
function regen_caches() |
|
373 |
{ |
|
374 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
375 |
||
376 |
$lang_file = ENANO_ROOT . "/cache/lang_{$this->lang_id}.php"; |
|
377 |
||
378 |
// Refresh the strings in RAM to the latest copies in the DB |
|
379 |
$this->fetch(false); |
|
380 |
||
381 |
$handle = @fopen($lang_file, 'w'); |
|
382 |
if ( !$handle ) |
|
383 |
// Couldn't open the file. Silently fail and let the strings come from the database. |
|
384 |
return false; |
|
385 |
||
386 |
// The file's open, that means we should be good. |
|
387 |
fwrite($handle, '<?php |
|
388 |
// This file was generated automatically by Enano. You should not edit this file because any changes you make |
|
389 |
// to it will not be visible in the ACP and all changes will be lost upon any changes to strings in the admin panel. |
|
390 |
||
391 |
$lang_cache = '); |
|
392 |
||
393 |
$exported = $this->var_export_string($this->strings); |
|
394 |
if ( empty($exported) ) |
|
395 |
// Ehh, that's not good |
|
396 |
$db->_die('lang.php - var_export_string() failed'); |
|
397 |
||
398 |
fwrite($handle, $exported . '; ?>'); |
|
399 |
||
210
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
400 |
// Update timestamp in database |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
401 |
$q = $db->sql_query('UPDATE ' . table_prefix . 'language SET last_changed = ' . time() . ' WHERE lang_id = ' . $this->lang_id . ';'); |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
402 |
if ( !$q ) |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
403 |
$db->_die('lang.php - updating timestamp on language'); |
2b283402e4e4
Added language export to JSON page and localization for Javascript using $lang.get(). Localized AJAX login interface.
Dan
parents:
209
diff
changeset
|
404 |
|
205 | 405 |
// Done =) |
406 |
fclose($handle); |
|
407 |
} |
|
408 |
||
409 |
/** |
|
410 |
* Calls var_export() on whatever, and returns the function's output. |
|
411 |
* @param mixed Whatever you want var_exported. Usually an array. |
|
412 |
* @return string |
|
413 |
*/ |
|
414 |
||
415 |
function var_export_string($val) |
|
416 |
{ |
|
417 |
ob_start(); |
|
418 |
var_export($val); |
|
419 |
$contents = ob_get_contents(); |
|
420 |
ob_end_clean(); |
|
421 |
return $contents; |
|
422 |
} |
|
423 |
||
424 |
/** |
|
425 |
* Fetches a language string from the cache in RAM. If it isn't there, it will call fetch() again and then try. If it still can't find it, it will ask for the string |
|
426 |
* in the default language. If even then the string can't be found, this function will return what was passed to it. |
|
427 |
* |
|
428 |
* This will also templatize strings. If a string contains variables in the format %foo%, you may specify the second parameter as an associative array in the format |
|
429 |
* of 'foo' => 'foo substitute'. |
|
430 |
* |
|
431 |
* @param string ID of the string to fetch. This will always be in the format of category_stringid. |
|
432 |
* @param array Optional. Associative array of substitutions. |
|
433 |
* @return string |
|
434 |
*/ |
|
435 |
||
436 |
function get($string_id, $substitutions = false) |
|
437 |
{ |
|
438 |
// Extract the category and string ID |
|
439 |
$category = substr($string_id, 0, ( strpos($string_id, '_') )); |
|
440 |
$string_name = substr($string_id, ( strpos($string_id, '_') + 1 )); |
|
441 |
$found = false; |
|
442 |
if ( isset($this->strings[$category]) && isset($this->strings[$category][$string_name]) ) |
|
443 |
{ |
|
444 |
$found = true; |
|
445 |
$string = $this->strings[$category][$string_name]; |
|
446 |
} |
|
447 |
if ( !$found ) |
|
448 |
{ |
|
449 |
// Ehh, the string wasn't found. Rerun fetch() and try again. |
|
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
450 |
if ( defined('IN_ENANO_INSTALL') ) |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
451 |
{ |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
452 |
return $string_id; |
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
453 |
} |
205 | 454 |
$this->fetch(); |
455 |
if ( isset($this->strings[$category]) && isset($this->strings[$category][$string_name]) ) |
|
456 |
{ |
|
457 |
$found = true; |
|
458 |
$string = $this->strings[$category][$string_name]; |
|
459 |
} |
|
460 |
if ( !$found ) |
|
461 |
{ |
|
462 |
// STILL not found. Check the default language. |
|
463 |
$lang_default = ( $x = getConfig('default_language') ) ? intval($x) : $this->lang_id; |
|
464 |
if ( $lang_default != $this->lang_id ) |
|
465 |
{ |
|
466 |
if ( !is_object($this->default) ) |
|
467 |
$this->default = new Language($lang_default); |
|
468 |
return $this->default->get($string_id, $substitutions); |
|
469 |
} |
|
470 |
} |
|
471 |
} |
|
472 |
if ( !$found ) |
|
473 |
{ |
|
474 |
// Alright, it's nowhere. Return the input, grumble grumble... |
|
475 |
return $string_id; |
|
476 |
} |
|
477 |
// Found it! |
|
478 |
// Perform substitutions. |
|
209 | 479 |
// if ( is_array($substitutions) ) |
480 |
// die('<pre>' . print_r($substitutions, true) . '</pre>'); |
|
205 | 481 |
if ( !is_array($substitutions) ) |
482 |
$substitutions = array(); |
|
483 |
return $this->substitute($string, $substitutions); |
|
484 |
} |
|
485 |
||
486 |
/** |
|
487 |
* Processes substitutions. |
|
488 |
* @param string |
|
489 |
* @param array |
|
490 |
* @return string |
|
491 |
*/ |
|
492 |
||
493 |
function substitute($string, $subs) |
|
494 |
{ |
|
495 |
preg_match_all('/%this\.([a-z0-9_]+)%/', $string, $matches); |
|
496 |
if ( count($matches[0]) > 0 ) |
|
497 |
{ |
|
498 |
foreach ( $matches[1] as $i => $string_id ) |
|
499 |
{ |
|
500 |
$result = $this->get($string_id); |
|
501 |
$string = str_replace($matches[0][$i], $result, $string); |
|
502 |
} |
|
503 |
} |
|
209 | 504 |
preg_match_all('/%config\.([a-z0-9_]+)%/', $string, $matches); |
505 |
if ( count($matches[0]) > 0 ) |
|
506 |
{ |
|
507 |
foreach ( $matches[1] as $i => $string_id ) |
|
508 |
{ |
|
509 |
$result = getConfig($string_id); |
|
510 |
$string = str_replace($matches[0][$i], $result, $string); |
|
511 |
} |
|
512 |
} |
|
205 | 513 |
foreach ( $subs as $key => $value ) |
514 |
{ |
|
209 | 515 |
$subs[$key] = strval($value); |
516 |
$string = str_replace("%{$key}%", "{$subs[$key]}", $string); |
|
205 | 517 |
} |
243
a7d0f2711df1
Installer localization started. Welcome, License, and SysReqs pages are fully localized.
Dan
parents:
241
diff
changeset
|
518 |
return "{$string}*"; |
205 | 519 |
} |
520 |
||
521 |
} // class Language |
|
522 |
||
523 |
?> |