1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 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 | define('PHPWG_ROOT_PATH','./'); |
---|
25 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
26 | |
---|
27 | // +-----------------------------------------------------------------------+ |
---|
28 | // | Check Access and exit when user status is not ok | |
---|
29 | // +-----------------------------------------------------------------------+ |
---|
30 | check_status(ACCESS_GUEST); |
---|
31 | |
---|
32 | if (empty($_GET['q'])) |
---|
33 | { |
---|
34 | redirect( make_index_url() ); |
---|
35 | } |
---|
36 | |
---|
37 | $search = array(); |
---|
38 | $search['q']=$_GET['q']; |
---|
39 | |
---|
40 | $query = ' |
---|
41 | SElECT id FROM '.SEARCH_TABLE.' |
---|
42 | WHERE rules = \''.addslashes(serialize($search)).'\' |
---|
43 | ;'; |
---|
44 | $search_id = array_from_query( $query, 'id'); |
---|
45 | if ( !empty($search_id) ) |
---|
46 | { |
---|
47 | $search_id = $search_id[0]; |
---|
48 | $query = ' |
---|
49 | UPDATE '.SEARCH_TABLE.' |
---|
50 | SET last_seen=NOW() |
---|
51 | WHERE id='.$search_id; |
---|
52 | pwg_query($query); |
---|
53 | } |
---|
54 | else |
---|
55 | { |
---|
56 | $query =' |
---|
57 | INSERT INTO '.SEARCH_TABLE.' |
---|
58 | (rules, last_seen) |
---|
59 | VALUES |
---|
60 | (\''.addslashes(serialize($search)).'\', NOW() ) |
---|
61 | ;'; |
---|
62 | pwg_query($query); |
---|
63 | $search_id = pwg_db_insert_id(SEARCH_TABLE); |
---|
64 | } |
---|
65 | |
---|
66 | redirect( |
---|
67 | make_index_url( |
---|
68 | array( |
---|
69 | 'section' => 'search', |
---|
70 | 'search' => $search_id, |
---|
71 | ) |
---|
72 | ) |
---|
73 | ); |
---|
74 | ?> |
---|