debian-mirror-gitlab/app/models/concerns/token_authenticatable.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module TokenAuthenticatable
extend ActiveSupport::Concern
2016-09-13 17:45:13 +05:30
private
2015-12-23 02:04:40 +05:30
class_methods do
2016-09-13 17:45:13 +05:30
private # rubocop:disable Lint/UselessAccessModifier
2015-12-23 02:04:40 +05:30
2018-11-18 11:00:15 +05:30
def add_authentication_token_field(token_field, options = {})
2015-12-23 02:04:40 +05:30
@token_fields = [] unless @token_fields
2018-11-18 11:00:15 +05:30
if @token_fields.include?(token_field)
raise ArgumentError.new("#{token_field} already configured via add_authentication_token_field")
end
2015-12-23 02:04:40 +05:30
@token_fields << token_field
2014-09-02 18:07:02 +05:30
2018-11-18 11:00:15 +05:30
attr_accessor :cleartext_tokens
strategy = if options[:digest]
TokenAuthenticatableStrategies::Digest.new(self, token_field, options)
else
TokenAuthenticatableStrategies::Insecure.new(self, token_field, options)
end
2015-12-23 02:04:40 +05:30
define_singleton_method("find_by_#{token_field}") do |token|
2018-11-18 11:00:15 +05:30
strategy.find_token_authenticatable(token)
2015-12-23 02:04:40 +05:30
end
2018-11-18 11:00:15 +05:30
define_method(token_field) do
strategy.get_token(self)
end
2017-08-17 22:00:37 +05:30
define_method("set_#{token_field}") do |token|
2018-11-18 11:00:15 +05:30
strategy.set_token(self, token)
end
define_method("ensure_#{token_field}") do
strategy.ensure_token(self)
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
# Returns a token, but only saves when the database is in read & write mode
define_method("ensure_#{token_field}!") do
2018-11-18 11:00:15 +05:30
strategy.ensure_token!(self)
2015-12-23 02:04:40 +05:30
end
2018-03-17 18:26:18 +05:30
# Resets the token, but only saves when the database is in read & write mode
2015-12-23 02:04:40 +05:30
define_method("reset_#{token_field}!") do
2018-11-18 11:00:15 +05:30
strategy.reset_token!(self)
2015-12-23 02:04:40 +05:30
end
end
2014-09-02 18:07:02 +05:30
end
end