blob: 5a05d76254d6f29d81d8dce45b99719b4e0acce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# frozen_string_literal: true
module Operations
class FeatureFlagsClient < ApplicationRecord
include TokenAuthenticatable
DEFAULT_UNLEASH_API_VERSION = 1
self.table_name = 'operations_feature_flags_clients'
belongs_to :project
validates :project, presence: true
validates :token, presence: true
add_authentication_token_field :token, encrypted: :required
attr_accessor :unleash_app_name
before_validation :ensure_token!
def self.find_for_project_and_token(project_id, token)
return unless project_id
return unless token
where(project_id: project_id).find_by_token(token)
end
def self.update_last_feature_flag_updated_at!(project)
where(project: project).update_all(last_feature_flag_updated_at: Time.current)
end
def unleash_api_version
DEFAULT_UNLEASH_API_VERSION
end
def unleash_api_features
return [] unless unleash_app_name.present?
Operations::FeatureFlag.for_unleash_client(project, unleash_app_name)
end
def unleash_api_cache_key
"api_version:#{unleash_api_version}:" \
"app_name:#{unleash_app_name}:" \
"updated_at:#{last_feature_flag_updated_at.to_i}"
end
end
end
|