source: trunk/include/section_init.inc.php @ 13800

Last change on this file since 13800 was 13458, checked in by plg, 12 years ago

feature 2368: better canonical URL for homepage

  • Property svn:eol-style set to LF
File size: 18.1 KB
RevLine 
[1036]1<?php
2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[12922]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// +-----------------------------------------------------------------------+
[1036]23
24/**
25 * This included page checks section related parameter and provides
26 * following informations:
27 *
28 * - $page['title']
29 *
30 * - $page['items']: ordered list of items to display
31 *
32 */
33
[1861]34// "index.php?/category/12-foo/start-24" or
35// "index.php/category/12-foo/start-24"
[1090]36// must return :
[1082]37//
38// array(
39//   'section'  => 'categories',
[1861]40//   'category' => array('id'=>12, ...),
[1082]41//   'start'    => 24
42//   );
[1036]43
[1820]44$page['items'] = array();
45
[1306]46// some ISPs set PATH_INFO to empty string or to SCRIPT_FILENAME while in the
47// default apache implementation it is not set
48if ( $conf['question_mark_in_urls']==false and
49     isset($_SERVER["PATH_INFO"]) and !empty($_SERVER["PATH_INFO"]) )
[1036]50{
[1090]51  $rewritten = $_SERVER["PATH_INFO"];
52  $rewritten = str_replace('//', '/', $rewritten);
53  $path_count = count( explode('/', $rewritten) );
54  $page['root_path'] = PHPWG_ROOT_PATH.str_repeat('../', $path_count-1);
55}
56else
57{
58  $rewritten = '';
59  foreach (array_keys($_GET) as $keynum => $key)
[1036]60  {
[1090]61    $rewritten = $key;
62    break;
63  }
[11893]64
[6906]65  // the $_GET keys are not protected in include/common.inc.php, only the values
66  $rewritten = pwg_db_real_escape_string($rewritten);
[1090]67  $page['root_path'] = PHPWG_ROOT_PATH;
68}
[1131]69
[13240]70if ( strncmp($page['root_path'], './', 2) == 0 )
71{
[13258]72  $page['root_path'] = substr($page['root_path'], 2);
[13240]73}
74
[1090]75// deleting first "/" if displayed
[2773]76$tokens = explode('/', ltrim($rewritten, '/') );
[1090]77// $tokens = array(
78//   0 => category,
79//   1 => 12-foo,
80//   2 => start-24
81//   );
[1082]82
[1090]83$next_token = 0;
[1690]84if (script_basename() == 'picture') // basename without file extention
[1109]85{ // the first token must be the identifier for the picture
86  if ( isset($_GET['image_id'])
87       and isset($_GET['cat']) and is_numeric($_GET['cat']) )
88  {// url compatibility with versions below 1.6
89    $url = make_picture_url( array(
90        'section' => 'categories',
[1861]91        'category' => get_cat_info($_GET['cat']),
[1109]92        'image_id' => $_GET['image_id']
93      ) );
94    redirect($url);
95  }
96  $token = $tokens[$next_token];
97  $next_token++;
[1092]98  if ( is_numeric($token) )
[1090]99  {
[1092]100    $page['image_id'] = $token;
[2430]101    if ($page['image_id']==0)
102    {
103      bad_request('invalid picture identifier');
104    }
[1090]105  }
[1092]106  else
107  {
[1109]108    preg_match('/^(\d+-)?(.*)?$/', $token, $matches);
[1094]109    if (isset($matches[1]) and is_numeric($matches[1]=rtrim($matches[1],'-')) )
[1092]110    {
111      $page['image_id'] = $matches[1];
[1109]112      if ( !empty($matches[2]) )
[1092]113      {
[1109]114        $page['image_file'] = $matches[2];
[1092]115      }
116    }
117    else
118    {
[3167]119      $page['image_id'] = 0; // more work in picture.php
[1109]120      if ( !empty($matches[2]) )
[1092]121      {
[1109]122        $page['image_file'] = $matches[2];
[1092]123      }
124      else
125      {
[1852]126        bad_request('picture identifier is missing');
[1092]127      }
128    }
129  }
[1090]130}
[1086]131
[1980]132$page = array_merge( $page, parse_section_url( $tokens, $next_token) );
[4385]133
[1980]134if ( !isset($page['section']) )
[1090]135{
136  $page['section'] = 'categories';
[1086]137
[1792]138  switch (script_basename())
[1788]139  {
[1792]140    case 'picture':
141      break;
142    case 'index':
143    {
144      // No section defined, go to selected url
145      if (!empty($conf['random_index_redirect']) and empty($tokens[$next_token]) )
[1788]146      {
[1792]147        $random_index_redirect = array();
148        foreach ($conf['random_index_redirect'] as $random_url => $random_url_condition)
149        {
150          if (empty($random_url_condition) or eval($random_url_condition))
151          {
152            $random_index_redirect[] = $random_url;
153          }
154        }
155        if (!empty($random_index_redirect))
156        {
157          redirect($random_index_redirect[mt_rand(0, count($random_index_redirect)-1)]);
158        }
[1788]159      }
[13458]160      $page['is_homepage'] = true;
[1792]161      break;
[1788]162    }
[1880]163    default:
164      trigger_error('script_basename "'.script_basename().'" unknown',
165        E_USER_WARNING);
[1788]166  }
167}
168
[1980]169$page = array_merge( $page, parse_well_known_params_url( $tokens, $next_token) );
170if ( script_basename()=='picture' and 'categories'==$page['section'] and
[1996]171      !isset($page['category']) and !isset($page['chronology_field']) )
[1980]172{ //access a picture only by id, file or id-file without given section
173  $page['flat']=true;
[1036]174}
175
[1047]176// $page['nb_image_page'] is the number of picture to display on this page
177// By default, it is the same as the $user['nb_image_page']
178$page['nb_image_page'] = $user['nb_image_page'];
[1036]179
[2517]180// if flat mode is active, we must consider the image set as a standard set
181// and not as a category set because we can't use the #image_category.rank :
182// displayed images are not directly linked to the displayed category
183if ('categories' == $page['section'] and !isset($page['flat']))
184{
185  $conf['order_by'] = $conf['order_by_inside_category'];
186}
187
[1623]188if (pwg_get_session_var('image_order',0) > 0)
[1051]189{
[2517]190  $image_order_id = pwg_get_session_var('image_order');
[2773]191
[1051]192  $orders = get_category_preferred_image_orders();
193
[2517]194  // the current session stored image_order might be not compatible with
195  // current image set, for example if the current image_order is the rank
196  // and that we are displaying images related to a tag.
197  //
198  // In case of incompatibility, the session stored image_order is removed.
199  if ($orders[$image_order_id][2])
200  {
201    $conf['order_by'] = str_replace(
202      'ORDER BY ',
203      'ORDER BY '.$orders[$image_order_id][1].',',
204      $conf['order_by']
[1051]205    );
[2517]206    $page['super_order_by'] = true;
207
208  }
209  else
210  {
211    pwg_unset_session_var('image_order');
212    $page['super_order_by'] = false;
213  }
[1051]214}
215
[1711]216$forbidden = get_sql_condition_FandF(
217      array
218        (
219          'forbidden_categories' => 'category_id',
220          'visible_categories' => 'category_id',
[1820]221          'visible_images' => 'id'
[1711]222        ),
223      'AND'
224  );
225
[1036]226// +-----------------------------------------------------------------------+
227// |                              category                                 |
228// +-----------------------------------------------------------------------+
[1082]229if ('categories' == $page['section'])
230{
231  if (isset($page['category']))
[1036]232  {
233    $page = array_merge(
234      $page,
235      array(
[2117]236        'comment'           =>
237            trigger_event(
238              'render_category_description',
[2175]239              $page['category']['comment'],
240              'main_page_category_description'
[2117]241            ),
[6411]242        'title'             => get_cat_display_name($page['category']['upper_names'], '', false),
[1051]243        )
244      );
[1677]245  }
[6411]246  else
247    $page['title'] = ''; // will be set later
[1086]248
[1703]249  if
[1677]250    (
251      (!isset($page['chronology_field'])) and
252      (
[1703]253        (isset($page['category'])) or
[1800]254        (isset($page['flat']))
[1677]255      )
256    )
257  {
[1983]258    if ( !empty($page['category']['image_order']) and !isset($page['super_order_by']) )
[1051]259    {
[1983]260      $conf[ 'order_by' ] = ' ORDER BY '.$page['category']['image_order'];
[1677]261    }
262
[1800]263    if (isset($page['flat']))
[1820]264    {// flat categories mode
265      if ( isset($page['category']) )
[2327]266      { // get all allowed sub-categories
267        $query = '
[2424]268SELECT id
[2327]269  FROM '.CATEGORIES_TABLE.'
[2424]270  WHERE
[6664]271    uppercats LIKE \''.$page['category']['uppercats'].',%\' '
[2327]272    .get_sql_condition_FandF(
273      array
274        (
275          'forbidden_categories' => 'id',
276          'visible_categories' => 'id',
277        ),
278      "\n  AND"
279          );
280        $subcat_ids = array_from_query($query, 'id');
281        $subcat_ids[] = $page['category']['id'];
[1820]282        $where_sql = 'category_id IN ('.implode(',',$subcat_ids).')';
[2327]283        // remove categories from forbidden because just checked above
284        $forbidden = get_sql_condition_FandF(
285              array( 'visible_images' => 'id' ),
286              'AND'
287          );
[1500]288      }
[1820]289      else
290      {
291        $where_sql = '1=1';
292      }
[1677]293    }
294    else
[1820]295    {// Normal mode
[1861]296      $where_sql = 'category_id = '.$page['category']['id'];
[1677]297    }
[1500]298
[1820]299    // Main query
300    $query = '
[6668]301SELECT DISTINCT(image_id)
[1051]302  FROM '.IMAGE_CATEGORY_TABLE.'
303    INNER JOIN '.IMAGES_TABLE.' ON id = image_id
[1677]304  WHERE
305    '.$where_sql.'
[1711]306'.$forbidden.'
[1051]307  '.$conf['order_by'].'
308;';
[1677]309
[1820]310    $page['items'] = array_from_query($query, 'image_id');
[1677]311  } //otherwise the calendar will requery all subitems
[1082]312}
313// special sections
314else
315{
[1036]316// +-----------------------------------------------------------------------+
[1119]317// |                            tags section                               |
318// +-----------------------------------------------------------------------+
319  if ($page['section'] == 'tags')
320  {
321    $page['tag_ids'] = array();
322    foreach ($page['tags'] as $tag)
323    {
324      array_push($page['tag_ids'], $tag['id']);
325    }
326
327    $items = get_image_ids_for_tags($page['tag_ids']);
328
329    $page = array_merge(
330      $page,
331      array(
[2773]332        'title' => get_tags_content_title(),
[2296]333        'items' => $items,
[1119]334        )
335      );
336  }
337// +-----------------------------------------------------------------------+
[1036]338// |                           search section                              |
339// +-----------------------------------------------------------------------+
[1082]340  if ($page['section'] == 'search')
341  {
[1113]342    include_once( PHPWG_ROOT_PATH .'include/functions_search.inc.php' );
[1119]343
[2451]344    $search_result = get_search_results($page['search'], @$page['super_order_by'] );
345    if ( isset($search_result['qs']) )
346    {//save the details of the query search
347      $page['qsearch_details'] = $search_result['qs'];
[1120]348    }
[1036]349
[1082]350    $page = array_merge(
351      $page,
352      array(
[2451]353        'items' => $search_result['items'],
[2117]354        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
[5021]355                  .l10n('Search results').'</a>',
[1082]356        )
357      );
358  }
[1036]359// +-----------------------------------------------------------------------+
360// |                           favorite section                            |
361// +-----------------------------------------------------------------------+
[1082]362  else if ($page['section'] == 'favorites')
363  {
364    check_user_favorites();
[1036]365
[3037]366    $page = array_merge(
367      $page,
368      array(
[6411]369        'title' => l10n('Favorites')
370      )
[3037]371    );
372
[3108]373    if (!empty($_GET['action']) && ($_GET['action'] == 'remove_all_from_favorites'))
[3037]374    {
375      $query = '
376DELETE FROM '.FAVORITES_TABLE.'
377  WHERE user_id = '.$user['id'].'
378;';
379      pwg_query($query);
[3108]380      redirect(make_index_url( array('section'=>'favorites') ));
[3037]381    }
[3108]382    else
[3037]383    {
384      $query = '
[1036]385SELECT image_id
386  FROM '.FAVORITES_TABLE.'
387    INNER JOIN '.IMAGES_TABLE.' ON image_id = id
388  WHERE user_id = '.$user['id'].'
[1677]389'.get_sql_condition_FandF
390  (
391    array
392      (
[2451]393        'visible_images' => 'id'
[1677]394      ),
395    'AND'
396  ).'
[1036]397  '.$conf['order_by'].'
398;';
[3037]399      $page = array_merge(
400        $page,
401        array(
402          'items' => array_from_query($query, 'image_id'),
403         )
404      );
[1036]405
[3108]406      if (count($page['items'])>0)
[3037]407      {
408        $template->assign(
409          'favorite',
410          array(
411            'U_FAVORITE'    => add_url_params(
[3108]412              make_index_url( array('section'=>'favorites') ),
[3037]413              array('action'=>'remove_all_from_favorites')
414               ),
415             )
416           );
417      }
418    }
[1082]419  }
[1036]420// +-----------------------------------------------------------------------+
421// |                       recent pictures section                         |
422// +-----------------------------------------------------------------------+
[1082]423  else if ($page['section'] == 'recent_pics')
424  {
[2424]425    if ( !isset($page['super_order_by']) )
426    {
427      $conf['order_by'] = str_replace(
428        'ORDER BY ',
429        'ORDER BY date_available DESC,',
430        $conf['order_by']
431        );
432    }
433
[1082]434    $query = '
[6668]435SELECT DISTINCT(id)
[1036]436  FROM '.IMAGES_TABLE.'
437    INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
[1876]438  WHERE
[4367]439    date_available >= '.pwg_db_get_recent_period_expression($user['recent_period']).'
[1677]440    '.$forbidden.'
[1036]441  '.$conf['order_by'].'
442;';
443
[1082]444    $page = array_merge(
445      $page,
446      array(
[2117]447        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
[8665]448                  .l10n('Recent photos').'</a>',
[1082]449        'items' => array_from_query($query, 'id'),
450        )
451      );
452  }
[1036]453// +-----------------------------------------------------------------------+
454// |                 recently updated categories section                   |
455// +-----------------------------------------------------------------------+
[1082]456  else if ($page['section'] == 'recent_cats')
457  {
458    $page = array_merge(
459      $page,
460      array(
[6951]461        'title' => l10n('Recent albums'),
[1082]462        )
463      );
464  }
[1036]465// +-----------------------------------------------------------------------+
466// |                        most visited section                           |
467// +-----------------------------------------------------------------------+
[1082]468  else if ($page['section'] == 'most_visited')
469  {
470    $page['super_order_by'] = true;
[11893]471    $conf['order_by'] = ' ORDER BY hit DESC, id DESC';
[1082]472    $query = '
[11893]473SELECT DISTINCT(id)
[1036]474  FROM '.IMAGES_TABLE.'
475    INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
476  WHERE hit > 0
[1677]477    '.$forbidden.'
[1082]478    '.$conf['order_by'].'
[4334]479  LIMIT '.$conf['top_number'].'
[1036]480;';
[1086]481
[1082]482    $page = array_merge(
483      $page,
484      array(
[2117]485        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
[5021]486                  .$conf['top_number'].' '.l10n('Most visited').'</a>',
[1082]487        'items' => array_from_query($query, 'id'),
488        )
489      );
490  }
[1036]491// +-----------------------------------------------------------------------+
492// |                          best rated section                           |
493// +-----------------------------------------------------------------------+
[1082]494  else if ($page['section'] == 'best_rated')
495  {
496    $page['super_order_by'] = true;
[11893]497    $conf['order_by'] = ' ORDER BY rating_score DESC, id DESC';
[1086]498
[1082]499    $query ='
[11893]500SELECT DISTINCT(id)
[1036]501  FROM '.IMAGES_TABLE.'
502    INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
[11893]503  WHERE rating_score IS NOT NULL
[1677]504    '.$forbidden.'
[1082]505    '.$conf['order_by'].'
[4334]506  LIMIT '.$conf['top_number'].'
[1036]507;';
[1082]508    $page = array_merge(
509      $page,
510      array(
[2117]511        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
[5021]512                  .$conf['top_number'].' '.l10n('Best rated').'</a>',
[1082]513        'items' => array_from_query($query, 'id'),
514        )
515      );
516  }
[1036]517// +-----------------------------------------------------------------------+
518// |                             list section                              |
519// +-----------------------------------------------------------------------+
[1082]520  else if ($page['section'] == 'list')
521  {
522    $query ='
[6668]523SELECT DISTINCT(id)
[1036]524  FROM '.IMAGES_TABLE.'
525    INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
[1082]526  WHERE image_id IN ('.implode(',', $page['list']).')
[1677]527    '.$forbidden.'
[1036]528  '.$conf['order_by'].'
529;';
[1086]530
[1082]531    $page = array_merge(
532      $page,
533      array(
[2117]534        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
[8665]535                    .l10n('Random photos').'</a>',
[1082]536        'items' => array_from_query($query, 'id'),
537        )
538      );
[1036]539  }
540}
[1082]541
[1036]542// +-----------------------------------------------------------------------+
[1082]543// |                             chronology                                |
[1036]544// +-----------------------------------------------------------------------+
[1047]545
[1090]546if (isset($page['chronology_field']))
[1047]547{
548  include_once( PHPWG_ROOT_PATH.'include/functions_calendar.inc.php' );
549  initialize_calendar();
550}
551
[6411]552// title update
553if (isset($page['title']))
554{
555  if (!empty($page['title']))
556        {
557          $page['title'] = $conf['level_separator'].$page['title'];
558        }
559  $page['title'] = '<a href="'.get_gallery_home_url().'">'.l10n('Home').'</a>'.$page['title'];
560}
561
[1703]562// add meta robots noindex, nofollow to avoid unnecesary robot crawls
563$page['meta_robots']=array();
[2135]564if ( isset($page['chronology_field'])
565      or ( isset($page['flat']) and isset($page['category']) )
[1703]566      or 'list'==$page['section'] or 'recent_pics'==$page['section'] )
567{
568  $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
569}
570elseif ('tags' == $page['section'])
571{
572  if ( count($page['tag_ids'])>1 )
573  {
574    $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
575  }
576}
577elseif ('recent_cats'==$page['section'])
578{
[2138]579  $page['meta_robots']['noindex']=1;
580}
581elseif ('search'==$page['section'])
582{
[1703]583  $page['meta_robots']['nofollow']=1;
584}
585if ( $filter['enabled'] )
586{
587  $page['meta_robots']['noindex']=1;
588}
589
[1866]590// see if we need a redirect because of a permalink
591if ( 'categories'==$page['section'] and isset($page['category']) )
592{
593  $need_redirect=false;
594  if ( empty($page['category']['permalink']) )
595  {
596    if ( $conf['category_url_style'] == 'id-name' and
597        @$page['hit_by']['cat_url_name'] !== str2url($page['category']['name']) )
598    {
599      $need_redirect=true;
600    }
601  }
602  else
603  {
604    if ( $page['category']['permalink'] !== @$page['hit_by']['cat_permalink'] )
605    {
606      $need_redirect=true;
607    }
608  }
609
610  if ($need_redirect)
611  {
612    $redirect_url = ( script_basename()=='picture'
613        ? duplicate_picture_url()
614          : duplicate_index_url()
615      );
616    if (!headers_sent())
617    { // this is a permanent redirection
[1950]618      set_status_header(301);
[1866]619      redirect_http( $redirect_url );
620    }
621    redirect( $redirect_url );
622  }
623  unset( $need_redirect, $page['hit_by'] );
624}
625
[1604]626trigger_action('loc_end_section_init');
[6615]627?>
Note: See TracBrowser for help on using the repository browser.