silverstripe-docsviewer/code/controllers/DocumentationOpenSearchCont...

51 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* Public facing controller for handling an opensearch interface based on
* the standard search form.
*
* @package docsviewer
*/
2015-11-21 07:25:41 +01:00
class DocumentationOpenSearchController extends Controller
{
private static $allowed_actions = array(
'description'
);
public function index()
{
return $this->httpError(404);
}
public function description()
{
$viewer = new DocumentationViewer();
if (!$viewer->canView()) {
return Security::permissionFailure($this);
}
2015-11-21 07:25:41 +01:00
if (!Config::inst()->get('DocumentationSearch', 'enabled')) {
return $this->httpError('404');
}
$data = DocumentationSearch::get_meta_data();
$link = Director::absoluteBaseUrl() .
$data['SearchPageLink'] = Controller::join_links(
$viewer->Link(),
'results/?Search={searchTerms}&start={startIndex}&length={count}&action_results=1'
);
$data['SearchPageAtom'] = $data['SearchPageLink'] . '&format=atom';
return $this->customise(
new ArrayData($data)
2016-12-02 03:31:18 +01:00
)->renderWith(
array(
2015-11-21 07:25:41 +01:00
'OpenSearchDescription'
2016-12-02 03:31:18 +01:00
)
);
2015-11-21 07:25:41 +01:00
}
}