debian-mirror-gitlab/app/models/integrations/field.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
944 B
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
module Integrations
class Field
2022-06-21 17:19:12 +05:30
SECRET_NAME = %r/token|key|password|passphrase|secret/.freeze
2022-05-07 20:08:51 +05:30
ATTRIBUTES = %i[
section type placeholder required choices value checkbox_label
title help
non_empty_password_help
non_empty_password_title
api_only
2022-07-16 23:28:13 +05:30
exposes_secrets
2022-05-07 20:08:51 +05:30
].freeze
attr_reader :name
def initialize(name:, type: 'text', api_only: false, **attributes)
@name = name.to_s.freeze
2022-06-21 17:19:12 +05:30
attributes[:type] = SECRET_NAME.match?(@name) ? 'password' : type
2022-05-07 20:08:51 +05:30
attributes[:api_only] = api_only
@attributes = attributes.freeze
end
def [](key)
return name if key == :name
value = @attributes[key]
return value.call if value.respond_to?(:call)
value
end
2022-06-21 17:19:12 +05:30
def secret?
2022-05-07 20:08:51 +05:30
@attributes[:type] == 'password'
end
ATTRIBUTES.each do |name|
define_method(name) { self[name] }
end
end
end