[1537] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[19703] | 5 | // | Copyright(C) 2008-2013 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 | // +-----------------------------------------------------------------------+ |
---|
[1537] | 23 | |
---|
| 24 | define('PHPWG_ROOT_PATH','./'); |
---|
| 25 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 26 | |
---|
[1850] | 27 | // +-----------------------------------------------------------------------+ |
---|
| 28 | // | Check Access and exit when user status is not ok | |
---|
| 29 | // +-----------------------------------------------------------------------+ |
---|
| 30 | check_status(ACCESS_GUEST); |
---|
| 31 | |
---|
[1537] | 32 | if (empty($_GET['q'])) |
---|
| 33 | { |
---|
| 34 | redirect( make_index_url() ); |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | $search = array(); |
---|
| 38 | $search['q']=$_GET['q']; |
---|
| 39 | |
---|
[2135] | 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 =' |
---|
[1537] | 57 | INSERT INTO '.SEARCH_TABLE.' |
---|
[1816] | 58 | (rules, last_seen) |
---|
[1537] | 59 | VALUES |
---|
[2095] | 60 | (\''.addslashes(serialize($search)).'\', NOW() ) |
---|
[1537] | 61 | ;'; |
---|
[2135] | 62 | pwg_query($query); |
---|
[4892] | 63 | $search_id = pwg_db_insert_id(SEARCH_TABLE); |
---|
[2135] | 64 | } |
---|
[1537] | 65 | |
---|
| 66 | redirect( |
---|
| 67 | make_index_url( |
---|
| 68 | array( |
---|
| 69 | 'section' => 'search', |
---|
| 70 | 'search' => $search_id, |
---|
| 71 | ) |
---|
| 72 | ) |
---|
| 73 | ); |
---|
| 74 | ?> |
---|