2016-02-13 13:29:53 -05:00
|
|
|
class MetadataController < ApplicationController
|
2015-09-20 11:00:30 -04:00
|
|
|
layout false
|
2016-03-20 22:18:40 -04:00
|
|
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
|
2015-09-20 11:00:30 -04:00
|
|
|
|
2016-02-13 13:29:53 -05:00
|
|
|
def manifest
|
2016-06-30 00:03:52 -04:00
|
|
|
render json: default_manifest.to_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def opensearch
|
|
|
|
render file: "#{Rails.root}/app/views/metadata/opensearch.xml"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def default_manifest
|
|
|
|
{
|
2016-04-20 10:54:01 -04:00
|
|
|
name: SiteSetting.title,
|
2015-09-20 11:00:30 -04:00
|
|
|
short_name: SiteSetting.title,
|
2016-03-20 22:18:40 -04:00
|
|
|
display: 'standalone',
|
2015-09-20 11:00:30 -04:00
|
|
|
orientation: 'portrait',
|
2016-03-20 22:18:40 -04:00
|
|
|
start_url: "#{Discourse.base_uri}/",
|
|
|
|
background_color: "##{ColorScheme.hex_for_name('secondary')}",
|
2016-04-20 10:54:01 -04:00
|
|
|
theme_color: "##{ColorScheme.hex_for_name('header_background')}",
|
|
|
|
icons: [
|
|
|
|
{
|
|
|
|
src: SiteSetting.apple_touch_icon_url,
|
|
|
|
sizes: "144x144",
|
|
|
|
type: "image/png"
|
|
|
|
}
|
|
|
|
]
|
2015-09-20 11:00:30 -04:00
|
|
|
}
|
2016-02-13 13:29:53 -05:00
|
|
|
end
|
2015-09-20 11:00:30 -04:00
|
|
|
end
|