source: trunk/include/functions.inc.php @ 12933

Last change on this file since 12933 was 12920, checked in by rvelices, 12 years ago

feature 2548 multisize - code cleanup + better usage in category_cats + i.php logs memory usage peak

  • Property svn:eol-style set to LF
File size: 41.8 KB
RevLine 
[2]1<?php
[362]2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[12878]5// | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
[2297]6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[405]23
[394]24include_once( PHPWG_ROOT_PATH .'include/functions_user.inc.php' );
[1992]25include_once( PHPWG_ROOT_PATH .'include/functions_cookie.inc.php' );
[394]26include_once( PHPWG_ROOT_PATH .'include/functions_session.inc.php' );
27include_once( PHPWG_ROOT_PATH .'include/functions_category.inc.php' );
28include_once( PHPWG_ROOT_PATH .'include/functions_xml.inc.php' );
[477]29include_once( PHPWG_ROOT_PATH .'include/functions_html.inc.php' );
[1119]30include_once( PHPWG_ROOT_PATH .'include/functions_tag.inc.php' );
[1109]31include_once( PHPWG_ROOT_PATH .'include/functions_url.inc.php' );
[1578]32include_once( PHPWG_ROOT_PATH .'include/functions_plugins.inc.php' );
[12798]33include_once( PHPWG_ROOT_PATH .'include/derivative_params.inc.php');
34include_once( PHPWG_ROOT_PATH .'include/derivative_std_params.inc.php');
35include_once( PHPWG_ROOT_PATH .'include/derivative.inc.php');
[12920]36require_once( PHPWG_ROOT_PATH .'include/smarty/libs/Smarty.class.php');
37include_once( PHPWG_ROOT_PATH .'include/template.class.php');
[2]38
39//----------------------------------------------------------- generic functions
40
[8802]41/**
42 * stupidly returns the current microsecond since Unix epoch
43 */
44function micro_seconds()
45{
46  $t1 = explode(' ', microtime());
47  $t2 = explode('.', $t1[0]);
48  $t2 = $t1[1].substr($t2[1], 0, 6);
49  return $t2;
50}
51
[2]52// The function get_moment returns a float value coresponding to the number
53// of seconds since the unix epoch (1st January 1970) and the microseconds
54// are precised : e.g. 1052343429.89276600
55function get_moment()
56{
[12920]57  return microtime(true);
[2]58}
59
60// The function get_elapsed_time returns the number of seconds (with 3
61// decimals precision) between the start time and the end time given.
62function get_elapsed_time( $start, $end )
63{
64  return number_format( $end - $start, 3, '.', ' ').' s';
65}
66
67// - The replace_space function replaces space and '-' characters
68//   by their HTML equivalent  &nbsb; and &minus;
69// - The function does not replace characters in HTML tags
70// - This function was created because IE5 does not respect the
71//   CSS "white-space: nowrap;" property unless space and minus
72//   characters are replaced like this function does.
[15]73// - Example :
74//                 <div class="foo">My friend</div>
75//               ( 01234567891111111111222222222233 )
76//               (           0123456789012345678901 )
77// becomes :
78//             <div class="foo">My&nbsp;friend</div>
[2]79function replace_space( $string )
80{
[15]81  //return $string;
82  $return_string = '';
83  // $remaining is the rest of the string where to replace spaces characters
[2]84  $remaining = $string;
[15]85  // $start represents the position of the next '<' character
86  // $end   represents the position of the next '>' character
[3136]87  ; // -> 0
[15]88  $end   = strpos ( $remaining, '>' ); // -> 16
89  // as long as a '<' and his friend '>' are found, we loop
[3136]90  while ( ($start=strpos( $remaining, '<' )) !==false
91        and ($end=strpos( $remaining, '>' )) !== false )
[2]92  {
[15]93    // $treatment is the part of the string to treat
94    // In the first loop of our example, this variable is empty, but in the
95    // second loop, it equals 'My friend'
[2]96    $treatment = substr ( $remaining, 0, $start );
[15]97    // Replacement of ' ' by his equivalent '&nbsp;'
[6]98    $treatment = str_replace( ' ', '&nbsp;', $treatment );
99    $treatment = str_replace( '-', '&minus;', $treatment );
[15]100    // composing the string to return by adding the treated string and the
101    // following HTML tag -> 'My&nbsp;friend</div>'
102    $return_string.= $treatment.substr( $remaining, $start, $end-$start+1 );
103    // the remaining string is deplaced to the part after the '>' of this
104    // loop
[2]105    $remaining = substr ( $remaining, $end + 1, strlen( $remaining ) );
106  }
[6]107  $treatment = str_replace( ' ', '&nbsp;', $remaining );
108  $treatment = str_replace( '-', '&minus;', $treatment );
[2]109  $return_string.= $treatment;
[15]110
[2]111  return $return_string;
112}
113
[13]114// get_extension returns the part of the string after the last "."
115function get_extension( $filename )
116{
117  return substr( strrchr( $filename, '.' ), 1, strlen ( $filename ) );
118}
119
120// get_filename_wo_extension returns the part of the string before the last
121// ".".
122// get_filename_wo_extension( 'test.tar.gz' ) -> 'test.tar'
123function get_filename_wo_extension( $filename )
124{
[1589]125  $pos = strrpos( $filename, '.' );
126  return ($pos===false) ? $filename : substr( $filename, 0, $pos);
[13]127}
128
[345]129/**
[2497]130 * returns an array contening sub-directories, excluding ".svn"
[345]131 *
132 * @param string $dir
133 * @return array
134 */
[512]135function get_dirs($directory)
[2]136{
[345]137  $sub_dirs = array();
[512]138  if ($opendir = opendir($directory))
[2]139  {
[512]140    while ($file = readdir($opendir))
[2]141    {
[512]142      if ($file != '.'
143          and $file != '..'
144          and is_dir($directory.'/'.$file)
[2497]145          and $file != '.svn')
[2]146      {
[512]147        array_push($sub_dirs, $file);
[2]148      }
149    }
[2497]150    closedir($opendir);
[2]151  }
[345]152  return $sub_dirs;
[2]153}
154
[2497]155define('MKGETDIR_NONE', 0);
156define('MKGETDIR_RECURSIVE', 1);
157define('MKGETDIR_DIE_ON_ERROR', 2);
158define('MKGETDIR_PROTECT_INDEX', 4);
159define('MKGETDIR_PROTECT_HTACCESS', 8);
160define('MKGETDIR_DEFAULT', 7);
[1631]161/**
[2497]162 * creates directory if not exists; ensures that directory is writable
163 * @param:
164 *  string $dir
165 *  int $flags combination of MKGETDIR_xxx
166 * @return bool false on error else true
167 */
168function mkgetdir($dir, $flags=MKGETDIR_DEFAULT)
169{
170  if ( !is_dir($dir) )
171  {
[12796]172    global $conf;
[6385]173    if (substr(PHP_OS, 0, 3) == 'WIN')
174    {
175      $dir = str_replace('/', DIRECTORY_SEPARATOR, $dir);
176    }
[2497]177    $umask = umask(0);
[12796]178    $mkd = @mkdir($dir, $conf['chmod_value'], ($flags&MKGETDIR_RECURSIVE) ? true:false );
[2497]179    umask($umask);
180    if ($mkd==false)
181    {
[5021]182      !($flags&MKGETDIR_DIE_ON_ERROR) or fatal_error( "$dir ".l10n('no write access'));
[2497]183      return false;
184    }
185    if( $flags&MKGETDIR_PROTECT_HTACCESS )
186    {
187      $file = $dir.'/.htaccess';
188      file_exists($file) or @file_put_contents( $file, 'deny from all' );
189    }
190    if( $flags&MKGETDIR_PROTECT_INDEX )
191    {
192      $file = $dir.'/index.htm';
193      file_exists($file) or @file_put_contents( $file, 'Not allowed!' );
194    }
195  }
196  if ( !is_writable($dir) )
197  {
[5021]198    !($flags&MKGETDIR_DIE_ON_ERROR) or fatal_error( "$dir ".l10n('no write access'));
[3136]199    return false;
[2497]200  }
201  return true;
202}
203
204/**
[1631]205 * returns thumbnail directory name of input diretoty name
206 * make thumbnail directory is necessary
207 * set error messages on array messages
208 *
209 * @param:
210 *  string $dirname
211 *  arrayy $errors
212 * @return bool false on error else string directory name
213 */
214function mkget_thumbnail_dir($dirname, &$errors)
215{
[3750]216  global $conf;
217
[3720]218  $tndir = $dirname.'/'.$conf['dir_thumbnail'];
[2505]219  if (! mkgetdir($tndir, MKGETDIR_NONE) )
[1631]220  {
[2497]221    array_push($errors,
[5021]222          '['.$dirname.'] : '.l10n('no write access'));
[2497]223    return false;
[1631]224  }
225  return $tndir;
226}
227
[2123]228/* Returns true if the string appears to be encoded in UTF-8. (from wordpress)
229 * @param string Str
230 */
231function seems_utf8($Str) { # by bmorel at ssi dot fr
232  for ($i=0; $i<strlen($Str); $i++) {
233    if (ord($Str[$i]) < 0x80) continue; # 0bbbbbbb
234    elseif ((ord($Str[$i]) & 0xE0) == 0xC0) $n=1; # 110bbbbb
235    elseif ((ord($Str[$i]) & 0xF0) == 0xE0) $n=2; # 1110bbbb
236    elseif ((ord($Str[$i]) & 0xF8) == 0xF0) $n=3; # 11110bbb
237    elseif ((ord($Str[$i]) & 0xFC) == 0xF8) $n=4; # 111110bb
238    elseif ((ord($Str[$i]) & 0xFE) == 0xFC) $n=5; # 1111110b
239    else return false; # Does not match any model
240    for ($j=0; $j<$n; $j++) { # n bytes matching 10bbbbbb follow ?
241      if ((++$i == strlen($Str)) || ((ord($Str[$i]) & 0xC0) != 0x80))
242      return false;
243    }
244  }
245  return true;
246}
247
248/* Remove accents from a UTF-8 or ISO-859-1 string (from wordpress)
249 * @param string sstring - an UTF-8 or ISO-8859-1 string
250 */
251function remove_accents($string)
252{
253  if ( !preg_match('/[\x80-\xff]/', $string) )
254    return $string;
255
256  if (seems_utf8($string)) {
257    $chars = array(
258    // Decompositions for Latin-1 Supplement
[6947]259    "\xc3\x80"=>'A', "\xc3\x81"=>'A',
260    "\xc3\x82"=>'A', "\xc3\x83"=>'A',
261    "\xc3\x84"=>'A', "\xc3\x85"=>'A',
262    "\xc3\x87"=>'C', "\xc3\x88"=>'E',
263    "\xc3\x89"=>'E', "\xc3\x8a"=>'E',
264    "\xc3\x8b"=>'E', "\xc3\x8c"=>'I',
265    "\xc3\x8d"=>'I', "\xc3\x8e"=>'I',
266    "\xc3\x8f"=>'I', "\xc3\x91"=>'N',
267    "\xc3\x92"=>'O', "\xc3\x93"=>'O',
268    "\xc3\x94"=>'O', "\xc3\x95"=>'O',
269    "\xc3\x96"=>'O', "\xc3\x99"=>'U',
270    "\xc3\x9a"=>'U', "\xc3\x9b"=>'U',
271    "\xc3\x9c"=>'U', "\xc3\x9d"=>'Y',
272    "\xc3\x9f"=>'s', "\xc3\xa0"=>'a',
273    "\xc3\xa1"=>'a', "\xc3\xa2"=>'a',
274    "\xc3\xa3"=>'a', "\xc3\xa4"=>'a',
275    "\xc3\xa5"=>'a', "\xc3\xa7"=>'c',
276    "\xc3\xa8"=>'e', "\xc3\xa9"=>'e',
277    "\xc3\xaa"=>'e', "\xc3\xab"=>'e',
278    "\xc3\xac"=>'i', "\xc3\xad"=>'i',
279    "\xc3\xae"=>'i', "\xc3\xaf"=>'i',
280    "\xc3\xb1"=>'n', "\xc3\xb2"=>'o',
281    "\xc3\xb3"=>'o', "\xc3\xb4"=>'o',
282    "\xc3\xb5"=>'o', "\xc3\xb6"=>'o',
283    "\xc3\xb9"=>'u', "\xc3\xba"=>'u',
284    "\xc3\xbb"=>'u', "\xc3\xbc"=>'u',
285    "\xc3\xbd"=>'y', "\xc3\xbf"=>'y',
[2123]286    // Decompositions for Latin Extended-A
[6947]287    "\xc4\x80"=>'A', "\xc4\x81"=>'a',
288    "\xc4\x82"=>'A', "\xc4\x83"=>'a',
289    "\xc4\x84"=>'A', "\xc4\x85"=>'a',
290    "\xc4\x86"=>'C', "\xc4\x87"=>'c',
291    "\xc4\x88"=>'C', "\xc4\x89"=>'c',
292    "\xc4\x8a"=>'C', "\xc4\x8b"=>'c',
293    "\xc4\x8c"=>'C', "\xc4\x8d"=>'c',
294    "\xc4\x8e"=>'D', "\xc4\x8f"=>'d',
295    "\xc4\x90"=>'D', "\xc4\x91"=>'d',
296    "\xc4\x92"=>'E', "\xc4\x93"=>'e',
297    "\xc4\x94"=>'E', "\xc4\x95"=>'e',
298    "\xc4\x96"=>'E', "\xc4\x97"=>'e',
299    "\xc4\x98"=>'E', "\xc4\x99"=>'e',
300    "\xc4\x9a"=>'E', "\xc4\x9b"=>'e',
301    "\xc4\x9c"=>'G', "\xc4\x9d"=>'g',
302    "\xc4\x9e"=>'G', "\xc4\x9f"=>'g',
303    "\xc4\xa0"=>'G', "\xc4\xa1"=>'g',
304    "\xc4\xa2"=>'G', "\xc4\xa3"=>'g',
305    "\xc4\xa4"=>'H', "\xc4\xa5"=>'h',
306    "\xc4\xa6"=>'H', "\xc4\xa7"=>'h',
307    "\xc4\xa8"=>'I', "\xc4\xa9"=>'i',
308    "\xc4\xaa"=>'I', "\xc4\xab"=>'i',
309    "\xc4\xac"=>'I', "\xc4\xad"=>'i',
310    "\xc4\xae"=>'I', "\xc4\xaf"=>'i',
311    "\xc4\xb0"=>'I', "\xc4\xb1"=>'i',
312    "\xc4\xb2"=>'IJ', "\xc4\xb3"=>'ij',
313    "\xc4\xb4"=>'J', "\xc4\xb5"=>'j',
314    "\xc4\xb6"=>'K', "\xc4\xb7"=>'k',
315    "\xc4\xb8"=>'k', "\xc4\xb9"=>'L',
316    "\xc4\xba"=>'l', "\xc4\xbb"=>'L',
317    "\xc4\xbc"=>'l', "\xc4\xbd"=>'L',
318    "\xc4\xbe"=>'l', "\xc4\xbf"=>'L',
319    "\xc5\x80"=>'l', "\xc5\x81"=>'L',
320    "\xc5\x82"=>'l', "\xc5\x83"=>'N',
321    "\xc5\x84"=>'n', "\xc5\x85"=>'N',
322    "\xc5\x86"=>'n', "\xc5\x87"=>'N',
323    "\xc5\x88"=>'n', "\xc5\x89"=>'N',
324    "\xc5\x8a"=>'n', "\xc5\x8b"=>'N',
325    "\xc5\x8c"=>'O', "\xc5\x8d"=>'o',
326    "\xc5\x8e"=>'O', "\xc5\x8f"=>'o',
327    "\xc5\x90"=>'O', "\xc5\x91"=>'o',
328    "\xc5\x92"=>'OE', "\xc5\x93"=>'oe',
329    "\xc5\x94"=>'R', "\xc5\x95"=>'r',
330    "\xc5\x96"=>'R', "\xc5\x97"=>'r',
331    "\xc5\x98"=>'R', "\xc5\x99"=>'r',
332    "\xc5\x9a"=>'S', "\xc5\x9b"=>'s',
333    "\xc5\x9c"=>'S', "\xc5\x9d"=>'s',
334    "\xc5\x9e"=>'S', "\xc5\x9f"=>'s',
335    "\xc5\xa0"=>'S', "\xc5\xa1"=>'s',
336    "\xc5\xa2"=>'T', "\xc5\xa3"=>'t',
337    "\xc5\xa4"=>'T', "\xc5\xa5"=>'t',
338    "\xc5\xa6"=>'T', "\xc5\xa7"=>'t',
339    "\xc5\xa8"=>'U', "\xc5\xa9"=>'u',
340    "\xc5\xaa"=>'U', "\xc5\xab"=>'u',
341    "\xc5\xac"=>'U', "\xc5\xad"=>'u',
342    "\xc5\xae"=>'U', "\xc5\xaf"=>'u',
343    "\xc5\xb0"=>'U', "\xc5\xb1"=>'u',
344    "\xc5\xb2"=>'U', "\xc5\xb3"=>'u',
345    "\xc5\xb4"=>'W', "\xc5\xb5"=>'w',
346    "\xc5\xb6"=>'Y', "\xc5\xb7"=>'y',
347    "\xc5\xb8"=>'Y', "\xc5\xb9"=>'Z',
348    "\xc5\xba"=>'z', "\xc5\xbb"=>'Z',
349    "\xc5\xbc"=>'z', "\xc5\xbd"=>'Z',
350    "\xc5\xbe"=>'z', "\xc5\xbf"=>'s',
[2123]351    // Euro Sign
[6947]352    "\xe2\x82\xac"=>'E',
[2123]353    // GBP (Pound) Sign
[6947]354    "\xc2\xa3"=>'');
[2123]355
356    $string = strtr($string, $chars);
357  } else {
358    // Assume ISO-8859-1 if not UTF-8
359    $chars['in'] = chr(128).chr(131).chr(138).chr(142).chr(154).chr(158)
360      .chr(159).chr(162).chr(165).chr(181).chr(192).chr(193).chr(194)
361      .chr(195).chr(196).chr(197).chr(199).chr(200).chr(201).chr(202)
362      .chr(203).chr(204).chr(205).chr(206).chr(207).chr(209).chr(210)
363      .chr(211).chr(212).chr(213).chr(214).chr(216).chr(217).chr(218)
364      .chr(219).chr(220).chr(221).chr(224).chr(225).chr(226).chr(227)
365      .chr(228).chr(229).chr(231).chr(232).chr(233).chr(234).chr(235)
366      .chr(236).chr(237).chr(238).chr(239).chr(241).chr(242).chr(243)
367      .chr(244).chr(245).chr(246).chr(248).chr(249).chr(250).chr(251)
368      .chr(252).chr(253).chr(255);
369
370    $chars['out'] = "EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy";
371
372    $string = strtr($string, $chars['in'], $chars['out']);
373    $double_chars['in'] = array(chr(140), chr(156), chr(198), chr(208), chr(222), chr(223), chr(230), chr(240), chr(254));
374    $double_chars['out'] = array('OE', 'oe', 'AE', 'DH', 'TH', 'ss', 'ae', 'dh', 'th');
375    $string = str_replace($double_chars['in'], $double_chars['out'], $string);
376  }
377
378  return $string;
379}
380
[1119]381/**
382 * simplify a string to insert it into an URL
383 *
384 * @param string
385 * @return string
386 */
387function str2url($str)
388{
[6060]389  $raw = $str;
[6355]390
[2123]391  $str = remove_accents($str);
[1131]392  $str = preg_replace('/[^a-z0-9_\s\'\:\/\[\],-]/','',strtolower($str));
393  $str = preg_replace('/[\s\'\:\/\[\],-]+/',' ',trim($str));
[1119]394  $res = str_replace(' ','_',$str);
[1131]395
[6060]396  if (empty($res))
397  {
[9820]398    $res = str_replace(' ','_', $raw);
[6060]399  }
400
[1119]401  return $res;
402}
403
[2339]404//-------------------------------------------- Piwigo specific functions
[2]405
[512]406/**
407 * returns an array with a list of {language_code => language_name}
408 *
409 * @returns array
410 */
[5357]411function get_languages()
[2]412{
[5357]413  $query = '
414SELECT id, name
415  FROM '.LANGUAGES_TABLE.'
416  ORDER BY name ASC
417;';
418  $result = pwg_query($query);
[2127]419
[2]420  $languages = array();
[5357]421  while ($row = pwg_db_fetch_assoc($result))
[2]422  {
[5357]423    if (is_dir(PHPWG_ROOT_PATH.'language/'.$row['id']))
[2]424    {
[5357]425      $languages[ $row['id'] ] = $row['name'];
[2]426    }
427  }
[512]428
[2]429  return $languages;
430}
431
[1844]432function pwg_log($image_id = null, $image_type = null)
[2]433{
[1727]434  global $conf, $user, $page;
[2]435
[2620]436  $do_log = $conf['log'];
437  if (is_admin())
[2]438  {
[2620]439    $do_log = $conf['history_admin'];
[1565]440  }
[2620]441  if (is_a_guest())
[1565]442  {
[2620]443    $do_log = $conf['history_guest'];
[1565]444  }
[1880]445
446  $do_log = trigger_event('pwg_log_allowed', $do_log, $image_id, $image_type);
[2089]447
[1880]448  if (!$do_log)
449  {
[1727]450    return false;
[1565]451  }
452
[1727]453  $tags_string = null;
[3136]454  if ('tags'==@$page['section'])
[1565]455  {
[3136]456    $tags_string = implode(',', $page['tag_ids']);
[1565]457  }
458
459  $query = '
[725]460INSERT INTO '.HISTORY_TABLE.'
[1727]461  (
462    date,
463    time,
464    user_id,
465    IP,
466    section,
467    category_id,
468    image_id,
[1844]469    image_type,
[1727]470    tag_ids
471  )
[725]472  VALUES
[1727]473  (
[4367]474    CURRENT_DATE,
475    CURRENT_TIME,
[1727]476    '.$user['id'].',
477    \''.$_SERVER['REMOTE_ADDR'].'\',
478    '.(isset($page['section']) ? "'".$page['section']."'" : 'NULL').',
[2221]479    '.(isset($page['category']['id']) ? $page['category']['id'] : 'NULL').',
[1727]480    '.(isset($image_id) ? $image_id : 'NULL').',
[2086]481    '.(isset($image_type) ? "'".$image_type."'" : 'NULL').',
[1727]482    '.(isset($tags_string) ? "'".$tags_string."'" : 'NULL').'
483  )
[725]484;';
[1565]485  pwg_query($query);
[1727]486
487  return true;
[2]488}
489
[85]490// format_date returns a formatted date for display. The date given in
[3122]491// argument must be an american format (2003-09-15). By option, you can show the time.
492// The output is internationalized.
[85]493//
[3122]494// format_date( "2003-09-15", true ) -> "Monday 15 September 2003 21:52"
495function format_date($date, $show_time = false)
[61]496{
497  global $lang;
498
[4966]499  if (strpos($date, '0') == 0)
500  {
501    return l10n('N/A');
502  }
503
[3117]504  $ymdhms = array();
505  $tok = strtok( $date, '- :');
506  while ($tok !== false)
507  {
508    $ymdhms[] = $tok;
509    $tok = strtok('- :');
510  }
[1086]511
[3117]512  if ( count($ymdhms)<3 )
[61]513  {
[3117]514    return false;
[61]515  }
[3117]516
[599]517  $formated_date = '';
518  // before 1970, Microsoft Windows can't mktime
[3117]519  if ($ymdhms[0] >= 1970)
[61]520  {
[618]521    // we ask midday because Windows think it's prior to midnight with a
522    // zero and refuse to work
[3117]523    $formated_date.= $lang['day'][date('w', mktime(12,0,0,$ymdhms[1],$ymdhms[2],$ymdhms[0]))];
[61]524  }
[3117]525  $formated_date.= ' '.$ymdhms[2];
526  $formated_date.= ' '.$lang['month'][(int)$ymdhms[1]];
527  $formated_date.= ' '.$ymdhms[0];
528  if ($show_time and count($ymdhms)>=5 )
[599]529  {
[3117]530    $formated_date.= ' '.$ymdhms[3].':'.$ymdhms[4];
[599]531  }
[61]532  return $formated_date;
533}
[85]534
[345]535function pwg_debug( $string )
536{
[1033]537  global $debug,$t2,$page;
[345]538
539  $now = explode( ' ', microtime() );
540  $now2 = explode( '.', $now[0] );
541  $now2 = $now[1].'.'.$now2[1];
542  $time = number_format( $now2 - $t2, 3, '.', ' ').' s';
[1012]543  $debug .= '<p>';
[345]544  $debug.= '['.$time.', ';
[1033]545  $debug.= $page['count_queries'].' queries] : '.$string;
[1012]546  $debug.= "</p>\n";
[345]547}
[351]548
[405]549/**
[1649]550 * Redirects to the given URL (HTTP method)
[405]551 *
552 * Note : once this function called, the execution doesn't go further
553 * (presence of an exit() instruction.
554 *
555 * @param string $url
[1649]556 * @return void
557 */
558function redirect_http( $url )
559{
560  if (ob_get_length () !== FALSE)
561  {
562    ob_clean();
563  }
[2218]564  // default url is on html format
565  $url = html_entity_decode($url);
[1649]566  header('Request-URI: '.$url);
567  header('Content-Location: '.$url);
568  header('Location: '.$url);
569  exit();
570}
571
572/**
573 * Redirects to the given URL (HTML method)
574 *
575 * Note : once this function called, the execution doesn't go further
576 * (presence of an exit() instruction.
577 *
578 * @param string $url
[1156]579 * @param string $title_msg
580 * @param integer $refreh_time
[405]581 * @return void
582 */
[1649]583function redirect_html( $url , $msg = '', $refresh_time = 0)
[405]584{
[1567]585  global $user, $template, $lang_info, $conf, $lang, $t2, $page, $debug;
[405]586
[6668]587  if (!isset($lang_info) || !isset($template) )
[1568]588  {
589    $user = build_user( $conf['guest_id'], true);
[2126]590    load_language('common.lang');
[1699]591    trigger_action('loading_lang');
[8722]592    load_language('lang', PHPWG_ROOT_PATH.PWG_LOCAL_DIR, array('no_fallback'=>true, 'local'=>true) );
[5123]593    $template = new Template(PHPWG_ROOT_PATH.'themes', get_default_theme());
[1298]594  }
[6944]595        elseif (defined('IN_ADMIN') and IN_ADMIN)
596        {
597                $template = new Template(PHPWG_ROOT_PATH.'themes', get_default_theme());
598        }
[1298]599
[1508]600  if (empty($msg))
[1156]601  {
[5021]602    $msg = nl2br(l10n('Redirection...'));
[1156]603  }
[688]604
[1567]605  $refresh = $refresh_time;
606  $url_link = $url;
607  $title = 'redirection';
[1086]608
[1567]609  $template->set_filenames( array( 'redirect' => 'redirect.tpl' ) );
610
611  include( PHPWG_ROOT_PATH.'include/page_header.php' );
612
613  $template->set_filenames( array( 'redirect' => 'redirect.tpl' ) );
[2521]614  $template->assign('REDIRECT_MSG', $msg);
615
[688]616  $template->parse('redirect');
[1567]617
618  include( PHPWG_ROOT_PATH.'include/page_tail.php' );
619
[405]620  exit();
621}
[507]622
623/**
[1649]624 * Redirects to the given URL (Switch to HTTP method or HTML method)
625 *
626 * Note : once this function called, the execution doesn't go further
627 * (presence of an exit() instruction.
628 *
629 * @param string $url
630 * @param string $title_msg
631 * @param integer $refreh_time
632 * @return void
633 */
634function redirect( $url , $msg = '', $refresh_time = 0)
635{
636  global $conf;
637
638  // with RefeshTime <> 0, only html must be used
[1846]639  if ($conf['default_redirect_method']=='http'
640      and $refresh_time==0
641      and !headers_sent()
642    )
[1649]643  {
644    redirect_http($url);
645  }
646  else
647  {
648    redirect_html($url, $msg, $refresh_time);
649  }
650}
651
652/**
[507]653 * returns $_SERVER['QUERY_STRING'] whitout keys given in parameters
654 *
655 * @param array $rejects
[2089]656 * @param boolean $escape - if true escape & to &amp; (for html)
[507]657 * @returns string
658 */
[2089]659function get_query_string_diff($rejects=array(), $escape=true)
[507]660{
[12023]661  if (empty($_SERVER['QUERY_STRING']))
662  {
663    return '';
664  }
[12920]665
[507]666  $query_string = '';
[1086]667
[507]668  $str = $_SERVER['QUERY_STRING'];
669  parse_str($str, $vars);
[1086]670
[507]671  $is_first = true;
672  foreach ($vars as $key => $value)
673  {
674    if (!in_array($key, $rejects))
675    {
[2089]676      $query_string.= $is_first ? '?' : ($escape ? '&amp;' : '&' );
[764]677      $is_first = false;
[507]678      $query_string.= $key.'='.$value;
679    }
680  }
681
682  return $query_string;
683}
[512]684
[1020]685function url_is_remote($url)
686{
[1766]687  if ( strncmp($url, 'http://', 7)==0
688    or strncmp($url, 'https://', 8)==0 )
[1020]689  {
690    return true;
691  }
692  return false;
693}
694
[512]695/**
[5123]696 * returns available themes
[512]697 */
[1376]698function get_pwg_themes()
[512]699{
[5306]700  global $conf;
701
[960]702  $themes = array();
[579]703
[5153]704  $query = '
705SELECT
706    id,
707    name
708  FROM '.THEMES_TABLE.'
709  ORDER BY name ASC
710;';
711  $result = pwg_query($query);
712  while ($row = pwg_db_fetch_assoc($result))
[960]713  {
[5982]714    if (check_theme_installed($row['id']))
[5306]715    {
716      $themes[ $row['id'] ] = $row['name'];
717    }
[960]718  }
719
[5102]720  // plugins want remove some themes based on user status maybe?
721  $themes = trigger_event('get_pwg_themes', $themes);
[5200]722
[960]723  return $themes;
724}
725
[5982]726function check_theme_installed($theme_id)
727{
728  global $conf;
729
730  return file_exists($conf['themes_dir'].'/'.$theme_id.'/'.'themeconf.inc.php');
731}
732
[12831]733/** Transforms an original path to its pwg representative */
734function original_to_representative($path, $representative_ext)
735{
736  $pos = strrpos($path, '/');
737  $path = substr_replace($path, 'pwg_representative/', $pos+1, 0);
738  $pos = strrpos($path, '.');
739  return substr_replace($path, $representative_ext, $pos+1);
740}
741
[12855]742/**
743 * @param element_info array containing element information from db;
744 * at least 'id', 'path' should be present
745 */
746function get_element_path($element_info)
747{
748  $path = $element_info['path'];
749  if ( !url_is_remote($path) )
750  {
751    $path = PHPWG_ROOT_PATH.$path;
752  }
753  return $path;
754}
[12831]755
[12855]756
[1596]757/* Returns the PATH to the thumbnail to be displayed. If the element does not
758 * have a thumbnail, the default mime image path is returned. The PATH can be
759 * used in the php script, but not sent to the browser.
760 * @param array element_info assoc array containing element info from db
761 * at least 'path', 'tn_ext' and 'id' should be present
762 */
763function get_thumbnail_path($element_info)
764{
765  $path = get_thumbnail_location($element_info);
766  if ( !url_is_remote($path) )
[579]767  {
[1596]768    $path = PHPWG_ROOT_PATH.$path;
769  }
770  return $path;
771}
772
773/* Returns the URL of the thumbnail to be displayed. If the element does not
774 * have a thumbnail, the default mime image url is returned. The URL can be
775 * sent to the browser, but not used in the php script.
776 * @param array element_info assoc array containing element info from db
777 * at least 'path', 'tn_ext' and 'id' should be present
778 */
779function get_thumbnail_url($element_info)
780{
[8263]781  $loc = $url = get_thumbnail_location($element_info);
782  if ( !url_is_remote($loc) )
[1596]783  {
[8263]784    $url = (get_root_url().$loc);
[1596]785  }
786  // plugins want another url ?
[8263]787  $url = trigger_event('get_thumbnail_url', $url, $element_info, $loc);
788  return embellish_url($url);
[1596]789}
790
791/* returns the relative path of the thumnail with regards to to the root
[2339]792of piwigo (not the current page!).This function is not intended to be
[1596]793called directly from code.*/
794function get_thumbnail_location($element_info)
795{
796  global $conf;
797  if ( !empty( $element_info['tn_ext'] ) )
798  {
799    $path = substr_replace(
800      get_filename_wo_extension($element_info['path']),
[3720]801      '/'.$conf['dir_thumbnail'].'/'.$conf['prefix_thumbnail'],
[1596]802      strrpos($element_info['path'],'/'),
[1082]803      1
804      );
[1596]805    $path.= '.'.$element_info['tn_ext'];
[579]806  }
807  else
808  {
[1596]809    $path = get_themeconf('mime_icon_dir')
810        .strtolower(get_extension($element_info['path'])).'.png';
[8263]811    // plugins want another location ?
812    $path = trigger_event( 'get_thumbnail_location', $path, $element_info);
[579]813  }
[1596]814  return $path;
[579]815}
[672]816
[11996]817/**
[764]818 * fill the current user caddie with given elements, if not already in
819 * caddie
820 *
821 * @param array elements_id
822 */
823function fill_caddie($elements_id)
824{
825  global $user;
[1086]826
[764]827  $query = '
828SELECT element_id
829  FROM '.CADDIE_TABLE.'
830  WHERE user_id = '.$user['id'].'
831;';
832  $in_caddie = array_from_query($query, 'element_id');
833
834  $caddiables = array_diff($elements_id, $in_caddie);
835
836  $datas = array();
837
838  foreach ($caddiables as $caddiable)
839  {
840    array_push($datas, array('element_id' => $caddiable,
841                             'user_id' => $user['id']));
842  }
843
844  if (count($caddiables) > 0)
845  {
846    mass_inserts(CADDIE_TABLE, array('element_id','user_id'), $datas);
847  }
848}
[793]849
850/**
851 * returns the element name from its filename
852 *
853 * @param string filename
854 * @return string name
855 */
856function get_name_from_file($filename)
857{
858  return str_replace('_',' ',get_filename_wo_extension($filename));
859}
860
861/**
862 * returns the corresponding value from $lang if existing. Else, the key is
863 * returned
864 *
865 * @param string key
866 * @return string
867 */
[5021]868function l10n($key, $textdomain='messages')
[793]869{
[5156]870  global $lang, $conf;
[793]871
[5156]872  if ($conf['debug_l10n'] and !isset($lang[$key]) and !empty($key))
[808]873  {
[5156]874    trigger_error('[l10n] language key "'.$key.'" is not defined', E_USER_WARNING);
[808]875  }
[1086]876
[5156]877  return isset($lang[$key]) ? $lang[$key] : $key;
[793]878}
[960]879
880/**
[1637]881 * returns the prinft value for strings including %d
882 * return is concorded with decimal value (singular, plural)
883 *
884 * @param singular string key
885 * @param plural string key
886 * @param decimal value
887 * @return string
888 */
[5156]889function l10n_dec($singular_fmt_key, $plural_fmt_key, $decimal)
[1637]890{
[5156]891  global $lang_info;
[1864]892
[5156]893  return
894    sprintf(
895      l10n((
896        (($decimal > 1) or ($decimal == 0 and $lang_info['zero_plural']))
897          ? $plural_fmt_key
898          : $singular_fmt_key
899        )), $decimal);
[1637]900}
[5021]901
[1908]902/*
903 * returns a single element to use with l10n_args
904 *
905 * @param string key: translation key
906 * @param array/string/../number args:
907 *   arguments to use on sprintf($key, args)
908 *   if args is a array, each values are used on sprintf
909 * @return string
910 */
911function get_l10n_args($key, $args)
912{
913  if (is_array($args))
914  {
915    $key_arg = array_merge(array($key), $args);
916  }
917  else
918  {
919    $key_arg = array($key,  $args);
920  }
921  return array('key_args' => $key_arg);
922}
[1637]923
[1908]924/*
925 * returns a string with formated with l10n_args elements
926 *
927 * @param element/array $key_args: element or array of l10n_args elements
[2089]928 * @param $sep: if $key_args is array,
[1908]929 *   separator is used when translated l10n_args elements are concated
930 * @return string
931 */
932function l10n_args($key_args, $sep = "\n")
933{
934  if (is_array($key_args))
935  {
936    foreach ($key_args as $key => $element)
937    {
938      if (isset($result))
939      {
940        $result .= $sep;
941      }
942      else
943      {
944        $result = '';
945      }
946
947      if ($key === 'key_args')
948      {
949        array_unshift($element, l10n(array_shift($element)));
950        $result .= call_user_func_array('sprintf', $element);
951      }
952      else
953      {
954        $result .= l10n_args($element, $sep);
955      }
956    }
957  }
958  else
959  {
[2502]960    fatal_error('l10n_args: Invalid arguments');
[1908]961  }
962
963  return $result;
964}
965
[1637]966/**
[1008]967 * returns the corresponding value from $themeconf if existing. Else, the
968 * key is returned
[960]969 *
970 * @param string key
971 * @return string
972 */
973function get_themeconf($key)
974{
[1568]975  global $template;
[960]976
[1568]977  return $template->get_themeconf($key);
[960]978}
[1008]979
980/**
[1021]981 * Returns webmaster mail address depending on $conf['webmaster_id']
982 *
983 * @return string
984 */
985function get_webmaster_mail_address()
986{
987  global $conf;
988
989  $query = '
990SELECT '.$conf['user_fields']['email'].'
991  FROM '.USERS_TABLE.'
992  WHERE '.$conf['user_fields']['id'].' = '.$conf['webmaster_id'].'
993;';
[4325]994  list($email) = pwg_db_fetch_row(pwg_query($query));
[1021]995
996  return $email;
997}
[1027]998
999/**
[1284]1000 * Add configuration parameters from database to global $conf array
1001 *
1002 * @return void
1003 */
[1748]1004function load_conf_from_db($condition = '')
[1284]1005{
1006  global $conf;
[1565]1007
[1284]1008  $query = '
[1748]1009SELECT param, value
[1284]1010 FROM '.CONFIG_TABLE.'
[1748]1011 '.(!empty($condition) ? 'WHERE '.$condition : '').'
[1284]1012;';
1013  $result = pwg_query($query);
1014
[4325]1015  if ((pwg_db_num_rows($result) == 0) and !empty($condition))
[1284]1016  {
[2502]1017    fatal_error('No configuration data');
[1284]1018  }
1019
[4325]1020  while ($row = pwg_db_fetch_assoc($result))
[1284]1021  {
[12878]1022    $val = isset($row['value']) ? $row['value'] : '';
1023    // If the field is true or false, the variable is transformed into a boolean value.
1024    if ($val == 'true')
[1284]1025    {
[12878]1026      $val = true;
[1284]1027    }
[12878]1028    elseif ($val == 'false')
1029    {
1030      $val = false;
1031    }
1032    $conf[ $row['param'] ] = $val;
[1284]1033  }
1034}
[1687]1035
[5138]1036function conf_update_param($param, $value)
1037{
1038  $query = '
[11162]1039SELECT
1040    param,
1041    value
[5138]1042  FROM '.CONFIG_TABLE.'
[5781]1043  WHERE param = \''.$param.'\'
[5138]1044;';
[11162]1045  $params = array_from_query($query, 'param');
[5138]1046
[11162]1047  if (count($params) == 0)
1048  {
1049    $query = '
[5138]1050INSERT
1051  INTO '.CONFIG_TABLE.'
[5781]1052  (param, value)
1053  VALUES(\''.$param.'\', \''.$value.'\')
[5138]1054;';
[11162]1055    pwg_query($query);
1056  }
1057  else
1058  {
1059    $query = '
1060UPDATE '.CONFIG_TABLE.'
1061  SET value = \''.$value.'\'
1062  WHERE param = \''.$param.'\'
1063;';
1064    pwg_query($query);
1065  }
[5138]1066}
1067
[1687]1068/**
[1727]1069 * Prepends and appends a string at each value of the given array.
1070 *
1071 * @param array
1072 * @param string prefix to each array values
1073 * @param string suffix to each array values
1074 */
1075function prepend_append_array_items($array, $prepend_str, $append_str)
1076{
1077  array_walk(
1078    $array,
1079    create_function('&$s', '$s = "'.$prepend_str.'".$s."'.$append_str.'";')
1080    );
1081
1082  return $array;
1083}
1084
1085/**
1086 * creates an hashed based on a query, this function is a very common
1087 * pattern used here. Among the selected columns fetched, choose one to be
1088 * the key, another one to be the value.
1089 *
1090 * @param string $query
1091 * @param string $keyname
1092 * @param string $valuename
1093 * @return array
1094 */
1095function simple_hash_from_query($query, $keyname, $valuename)
1096{
1097  $array = array();
1098
1099  $result = pwg_query($query);
[4325]1100  while ($row = pwg_db_fetch_assoc($result))
[1727]1101  {
1102    $array[ $row[$keyname] ] = $row[$valuename];
1103  }
1104
1105  return $array;
1106}
1107
1108/**
[1866]1109 * creates an hashed based on a query, this function is a very common
1110 * pattern used here. The key is given as parameter, the value is an associative
1111 * array.
1112 *
1113 * @param string $query
1114 * @param string $keyname
1115 * @return array
1116 */
1117function hash_from_query($query, $keyname)
1118{
1119  $array = array();
1120  $result = pwg_query($query);
[4325]1121  while ($row = pwg_db_fetch_assoc($result))
[1866]1122  {
1123    $array[ $row[$keyname] ] = $row;
1124  }
1125  return $array;
1126}
1127
1128/**
[1687]1129 * Return basename of the current script
[1690]1130 * Lower case convertion is applied on return value
1131 * Return value is without file extention ".php"
[1687]1132 *
1133 * @param void
1134 *
1135 * @return script basename
1136 */
1137function script_basename()
1138{
[2071]1139  global $conf;
1140
1141  foreach (array('SCRIPT_NAME', 'SCRIPT_FILENAME', 'PHP_SELF') as $value)
[1687]1142  {
[3136]1143    if (!empty($_SERVER[$value]))
[2071]1144    {
1145      $filename = strtolower($_SERVER[$value]);
[3136]1146      if ($conf['php_extension_in_urls'] and get_extension($filename)!=='php')
1147        continue;
1148      $basename = basename($filename, '.php');
1149      if (!empty($basename))
[2071]1150      {
1151        return $basename;
1152      }
1153    }
[1687]1154  }
[2071]1155  return '';
[1687]1156}
1157
[1722]1158/**
1159 * Return value for the current page define on $conf['filter_pages']
1160 * Îf value is not defined, default value are returned
1161 *
1162 * @param value name
1163 *
1164 * @return filter page value
1165 */
1166function get_filter_page_value($value_name)
1167{
1168  global $conf;
1169
1170  $page_name = script_basename();
1171
1172  if (isset($conf['filter_pages'][$page_name][$value_name]))
1173  {
1174    return $conf['filter_pages'][$page_name][$value_name];
1175  }
1176  else if (isset($conf['filter_pages']['default'][$value_name]))
1177  {
1178    return $conf['filter_pages']['default'][$value_name];
1179  }
1180  else
1181  {
1182    return null;
1183  }
1184}
1185
[2126]1186/**
1187 * returns the character set of data sent to browsers / received from forms
1188 */
1189function get_pwg_charset()
1190{
[5982]1191  $pwg_charset = 'utf-8';
1192  if (defined('PWG_CHARSET'))
1193  {
1194    $pwg_charset = PWG_CHARSET;
1195  }
1196  return $pwg_charset;
[2126]1197}
1198
1199/**
1200 * includes a language file or returns the content of a language file
1201 * availability of the file
1202 *
1203 * in descending order of preference:
1204 *   param language, user language, default language
[2339]1205 * Piwigo default language.
[2126]1206 *
1207 * @param string filename
1208 * @param string dirname
[2479]1209 * @param mixed options can contain
1210 *     language - language to load (if empty uses user language)
1211 *     return - if true the file content is returned otherwise the file is evaluated as php
1212 *     target_charset -
1213 *     no_fallback - the language must be respected
[5208]1214 *     local - if true, get local language file
[2479]1215 * @return boolean success status or a string if options['return'] is true
[2126]1216 */
[2479]1217function load_language($filename, $dirname = '',
1218    $options = array() )
[2126]1219{
[2127]1220  global $user;
1221
[2479]1222  if (! @$options['return'] )
[2127]1223  {
1224    $filename .= '.php'; //MAYBE to do .. load .po and .mo localization files
1225  }
1226  if (empty($dirname))
1227  {
1228    $dirname = PHPWG_ROOT_PATH;
1229  }
1230  $dirname .= 'language/';
1231
1232  $languages = array();
[2479]1233  if ( !empty($options['language']) )
[2127]1234  {
[2479]1235    $languages[] = $options['language'];
[2127]1236  }
1237  if ( !empty($user['language']) )
1238  {
1239    $languages[] = $user['language'];
1240  }
[2479]1241  if ( ! @$options['no_fallback'] )
[2132]1242  {
[2479]1243    if ( defined('PHPWG_INSTALLED') )
1244    {
1245      $languages[] = get_default_language();
1246    }
1247    $languages[] = PHPWG_DEFAULT_LANGUAGE;
[2132]1248  }
[2479]1249
[2127]1250  $languages = array_unique($languages);
1251
[2479]1252  if ( empty($options['target_charset']) )
[2127]1253  {
1254    $target_charset = get_pwg_charset();
1255  }
[2479]1256  else
1257  {
1258    $target_charset = $options['target_charset'];
1259  }
[2127]1260  $target_charset = strtolower($target_charset);
1261  $source_file    = '';
1262  foreach ($languages as $language)
1263  {
[5208]1264    $f = @$options['local'] ?
1265      $dirname.$language.'.'.$filename:
1266      $dirname.$language.'/'.$filename;
1267
[2127]1268    if (file_exists($f))
1269    {
1270      $source_file = $f;
1271      break;
1272    }
1273  }
1274
1275  if ( !empty($source_file) )
1276  {
[2479]1277    if (! @$options['return'] )
[2127]1278    {
1279      @include($source_file);
1280      $load_lang = @$lang;
1281      $load_lang_info = @$lang_info;
1282
1283      global $lang, $lang_info;
1284      if ( !isset($lang) ) $lang=array();
1285      if ( !isset($lang_info) ) $lang_info=array();
1286
[5200]1287      if ( 'utf-8'!=$target_charset)
[2127]1288      {
1289        if ( is_array($load_lang) )
1290        {
1291          foreach ($load_lang as $k => $v)
1292          {
1293            if ( is_array($v) )
1294            {
[6355]1295              $func = create_function('$v', 'return convert_charset($v, "utf-8", "'.$target_charset.'");' );
[2127]1296              $lang[$k] = array_map($func, $v);
1297            }
1298            else
[6355]1299              $lang[$k] = convert_charset($v, 'utf-8', $target_charset);
[2127]1300          }
1301        }
1302        if ( is_array($load_lang_info) )
1303        {
1304          foreach ($load_lang_info as $k => $v)
1305          {
[6355]1306            $lang_info[$k] = convert_charset($v, 'utf-8', $target_charset);
[2127]1307          }
1308        }
1309      }
1310      else
1311      {
[2134]1312        $lang = array_merge( $lang, (array)$load_lang );
1313        $lang_info = array_merge( $lang_info, (array)$load_lang_info );
[2127]1314      }
1315      return true;
1316    }
1317    else
1318    {
1319      $content = @file_get_contents($source_file);
[6355]1320      $content = convert_charset($content, 'utf-8', $target_charset);
[2127]1321      return $content;
1322    }
1323  }
1324  return false;
[2126]1325}
1326
[2127]1327/**
[6355]1328 * converts a string from a character set to another character set
[2127]1329 * @param string str the string to be converted
[6355]1330 * @param string source_charset the character set in which the string is encoded
[2127]1331 * @param string dest_charset the destination character set
1332 */
[6355]1333function convert_charset($str, $source_charset, $dest_charset)
[2127]1334{
[6355]1335  if ($source_charset==$dest_charset)
1336    return $str;
1337  if ($source_charset=='iso-8859-1' and $dest_charset=='utf-8')
[5200]1338  {
[6355]1339    return utf8_encode($str);
[2127]1340  }
[6355]1341  if ($source_charset=='utf-8' and $dest_charset=='iso-8859-1')
[2127]1342  {
1343    return utf8_decode($str);
1344  }
1345  if (function_exists('iconv'))
1346  {
[6355]1347    return iconv($source_charset, $dest_charset, $str);
[2127]1348  }
1349  if (function_exists('mb_convert_encoding'))
1350  {
[6355]1351    return mb_convert_encoding( $str, $dest_charset, $source_charset );
[2127]1352  }
1353  return $str; //???
1354}
[2917]1355
1356/**
1357 * makes sure a index.htm protects the directory from browser file listing
1358 *
1359 * @param string dir directory
1360 */
1361function secure_directory($dir)
1362{
1363  $file = $dir.'/index.htm';
1364  if (!file_exists($file))
1365  {
1366    @file_put_contents($file, 'Not allowed!');
1367  }
1368}
[3145]1369
1370/**
[7495]1371 * returns a "secret key" that is to be sent back when a user posts a form
[3145]1372 *
[7495]1373 * @param int valid_after_seconds - key validity start time from now
[3145]1374 */
[7495]1375function get_ephemeral_key($valid_after_seconds, $aditionnal_data_to_hash = '')
[3145]1376{
[7495]1377        global $conf;
1378        $time = round(microtime(true), 1);
1379        return $time.':'.$valid_after_seconds.':'
1380                .hash_hmac(
[12920]1381                        'md5',
1382                        $time.substr($_SERVER['REMOTE_ADDR'],0,5).$valid_after_seconds.$aditionnal_data_to_hash,
[7495]1383                        $conf['secret_key']);
1384}
[3145]1385
[7495]1386function verify_ephemeral_key($key, $aditionnal_data_to_hash = '')
1387{
1388        global $conf;
1389        $time = microtime(true);
1390        $key = explode( ':', @$key );
1391        if ( count($key)!=3
1392                or $key[0]>$time-(float)$key[1] // page must have been retrieved more than X sec ago
1393                or $key[0]<$time-3600 // 60 minutes expiration
1394                or hash_hmac(
1395                          'md5', $key[0].substr($_SERVER['REMOTE_ADDR'],0,5).$key[1].$aditionnal_data_to_hash, $conf['secret_key']
1396                        ) != $key[2]
1397          )
1398        {
1399                return false;
1400        }
1401        return true;
[3145]1402}
[3172]1403
1404/**
1405 * return an array which will be sent to template to display navigation bar
1406 */
1407function create_navigation_bar($url, $nb_element, $start, $nb_element_page, $clean_url = false)
1408{
1409  global $conf;
1410
[3173]1411  $navbar = array();
[3172]1412  $pages_around = $conf['paginate_pages_around'];
1413  $start_str = $clean_url ? '/start-' : (strpos($url, '?')===false ? '?':'&amp;').'start=';
1414
1415  if (!isset($start) or !is_numeric($start) or (is_numeric($start) and $start < 0))
1416  {
1417    $start = 0;
1418  }
1419
1420  // navigation bar useful only if more than one page to display !
1421  if ($nb_element > $nb_element_page)
1422  {
1423    $cur_page = ceil($start / $nb_element_page) + 1;
1424    $maximum = ceil($nb_element / $nb_element_page);
[3173]1425    $previous = $start - $nb_element_page;
1426    $next = $start + $nb_element_page;
1427    $last = ($maximum - 1) * $nb_element_page;
[3172]1428
1429    $navbar['CURRENT_PAGE'] = $cur_page;
1430
[3173]1431    // link to first page and previous page?
[3172]1432    if ($cur_page != 1)
1433    {
1434      $navbar['URL_FIRST'] = $url;
1435      $navbar['URL_PREV'] = $url.($previous > 0 ? $start_str.$previous : '');
1436    }
[3173]1437    // link on next page and last page?
1438    if ($cur_page != $maximum)
[3172]1439    {
1440      $navbar['URL_NEXT'] = $url.$start_str.$next;
[3173]1441      $navbar['URL_LAST'] = $url.$start_str.$last;
[3172]1442    }
1443
1444    // pages to display
1445    $navbar['pages'] = array();
1446    $navbar['pages'][1] = $url;
[3173]1447    $navbar['pages'][$maximum] = $url.$start_str.$last;
[3172]1448
[3173]1449    for ($i = max($cur_page - $pages_around , 2), $stop = min($cur_page + $pages_around + 1, $maximum);
1450         $i < $stop; $i++)
[3172]1451    {
[3173]1452      $navbar['pages'][$i] = $url.$start_str.(($i - 1) * $nb_element_page);
[3172]1453    }
1454    ksort($navbar['pages']);
1455  }
1456  return $navbar;
1457}
[3188]1458
1459/**
1460 * return an array which will be sent to template to display recent icon
1461 */
1462function get_icon($date, $is_child_date = false)
1463{
1464  global $cache, $user;
1465
1466  if (empty($date))
1467  {
1468    return false;
1469  }
1470
1471  if (!isset($cache['get_icon']['title']))
1472  {
1473    $cache['get_icon']['title'] = sprintf(
[8665]1474      l10n('photos posted during the last %d days'),
[3188]1475      $user['recent_period']
1476      );
1477  }
1478
1479  $icon = array(
1480    'TITLE' => $cache['get_icon']['title'],
1481    'IS_CHILD_DATE' => $is_child_date,
1482    );
1483
1484  if (isset($cache['get_icon'][$date]))
1485  {
1486    return $cache['get_icon'][$date] ? $icon : array();
1487  }
1488
1489  if (!isset($cache['get_icon']['sql_recent_date']))
1490  {
1491    // Use MySql date in order to standardize all recent "actions/queries"
[4367]1492    $cache['get_icon']['sql_recent_date'] = pwg_db_get_recent_period($user['recent_period']);
[3188]1493  }
1494
1495  $cache['get_icon'][$date] = $date > $cache['get_icon']['sql_recent_date'];
1496
1497  return $cache['get_icon'][$date] ? $icon : array();
1498}
[5195]1499
1500/**
1501 * check token comming from form posted or get params to prevent csrf attacks
1502 * if pwg_token is empty action doesn't require token
1503 * else pwg_token is compare to server token
1504 *
1505 * @return void access denied if token given is not equal to server token
1506 */
1507function check_pwg_token()
1508{
[5335]1509  if (!empty($_REQUEST['pwg_token']))
[5195]1510  {
[5335]1511    if (get_pwg_token() != $_REQUEST['pwg_token'])
1512    {
1513      access_denied();
1514    }
[5195]1515  }
[5335]1516  else
1517    bad_request('missing token');
[5195]1518}
1519
1520function get_pwg_token()
1521{
1522  global $conf;
1523
1524  return hash_hmac('md5', session_id(), $conf['secret_key']);
1525}
1526
1527/*
1528 * breaks the script execution if the given value doesn't match the given
1529 * pattern. This should happen only during hacking attempts.
1530 *
1531 * @param string param_name
1532 * @param array param_array
1533 * @param boolean is_array
1534 * @param string pattern
1535 *
1536 * @return void
1537 */
1538function check_input_parameter($param_name, $param_array, $is_array, $pattern)
1539{
1540  $param_value = null;
1541  if (isset($param_array[$param_name]))
1542  {
1543    $param_value = $param_array[$param_name];
1544  }
1545
1546  // it's ok if the input parameter is null
1547  if (empty($param_value))
1548  {
1549    return true;
1550  }
1551
1552  if ($is_array)
1553  {
1554    if (!is_array($param_value))
1555    {
1556      fatal_error('[Hacking attempt] the input parameter "'.$param_name.'" should be an array');
1557    }
1558
1559    foreach ($param_value as $item_to_check)
1560    {
1561      if (!preg_match($pattern, $item_to_check))
1562      {
1563        fatal_error('[Hacking attempt] an item is not valid in input parameter "'.$param_name.'"');
1564      }
1565    }
1566  }
1567  else
1568  {
1569    if (!preg_match($pattern, $param_value))
1570    {
1571      fatal_error('[Hacking attempt] the input parameter "'.$param_name.'" is not valid');
1572    }
1573  }
1574}
[6025]1575
1576
1577function get_privacy_level_options()
1578{
1579  global $conf;
[6355]1580
[6025]1581  $options = array();
1582  foreach (array_reverse($conf['available_permission_levels']) as $level)
1583  {
1584    $label = null;
[6355]1585
[6025]1586    if (0 == $level)
1587    {
1588      $label = l10n('Everybody');
1589    }
1590    else
1591    {
1592      $labels = array();
1593      $sub_levels = array_reverse($conf['available_permission_levels']);
1594      foreach ($sub_levels as $sub_level)
1595      {
1596        if ($sub_level == 0 or $sub_level < $level)
1597        {
1598          break;
1599        }
1600        array_push(
1601          $labels,
1602          l10n(
1603            sprintf(
1604              'Level %d',
1605              $sub_level
1606              )
1607            )
1608          );
1609      }
[6355]1610
[6025]1611      $label = implode(', ', $labels);
1612    }
1613    $options[$level] = $label;
1614  }
1615  return $options;
1616}
[11511]1617
1618
1619/**
1620 * return the branch from the version. For example version 2.2.4 is for branch 2.2
1621 */
1622function get_branch_from_version($version)
1623{
1624  return implode('.', array_slice(explode('.', $version), 0, 2));
1625}
[2126]1626?>
Note: See TracBrowser for help on using the repository browser.