FEATURE: Add /search discovery

The opensearch.xml results in a "site search engine" being added to
Chrome, while the sitelinks search tag results in "Search this website"
being added to Google Search.
This commit is contained in:
Kane York
2016-02-13 10:29:53 -08:00
parent c650c2a16f
commit f2ddd44712
9 changed files with 73 additions and 18 deletions

View File

@ -0,0 +1,21 @@
class MetadataController < ApplicationController
layout false
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
def manifest
manifest = {
short_name: SiteSetting.title,
display: 'standalone',
orientation: 'portrait',
start_url: "#{Discourse.base_uri}/",
background_color: "##{ColorScheme.hex_for_name('secondary')}",
theme_color: "##{ColorScheme.hex_for_name('header_background')}"
}
render json: manifest.to_json
end
def opensearch
render file: "#{Rails.root}/app/views/metadata/opensearch.xml"
end
end