2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class EnvironmentStatus
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
attr_reader :project, :environment, :merge_request, :sha
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
delegate :id, to: :environment
|
|
|
|
delegate :name, to: :environment
|
2019-02-15 15:39:39 +05:30
|
|
|
delegate :status, to: :deployment, allow_nil: true
|
2018-12-13 13:39:08 +05:30
|
|
|
delegate :deployed_at, to: :deployment, allow_nil: true
|
|
|
|
|
|
|
|
def self.for_merge_request(mr, user)
|
2019-02-15 15:39:39 +05:30
|
|
|
build_environments_status(mr, user, mr.actual_head_pipeline)
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def self.after_merge_request(mr, user)
|
|
|
|
return [] unless mr.merged?
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
build_environments_status(mr, user, mr.merge_pipeline)
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def self.for_deployed_merge_request(mr, user)
|
|
|
|
statuses = []
|
|
|
|
|
|
|
|
mr.recent_visible_deployments.each do |deploy|
|
|
|
|
env = deploy.environment
|
|
|
|
|
|
|
|
next unless Ability.allowed?(user, :read_environment, env)
|
|
|
|
|
|
|
|
statuses <<
|
|
|
|
EnvironmentStatus.new(deploy.project, env, mr, deploy.sha)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Existing projects that used deployments prior to the introduction of
|
|
|
|
# explicitly linked merge requests won't have any data using this new
|
|
|
|
# approach, so we fall back to retrieving deployments based on CI pipelines.
|
|
|
|
if statuses.any?
|
|
|
|
statuses
|
|
|
|
else
|
|
|
|
after_merge_request(mr, user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
def initialize(project, environment, merge_request, sha)
|
|
|
|
@project = project
|
2018-12-13 13:39:08 +05:30
|
|
|
@environment = environment
|
|
|
|
@merge_request = merge_request
|
|
|
|
@sha = sha
|
|
|
|
end
|
|
|
|
|
|
|
|
def deployment
|
|
|
|
strong_memoize(:deployment) do
|
|
|
|
Deployment.where(environment: environment).find_by_sha(sha)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
def has_metrics?
|
|
|
|
strong_memoize(:has_metrics) do
|
|
|
|
deployment_metrics.has_metrics?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def changes
|
2020-04-08 14:13:33 +05:30
|
|
|
strong_memoize(:changes) do
|
|
|
|
has_route_map? ? changed_files.map { |file| build_change(file) }.compact : []
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def changed_files
|
|
|
|
merge_request.merge_request_diff
|
|
|
|
.merge_request_diff_files.where(deleted_file: false)
|
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
def has_route_map?
|
|
|
|
project.route_map_for(sha).present?
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
PAGE_EXTENSIONS = /\A\.(s?html?|php|asp|cgi|pl)\z/i.freeze
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
def deployment_metrics
|
|
|
|
@deployment_metrics ||= DeploymentMetrics.new(project, deployment)
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def build_change(file)
|
|
|
|
public_path = project.public_path_for_source_path(file.new_path, sha)
|
|
|
|
return if public_path.nil?
|
|
|
|
|
|
|
|
ext = File.extname(public_path)
|
|
|
|
return if ext.present? && ext !~ PAGE_EXTENSIONS
|
|
|
|
|
|
|
|
{
|
|
|
|
path: public_path,
|
|
|
|
external_url: environment.external_url_for(file.new_path, sha)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def self.build_environments_status(mr, user, pipeline)
|
|
|
|
return [] unless pipeline
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
pipeline.environments_in_self_and_descendants.includes(:project).available.map do |environment|
|
2018-12-13 13:39:08 +05:30
|
|
|
next unless Ability.allowed?(user, :read_environment, environment)
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
EnvironmentStatus.new(pipeline.project, environment, mr, pipeline.sha)
|
2018-12-13 13:39:08 +05:30
|
|
|
end.compact
|
|
|
|
end
|
|
|
|
private_class_method :build_environments_status
|
|
|
|
end
|