source: trunk/picture.php @ 28575

Last change on this file since 28575 was 28184, checked in by rvelices, 10 years ago

simplified allow_increment_element_hit_count call and also pass the image id in the event ...

  • Property svn:eol-style set to LF
File size: 27.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2014 Piwigo Team                  http://piwigo.org |
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// +-----------------------------------------------------------------------+
23
24define('PHPWG_ROOT_PATH','./');
25include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
26include(PHPWG_ROOT_PATH.'include/section_init.inc.php');
27include_once(PHPWG_ROOT_PATH.'include/functions_picture.inc.php');
28
29// Check Access and exit when user status is not ok
30check_status(ACCESS_GUEST);
31
32// access authorization check
33if (isset($page['category']))
34{
35  check_restrictions($page['category']['id']);
36}
37
38$page['rank_of'] = array_flip($page['items']);
39
40// if this image_id doesn't correspond to this category, an error message is
41// displayed, and execution is stopped
42if ( !isset($page['rank_of'][$page['image_id']]) )
43{
44  $query = '
45SELECT id, file, level
46  FROM '.IMAGES_TABLE.'
47  WHERE ';
48  if ($page['image_id']>0)
49  {
50    $query .= 'id = '.$page['image_id'];
51  }
52  else
53  {// url given by file name
54    assert( !empty($page['image_file']) );
55    $query .= 'file LIKE \'' .
56      str_replace(array('_','%'), array('/_','/%'), $page['image_file'] ).
57      '.%\' ESCAPE \'/\' LIMIT 1';
58  }
59  if ( ! ( $row = pwg_db_fetch_assoc(pwg_query($query)) ) )
60  {// element does not exist
61    page_not_found( 'The requested image does not exist',
62      duplicate_index_url()
63      );
64  }
65  if ($row['level']>$user['level'])
66  {
67    access_denied();
68  }
69
70  $page['image_id'] = $row['id'];
71  $page['image_file'] =  $row['file'];
72  if ( !isset($page['rank_of'][$page['image_id']]) )
73  {// the image can still be non accessible (filter/cat perm) and/or not in the set
74    global $filter;
75    if ( !empty($filter['visible_images']) and
76      !in_array($page['image_id'], explode(',',$filter['visible_images']) ) )
77    {
78      page_not_found( 'The requested image is filtered',
79          duplicate_index_url()
80        );
81    }
82    if ('categories'==$page['section'] and !isset($page['category']) )
83    {// flat view - all items
84      access_denied();
85    }
86    else
87    {// try to see if we can access it differently
88      $query = '
89SELECT id
90  FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id=image_id
91  WHERE id='.$page['image_id']
92        . get_sql_condition_FandF(
93            array('forbidden_categories' => 'category_id'),
94            " AND"
95          ).'
96  LIMIT 1';
97      if ( pwg_db_num_rows( pwg_query($query) ) == 0 )
98      {
99        access_denied();
100      }
101      else
102      {
103        if ('best_rated'==$page['section'])
104        {
105          $page['rank_of'][ $page['image_id'] ] = count($page['items']);
106          $page['items'][] = $page['image_id'];
107        }
108        else
109        {
110          $url = make_picture_url(
111              array(
112                'image_id' => $page['image_id'],
113                'image_file' => $page['image_file'],
114                'section' => 'categories',
115                'flat' => true,
116              )
117            );
118          set_status_header( 'recent_pics'==$page['section'] ? 301 : 302);
119          redirect_http( $url );
120        }
121      }
122    }
123  }
124}
125
126// There is cookie, so we must handle it at the beginning
127if ( isset($_GET['metadata']) )
128{
129  if ( pwg_get_session_var('show_metadata') == null )
130        {
131                pwg_set_session_var('show_metadata', 1 );
132        } else {
133        pwg_unset_session_var('show_metadata');
134        }
135}
136
137// add default event handler for rendering element content
138add_event_handler(
139  'render_element_content',
140  'default_picture_content',
141  EVENT_HANDLER_PRIORITY_NEUTRAL,
142  2
143  );
144// add default event handler for rendering element description
145add_event_handler('render_element_description', 'nl2br');
146
147trigger_action('loc_begin_picture');
148
149// this is the default handler that generates the display for the element
150function default_picture_content($content, $element_info)
151{
152  global $conf;
153
154  if ( !empty($content) )
155  {// someone hooked us - so we skip;
156    return $content;
157  }
158
159  if (isset($_COOKIE['picture_deriv']))
160  {
161    if ( array_key_exists($_COOKIE['picture_deriv'], ImageStdParams::get_defined_type_map()) )
162    {
163      pwg_set_session_var('picture_deriv', $_COOKIE['picture_deriv']);
164    }
165    setcookie('picture_deriv', false, 0, cookie_path() );
166  }
167  $deriv_type = pwg_get_session_var('picture_deriv', $conf['derivative_default_size']);
168  $selected_derivative = $element_info['derivatives'][$deriv_type];
169
170  $unique_derivatives = array();
171  $show_original = isset($element_info['element_url']);
172  $added = array();
173  foreach($element_info['derivatives'] as $type => $derivative)
174  {
175    if ($type==IMG_SQUARE || $type==IMG_THUMB)
176      continue;
177    if (!array_key_exists($type, ImageStdParams::get_defined_type_map()))
178      continue;
179    $url = $derivative->get_url();
180    if (isset($added[$url]))
181      continue;
182    $added[$url] = 1;
183    $show_original &= !($derivative->same_as_source());
184    $unique_derivatives[$type]= $derivative;
185  }
186
187  global $page, $template;
188
189  if ($show_original)
190  {
191    $template->assign( 'U_ORIGINAL', $element_info['element_url'] );
192  }
193
194  $template->append('current', array(
195      'selected_derivative' => $selected_derivative,
196      'unique_derivatives' => $unique_derivatives,
197    ), true);
198
199
200  $template->set_filenames(
201    array('default_content'=>'picture_content.tpl')
202    );
203
204  $template->assign( array(
205      'ALT_IMG' => $element_info['file'],
206      'COOKIE_PATH' => cookie_path(),
207      )
208    );
209  return $template->parse( 'default_content', true);
210}
211
212// +-----------------------------------------------------------------------+
213// |                            initialization                             |
214// +-----------------------------------------------------------------------+
215
216// caching first_rank, last_rank, current_rank in the displayed
217// section. This should also help in readability.
218$page['first_rank']   = 0;
219$page['last_rank']    = count($page['items']) - 1;
220$page['current_rank'] = $page['rank_of'][ $page['image_id'] ];
221
222// caching current item : readability purpose
223$page['current_item'] = $page['image_id'];
224
225if ($page['current_rank'] != $page['first_rank'])
226{
227  // caching first & previous item : readability purpose
228  $page['previous_item'] = $page['items'][ $page['current_rank'] - 1 ];
229  $page['first_item'] = $page['items'][ $page['first_rank'] ];
230}
231
232if ($page['current_rank'] != $page['last_rank'])
233{
234  // caching next & last item : readability purpose
235  $page['next_item'] = $page['items'][ $page['current_rank'] + 1 ];
236  $page['last_item'] = $page['items'][ $page['last_rank'] ];
237}
238
239$url_up = duplicate_index_url(
240  array(
241    'start' =>
242      floor($page['current_rank'] / $page['nb_image_page'])
243      * $page['nb_image_page']
244    ),
245  array(
246    'start',
247    )
248  );
249
250$url_self = duplicate_picture_url();
251
252// +-----------------------------------------------------------------------+
253// |                                actions                                |
254// +-----------------------------------------------------------------------+
255
256/**
257 * Actions are favorite adding, user comment deletion, setting the picture
258 * as representative of the current category...
259 *
260 * Actions finish by a redirection
261 */
262
263if (isset($_GET['action']))
264{
265  switch ($_GET['action'])
266  {
267    case 'add_to_favorites' :
268    {
269      $query = '
270INSERT INTO '.FAVORITES_TABLE.'
271  (image_id,user_id)
272  VALUES
273  ('.$page['image_id'].','.$user['id'].')
274;';
275      pwg_query($query);
276
277      redirect($url_self);
278
279      break;
280    }
281    case 'remove_from_favorites' :
282    {
283      $query = '
284DELETE FROM '.FAVORITES_TABLE.'
285  WHERE user_id = '.$user['id'].'
286    AND image_id = '.$page['image_id'].'
287;';
288      pwg_query($query);
289
290      if ('favorites' == $page['section'])
291      {
292        redirect($url_up);
293      }
294      else
295      {
296        redirect($url_self);
297      }
298
299      break;
300    }
301    case 'set_as_representative' :
302    {
303      if (is_admin() and isset($page['category']))
304      {
305        $query = '
306UPDATE '.CATEGORIES_TABLE.'
307  SET representative_picture_id = '.$page['image_id'].'
308  WHERE id = '.$page['category']['id'].'
309;';
310        pwg_query($query);
311
312        include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
313        invalidate_user_cache();
314      }
315
316      redirect($url_self);
317
318      break;
319    }
320    case 'add_to_caddie' :
321    {
322      fill_caddie(array($page['image_id']));
323      redirect($url_self);
324      break;
325    }
326    case 'rate' :
327    {
328      include_once(PHPWG_ROOT_PATH.'include/functions_rate.inc.php');
329      rate_picture($page['image_id'], $_POST['rate']);
330      redirect($url_self);
331    }
332    case 'edit_comment':
333    {
334      include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php');
335      check_input_parameter('comment_to_edit', $_GET, false, PATTERN_ID);
336      $author_id = get_comment_author_id($_GET['comment_to_edit']);
337
338      if (can_manage_comment('edit', $author_id))
339      {
340        if (!empty($_POST['content']))
341        {
342          check_pwg_token();
343          $comment_action = update_user_comment(
344            array(
345              'comment_id' => $_GET['comment_to_edit'],
346              'image_id' => $page['image_id'],
347              'content' => $_POST['content'],
348              'website_url' => @$_POST['website_url'],
349              ),
350            $_POST['key']
351            );
352
353          $perform_redirect = false;
354          switch ($comment_action)
355          {
356            case 'moderate':
357              $_SESSION['page_infos'][] = l10n('An administrator must authorize your comment before it is visible.');
358            case 'validate':
359              $_SESSION['page_infos'][] = l10n('Your comment has been registered');
360              $perform_redirect = true;
361              break;
362            case 'reject':
363              $_SESSION['page_errors'][] = l10n('Your comment has NOT been registered because it did not pass the validation rules');
364              break;
365            default:
366              trigger_error('Invalid comment action '.$comment_action, E_USER_WARNING);
367          }
368
369          if ($perform_redirect)
370          {
371            redirect($url_self);
372          }
373          unset($_POST['content']);
374        }
375
376        $edit_comment = $_GET['comment_to_edit'];
377      }
378      break;
379    }
380    case 'delete_comment' :
381    {
382      check_pwg_token();
383
384      include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php');
385
386      check_input_parameter('comment_to_delete', $_GET, false, PATTERN_ID);
387
388      $author_id = get_comment_author_id($_GET['comment_to_delete']);
389
390      if (can_manage_comment('delete', $author_id))
391      {
392        delete_user_comment($_GET['comment_to_delete']);
393      }
394
395      redirect($url_self);
396    }
397    case 'validate_comment' :
398    {
399      check_pwg_token();
400
401      include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php');
402
403      check_input_parameter('comment_to_validate', $_GET, false, PATTERN_ID);
404
405      $author_id = get_comment_author_id($_GET['comment_to_validate']);
406
407      if (can_manage_comment('validate', $author_id))
408      {
409        validate_user_comment($_GET['comment_to_validate']);
410      }
411
412      redirect($url_self);
413    }
414
415  }
416}
417
418
419//---------- incrementation of the number of hits
420$inc_hit_count = !isset($_POST['content']);
421// don't increment counter if in the Mozilla Firefox prefetch
422if (isset($_SERVER['HTTP_X_MOZ']) and $_SERVER['HTTP_X_MOZ'] == 'prefetch')
423{
424  $inc_hit_count = false;
425}
426else
427{
428  // don't increment counter if comming from the same picture (actions)
429  if (pwg_get_session_var('referer_image_id',0) == $page['image_id'])
430  {
431    $inc_hit_count = false;
432  }
433  pwg_set_session_var('referer_image_id', $page['image_id']);
434}
435
436// don't increment if adding a comment
437if (trigger_event('allow_increment_element_hit_count', $inc_hit_count, $page['image_id'] ) )
438{
439  $query = '
440UPDATE
441  '.IMAGES_TABLE.'
442  SET hit = hit+1
443  WHERE id = '.$page['image_id'].'
444;';
445  pwg_query($query);
446}
447
448//---------------------------------------------------------- related categories
449$query = '
450SELECT id,uppercats,commentable,visible,status,global_rank
451  FROM '.IMAGE_CATEGORY_TABLE.'
452    INNER JOIN '.CATEGORIES_TABLE.' ON category_id = id
453  WHERE image_id = '.$page['image_id'].'
454'.get_sql_condition_FandF
455  (
456    array
457      (
458        'forbidden_categories' => 'id',
459        'visible_categories' => 'id'
460      ),
461    'AND'
462  ).'
463;';
464$related_categories = array_from_query($query);
465usort($related_categories, 'global_rank_compare');
466//-------------------------first, prev, current, next & last picture management
467$picture = array();
468
469$ids = array($page['image_id']);
470if (isset($page['previous_item']))
471{
472  $ids[] = $page['previous_item'];
473  $ids[] = $page['first_item'];
474}
475if (isset($page['next_item']))
476{
477  $ids[] = $page['next_item'];
478  $ids[] = $page['last_item'];
479}
480
481$query = '
482SELECT *
483  FROM '.IMAGES_TABLE.'
484  WHERE id IN ('.implode(',', $ids).')
485;';
486
487$result = pwg_query($query);
488
489while ($row = pwg_db_fetch_assoc($result))
490{
491  if (isset($page['previous_item']) and $row['id'] == $page['previous_item'])
492  {
493    $i = 'previous';
494  }
495  elseif (isset($page['next_item']) and $row['id'] == $page['next_item'])
496  {
497    $i = 'next';
498  }
499  elseif (isset($page['first_item']) and $row['id'] == $page['first_item'])
500  {
501    $i = 'first';
502  }
503  elseif (isset($page['last_item']) and $row['id'] == $page['last_item'])
504  {
505    $i = 'last';
506  }
507  else
508  {
509    $i = 'current';
510  }
511
512  $row['src_image'] = new SrcImage($row);
513  $row['derivatives'] = DerivativeImage::get_all($row['src_image']);
514
515  if ($i=='current')
516  {
517    $row['element_path'] = get_element_path($row);
518
519    if ( $row['src_image']->is_original() )
520    {// we have a photo
521      if ( $user['enabled_high']=='true' )
522      {
523        $row['element_url'] = $row['src_image']->get_url();
524        $row['download_url'] = get_action_url($row['id'], 'e', true);
525      }
526    }
527    else
528    { // not a pic - need download link
529      $row['download_url'] = $row['element_url'] = get_element_url($row);;
530    }
531  }
532
533  $row['url'] = duplicate_picture_url(
534    array(
535      'image_id' => $row['id'],
536      'image_file' => $row['file'],
537      ),
538    array(
539      'start',
540      )
541    );
542
543  $picture[$i] = $row;
544  $picture[$i]['TITLE'] = render_element_name($row);
545  $picture[$i]['TITLE_ESC'] = str_replace('"', '&quot;', $picture[$i]['TITLE']);
546
547  if ('previous'==$i and $page['previous_item']==$page['first_item'])
548  {
549    $picture['first'] = $picture[$i];
550  }
551  if ('next'==$i and $page['next_item']==$page['last_item'])
552  {
553    $picture['last'] = $picture[$i];
554  }
555}
556
557$slideshow_params = array();
558$slideshow_url_params = array();
559
560if (isset($_GET['slideshow']))
561{
562  $page['slideshow'] = true;
563  $page['meta_robots'] = array('noindex'=>1, 'nofollow'=>1);
564
565  $slideshow_params = decode_slideshow_params($_GET['slideshow']);
566  $slideshow_url_params['slideshow'] = encode_slideshow_params($slideshow_params);
567
568  if ($slideshow_params['play'])
569  {
570    $id_pict_redirect = '';
571    if (isset($page['next_item']))
572    {
573      $id_pict_redirect = 'next';
574    }
575    else
576    {
577      if ($slideshow_params['repeat'] and isset($page['first_item']))
578      {
579        $id_pict_redirect = 'first';
580      }
581    }
582
583    if (!empty($id_pict_redirect))
584    {
585      // $refresh, $url_link and $title are required for creating
586      // an automated refresh page in header.tpl
587      $refresh = $slideshow_params['period'];
588      $url_link = add_url_params(
589          $picture[$id_pict_redirect]['url'],
590          $slideshow_url_params
591        );
592    }
593  }
594}
595else
596{
597  $page['slideshow'] = false;
598}
599if ($page['slideshow'] and $conf['light_slideshow'])
600{
601  $template->set_filenames( array('slideshow' => 'slideshow.tpl'));
602}
603else
604{
605  $template->set_filenames( array('picture' => 'picture.tpl'));
606}
607
608$title =  $picture['current']['TITLE'];
609$title_nb = ($page['current_rank'] + 1).'/'.count($page['items']);
610
611// metadata
612$url_metadata = duplicate_picture_url();
613$url_metadata = add_url_params( $url_metadata, array('metadata'=>null) );
614
615
616// do we have a plugin that can show metadata for something else than images?
617$metadata_showable = trigger_event(
618  'get_element_metadata_available',
619  (
620    ($conf['show_exif'] or $conf['show_iptc'])
621    and !$picture['current']['src_image']->is_mimetype()
622    ),
623  $picture['current']
624  );
625
626if ( $metadata_showable and pwg_get_session_var('show_metadata') )
627{
628  $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
629}
630
631
632$page['body_id'] = 'thePicturePage';
633
634// allow plugins to change what we computed before passing data to template
635$picture = trigger_event('picture_pictures_data', $picture);
636
637//------------------------------------------------------- navigation management
638foreach (array('first','previous','next','last', 'current') as $which_image)
639{
640  if (isset($picture[$which_image]))
641  {
642    $template->assign(
643      $which_image,
644      array_merge(
645        $picture[$which_image],
646        array(
647          'THUMB_SRC' => $picture[$which_image]['derivatives'][IMG_THUMB]->get_url(),
648          // Params slideshow was transmit to navigation buttons
649          'U_IMG' =>
650            add_url_params(
651              $picture[$which_image]['url'], $slideshow_url_params),
652          )
653        )
654      );
655  }
656}
657if ($conf['picture_download_icon'] and !empty($picture['current']['download_url']))
658{
659  $template->append('current', array('U_DOWNLOAD' => $picture['current']['download_url']), true);
660}
661
662
663if ($page['slideshow'])
664{
665  $tpl_slideshow = array();
666
667  //slideshow end
668  $template->assign(
669    array(
670      'U_SLIDESHOW_STOP' => $picture['current']['url'],
671      )
672    );
673
674  foreach (array('repeat', 'play') as $p)
675  {
676    $var_name =
677      'U_'
678      .($slideshow_params[$p] ? 'STOP_' : 'START_')
679      .strtoupper($p);
680
681    $tpl_slideshow[$var_name] =
682          add_url_params(
683            $picture['current']['url'],
684            array('slideshow' =>
685              encode_slideshow_params(
686                array_merge($slideshow_params,
687                  array($p => ! $slideshow_params[$p]))
688                )
689              )
690          );
691  }
692
693  foreach (array('dec', 'inc') as $op)
694  {
695    $new_period = $slideshow_params['period'] + ((($op == 'dec') ? -1 : 1) * $conf['slideshow_period_step']);
696    $new_slideshow_params =
697      correct_slideshow_params(
698        array_merge($slideshow_params,
699                  array('period' => $new_period)));
700
701    if ($new_slideshow_params['period'] === $new_period)
702    {
703      $var_name = 'U_'.strtoupper($op).'_PERIOD';
704      $tpl_slideshow[$var_name] =
705            add_url_params(
706              $picture['current']['url'],
707              array('slideshow' => encode_slideshow_params($new_slideshow_params)
708                  )
709          );
710    }
711  }
712  $template->assign('slideshow', $tpl_slideshow );
713}
714elseif ($conf['picture_slideshow_icon'])
715{
716  $template->assign(
717    array(
718      'U_SLIDESHOW_START' =>
719        add_url_params(
720          $picture['current']['url'],
721          array( 'slideshow'=>''))
722      )
723    );
724}
725
726$template->assign(
727  array(
728    'SECTION_TITLE' => $page['section_title'],
729    'PHOTO' => $title_nb,
730    'IS_HOME' => ('categories'==$page['section'] and !isset($page['category']) ),
731
732    'LEVEL_SEPARATOR' => $conf['level_separator'],
733
734    'U_UP' => $url_up,
735    'DISPLAY_NAV_BUTTONS' => $conf['picture_navigation_icons'],
736    'DISPLAY_NAV_THUMB' => $conf['picture_navigation_thumb']
737    )
738  );
739
740if ($conf['picture_metadata_icon'])
741{
742  $template->assign('U_METADATA', $url_metadata);
743}
744
745
746//------------------------------------------------------- upper menu management
747
748// admin links
749if (is_admin())
750{
751  if (isset($page['category']))
752  {
753    $template->assign(
754      array(
755        'U_SET_AS_REPRESENTATIVE' => add_url_params($url_self,
756                    array('action'=>'set_as_representative')
757                 )
758        )
759      );
760  }
761
762  $url_admin =
763    get_root_url().'admin.php?page=photo-'.$page['image_id']
764    .(isset($page['category']) ? '&amp;cat_id='.$page['category']['id'] : '')
765    ;
766
767  $template->assign(
768    array(
769      'U_CADDIE' => add_url_params($url_self,
770                  array('action'=>'add_to_caddie')
771               ),
772      'U_PHOTO_ADMIN' => $url_admin,
773      )
774    );
775
776  $template->assign('available_permission_levels', get_privacy_level_options());
777}
778
779// favorite manipulation
780if (!is_a_guest() and $conf['picture_favorite_icon'])
781{
782  // verify if the picture is already in the favorite of the user
783  $query = '
784SELECT COUNT(*) AS nb_fav
785  FROM '.FAVORITES_TABLE.'
786  WHERE image_id = '.$page['image_id'].'
787    AND user_id = '.$user['id'].'
788;';
789  $row = pwg_db_fetch_assoc( pwg_query($query) );
790        $is_favorite = $row['nb_fav'] != 0;
791
792  $template->assign(
793    'favorite',
794    array(
795                        'IS_FAVORITE' => $is_favorite,
796      'U_FAVORITE'    => add_url_params(
797        $url_self,
798        array('action'=> !$is_favorite ? 'add_to_favorites' : 'remove_from_favorites' )
799        ),
800      )
801    );
802}
803
804//--------------------------------------------------------- picture information
805// legend
806if (isset($picture['current']['comment'])
807    and !empty($picture['current']['comment']))
808{
809  $template->assign(
810      'COMMENT_IMG',
811        trigger_event('render_element_description',
812          $picture['current']['comment'],
813          'picture_page_element_description'
814          )
815      );
816}
817
818// author
819if (!empty($picture['current']['author']))
820{
821  $infos['INFO_AUTHOR'] = $picture['current']['author'];
822}
823
824// creation date
825if (!empty($picture['current']['date_creation']))
826{
827  $val = format_date($picture['current']['date_creation']);
828  $url = make_index_url(
829    array(
830      'chronology_field'=>'created',
831      'chronology_style'=>'monthly',
832      'chronology_view'=>'list',
833      'chronology_date' => explode('-', substr($picture['current']['date_creation'], 0, 10))
834      )
835    );
836  $infos['INFO_CREATION_DATE'] =
837    '<a href="'.$url.'" rel="nofollow">'.$val.'</a>';
838}
839
840// date of availability
841$val = format_date($picture['current']['date_available']);
842$url = make_index_url(
843  array(
844    'chronology_field'=>'posted',
845    'chronology_style'=>'monthly',
846    'chronology_view'=>'list',
847    'chronology_date' => explode(
848      '-',
849      substr($picture['current']['date_available'], 0, 10)
850      )
851    )
852  );
853$infos['INFO_POSTED_DATE'] = '<a href="'.$url.'" rel="nofollow">'.$val.'</a>';
854
855// size in pixels
856if ($picture['current']['src_image']->is_original() and isset($picture['current']['width']) )
857{
858  $infos['INFO_DIMENSIONS'] =
859    $picture['current']['width'].'*'.$picture['current']['height'];
860}
861
862// filesize
863if (!empty($picture['current']['filesize']))
864{
865  $infos['INFO_FILESIZE'] = l10n('%d Kb', $picture['current']['filesize']);
866}
867
868// number of visits
869$infos['INFO_VISITS'] = $picture['current']['hit'];
870
871// file
872$infos['INFO_FILE'] = $picture['current']['file'];
873
874$template->assign($infos);
875$template->assign('display_info', unserialize($conf['picture_informations']));
876
877// related tags
878$tags = get_common_tags( array($page['image_id']), -1);
879if ( count($tags) )
880{
881  foreach ($tags as $tag)
882  {
883    $template->append(
884        'related_tags',
885        array_merge( $tag,
886          array(
887            'URL' => make_index_url(
888                      array(
889                        'tags' => array($tag)
890                        )
891                      ),
892            'U_TAG_IMAGE' => duplicate_picture_url(
893                      array(
894                        'section' => 'tags',
895                        'tags' => array($tag)
896                        )
897                    )
898          )
899        )
900      );
901  }
902}
903
904// related categories
905if ( count($related_categories)==1 and
906    isset($page['category']) and
907    $related_categories[0]['id']==$page['category']['id'] )
908{ // no need to go to db, we have all the info
909  $template->append(
910      'related_categories',
911      get_cat_display_name( $page['category']['upper_names'] )
912    );
913}
914else
915{ // use only 1 sql query to get names for all related categories
916  $ids = array();
917  foreach ($related_categories as $category)
918  {// add all uppercats to $ids
919    $ids = array_merge($ids, explode(',', $category['uppercats']) );
920  }
921  $ids = array_unique($ids);
922  $query = '
923SELECT id, name, permalink
924  FROM '.CATEGORIES_TABLE.'
925  WHERE id IN ('.implode(',',$ids).')';
926  $cat_map = hash_from_query($query, 'id');
927  foreach ($related_categories as $category)
928  {
929    $cats = array();
930    foreach ( explode(',', $category['uppercats']) as $id )
931    {
932      $cats[] = $cat_map[$id];
933    }
934    $template->append('related_categories', get_cat_display_name($cats) );
935  }
936}
937
938// maybe someone wants a special display (call it before page_header so that
939// they can add stylesheets)
940$element_content = trigger_event(
941  'render_element_content',
942  '',
943  $picture['current']
944  );
945$template->assign( 'ELEMENT_CONTENT', $element_content );
946
947if (isset($picture['next'])
948    and $picture['next']['src_image']->is_original()
949    and $template->get_template_vars('U_PREFETCH') == null
950    and strpos(@$_SERVER['HTTP_USER_AGENT'], 'Chrome/') === false)
951{
952  $template->assign(
953    'U_PREFETCH',
954    $picture['next']['derivatives'][pwg_get_session_var('picture_deriv', $conf['derivative_default_size'])]->get_url()
955    );
956}
957
958$template->assign(
959  'U_CANONICAL',
960  make_picture_url(
961    array(
962      'image_id' => $picture['current']['id'],
963      'image_file' => $picture['current']['file'])
964    )
965  );
966
967// +-----------------------------------------------------------------------+
968// |                               sub pages                               |
969// +-----------------------------------------------------------------------+
970
971include(PHPWG_ROOT_PATH.'include/picture_rate.inc.php');
972if ($conf['activate_comments'])
973{
974  include(PHPWG_ROOT_PATH.'include/picture_comment.inc.php');
975}
976if ($metadata_showable and pwg_get_session_var('show_metadata') <> null )
977{
978  include(PHPWG_ROOT_PATH.'include/picture_metadata.inc.php');
979}
980
981// include menubar
982$themeconf = $template->get_template_vars('themeconf');
983if ($conf['picture_menu'] AND (!isset($themeconf['hide_menu_on']) OR !in_array('thePicturePage', $themeconf['hide_menu_on'])))
984{
985  if (!isset($page['start'])) $page['start'] = 0;
986  include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
987}
988
989include(PHPWG_ROOT_PATH.'include/page_header.php');
990trigger_action('loc_end_picture');
991flush_page_messages();
992if ($page['slideshow'] and $conf['light_slideshow'])
993{
994  $template->pparse('slideshow');
995}
996else
997{
998  $template->parse_picture_buttons();
999  $template->pparse('picture');
1000}
1001//------------------------------------------------------------ log informations
1002pwg_log($picture['current']['id'], 'picture');
1003include(PHPWG_ROOT_PATH.'include/page_tail.php');
1004?>
Note: See TracBrowser for help on using the repository browser.