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
|
|
|
|
2017-04-08 10:30:50 +10:00
|
|
|
include Localized
|
2017-04-16 20:51:30 +10:00
|
|
|
|
|
|
|
helper_method :current_account
|
|
|
|
helper_method :single_user_mode?
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2016-09-08 10:40:51 +10:00
|
|
|
rescue_from ActionController::RoutingError, with: :not_found
|
|
|
|
rescue_from ActiveRecord::RecordNotFound, with: :not_found
|
2017-01-15 10:30:23 +11:00
|
|
|
rescue_from ActionController::InvalidAuthenticityToken, with: :unprocessable_entity
|
2016-09-08 10:40:51 +10:00
|
|
|
|
2016-10-07 00:42:00 +11:00
|
|
|
before_action :store_current_location, except: :raise_not_found, unless: :devise_controller?
|
2016-12-01 01:17:03 +11:00
|
|
|
before_action :set_user_activity
|
2016-12-07 04:03:30 +11:00
|
|
|
before_action :check_suspension, if: :user_signed_in?
|
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-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
|
2017-04-04 10:00:10 +10:00
|
|
|
return unless !current_user.nil? && (current_user.current_sign_in_at.nil? || current_user.current_sign_in_at < 24.hours.ago)
|
|
|
|
|
|
|
|
# Mark user as signed-in today
|
|
|
|
current_user.update_tracked_fields(request)
|
|
|
|
|
|
|
|
# If the sign in is after a two week break, we need to regenerate their feed
|
|
|
|
RegenerationWorker.perform_async(current_user.account_id) if current_user.last_sign_in_at < 14.days.ago
|
2016-12-01 01:17:03 +11:00
|
|
|
end
|
|
|
|
|
2016-12-07 04:03:30 +11:00
|
|
|
def check_suspension
|
|
|
|
head 403 if current_user.account.suspended?
|
|
|
|
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|
|
2016-12-27 04:48:33 +11:00
|
|
|
format.any { head 404 }
|
2017-03-20 06:03:28 +11:00
|
|
|
format.html { render 'errors/404', layout: 'error', status: 404 }
|
2016-09-08 10:40:51 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 22:26:44 +11:00
|
|
|
def gone
|
|
|
|
respond_to do |format|
|
2016-12-27 04:48:33 +11:00
|
|
|
format.any { head 410 }
|
2017-03-20 06:03:28 +11:00
|
|
|
format.html { render 'errors/410', layout: 'error', status: 410 }
|
2017-01-15 10:30:23 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unprocessable_entity
|
|
|
|
respond_to do |format|
|
|
|
|
format.any { head 422 }
|
2017-03-20 06:03:28 +11:00
|
|
|
format.html { render 'errors/422', layout: 'error', status: 422 }
|
2016-10-05 22:26:44 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-16 00:46:27 +10:00
|
|
|
def single_user_mode?
|
|
|
|
@single_user_mode ||= Rails.configuration.x.single_user_mode && Account.first
|
|
|
|
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-12-04 04:21:26 +11:00
|
|
|
raw = raw.cache_ids.to_a if raw.is_a?(ActiveRecord::Relation)
|
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
|
|
|
|
|
2016-12-04 04:21:26 +11:00
|
|
|
klass.reload_stale_associations!(cached_keys_with_value.values) if klass.respond_to?(:reload_stale_associations!)
|
|
|
|
|
2016-11-30 01:49:39 +11:00
|
|
|
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
|