debian-mirror-gitlab/lib/gitlab/ci/jwt_v2.rb

32 lines
629 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
class JwtV2 < Jwt
2022-11-25 23:54:43 +05:30
DEFAULT_AUD = Settings.gitlab.base_url
def self.for_build(build, aud: DEFAULT_AUD)
new(build, ttl: build.metadata_timeout, aud: aud).encoded
end
def initialize(build, ttl:, aud:)
super(build, ttl: ttl)
@aud = aud
end
2022-03-02 08:16:31 +05:30
private
2022-11-25 23:54:43 +05:30
attr_reader :aud
2022-03-02 08:16:31 +05:30
def reserved_claims
super.merge(
iss: Settings.gitlab.base_url,
2022-10-11 01:57:18 +05:30
sub: "project_path:#{project.full_path}:ref_type:#{ref_type}:ref:#{source_ref}",
2022-11-25 23:54:43 +05:30
aud: aud
2022-03-02 08:16:31 +05:30
)
end
end
end
end