1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/application_controller.rb

60 lines
1.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# Main controller for the backend application. All controllers inherits from it
2015-05-05 03:10:25 +02:00
class ApplicationController < ActionController::Base
include Pundit
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
after_action :set_csrf_cookie
2016-03-23 18:39:41 +01:00
cache_sweeper :stylesheet_sweeper
2015-05-05 03:10:25 +02:00
respond_to :html, :json
before_action :configure_permitted_parameters, if: :devise_controller?
2016-03-23 18:39:41 +01:00
# Globally rescue Authorization Errors in controller.
# Returning 403 Forbidden if permission is denied
rescue_from Pundit::NotAuthorizedError, with: :permission_denied
def index; end
2015-05-05 03:10:25 +02:00
protected
2015-05-05 03:10:25 +02:00
def set_csrf_cookie
cookies['XSRF-TOKEN'] = form_authenticity_token if protect_against_forgery?
end
def verified_request?
super || valid_authenticity_token?(session, request.headers['X-XSRF-TOKEN'])
end
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) <<
{ profile_attributes: [:phone, :last_name, :first_name, :gender, :birthday, :interest, :software_mastered,
organization_attributes: [:name, address_attributes: [:address]]] }
devise_parameter_sanitizer.for(:sign_up).concat %i[username is_allow_contact is_allow_newsletter cgu group_id]
2015-05-05 03:10:25 +02:00
end
def default_url_options
{ host: Rails.application.secrets.default_host, protocol: Rails.application.secrets.default_protocol }
2015-05-05 03:10:25 +02:00
end
2016-03-23 18:39:41 +01:00
def permission_denied
head 403
end
# @return [User]
# This is a placeholder for Devise's current_user.
# As Devise generate the method at runtime, IDEs autocomplete features will complain about 'method not found'
def current_user
super
end
# This is a placeholder for Devise's authenticate_user! method.
def authenticate_user!
super
end
2015-05-05 03:10:25 +02:00
end