|
|
|
@ -8,7 +8,7 @@ var meta = require('../meta');
|
|
|
|
|
|
|
|
|
|
module.exports.handle = function (req, res, next) {
|
|
|
|
|
if (plugins.hasListeners('filter:search.query')) {
|
|
|
|
|
res.type('application/xml').send(generateXML());
|
|
|
|
|
res.type('application/opensearchdescription+xml').send(generateXML());
|
|
|
|
|
} else {
|
|
|
|
|
next();
|
|
|
|
|
}
|
|
|
|
@ -17,9 +17,21 @@ module.exports.handle = function (req, res, next) {
|
|
|
|
|
function generateXML() {
|
|
|
|
|
return xml([{
|
|
|
|
|
OpenSearchDescription: [
|
|
|
|
|
{ _attr: { xmlns: 'http://a9.com/-/spec/opensearch/1.1/' } },
|
|
|
|
|
{ ShortName: String(meta.config.title || meta.config.browserTitle || 'NodeBB') },
|
|
|
|
|
{ Description: String(meta.config.description || '') },
|
|
|
|
|
{ _attr: {
|
|
|
|
|
xmlns: 'http://a9.com/-/spec/opensearch/1.1/',
|
|
|
|
|
'xmlns:moz': 'http://www.mozilla.org/2006/browser/search/',
|
|
|
|
|
} },
|
|
|
|
|
{ ShortName: trimToLength(String(meta.config.title || meta.config.browserTitle || 'NodeBB'), 16) },
|
|
|
|
|
{ Description: trimToLength(String(meta.config.description || ''), 1024) },
|
|
|
|
|
{ InputEncoding: 'UTF-8' },
|
|
|
|
|
{ Image: [
|
|
|
|
|
{ _attr: {
|
|
|
|
|
width: '16',
|
|
|
|
|
height: '16',
|
|
|
|
|
type: 'image/x-icon',
|
|
|
|
|
} },
|
|
|
|
|
nconf.get('url') + '/favicon.ico',
|
|
|
|
|
] },
|
|
|
|
|
{ Url: {
|
|
|
|
|
_attr: {
|
|
|
|
|
type: 'text/html',
|
|
|
|
@ -27,6 +39,11 @@ function generateXML() {
|
|
|
|
|
template: nconf.get('url') + '/search?term={searchTerms}&in=titlesposts',
|
|
|
|
|
},
|
|
|
|
|
} },
|
|
|
|
|
{ 'moz:SearchForm': nconf.get('url') + '/search' },
|
|
|
|
|
],
|
|
|
|
|
}], { declaration: true, indent: '\t' });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function trimToLength(string, length) {
|
|
|
|
|
return string.trim().substring(0, length).trim();
|
|
|
|
|
}
|
|
|
|
|