StatusValue: Add a getter for MessageSpecifier list
[mediawiki.git] / opensearch_desc.php
blob8eef1aeb19807aa4a2299cde0ebb2693b60330a3
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;
31 use MediaWiki\SpecialPage\SpecialPage;
33 // This endpoint is supposed to be independent of request cookies and other
34 // details of the session. Enforce this constraint with respect to session use.
35 define( 'MW_NO_SESSION', 1 );
37 define( 'MW_ENTRY_POINT', 'opensearch_desc' );
39 require_once __DIR__ . '/includes/WebStart.php';
41 wfOpenSearchDescMain();
43 function wfOpenSearchDescMain() {
44 global $wgRequest, $wgFavicon, $wgOpenSearchTemplates;
46 if ( $wgRequest->getVal( 'ctype' ) == 'application/xml' ) {
47 // Makes testing tweaks about a billion times easier
48 $ctype = 'application/xml';
49 } else {
50 $ctype = 'application/opensearchdescription+xml';
53 $response = $wgRequest->response();
54 $response->header( "Content-type: $ctype" );
56 // Set an Expires header so that CDN can cache it for a short time
57 // Short enough so that the sysadmin barely notices when $wgSitename is changed
58 $expiryTime = 600; # 10 minutes
59 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiryTime ) . ' GMT' );
60 $response->header( 'Cache-control: max-age=600' );
62 print '<?xml version="1.0"?>';
63 print Xml::openElement( 'OpenSearchDescription',
65 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1/',
66 'xmlns:moz' => 'http://www.mozilla.org/2006/browser/search/' ] );
68 // The spec says the ShortName must be no longer than 16 characters,
69 // but 16 is *realllly* short. In practice, browsers don't appear to care
70 // when we give them a longer string, so we're no longer attempting to trim.
72 // Note: ShortName and the <link title=""> need to match; they are used as
73 // a key for identifying if the search engine has been added already, *and*
74 // as the display name presented to the end-user.
76 // Behavior seems about the same between Firefox and IE 7/8 here.
77 // 'Description' doesn't appear to be used by either.
78 $fullName = wfMessage( 'opensearch-desc' )->inContentLanguage()->text();
79 print Xml::element( 'ShortName', null, $fullName );
80 print Xml::element( 'Description', null, $fullName );
82 $services = MediaWikiServices::getInstance();
84 // By default we'll use the site favicon.
85 // Double-check if IE supports this properly?
86 print Xml::element( 'Image',
88 'height' => 16,
89 'width' => 16,
90 'type' => 'image/x-icon'
92 (string)$services->getUrlUtils()->expand( $wgFavicon, PROTO_CURRENT )
95 $urls = [];
97 // General search template. Given an input term, this should bring up
98 // search results or a specific found page.
99 // At least Firefox and IE 7 support this.
100 $searchPage = SpecialPage::getTitleFor( 'Search' );
101 $urls[] = [
102 'type' => 'text/html',
103 'method' => 'get',
104 'template' => $searchPage->getCanonicalURL( 'search={searchTerms}' ) ];
106 foreach ( $wgOpenSearchTemplates as $type => $template ) {
107 if ( !$template ) {
108 $template = ApiOpenSearch::getOpenSearchTemplate( $type );
111 if ( $template ) {
112 $urls[] = [
113 'type' => $type,
114 'method' => 'get',
115 'template' => $template,
120 // Allow hooks to override the suggestion URL settings in a more
121 // general way than overriding the whole search engine...
122 ( new HookRunner( $services->getHookContainer() ) )->onOpenSearchUrls( $urls );
124 foreach ( $urls as $attribs ) {
125 print Xml::element( 'Url', $attribs );
128 // And for good measure, add a link to the straight search form.
129 // This is a custom format extension for Firefox, which otherwise
130 // sends you to the domain root if you hit "enter" with an empty
131 // search box.
132 print Xml::element( 'moz:SearchForm', null,
133 $searchPage->getCanonicalURL() );
135 print '</OpenSearchDescription>';