source: trunk/search.php @ 858

Last change on this file since 858 was 858, checked in by plg, 19 years ago
  • modification : less configuration parameters in administration screen. These parameters are move to include/config_default.inc.php.
  • new : ability to add a single picture to caddie from picture.php
  • new : contextual help, only a few pages are available.
  • new : ability to delete users from admin/user_list
  • modification : reorganization of configuration file
  • new : configuration parameter use_exif_mapping
  • improvement : MOD hidemail added to standard
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
RevLine 
[2]1<?php
[354]2// +-----------------------------------------------------------------------+
[593]3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
[675]5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
[354]6// +-----------------------------------------------------------------------+
[593]7// | branch        : BSF (Best So Far)
[354]8// | file          : $RCSfile$
9// | last update   : $Date: 2005-09-03 16:36:05 +0000 (Sat, 03 Sep 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 858 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
[2]27
[455]28//--------------------------------------------------------------------- include
[364]29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
[2]31//-------------------------------------------------- access authorization check
32check_login_authorization();
[455]33//------------------------------------------------------------------ form check
34$errors = array();
35$search = array();
36if (isset($_POST['submit']))
[2]37{
[634]38  if (isset($_POST['search_allwords'])
39      and !preg_match('/^\s*$/', $_POST['search_allwords']))
[455]40  {
[621]41    $local_search = array();
[634]42    $search_allwords = $_POST['search_allwords'];
43    $drop_char_match = array(
44      '-','^','$',';','#','&','(',')','<','>','`','\'','"','|',',','@','_',
45      '?','%','~','.','[',']','{','}',':','\\','/','=','\'','!','*');
46    $drop_char_replace = array(
47      ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','','',' ',' ',' ',' ','',' ',
48      ' ',' ',' ',' ',' ',' ',' ',' ','' ,' ',' ',' ',' ',' ');
49    $search_allwords = str_replace($drop_char_match,
50                                   $drop_char_replace,
51                                   $search_allwords);
[621]52       
[634]53    // Split words
54    $words = preg_split('/\s+/', $search_allwords);
[621]55    $words = array_unique($words);
[634]56    $search['fields']['allwords'] = array();
57    $search['fields']['allwords']['words'] = $words;
58    $search['fields']['allwords']['mode'] = $_POST['mode'];
[455]59  }
[621]60 
61  if ($_POST['search_author'])
[455]62  {
[621]63    $search['fields']['author'] = array();
64    $search['fields']['author']['words'] = array($_POST['search_author']);
[17]65  }
[621]66 
67  if (isset($_POST['cat']))
[2]68  {
[621]69    $search['fields']['cat'] = array();
70    $search['fields']['cat']['words'] = $_POST['cat'];
[634]71    if ($_POST['subcats-included'] == 1)
[455]72    {
[621]73      $search['fields']['cat']['mode'] = 'sub_inc';
[455]74    }
[2]75  }
[634]76
77  // dates
78  $type_date = $_POST['date_type'];
[621]79 
80  if (!empty($_POST['start_year']))
[634]81  {
82    $year = $_POST['start_year'];
83    $month = $_POST['start_month'] != 0 ? $_POST['start_month'] : '01';
84    $day = $_POST['start_day'] != 0 ? $_POST['start_day'] : '01';
85    $date = $year.'-'.$month.'-'.$day;
86   
87    $search['fields'][$type_date.'-after']['words'] = array($date);
88    $search['fields'][$type_date.'-after']['mode'] = 'inc';
89  }
[621]90
[634]91  if (!empty($_POST['end_year']))
[621]92  {
[634]93    $year = $_POST['end_year'];
94    $month = $_POST['end_month'] != 0 ? $_POST['end_month'] : '12';
95    $day = $_POST['end_day'] != 0 ? $_POST['end_day'] : '31';
96    $date = $year.'-'.$month.'-'.$day;
97   
98    $search['fields'][$type_date.'-before']['words'] = array($date);
99    $search['fields'][$type_date.'-before']['mode'] = 'inc';
[621]100  }
[634]101   
[455]102  // search string (for URL) creation
103  $search_string = '';
104  $tokens = array();
[621]105  if (!empty($search))
106  {
[634]107    foreach (array_keys($search['fields']) as $field)
[455]108    {
[634]109      $token = $field.':';
110      $token.= implode(',', $search['fields'][$field]['words']);
111      if (isset($search['fields'][$field]['mode']))
112      {
113        $token.= '~'.$search['fields'][$field]['mode'];
114      }
115      array_push($tokens, $token);
[455]116    }
[773]117    $search_string.= implode('+', $tokens);
[634]118    if (count($tokens) > 1)
119    {
120      $search_string.= '|AND';
121    }
[455]122  }
[621]123  else
[455]124  {
125    array_push($errors, $lang['search_one_clause_at_least']);
126  }
[2]127}
[455]128//----------------------------------------------------------------- redirection
129if (isset($_POST['submit']) and count($errors) == 0)
130{
131  $url = 'category.php?cat=search&search='.$search_string;
132  $url = add_session_id($url, true);
133  redirect($url);
134}
[2]135//----------------------------------------------------- template initialization
[621]136
[634]137// start date
138get_day_list('start_day', @$_POST['start_day']);
139get_month_list('start_month', @$_POST['start_month']);
140// end date
141get_day_list('end_day', @$_POST['end_day']);
142get_month_list('end_month', @$_POST['end_month']);
[621]143
[345]144//
145// Start output of page
146//
147$title= $lang['search_title'];
[850]148$page['body_id'] = 'theSearchPage';
[369]149include(PHPWG_ROOT_PATH.'include/page_header.php');
[345]150
[355]151$template->set_filenames( array('search'=>'search.tpl') );
152$template->assign_vars(array(
[621]153  'L_SEARCH_TITLE' => $lang['search_title'],
154  'L_SEARCH_OPTIONS' => $lang['search_options'],
[607]155  'L_RETURN' => $lang['home'],
[355]156  'L_SUBMIT' => $lang['submit'],
[621]157  'L_RESET' => $lang['reset'],
158  'L_SEARCH_KEYWORDS'=>$lang['search_keywords'],
159  'L_SEARCH_KEYWORDS_HINT'=>$lang['search_keywords_hint'],
160  'L_SEARCH_ANY_TERMS'=>$lang['search_mode_or'],
161  'L_SEARCH_ALL_TERMS'=>$lang['search_mode_and'],
162  'L_SEARCH_AUTHOR'=>$lang['search_author'],
163  'L_SEARCH_AUTHOR_HINT'=>$lang['search_explain'],
164  'L_SEARCH_CATEGORIES'=>$lang['search_categories'],
165  'L_SEARCH_CATEGORIES_HINT'=>$lang['search_categories_hint'],
166  'L_SEARCH_SUBFORUMS'=>$lang['search_subcats_included'],
167  'L_YES' => $lang['yes'],
168  'L_NO' => $lang['no'],
169  'L_SEARCH_DATE' => $lang['search_date'],
170  'L_SEARCH_DATE_HINT' => $lang['search_date_hint'],
171  'L_TODAY' => $lang['today'],
172  'L_SEARCH_DATE_FROM'=>$lang['search_date_from'],
[629]173  'L_SEARCH_DATE_TO'=>$lang['search_date_to'],
[621]174  'L_DAYS'=>$lang['days'],
175  'L_MONTH'=>$lang['w_month'],
176  'L_SEARCH_DATE_TYPE'=>$lang['search_date_type'],
177  'L_SEARCH_CREATION'=>$lang['search_date_creation'],
178  'L_SEARCH_AVAILABILITY'=>$lang['search_date_available'],
179  'L_RESULT_SORT'=>$lang['search_sort'],
180  'L_SORT_ASCENDING'=>$lang['search_ascending'],
181  'L_SORT_DESCENDING'=>$lang['search_descending'],
[355]182 
[621]183  'TODAY_DAY' => date('d', time()),
184  'TODAY_MONTH' => date('m', time()),
185  'TODAY_YEAR' => date('Y', time()),
186  'S_SEARCH_ACTION' => add_session_id( 'search.php' ),   
[355]187  'U_HOME' => add_session_id( 'category.php' )
188  )
189);
190
[455]191//------------------------------------------------------------- categories form
[614]192$query = '
193SELECT name,id,date_last,nb_images,global_rank,uppercats
194  FROM '.CATEGORIES_TABLE;
[634]195if ($user['forbidden_categories'] != '')
196{
197  $query.= '
[614]198  WHERE id NOT IN ('.$user['forbidden_categories'].')';
[634]199}
[614]200$query.= '
201;';
[621]202
[455]203$selecteds = array();
[614]204display_select_cat_wrapper($query, $selecteds, 'category_option', false);
[455]205
[2]206//-------------------------------------------------------------- errors display
[455]207if (sizeof($errors) != 0)
[2]208{
[355]209  $template->assign_block_vars('errors',array());
[455]210  foreach ($errors as $error)
[2]211  {
[455]212    $template->assign_block_vars('errors.error',array('ERROR'=>$error));
[2]213  }
214}
215//------------------------------------------------------------ log informations
[345]216pwg_log( 'search', $title );
[688]217$template->parse('search');
[369]218include(PHPWG_ROOT_PATH.'include/page_tail.php');
[362]219?>
Note: See TracBrowser for help on using the repository browser.