2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-21 08:53:20 +11:00
|
|
|
class ApplicationController < ActionController::Base
|
|
|
|
# Prevent CSRF attacks by raising an exception.
|
|
|
|
# For APIs, you may want to use :null_session instead.
|
|
|
|
protect_from_forgery with: :exception
|
2016-03-26 00:12:24 +11:00
|
|
|
|
2016-08-19 02:39:35 +10:00
|
|
|
force_ssl if: "Rails.env.production? && ENV['LOCAL_HTTPS'] == 'true'"
|
2016-08-19 01:48:57 +10:00
|
|
|
|
2016-08-25 01:56:44 +10:00
|
|
|
helper_method :current_account
|
|
|
|
|
2016-09-08 10:40:51 +10:00
|
|
|
rescue_from ActionController::RoutingError, with: :not_found
|
|
|
|
rescue_from ActiveRecord::RecordNotFound, with: :not_found
|
|
|
|
|
2016-10-07 00:42:00 +11:00
|
|
|
before_action :store_current_location, except: :raise_not_found, unless: :devise_controller?
|
2016-11-21 20:24:50 +11:00
|
|
|
before_action :set_locale
|
2016-12-01 01:17:03 +11:00
|
|
|
before_action :set_user_activity
|
2016-10-03 02:11:08 +11:00
|
|
|
|
2016-09-08 10:40:51 +10:00
|
|
|
def raise_not_found
|
2016-09-30 05:28:21 +10:00
|
|
|
raise ActionController::RoutingError, "No route matches #{params[:unmatched_route]}"
|
2016-09-08 10:40:51 +10:00
|
|
|
end
|
|
|
|
|
2016-10-03 02:11:08 +11:00
|
|
|
private
|
|
|
|
|
|
|
|
def store_current_location
|
|
|
|
store_location_for(:user, request.url)
|
|
|
|
end
|
|
|
|
|
2016-11-17 03:51:02 +11:00
|
|
|
def set_locale
|
2016-11-21 20:24:50 +11:00
|
|
|
I18n.locale = current_user.try(:locale) || I18n.default_locale
|
2016-11-17 03:51:02 +11:00
|
|
|
rescue I18n::InvalidLocale
|
|
|
|
I18n.locale = I18n.default_locale
|
|
|
|
end
|
|
|
|
|
2016-11-29 04:45:13 +11:00
|
|
|
def require_admin!
|
|
|
|
redirect_to root_path unless current_user&.admin?
|
|
|
|
end
|
|
|
|
|
2016-12-01 01:17:03 +11:00
|
|
|
def set_user_activity
|
2016-12-01 01:32:26 +11:00
|
|
|
current_user.touch(:current_sign_in_at) if !current_user.nil? && (current_user.current_sign_in_at.nil? || current_user.current_sign_in_at < 24.hours.ago)
|
2016-12-01 01:17:03 +11:00
|
|
|
end
|
|
|
|
|
2016-08-19 01:13:41 +10:00
|
|
|
protected
|
|
|
|
|
2016-09-08 10:40:51 +10:00
|
|
|
def not_found
|
|
|
|
respond_to do |format|
|
|
|
|
format.any { head 404 }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 22:26:44 +11:00
|
|
|
def gone
|
|
|
|
respond_to do |format|
|
|
|
|
format.any { head 410 }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-19 01:13:41 +10:00
|
|
|
def current_account
|
2016-11-23 19:20:34 +11:00
|
|
|
@current_account ||= current_user.try(:account)
|
2016-08-19 01:13:41 +10:00
|
|
|
end
|
2016-11-30 01:49:39 +11:00
|
|
|
|
|
|
|
def cache_collection(raw, klass)
|
2016-12-01 01:57:56 +11:00
|
|
|
return raw unless klass.respond_to?(:with_includes)
|
|
|
|
|
2016-11-30 01:49:39 +11:00
|
|
|
uncached_ids = []
|
|
|
|
cached_keys_with_value = Rails.cache.read_multi(*raw.map(&:cache_key))
|
|
|
|
|
|
|
|
raw.each do |item|
|
|
|
|
uncached_ids << item.id unless cached_keys_with_value.key?(item.cache_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless uncached_ids.empty?
|
|
|
|
uncached = klass.where(id: uncached_ids).with_includes.map { |item| [item.id, item] }.to_h
|
|
|
|
|
|
|
|
uncached.values.each do |item|
|
|
|
|
Rails.cache.write(item.cache_key, item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
raw.map { |item| cached_keys_with_value[item.cache_key] || uncached[item.id] }.compact
|
|
|
|
end
|
2016-02-21 08:53:20 +11:00
|
|
|
end
|