Update git submodules
[mediawiki.git] / opensearch_desc.php
blobce305dd1535567f516a74db203aeb1eb72dbd9d2
1 <?php
2 /**
3 * The web entry point for generating an OpenSearch description document.
5 * See <http://www.opensearch.org/> for the specification of the OpenSearch
6 * "description" document. In a nut shell, this tells browsers how and where
7 * to submit submit search queries to get a search results page back,
8 * as well as how to get typeahead suggestions (see ApiOpenSearch).
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @file
26 * @ingroup entrypoint
29 use MediaWiki\HookContainer\HookRunner;
30 use MediaWiki\MediaWikiServices;
32 // This endpoint is supposed to be independent of request cookies and other
33 // details of the session. Enforce this constraint with respect to session use.
34 define( 'MW_NO_SESSION', 1 );
36 define( 'MW_ENTRY_POINT', 'opensearch_desc' );
38 require_once __DIR__ . '/includes/WebStart.php';
40 wfOpenSearchDescMain();
42 function wfOpenSearchDescMain() {
43 global $wgRequest, $wgFavicon, $wgOpenSearchTemplates;
45 if ( $wgRequest->getVal( 'ctype' ) == 'application/xml' ) {
46 // Makes testing tweaks about a billion times easier
47 $ctype = 'application/xml';
48 } else {
49 $ctype = 'application/opensearchdescription+xml';
52 $response = $wgRequest->response();
53 $response->header( "Content-type: $ctype" );
55 // Set an Expires header so that CDN can cache it for a short time
56 // Short enough so that the sysadmin barely notices when $wgSitename is changed
57 $expiryTime = 600; # 10 minutes
58 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiryTime ) . ' GMT' );
59 $response->header( 'Cache-control: max-age=600' );
61 print '<?xml version="1.0"?>';
62 print Xml::openElement( 'OpenSearchDescription',
64 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1/',
65 'xmlns:moz' => 'http://www.mozilla.org/2006/browser/search/' ] );
67 // The spec says the ShortName must be no longer than 16 characters,
68 // but 16 is *realllly* short. In practice, browsers don't appear to care
69 // when we give them a longer string, so we're no longer attempting to trim.
71 // Note: ShortName and the <link title=""> need to match; they are used as
72 // a key for identifying if the search engine has been added already, *and*
73 // as the display name presented to the end-user.
75 // Behavior seems about the same between Firefox and IE 7/8 here.
76 // 'Description' doesn't appear to be used by either.
77 $fullName = wfMessage( 'opensearch-desc' )->inContentLanguage()->text();
78 print Xml::element( 'ShortName', null, $fullName );
79 print Xml::element( 'Description', null, $fullName );
81 $services = MediaWikiServices::getInstance();
83 // By default we'll use the site favicon.
84 // Double-check if IE supports this properly?
85 print Xml::element( 'Image',
87 'height' => 16,
88 'width' => 16,
89 'type' => 'image/x-icon'
91 (string)$services->getUrlUtils()->expand( $wgFavicon, PROTO_CURRENT )
94 $urls = [];
96 // General search template. Given an input term, this should bring up
97 // search results or a specific found page.
98 // At least Firefox and IE 7 support this.
99 $searchPage = SpecialPage::getTitleFor( 'Search' );
100 $urls[] = [
101 'type' => 'text/html',
102 'method' => 'get',
103 'template' => $searchPage->getCanonicalURL( 'search={searchTerms}' ) ];
105 foreach ( $wgOpenSearchTemplates as $type => $template ) {
106 if ( !$template ) {
107 $template = ApiOpenSearch::getOpenSearchTemplate( $type );
110 if ( $template ) {
111 $urls[] = [
112 'type' => $type,
113 'method' => 'get',
114 'template' => $template,
119 // Allow hooks to override the suggestion URL settings in a more
120 // general way than overriding the whole search engine...
121 ( new HookRunner( $services->getHookContainer() ) )->onOpenSearchUrls( $urls );
123 foreach ( $urls as $attribs ) {
124 print Xml::element( 'Url', $attribs );
127 // And for good measure, add a link to the straight search form.
128 // This is a custom format extension for Firefox, which otherwise
129 // sends you to the domain root if you hit "enter" with an empty
130 // search box.
131 print Xml::element( 'moz:SearchForm', null,
132 $searchPage->getCanonicalURL() );
134 print '</OpenSearchDescription>';