debian-mirror-gitlab/app/models/alert_management/http_integration.rb

84 lines
2.6 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module AlertManagement
class HttpIntegration < ApplicationRecord
2021-01-29 00:20:46 +05:30
include ::Gitlab::Routing
LEGACY_IDENTIFIER = 'legacy'
DEFAULT_NAME_SLUG = 'http-endpoint'
2021-01-03 14:25:43 +05:30
belongs_to :project, inverse_of: :alert_management_http_integrations
attr_encrypted :token,
mode: :per_attribute_iv,
2021-06-08 01:23:25 +05:30
key: Settings.attr_encrypted_db_key_base_32,
2021-01-03 14:25:43 +05:30
algorithm: 'aes-256-gcm'
2021-01-29 00:20:46 +05:30
default_value_for(:endpoint_identifier, allows_nil: false) { SecureRandom.hex(8) }
default_value_for(:token) { generate_token }
2021-01-03 14:25:43 +05:30
validates :project, presence: true
validates :active, inclusion: { in: [true, false] }
2021-01-29 00:20:46 +05:30
validates :token, presence: true, format: { with: /\A\h{32}\z/ }
2021-01-03 14:25:43 +05:30
validates :name, presence: true, length: { maximum: 255 }
2021-01-29 00:20:46 +05:30
validates :endpoint_identifier, presence: true, length: { maximum: 255 }, format: { with: /\A[A-Za-z0-9]+\z/ }
2021-01-03 14:25:43 +05:30
validates :endpoint_identifier, uniqueness: { scope: [:project_id, :active] }, if: :active?
2021-02-22 17:27:13 +05:30
validates :payload_attribute_mapping, json_schema: { filename: 'http_integration_payload_attribute_mapping' }
2021-01-03 14:25:43 +05:30
before_validation :prevent_token_assignment
2021-01-29 00:20:46 +05:30
before_validation :prevent_endpoint_identifier_assignment
2021-01-03 14:25:43 +05:30
before_validation :ensure_token
2021-04-17 20:07:23 +05:30
before_validation :ensure_payload_example_not_nil
2021-01-03 14:25:43 +05:30
2021-01-29 00:20:46 +05:30
scope :for_endpoint_identifier, -> (endpoint_identifier) { where(endpoint_identifier: endpoint_identifier) }
scope :active, -> { where(active: true) }
scope :ordered_by_id, -> { order(:id) }
def url
return project_alerts_notify_url(project, format: :json) if legacy?
project_alert_http_integration_url(project, name_slug, endpoint_identifier, format: :json)
end
2021-01-03 14:25:43 +05:30
private
2021-01-29 00:20:46 +05:30
def self.generate_token
SecureRandom.hex
end
def name_slug
(name && Gitlab::Utils.slugify(name)) || DEFAULT_NAME_SLUG
end
def legacy?
endpoint_identifier == LEGACY_IDENTIFIER
end
2021-03-08 18:12:59 +05:30
def token_changed?
attribute_changed?(:token)
end
2021-01-29 00:20:46 +05:30
# Blank token assignment triggers token reset
2021-01-03 14:25:43 +05:30
def prevent_token_assignment
if token.present? && token_changed?
self.token = nil
self.encrypted_token = encrypted_token_was
self.encrypted_token_iv = encrypted_token_iv_was
end
end
def ensure_token
2021-01-29 00:20:46 +05:30
self.token = self.class.generate_token if token.blank?
2021-01-03 14:25:43 +05:30
end
2021-01-29 00:20:46 +05:30
def prevent_endpoint_identifier_assignment
if endpoint_identifier_changed? && endpoint_identifier_was.present?
self.endpoint_identifier = endpoint_identifier_was
end
2021-01-03 14:25:43 +05:30
end
2021-04-17 20:07:23 +05:30
def ensure_payload_example_not_nil
self.payload_example ||= {}
end
2021-01-03 14:25:43 +05:30
end
end