<?php
/**
*
* Copyright (C) Villanova University 2010.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
require_once 'sys/Recommend/Interface.php';
/**
* SummonResults Recommendations Module
*
* This class provides recommendations by doing a search of Summon.
*/
class SummonResults implements RecommendationInterface
{
private $searchObject;
/* Constructor
*
* Establishes base settings for making recommendations.
*
* @access public
* @param object $searchObject The SearchObject requesting recommendations.
* @param string $params Colon-separated parameters from config file.
*/
public function __construct($searchObject, $params)
{
// Parse out parameters:
$params = explode(':', $params);
$requestParam = empty($params[0]) ? 'lookfor' : $params[0];
$limit = isset($params[1]) && is_numeric($params[1]) && $params[1] > 0 ?
intval($params[1]) : 5;
// We don't actually care about the passed-in search object; let's just
// create our own!
$this->searchObject = SearchObjectFactory::initSearchObject('Summon');
$this->searchObject->disableLogging();
$this->searchObject->setBasicQuery($_REQUEST[$requestParam]);
$this->searchObject->setLimit($limit);
}
/* init
*
* Called before the SearchObject performs its main search. This may be used
* to set SearchObject parameters in order to generate recommendations as part
* of the search.
*
* @access public
*/
public function init()
{
// No action needed here.
}
/* process
*
* Called after the SearchObject has performed its main search. This may be
* used to extract necessary information from the SearchObject or to perform
* completely unrelated processing.
*
* @access public
*/
public function process()
{
global $interface;
// Perform the search without throwing fatal errors -- if we get an error,
// we'll treat it as an empty result and simply skip recommendations. This
// should only happen in the case of complex queries.
$result = $this->searchObject->processSearch(true);
$resultDocs = $result['recordCount'] > 0 ? $result['documents'] : array();
$this->searchObject->close();
$interface->assign('summonResults', $resultDocs);
$interface->assign('summonSearchUrl',
$this->searchObject->renderSearchUrl());
}
/* getTemplate
*
* This method provides a template name so that recommendations can be displayed
* to the end user. It is the responsibility of the process() method to
* populate all necessary template variables.
*
* @access public
* @return string The template to use to display the recommendations.
*/
public function getTemplate()
{
return 'Search/Recommend/SummonResults.tpl';
}
}
?>