2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-02-16 20:26:25 -05:00
|
|
|
class SiteController < ApplicationController
|
2016-02-13 13:29:53 -05:00
|
|
|
layout false
|
2017-08-31 00:06:56 -04:00
|
|
|
skip_before_action :preload_json, :check_xhr
|
2023-01-09 07:20:10 -05:00
|
|
|
skip_before_action :redirect_to_login_if_required, only: %w[basic_info statistics]
|
2015-05-20 03:12:16 -04:00
|
|
|
|
2015-03-04 23:49:03 -05:00
|
|
|
def site
|
|
|
|
render json: Site.json_for(guardian)
|
|
|
|
end
|
|
|
|
|
|
|
|
def settings
|
|
|
|
render json: SiteSetting.client_settings_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def custom_html
|
|
|
|
render json: custom_html_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def banner
|
|
|
|
render json: banner_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def emoji
|
|
|
|
render json: custom_emoji
|
2014-02-16 20:26:25 -05:00
|
|
|
end
|
2016-08-12 03:10:08 -04:00
|
|
|
|
|
|
|
def basic_info
|
|
|
|
results = {
|
2018-11-14 02:03:02 -05:00
|
|
|
logo_url: UrlHelper.absolute(SiteSetting.site_logo_url),
|
|
|
|
logo_small_url: UrlHelper.absolute(SiteSetting.site_logo_small_url),
|
|
|
|
apple_touch_icon_url: UrlHelper.absolute(SiteSetting.site_apple_touch_icon_url),
|
2018-12-04 04:48:16 -05:00
|
|
|
favicon_url: UrlHelper.absolute(SiteSetting.site_favicon_url),
|
2016-08-12 03:10:08 -04:00
|
|
|
title: SiteSetting.title,
|
2018-10-08 05:52:57 -04:00
|
|
|
description: SiteSetting.site_description,
|
2023-01-09 07:20:10 -05:00
|
|
|
header_primary_color: ColorScheme.hex_for_name("header_primary") || "333333",
|
|
|
|
header_background_color: ColorScheme.hex_for_name("header_background") || "ffffff",
|
|
|
|
login_required: SiteSetting.login_required,
|
2016-08-12 03:10:08 -04:00
|
|
|
}
|
2018-11-14 02:03:02 -05:00
|
|
|
|
|
|
|
if mobile_logo_url = SiteSetting.site_mobile_logo_url.presence
|
|
|
|
results[:mobile_logo_url] = UrlHelper.absolute(mobile_logo_url)
|
|
|
|
end
|
2016-08-12 03:10:08 -04:00
|
|
|
|
2017-03-27 08:47:07 -04:00
|
|
|
DiscourseHub.stats_fetched_at = Time.zone.now if request.user_agent == "Discourse Hub"
|
2016-08-12 03:10:08 -04:00
|
|
|
|
|
|
|
# this info is always available cause it can be scraped from a 404 page
|
|
|
|
render json: results
|
|
|
|
end
|
2017-03-10 08:16:00 -05:00
|
|
|
|
|
|
|
def statistics
|
2023-01-09 07:20:10 -05:00
|
|
|
return redirect_to path("/") unless SiteSetting.share_anonymized_statistics?
|
2017-03-10 08:16:00 -05:00
|
|
|
render json: About.fetch_cached_stats
|
|
|
|
end
|
2014-02-21 12:31:54 -05:00
|
|
|
end
|