debian-mirror-gitlab/lib/gitlab/global_id.rb

32 lines
843 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
module Gitlab
module GlobalId
2020-07-28 23:09:34 +05:30
CoerceError = Class.new(ArgumentError)
2019-09-30 21:07:59 +05:30
def self.build(object = nil, model_name: nil, id: nil, params: nil)
if object
model_name ||= object.class.name
id ||= object.id
end
::URI::GID.build(app: GlobalID.app, model_name: model_name, model_id: id, params: params)
end
2020-07-28 23:09:34 +05:30
def self.as_global_id(value, model_name: nil)
case value
when GlobalID
value
when URI::GID
GlobalID.new(value)
2021-03-11 19:13:27 +05:30
when Integer, String
raise CoerceError, "Cannot coerce #{value.class}" unless model_name.present?
2020-07-28 23:09:34 +05:30
GlobalID.new(::Gitlab::GlobalId.build(model_name: model_name, id: value))
else
raise CoerceError, "Invalid ID. Cannot coerce instances of #{value.class}"
end
end
2019-09-30 21:07:59 +05:30
end
end