2016-02-13 12:29:53 -06:00
|
|
|
class MetadataController < ApplicationController
|
2015-09-20 10:00:30 -05:00
|
|
|
layout false
|
2017-08-30 23:06:56 -05:00
|
|
|
skip_before_action :preload_json, :check_xhr, :redirect_to_login_if_required
|
2015-09-20 10:00:30 -05:00
|
|
|
|
2016-02-13 12:29:53 -06:00
|
|
|
def manifest
|
2018-06-13 22:13:28 -05:00
|
|
|
render json: default_manifest.to_json, content_type: 'application/manifest+json'
|
2016-06-29 23:03:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def opensearch
|
|
|
|
render file: "#{Rails.root}/app/views/metadata/opensearch.xml"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def default_manifest
|
2018-10-26 11:47:22 -05:00
|
|
|
display = Regexp.new(SiteSetting.pwa_display_browser_regex).match(request.user_agent) ? 'browser' : 'standalone'
|
2018-08-15 21:36:08 -05:00
|
|
|
|
2017-01-03 11:50:45 -06:00
|
|
|
manifest = {
|
2016-04-20 09:54:01 -05:00
|
|
|
name: SiteSetting.title,
|
2018-08-15 21:36:08 -05:00
|
|
|
display: display,
|
2018-06-15 12:29:33 -05:00
|
|
|
start_url: Discourse.base_uri.present? ? "#{Discourse.base_uri}/" : '.',
|
2018-09-11 20:04:58 -05:00
|
|
|
background_color: "##{ColorScheme.hex_for_name('secondary', view_context.scheme_id)}",
|
|
|
|
theme_color: "##{ColorScheme.hex_for_name('header_background', view_context.scheme_id)}",
|
2016-04-20 09:54:01 -05:00
|
|
|
icons: [
|
2018-12-07 09:48:09 -06:00
|
|
|
],
|
|
|
|
share_target: {
|
|
|
|
action: "/new-topic",
|
2019-03-15 15:10:05 -05:00
|
|
|
method: "GET",
|
|
|
|
enctype: "application/x-www-form-urlencoded",
|
2018-12-07 09:48:09 -06:00
|
|
|
params: {
|
|
|
|
title: "title",
|
|
|
|
text: "body"
|
|
|
|
}
|
|
|
|
}
|
2015-09-20 10:00:30 -05:00
|
|
|
}
|
2017-01-03 11:50:45 -06:00
|
|
|
|
2019-05-01 08:44:45 -05:00
|
|
|
logo = SiteSetting.site_manifest_icon_url
|
|
|
|
manifest[:icons] << {
|
|
|
|
src: UrlHelper.absolute(logo),
|
|
|
|
sizes: "512x512",
|
|
|
|
type: MiniMime.lookup_by_filename(logo)&.content_type || "image/png"
|
|
|
|
} if logo
|
|
|
|
|
2018-11-28 07:55:52 -06:00
|
|
|
manifest[:short_name] = SiteSetting.short_title if SiteSetting.short_title.present?
|
|
|
|
|
2019-04-17 11:25:13 -05:00
|
|
|
if current_user && current_user.trust_level >= 1 && SiteSetting.native_app_install_banner_android
|
2017-07-27 20:20:09 -05:00
|
|
|
manifest = manifest.merge(
|
2017-01-03 11:50:45 -06:00
|
|
|
prefer_related_applications: true,
|
|
|
|
related_applications: [
|
|
|
|
{
|
|
|
|
platform: "play",
|
2019-04-17 11:25:13 -05:00
|
|
|
id: SiteSetting.android_app_id
|
2017-01-03 11:50:45 -06:00
|
|
|
}
|
|
|
|
]
|
2017-07-27 20:20:09 -05:00
|
|
|
)
|
2017-01-03 11:50:45 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
manifest
|
2016-02-13 12:29:53 -06:00
|
|
|
end
|
2018-05-17 14:10:35 -05:00
|
|
|
|
2015-09-20 10:00:30 -05:00
|
|
|
end
|