Welcome to mirror list, hosted at ThFree Co, Russian Federation.

insecure.rb « token_authenticatable_strategies « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f915259521c52c913589fb02fcf70fa335ebf92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module TokenAuthenticatableStrategies
  class Insecure < Base
    def find_token_authenticatable(token, unscoped = false)
      relation(unscoped).find_by(@token_field => token) if token
    end

    def get_token(instance)
      instance.read_attribute(@token_field)
    end

    def set_token(instance, token)
      instance[@token_field] = token if token
    end

    protected

    def token_set?(instance)
      instance.read_attribute(@token_field).present?
    end
  end
end