debian-mirror-gitlab/app/models/lfs_download_object.rb

35 lines
843 B
Ruby
Raw Normal View History

2019-02-02 18:00:53 +05:30
# frozen_string_literal: true
class LfsDownloadObject
include ActiveModel::Validations
2021-09-04 01:27:46 +05:30
attr_accessor :oid, :size, :link, :headers
2019-02-02 18:00:53 +05:30
delegate :sanitized_url, :credentials, to: :sanitized_uri
validates :oid, format: { with: /\A\h{64}\z/ }
validates :size, numericality: { greater_than_or_equal_to: 0 }
validates :link, public_url: { protocols: %w(http https) }
2021-09-04 01:27:46 +05:30
validate :headers_must_be_hash
2019-02-02 18:00:53 +05:30
2021-09-04 01:27:46 +05:30
def initialize(oid:, size:, link:, headers: {})
2019-02-02 18:00:53 +05:30
@oid = oid
@size = size
@link = link
2021-09-04 01:27:46 +05:30
@headers = headers || {}
2019-02-02 18:00:53 +05:30
end
def sanitized_uri
@sanitized_uri ||= Gitlab::UrlSanitizer.new(link)
end
2021-09-04 01:27:46 +05:30
def has_authorization_header?
headers.keys.map(&:downcase).include?('authorization')
end
private
def headers_must_be_hash
errors.add(:base, "headers must be a Hash") unless headers.is_a?(Hash)
end
2019-02-02 18:00:53 +05:30
end