3 * @copyright Copyright (C) 2010-2021, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module;
26 use Friendica\BaseModule;
28 use Friendica\Util\XML;
31 * Prints the opensearch description document
32 * @see https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md#opensearch-description-document
34 class OpenSearch extends BaseModule
39 public static function rawContent(array $parameters = [])
41 header('Content-type: application/opensearchdescription+xml');
43 $hostname = DI::baseUrl()->getHostname();
44 $baseUrl = DI::baseUrl()->get();
46 /** @var DOMDocument $xml */
50 'OpenSearchDescription' => [
52 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1',
54 'ShortName' => "Friendica $hostname",
55 'Description' => "Search in Friendica $hostname",
56 'Contact' => 'https://github.com/friendica/friendica/issues',
60 /** @var DOMElement $parent */
61 $parent = $xml->getElementsByTagName('OpenSearchDescription')[0];
63 XML::addElement($xml, $parent, 'Image',
64 "$baseUrl/images/friendica-16.png", [
67 'type' => 'image/png',
70 XML::addElement($xml, $parent, 'Image',
71 "$baseUrl/images/friendica-64.png", [
74 'type' => 'image/png',
77 XML::addElement($xml, $parent, 'Url', '', [
78 'type' => 'text/html',
79 'template' => "$baseUrl/search?search={searchTerms}",
82 XML::addElement($xml, $parent, 'Url', '', [
83 'type' => 'application/opensearchdescription+xml',
85 'template' => "$baseUrl/opensearch",