mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
286 lines
6.5 KiB
PHP
286 lines
6.5 KiB
PHP
<?php
|
|
/**
|
|
* Search page. All searches are filtered through this page.
|
|
*
|
|
* @package amo
|
|
* @subpackage docs
|
|
*
|
|
* @todo figure out why some addon listings have incorrect applications.
|
|
* @todo add page links ( 1 2 3 4 5 ..... n ) for big result sets? is this necessary?
|
|
* @todo take pagination and throw it into a class so we can reuse the methodology.
|
|
* @todo check validation - the form has some errors in it.
|
|
* @todo fix CSS so the pull-downs look symmetrical before design freaks start crying.
|
|
*/
|
|
|
|
// Array to store clean inputs.
|
|
$clean = array();
|
|
$sql = array();
|
|
|
|
// Array to store our page information.
|
|
$page = array();
|
|
|
|
// Category.
|
|
if (isset($_GET['cat'])&&ctype_digit($_GET['cat'])) {
|
|
$clean['cat'] = intval($_GET['cat']);
|
|
}
|
|
|
|
// Type.
|
|
if (isset($_GET['type'])) {
|
|
switch ($_GET['type']) {
|
|
case 'T':
|
|
$clean['type'] = 'T';
|
|
break;
|
|
case 'E':
|
|
$clean['type'] = 'E';
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Platform.
|
|
if (isset($_GET['platform'])&&ctype_digit($_GET['platform'])) {
|
|
$clean['platform'] = intval($_GET['platform']);
|
|
}
|
|
|
|
// Date.
|
|
if (isset($_GET['date'])&&$_GET['date']!='null'&&ctype_alpha($_GET['date'])) {
|
|
$clean['date'] = $_GET['date'];
|
|
}
|
|
|
|
// Application.
|
|
if (isset($_GET['app'])&&$_GET['app']!='null'&&ctype_alpha($_GET['app'])) {
|
|
$clean['app'] = $_GET['app'];
|
|
}
|
|
|
|
// Query.
|
|
if (isset($_GET['q'])&&preg_match("/^[a-zA-Z0-9'\.-\s]*$/",$_GET['q'])) {
|
|
$clean['q'] = $_GET['q'];
|
|
}
|
|
|
|
// Sort.
|
|
if (isset($_GET['sort'])&&ctype_alpha($_GET['sort'])) {
|
|
$clean['sort'] = $_GET['sort'];
|
|
}
|
|
|
|
// Starting point.
|
|
$page['left'] = (isset($_GET['left'])) ? intval($_GET['left']) : 0;
|
|
|
|
// Per page.
|
|
$_GET['perpage'] = (isset($_GET['perpage'])) ? intval($_GET['perpage']) : null;
|
|
switch ($_GET['perpage']) {
|
|
case '10':
|
|
default:
|
|
$clean['perpage'] = 10;
|
|
break;
|
|
case '25':
|
|
$clean['perpage'] = 25;
|
|
break;
|
|
case '50':
|
|
$clean['perpage'] = 50;
|
|
break;
|
|
}
|
|
|
|
// Ending point.
|
|
$page['right'] = $page['left'] + $clean['perpage'];
|
|
|
|
|
|
// Prepared verified inputs for their destinations.
|
|
foreach ($clean as $key=>$val) {
|
|
$sql[$key] = mysql_real_escape_string($val);
|
|
}
|
|
|
|
// Instantiate AMO_Object so we can get our categories and platforms.
|
|
$amo = new AMO_Object();
|
|
|
|
$amo->getCats();
|
|
$amo->getPlatforms();
|
|
|
|
$dates = array(
|
|
'day' => 'Today',
|
|
'week' => 'This Week',
|
|
'month'=> 'This Month',
|
|
'year' => 'This Year'
|
|
);
|
|
|
|
$sort = array(
|
|
'newest' => 'Newest',
|
|
'name' => 'Name',
|
|
'rating' => 'Rating',
|
|
'downloads' => 'Popularity'
|
|
);
|
|
|
|
$apps = array(
|
|
'Firefox' => 'Firefox',
|
|
'Thunderbird' => 'Thunderbird',
|
|
'Mozilla' => 'Mozilla'
|
|
);
|
|
|
|
$perpage = array(
|
|
10 => '10',
|
|
25 => '25',
|
|
50 => '50'
|
|
);
|
|
|
|
|
|
// Now we need to build our query. Our query starts with four parts:
|
|
|
|
// Select and joins.
|
|
$select = "
|
|
SELECT DISTINCT
|
|
main.ID
|
|
FROM
|
|
main
|
|
";
|
|
|
|
// Where clause.
|
|
$where = "
|
|
WHERE
|
|
";
|
|
|
|
// Order by.
|
|
$orderby = "
|
|
ORDER BY
|
|
";
|
|
|
|
if (!empty($sql['platform'])||!empty($sql['app'])) {
|
|
$select .= " INNER JOIN version ON version.ID = main.ID ";
|
|
}
|
|
|
|
if (!empty($sql['cat'])) {
|
|
$select .= " INNER JOIN categoryxref ON categoryxref.ID = main.ID ";
|
|
$where .= " categoryxref.CategoryID = '{$sql['cat']}' AND ";
|
|
}
|
|
|
|
if (!empty($sql['platform'])) {
|
|
$where .= " version.OSID = '{$sql['platform']}' AND ";
|
|
}
|
|
|
|
if (!empty($sql['app'])) {
|
|
$select .= " INNER JOIN applications ON version.AppID = applications.AppID ";
|
|
$where .= " applications.AppName = '{$sql['app']}' AND ";
|
|
}
|
|
|
|
if (!empty($sql['q'])) {
|
|
$where .= " main.Name LIKE '%{$sql['q']}%' AND ";
|
|
}
|
|
|
|
if (!empty($sql['type'])) {
|
|
$where .= " main.Type = '{$sql['type']}' AND ";
|
|
}
|
|
|
|
if (!empty($sql['date'])) {
|
|
switch ($sql['date']) {
|
|
case 'day':
|
|
$compareTimestamp = strtotime('-1 day');
|
|
break;
|
|
case 'week':
|
|
$compareTimestamp = strtotime('-1 week');
|
|
break;
|
|
case 'month':
|
|
$compareTimestamp = strtotime('-1 month');
|
|
break;
|
|
case 'year':
|
|
$compareTimestamp = strtotime('-1 year');
|
|
break;
|
|
}
|
|
|
|
$compareDate = date('Y-m-d',$compareTimestamp);
|
|
|
|
$where .= " main.DateUpdated > '{$compareDate}' AND ";
|
|
|
|
unset($compareTimestamp);
|
|
unset($compareDate);
|
|
}
|
|
|
|
if (!empty($sql['sort'])) {
|
|
switch ($sql['sort']) {
|
|
case 'newest':
|
|
default:
|
|
$orderby .= " main.DateUpdated DESC";
|
|
break;
|
|
case 'name':
|
|
$orderby .= " main.Name ASC";
|
|
break;
|
|
case 'rating':
|
|
$orderby .= " main.Rating DESC";
|
|
break;
|
|
case 'downloads':
|
|
$orderby .= " main.TotalDownloads DESC";
|
|
break;
|
|
}
|
|
} else {
|
|
$orderby .= " main.DateUpdated DESC ";
|
|
}
|
|
|
|
$where .= ' 1 ';
|
|
|
|
$query = $select.$where.$orderby;
|
|
|
|
$results = array();
|
|
$rawResults = array();
|
|
|
|
$db->query($query, SQL_ALL);
|
|
|
|
unset($select);
|
|
unset($where);
|
|
unset($orderby);
|
|
unset($query);
|
|
|
|
if (is_array($db->record)) {
|
|
foreach ($db->record as $row) {
|
|
$rawResults[] = $row[0];
|
|
}
|
|
}
|
|
|
|
// If we have only one result, redirect to the addon page.
|
|
if ( count($rawResults) == 1) {
|
|
header('Location: https://'.$_SERVER['HTTP_HOST'].WEB_PATH.'/addon.php?id='.$rawResults[0]);
|
|
exit;
|
|
} else {
|
|
for ($i=$page['left'];$i<$page['right'];$i++) {
|
|
if (isset($rawResults[$i])) {
|
|
$results[] = new Addon($rawResults[$i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
$resultCount = count($rawResults);
|
|
if ($resultCount<$page['right']) {
|
|
$page['right'] = $resultCount;
|
|
}
|
|
|
|
// Do we even have a next or previous page?
|
|
$page['previous'] = ($page['left'] >= $clean['perpage']) ? $page['left']-$clean['perpage'] : null;
|
|
$page['next'] = ($page['left']+$clean['perpage'] < $resultCount) ? $page['left']+$clean['perpage'] : null;
|
|
$page['resultCount'] = $resultCount;
|
|
$page['leftDisplay'] = $page['left']+1;
|
|
|
|
// Build the URL based on passed arguments.
|
|
foreach ($clean as $key=>$val) {
|
|
if (!empty($val)) {
|
|
$buf[] = $key.'='.$val;
|
|
}
|
|
}
|
|
$page['url'] = implode('&',$buf);
|
|
unset($buf);
|
|
|
|
// Pass variables to template object.
|
|
$tpl->assign(
|
|
array(
|
|
'page' => $page,
|
|
'results' => $results,
|
|
'clean' => $clean,
|
|
'cats' => $amo->Cats,
|
|
'platforms' => $amo->Platforms,
|
|
'apps' => $apps,
|
|
'dates' => $dates,
|
|
'sort' => $sort,
|
|
'perpage' => $perpage,
|
|
'content' => 'search.tpl',
|
|
'title' => 'Search'
|
|
)
|
|
);
|
|
|
|
// Set a non-default wrapper.
|
|
$wrapper = 'inc/wrappers/nonav.tpl';
|
|
?>
|