77 lines
2.0 KiB
Ruby
77 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
class JwtV2 < Jwt
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
DEFAULT_AUD = Settings.gitlab.base_url
|
|
GITLAB_HOSTED_RUNNER = 'gitlab-hosted'
|
|
SELF_HOSTED_RUNNER = 'self-hosted'
|
|
|
|
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
|
|
|
|
private
|
|
|
|
attr_reader :aud
|
|
|
|
def reserved_claims
|
|
super.merge({
|
|
iss: Feature.enabled?(:oidc_issuer_url) ? Gitlab.config.gitlab.url : Settings.gitlab.base_url,
|
|
sub: "project_path:#{project.full_path}:ref_type:#{ref_type}:ref:#{source_ref}",
|
|
aud: aud
|
|
}.compact)
|
|
end
|
|
|
|
def custom_claims
|
|
additional_custom_claims = {
|
|
runner_id: runner&.id,
|
|
runner_environment: runner_environment,
|
|
sha: pipeline.sha,
|
|
project_visibility: Gitlab::VisibilityLevel.string_level(project.visibility_level),
|
|
user_identities: user_identities
|
|
}.compact
|
|
|
|
mapper = ClaimMapper.new(project_config, pipeline)
|
|
|
|
super.merge(additional_custom_claims).merge(mapper.to_h)
|
|
end
|
|
|
|
def user_identities
|
|
return unless user&.pass_user_identities_to_ci_jwt
|
|
|
|
user.identities.map do |identity|
|
|
{
|
|
provider: identity.provider.to_s,
|
|
extern_uid: identity.extern_uid.to_s
|
|
}
|
|
end
|
|
end
|
|
|
|
def project_config
|
|
Gitlab::Ci::ProjectConfig.new(
|
|
project: project,
|
|
sha: pipeline.sha,
|
|
pipeline_source: pipeline.source&.to_sym,
|
|
pipeline_source_bridge: pipeline.source_bridge
|
|
)
|
|
end
|
|
strong_memoize_attr(:project_config)
|
|
|
|
def runner_environment
|
|
return unless runner
|
|
|
|
runner.gitlab_hosted? ? GITLAB_HOSTED_RUNNER : SELF_HOSTED_RUNNER
|
|
end
|
|
end
|
|
end
|
|
end
|