98 lines
2.8 KiB
Ruby
98 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Pipeline
|
|
module Chain
|
|
Command = Struct.new(
|
|
:source, :project, :current_user,
|
|
:origin_ref, :checkout_sha, :after_sha, :before_sha, :source_sha, :target_sha,
|
|
:trigger_request, :schedule, :merge_request, :external_pull_request,
|
|
:ignore_skip_ci, :save_incompleted,
|
|
:seeds_block, :variables_attributes, :push_options,
|
|
:chat_data, :allow_mirror_update, :bridge,
|
|
# These attributes are set by Chains during processing:
|
|
:config_content, :config_processor, :stage_seeds
|
|
) do
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
def initialize(**params)
|
|
params.each do |key, value|
|
|
self[key] = value
|
|
end
|
|
end
|
|
|
|
def branch_exists?
|
|
strong_memoize(:is_branch) do
|
|
project.repository.branch_exists?(ref)
|
|
end
|
|
end
|
|
|
|
def tag_exists?
|
|
strong_memoize(:is_tag) do
|
|
project.repository.tag_exists?(ref)
|
|
end
|
|
end
|
|
|
|
def merge_request_ref_exists?
|
|
strong_memoize(:merge_request_ref_exists) do
|
|
MergeRequest.merge_request_ref?(origin_ref) &&
|
|
project.repository.ref_exists?(origin_ref)
|
|
end
|
|
end
|
|
|
|
def ref
|
|
strong_memoize(:ref) do
|
|
Gitlab::Git.ref_name(origin_ref)
|
|
end
|
|
end
|
|
|
|
def sha
|
|
strong_memoize(:sha) do
|
|
project.commit(origin_sha || origin_ref).try(:id)
|
|
end
|
|
end
|
|
|
|
def origin_sha
|
|
checkout_sha || after_sha
|
|
end
|
|
|
|
def before_sha
|
|
self[:before_sha] || checkout_sha || Gitlab::Git::BLANK_SHA
|
|
end
|
|
|
|
def protected_ref?
|
|
strong_memoize(:protected_ref) do
|
|
project.protected_for?(origin_ref)
|
|
end
|
|
end
|
|
|
|
def ambiguous_ref?
|
|
strong_memoize(:ambiguous_ref) do
|
|
project.repository.ambiguous_ref?(origin_ref)
|
|
end
|
|
end
|
|
|
|
def parent_pipeline
|
|
bridge&.parent_pipeline
|
|
end
|
|
|
|
def duration_histogram
|
|
strong_memoize(:duration_histogram) do
|
|
name = :gitlab_ci_pipeline_creation_duration_seconds
|
|
comment = 'Pipeline creation duration'
|
|
labels = {}
|
|
buckets = [0.01, 0.05, 0.1, 0.5, 1.0, 2.0, 5.0, 20.0, 50.0, 240.0]
|
|
|
|
Gitlab::Metrics.histogram(name, comment, labels, buckets)
|
|
end
|
|
end
|
|
|
|
def observe_creation_duration(duration)
|
|
duration_histogram.observe({}, duration.seconds)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|