/[web]/nav/lib.php
ViewVC logotype

Contents of /nav/lib.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2051 - (show annotations) (download)
Sun Feb 10 15:58:16 2013 UTC (11 years, 1 month ago) by rda
File size: 7545 byte(s)
add license headers
1 <?php
2 /**
3 * mageia.org global nav bar utilities.
4 *
5 * PHP version 5.4
6 *
7 * @category Mageia
8 * @package Mageia\Web\nav
9 * @author rda <rda@mageia.org>
10 * @link http://nav.mageia.org/
11 *
12 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL v2+
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License aspublished by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 */
19 // definition
20
21 class NCache
22 {
23 function __construct() { }
24
25 /**
26 * Factory.
27 *
28 * @param string $path where cache file store is located, relative to app path.
29 * @param integer $timeout in seconds
30 *
31 * @return NCache
32 */
33 function build($path, $timeout = 3600)
34 {
35 $path = __DIR__ . '/' . $path;
36
37 if (!is_dir($path))
38 return null;
39
40 if ($timeout < 60)
41 $timeout = 60;
42
43 $i = new self;
44 $i->_path = $path;
45 $i->_timeout = $timeout;
46
47 return $i;
48 }
49
50 /**
51 * Get value for $key.
52 *
53 * @param mixed $key
54 *
55 * @return mixed
56 */
57 function get($key = null)
58 {
59 if (is_null($key))
60 return false;
61
62 $filename = $this->_get_filename($key);
63
64 if ($this->_is_valid_file($filename, $this->_timeout)) {
65 return unserialize(file_get_contents($filename));
66 }
67
68 return null;
69 }
70
71 /**
72 * Save $value under $key.
73 *
74 * @param mixed $key
75 * @param mixed $value
76 */
77 function set($key, $value)
78 {
79 if (is_null($key))
80 return false;
81
82 $filename = $this->_get_filename($key);
83 file_put_contents($filename, serialize($value));
84
85 return true;
86 }
87
88 /**
89 * Get cache file from key.
90 *
91 * @param mixed $key
92 *
93 * @return string
94 */
95 private function _get_filename($key)
96 {
97 $key = hash('sha1', serialize($key));
98
99 return $this->_path . '/' . $key . '.cache';
100 }
101
102 /**
103 * Check that the cache file exists and has not expired.
104 *
105 * @param string $filename
106 *
107 * @return boolean
108 */
109 private function _is_valid_file($filename, $timeout)
110 {
111 if (!file_exists($filename)) {
112 //error_log(sprintf('Could not find %s', $filename), 0);
113 return false;
114 }
115
116 if (filemtime($filename) + $timeout < time()) {
117 //error_log(sprintf('%s timestamp expired (timeout was %ds.).', $filename, $timeout));
118 unlink($filename);
119 return false;
120 }
121
122 //error_log(sprintf('Found %s', $filename));
123 return true;
124 }
125 }
126
127 class l10n
128 {
129 public static $t;
130
131 /**
132 * Load langs/$lang.lang into global $_t array.
133 *
134 * @param string $lang
135 *
136 * @return void
137 */
138 function load($lang)
139 {
140 global $_t;
141 $_t = array();
142
143 if ($lang == 'en')
144 return;
145
146 $lang_file = __DIR__ . '/langs/' . $lang . '.lang';
147 $cache_file = __DIR__ . '/var/tmp/cache/nav_lang_' . $lang . '.php';
148 $lang_ts = filemtime($lang_file);
149
150 if (file_exists($cache_file)) {
151 include $cache_file;
152 if ($_ts > $lang_ts)
153 return;
154 }
155
156 if (file_exists($lang_file)) {
157
158 $f = file($lang_file);
159
160 foreach ($f as $k => $v) {
161
162 if (substr($v, 0, 1) == ';'
163 && !empty($f[$k+1]))
164 {
165 $_t[trim(substr($v, 1))] = trim($f[$k+1]);
166 }
167 }
168
169 //
170 $_t_data = var_export($_t, true);
171 $cache = <<<P
172 <?php
173 /**! Generated. Do not edit. */
174
175 // filemtime($lang_file)
176 \$_ts = $lang_ts;
177
178 // $lang strings
179 global \$_t;
180 \$_t = $_t_data;
181 P;
182 file_put_contents($cache_file, $cache);
183 }
184 }
185
186 /**
187 * Get value for key $s in global array $_t.
188 *
189 * @param string $s
190 *
191 * @return string
192 */
193 function _t($s) {
194 if (trim($s) == '')
195 return '';
196
197 global $_t;
198
199 $s = array_key_exists($s, $_t) ? $_t[$s] : $s;
200 $s = trim(str_replace(array('{ok}', '{OK}', '{Ok}', '{oK}'), '', $s));
201
202 return $s;
203 }
204 }
205
206 /**
207 * Produce navigation HTML code.
208 *
209 * @param boolean $wrap = false should it be wrapped in a <header id="nav" /> element?
210 * @param string $lang = 'en'
211 * @param string $inject = null
212 * @param string $vhost = 'www.mageia.org'
213 * @param object $cache
214 *
215 * @return string HTML code
216 */
217 function _mgnav_html($wrap = false, $lang = 'en', $inject = null, $vhost = 'www.mageia.org', $cache = null)
218 {
219 $key = array($wrap, $lang, $inject, $vhost);
220
221 if (!is_null($cache) && ($h = $cache->get($key))) {
222 apache_note('navCacheHit', 1);
223 return $h;
224 }
225
226 apache_note('navCacheHit', 0);
227
228 $lang = _lang_check($lang);
229
230 l10n::load($lang, $cache);
231
232 $tn = array(
233 array('mageia', '//$S/$L/map/', 'Mageia', l10n::_t('Go to mageia.org site map.')),
234 array('about', '//$S/$L/about/', l10n::_t('About&nbsp;us'), l10n::_t('Learn more about Mageia.')),
235 array('downloads', '//$S/$L/downloads/', l10n::_t('Downloads'), l10n::_t('Download Mageia ISO and updates.')),
236 array('support', '//$S/$L/support/', l10n::_t('Support'), l10n::_t('Get support from Mageia community.')),
237 array('community', '//$S/$L/community/', l10n::_t('Community'), l10n::_t('')),
238 array('contribute', '//$S/$L/contribute/', l10n::_t('Contribute'), l10n::_t('You too can build Mageia with us!')),
239 array('you', '//identity.mageia.org/', l10n::_t('You'), l10n::_t('Your Mageia online account.')),
240 array('contact', '//$S/$L/contact/', l10n::_t('Contact'), l10n::_t('Contact Us'))
241 // <search>
242 );
243
244 $s = array();
245 foreach ($tn as $i) {
246 $s[] = sprintf('<li><a href="%s" class="%s" title="%s">%s</a></li>',
247 str_replace(
248 array('$L', '$S'),
249 array($lang, $vhost),
250 $i[1]
251 ),
252 $i[0],
253 $i[3],
254 $i[2]
255 );
256 }
257
258 if (!is_null($inject))
259 $s[] = sprintf('<li>%s</li>', $inject);
260
261 $s = implode($s);
262 $h = sprintf('<!--googleoff: all--><nav id="mgnav"><ul id="nav">%s</ul></nav><!--googleon: all-->', $s);
263
264 if ($wrap)
265 $h = sprintf('<header id="hmgn">%s</header>', $h);
266
267 if (!is_null($cache))
268 $cache->set($key, $h);
269
270 return $h;
271 }
272
273 /**
274 * Returns CSS definition ready to be inserted into a HTML document.
275 *
276 * @return string
277 */
278 function _mgnav_style()
279 {
280 return '<style>' . file_get_contents(__DIR__ . '/css/source.css') . '</style>';
281 }
282
283 /**
284 * Get the primary language subtag only.<p></p>
285 */
286 function _lang_check($s = null)
287 {
288 if (is_null($s)) {
289 return 'en';
290 }
291
292 $supported = array(
293 'cs',
294 'de',
295 'el', 'en', 'eo', 'es', 'et',
296 'fi', 'fr',
297 'id', 'it',
298 'lv',
299 'nb', 'nl',
300 'pl', 'pt', 'pt-br',
301 'ro', 'ru',
302 'sl',
303 'tr',
304 'uk',
305 'zh-cn', 'zh-tw'
306 );
307
308 if (in_array($s, $supported))
309 return $s;
310
311 $sub = explode('-', $s);
312 $sub = strtolower($sub[0]);
313
314 if (in_array($sub, $supported))
315 return $sub;
316
317 return 'en';
318 }

  ViewVC Help
Powered by ViewVC 1.1.30