source: trunk/index.php @ 28294

Last change on this file since 28294 was 28128, checked in by rvelices, 10 years ago

bug 3056: quick search - fix warning; better management of variants and short words

  • Property svn:eol-style set to LF
File size: 11.6 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
24//--------------------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
26include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
27include(PHPWG_ROOT_PATH.'include/section_init.inc.php');
28
29// Check Access and exit when user status is not ok
30check_status(ACCESS_GUEST);
31
32
33// access authorization check
34if (isset($page['category']))
35{
36  check_restrictions($page['category']['id']);
37}
38if ($page['start']>0 && $page['start']>=count($page['items']))
39{
40  page_not_found('', duplicate_index_url(array('start'=>0)));
41}
42
43trigger_action('loc_begin_index');
44
45//---------------------------------------------- change of image display order
46if (isset($_GET['image_order']))
47{
48  if ( (int)$_GET['image_order'] > 0)
49  {
50    pwg_set_session_var('image_order', (int)$_GET['image_order']);
51  }
52  else
53  {
54    pwg_unset_session_var('image_order');
55  }
56  redirect(
57    duplicate_index_url(
58      array(),        // nothing to redefine
59      array('start')  // changing display order goes back to section first page
60      )
61    );
62}
63if (isset($_GET['display']))
64{
65  $page['meta_robots']['noindex']=1;
66  if (array_key_exists($_GET['display'], ImageStdParams::get_defined_type_map()))
67  {
68    pwg_set_session_var('index_deriv', $_GET['display']);
69  }
70}
71
72//-------------------------------------------------------------- initialization
73// navigation bar
74$page['navigation_bar'] = array();
75if (count($page['items']) > $page['nb_image_page'])
76{
77  $page['navigation_bar'] = create_navigation_bar(
78    duplicate_index_url(array(), array('start')),
79    count($page['items']),
80    $page['start'],
81    $page['nb_image_page'],
82    true, 'start'
83    );
84}
85
86$template->assign('thumb_navbar', $page['navigation_bar'] );
87
88if ( $page['section']=='search' and isset($page['qsearch_details']) )
89{
90  $template->assign('QUERY_SEARCH', htmlspecialchars($page['qsearch_details']['q']) );
91}
92
93// caddie filling :-)
94if (isset($_GET['caddie']))
95{
96  fill_caddie($page['items']);
97  redirect(duplicate_index_url());
98}
99
100if (isset($page['is_homepage']) and $page['is_homepage'])
101{
102  $canonical_url = get_gallery_home_url();
103}
104else
105{
106  $start = $page['nb_image_page'] * round($page['start'] / $page['nb_image_page']);
107  if ($start>0 && $start >= count($page['items']) )
108  {
109    $start -= $page['nb_image_page'];
110  }
111  $canonical_url = duplicate_index_url(array('start' => $start));
112}
113$template->assign('U_CANONICAL', $canonical_url);
114
115//-------------------------------------------------------------- page title
116$title = $page['title'];
117$template_title = $page['section_title'];
118if (count($page['items']) > 0)
119{
120  $template_title.= ' ['.count($page['items']).']';
121}
122$template->assign('TITLE', $template_title);
123
124//-------------------------------------------------------------- menubar
125include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
126
127$template->set_filename('index', 'index.tpl');
128
129// +-----------------------------------------------------------------------+
130// |  index page (categories, thumbnails, search, calendar, random, etc.)  |
131// +-----------------------------------------------------------------------+
132if ( empty($page['is_external']) or !$page['is_external'] )
133{
134  //----------------------------------------------------- template initialization
135  $page['body_id'] = 'theCategoryPage';
136 
137  if (isset($page['flat']) or isset($page['chronology_field']))
138  {
139    $template->assign(
140      'U_MODE_NORMAL',
141      duplicate_index_url( array(), array('chronology_field', 'start', 'flat') )
142      );
143  }
144
145  if ($conf['index_flat_icon'] and !isset($page['flat']) and 'categories' == $page['section'])
146  {
147    $template->assign(
148      'U_MODE_FLAT',
149      duplicate_index_url(array('flat' => ''), array('start', 'chronology_field'))
150      );
151  }
152
153  if (!isset($page['chronology_field']))
154  {
155    $chronology_params = array(
156      'chronology_field' => 'created',
157      'chronology_style' => 'monthly',
158      'chronology_view' => 'list',
159      );
160    if ($conf['index_created_date_icon'])
161    {
162      $template->assign(
163        'U_MODE_CREATED',
164        duplicate_index_url( $chronology_params, array('start', 'flat') )
165        );
166    }
167    if ($conf['index_posted_date_icon'])
168    {
169      $chronology_params['chronology_field'] = 'posted';
170      $template->assign(
171        'U_MODE_POSTED',
172        duplicate_index_url( $chronology_params, array('start', 'flat') )
173        );
174    }
175  }
176  else
177  {
178    if ($page['chronology_field'] == 'created')
179    {
180      $chronology_field = 'posted';
181    }
182    else
183    {
184      $chronology_field = 'created';
185    }
186    if ($conf['index_'.$chronology_field.'_date_icon'])
187    {
188      $url = duplicate_index_url(
189                array('chronology_field'=>$chronology_field ),
190                array('chronology_date', 'start', 'flat')
191              );
192      $template->assign(
193          'U_MODE_'.strtoupper($chronology_field),
194          $url
195        );
196    }
197  }
198
199  if ('search' == $page['section'])
200  {
201    $template->assign(
202      'U_SEARCH_RULES',
203      get_root_url().'search_rules.php?search_id='.$page['search']
204      );
205  }
206
207  if (isset($page['category']) and is_admin())
208  {
209    $template->assign(
210      'U_EDIT',
211      get_root_url().'admin.php?page=album-'.$page['category']['id']
212      );
213  }
214
215  if (is_admin() and !empty($page['items']))
216  {
217    $template->assign(
218      'U_CADDIE',
219       add_url_params(duplicate_index_url(), array('caddie'=>1) )
220      );
221  }
222
223  if ( $page['section']=='search' and $page['start']==0 and
224      !isset($page['chronology_field']) and isset($page['qsearch_details']) )
225  {
226    $cats = array_merge(
227        (array)@$page['qsearch_details']['matching_cats_no_images'],
228        (array)@$page['qsearch_details']['matching_cats'] );
229    if (count($cats))
230    {
231      usort($cats, 'name_compare');
232      $hints = array();
233      foreach ( $cats as $cat )
234      {
235        $hints[] = get_cat_display_name( array($cat), '' );
236      }
237      $template->assign( 'category_search_results', $hints);
238    }
239
240    $tags = (array)@$page['qsearch_details']['matching_tags'];
241    foreach ( $tags as $tag )
242    {
243      $tag['URL'] = make_index_url(array('tags'=>array($tag)));
244      $template->append( 'tag_search_results', $tag);
245    }
246   
247    if (empty($page['items']))
248    {
249      $template->append( 'no_search_results', htmlspecialchars($page['qsearch_details']['q']));
250    }
251    elseif (!empty($page['qsearch_details']['unmatched_terms']))
252    {
253      $template->assign( 'no_search_results', $page['qsearch_details']['unmatched_terms']);
254    }
255  }
256
257  // image order
258  if ( $conf['index_sort_order_input']
259      and count($page['items']) > 0
260      and $page['section'] != 'most_visited'
261      and $page['section'] != 'best_rated')
262  {
263    $preferred_image_orders = get_category_preferred_image_orders();
264    $order_idx = pwg_get_session_var( 'image_order', 0 );
265   
266    // get first order field and direction
267    $first_order = substr($conf['order_by'], 9);
268    if (($pos = strpos($first_order, ',')) !== false)
269    {
270      $first_order = substr($first_order, 0, $pos);
271    }
272    $first_order = trim($first_order);
273   
274    $url = add_url_params(
275            duplicate_index_url(),
276            array('image_order' => '')
277          );
278    $tpl_orders = array();
279    $order_selected = false;
280   
281    foreach ($preferred_image_orders as $order_id => $order)
282    {
283      if ($order[2])
284      {
285        // force select if the field is the first field of order_by
286        if (!$order_selected && $order[1]==$first_order)
287        {
288          $order_idx = $order_id;
289          $order_selected = true;
290        }
291       
292        $tpl_orders[ $order_id ] = array(
293          'DISPLAY' => $order[0],
294          'URL' => $url.$order_id,
295          'SELECTED' => $order_idx==$order_id,
296          );
297      }
298    }
299   
300    $tpl_orders[0]['SELECTED'] = !$order_selected; // unselect "Default" if another one is selected
301    $template->assign('image_orders', $tpl_orders);
302  }
303
304  // category comment
305  if ($page['start']==0 and !isset($page['chronology_field']) and !empty($page['comment']) )
306  {
307    $template->assign('CONTENT_DESCRIPTION', $page['comment'] );
308  }
309
310  if ( isset($page['category']['count_categories']) and $page['category']['count_categories']==0 )
311  {// count_categories might be computed by menubar - if the case unassign flat link if no sub albums
312    $template->clear_assign('U_MODE_FLAT');
313  }
314
315  //------------------------------------------------------ main part : thumbnails
316  if ( 0==$page['start']
317    and !isset($page['flat'])
318    and !isset($page['chronology_field'])
319    and ('recent_cats'==$page['section'] or 'categories'==$page['section'])
320    and (!isset($page['category']['count_categories']) or $page['category']['count_categories']>0 )
321  )
322  {
323    include(PHPWG_ROOT_PATH.'include/category_cats.inc.php');
324  }
325
326  if ( !empty($page['items']) )
327  {
328    include(PHPWG_ROOT_PATH.'include/category_default.inc.php');
329    $url = add_url_params(
330            duplicate_index_url(),
331            array('display' => '')
332          );
333   
334    $selected_type = $template->get_template_vars('derivative_params')->type;
335    $template->clear_assign( 'derivative_params' );
336    $type_map = ImageStdParams::get_defined_type_map();
337    unset($type_map[IMG_XXLARGE], $type_map[IMG_XLARGE]);
338   
339    foreach($type_map as $params)
340    {
341      $template->append(
342        'image_derivatives',
343        array(
344          'DISPLAY' => l10n($params->type),
345          'URL' => $url.$params->type,
346          'SELECTED' => ($params->type == $selected_type ? true:false),
347          )
348        );
349    }
350  }
351
352  // slideshow
353  // execute after init thumbs in order to have all picture informations
354  if (!empty($page['cat_slideshow_url']))
355  {
356    if (isset($_GET['slideshow']))
357    {
358      redirect($page['cat_slideshow_url']);
359    }
360    elseif ($conf['index_slideshow_icon'])
361    {
362      $template->assign('U_SLIDESHOW', $page['cat_slideshow_url']);
363    }
364  }
365}
366
367//------------------------------------------------------------ end
368include(PHPWG_ROOT_PATH.'include/page_header.php');
369trigger_action('loc_end_index');
370flush_page_messages();
371$template->parse_index_buttons();
372$template->pparse('index');
373
374//------------------------------------------------------------ log informations
375pwg_log();
376include(PHPWG_ROOT_PATH.'include/page_tail.php');
377?>
Note: See TracBrowser for help on using the repository browser.