demarches-normaliennes/app/controllers/api_controller.rb

62 lines
1.5 KiB
Ruby
Raw Normal View History

2015-12-21 17:51:49 +01:00
class APIController < ApplicationController
2018-03-16 10:10:43 +01:00
AUTHENTICATION_TOKEN_DESCRIPTION = <<-EOS
L'authentification de l'API se fait via un header HTTP :
2015-12-21 17:51:49 +01:00
2018-03-16 10:10:43 +01:00
```
Authorization: Bearer &lt;Token administrateur&gt;
```
EOS
2018-03-08 17:41:54 +01:00
# deny request with an empty token as we do not want it
# to match the first admin with an empty token
# it should not happen as an empty token is serialized by ''
# and a administrateur without token has admin.api_token == nil
before_action :ensure_token_is_present
2018-03-16 10:10:43 +01:00
before_action :authenticate_user
before_action :default_format_json
2018-03-08 17:41:54 +01:00
2015-12-21 17:51:49 +01:00
def authenticate_user
2018-03-08 17:41:54 +01:00
if !valid_token?
request_http_token_authentication
end
2015-12-21 17:51:49 +01:00
end
protected
def valid_token?
administrateur.present?
2015-12-21 17:51:49 +01:00
end
def administrateur
2018-03-08 17:41:54 +01:00
@administrateur ||= (authenticate_with_bearer_token || authenticate_with_param_token)
end
def authenticate_with_bearer_token
authenticate_with_http_token do |token, options|
Administrateur.find_by(api_token: token)
end
end
def authenticate_with_param_token
Administrateur.find_by(api_token: params[:token])
2015-12-21 17:51:49 +01:00
end
2016-02-19 16:59:18 +01:00
def default_format_json
2018-01-11 19:04:39 +01:00
request.format = "json" if !request.params[:format]
2016-02-19 16:59:18 +01:00
end
def ensure_token_is_present
if params[:token].blank? && header_token.blank?
render json: {}, status: 401
end
end
def header_token
received_token = nil
authenticate_with_http_token do |token, _options|
received_token = token
end
received_token
end
2017-04-04 15:27:04 +02:00
end