MediaWiki REL1_33
opensearch_desc.php
Go to the documentation of this file.
1<?php
23// This endpoint is supposed to be independent of request cookies and other
24// details of the session. Enforce this constraint with respect to session use.
25define( 'MW_NO_SESSION', 1 );
26
27require_once __DIR__ . '/includes/WebStart.php';
28
29if ( $wgRequest->getVal( 'ctype' ) == 'application/xml' ) {
30 // Makes testing tweaks about a billion times easier
31 $ctype = 'application/xml';
32} else {
33 $ctype = 'application/opensearchdescription+xml';
34}
35
36$response = $wgRequest->response();
37$response->header( "Content-type: $ctype" );
38
39// Set an Expires header so that squid can cache it for a short time
40// Short enough so that the sysadmin barely notices when $wgSitename is changed
41$expiryTime = 600; # 10 minutes
42$response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiryTime ) . ' GMT' );
43$response->header( 'Cache-control: max-age=600' );
44
45print '<?xml version="1.0"?>';
46print Xml::openElement( 'OpenSearchDescription',
47 [
48 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1/',
49 'xmlns:moz' => 'http://www.mozilla.org/2006/browser/search/' ] );
50
51/* The spec says the ShortName must be no longer than 16 characters,
52 * but 16 is *realllly* short. In practice, browsers don't appear to care
53 * when we give them a longer string, so we're no longer attempting to trim.
54 *
55 * Note: ShortName and the <link title=""> need to match; they are used as
56 * a key for identifying if the search engine has been added already, *and*
57 * as the display name presented to the end-user.
58 *
59 * Behavior seems about the same between Firefox and IE 7/8 here.
60 * 'Description' doesn't appear to be used by either.
61 */
62$fullName = wfMessage( 'opensearch-desc' )->inContentLanguage()->text();
63print Xml::element( 'ShortName', null, $fullName );
64print Xml::element( 'Description', null, $fullName );
65
66// By default we'll use the site favicon.
67// Double-check if IE supports this properly?
68print Xml::element( 'Image',
69 [
70 'height' => 16,
71 'width' => 16,
72 'type' => 'image/x-icon' ],
74
75$urls = [];
76
77// General search template. Given an input term, this should bring up
78// search results or a specific found page.
79// At least Firefox and IE 7 support this.
80$searchPage = SpecialPage::getTitleFor( 'Search' );
81$urls[] = [
82 'type' => 'text/html',
83 'method' => 'get',
84 'template' => $searchPage->getCanonicalURL( 'search={searchTerms}' ) ];
85
86foreach ( $wgOpenSearchTemplates as $type => $template ) {
87 if ( !$template ) {
89 }
90
91 if ( $template ) {
92 $urls[] = [
93 'type' => $type,
94 'method' => 'get',
95 'template' => $template,
96 ];
97 }
98}
99
100// Allow hooks to override the suggestion URL settings in a more
101// general way than overriding the whole search engine...
102Hooks::run( 'OpenSearchUrls', [ &$urls ] );
103
104foreach ( $urls as $attribs ) {
105 print Xml::element( 'Url', $attribs );
106}
107
108// And for good measure, add a link to the straight search form.
109// This is a custom format extension for Firefox, which otherwise
110// sends you to the domain root if you hit "enter" with an empty
111// search box.
112print Xml::element( 'moz:SearchForm', null,
113 $searchPage->getCanonicalURL() );
114
115print '</OpenSearchDescription>';
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgOpenSearchTemplates
Templates for OpenSearch suggestions, defaults to API action=opensearch.
$wgFavicon
The URL path of the shortcut icon.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
if(! $wgDBerrorLogTZ) $wgRequest
Definition Setup.php:728
static getOpenSearchTemplate( $type)
Fetch the template for a type.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition Hooks.php:200
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition Xml.php:41
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping $template
Definition hooks.txt:822
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2012
const PROTO_CURRENT
Definition Defines.php:231
$searchPage
$expiryTime