2016-06-10 17:36:54 -04:00
|
|
|
class Deployment < ActiveRecord::Base
|
|
|
|
include InternalId
|
|
|
|
|
2016-06-15 09:09:50 -04:00
|
|
|
belongs_to :project, required: true, validate: true
|
|
|
|
belongs_to :environment, required: true, validate: true
|
2016-06-10 17:36:54 -04:00
|
|
|
belongs_to :user
|
2017-06-02 08:29:30 -04:00
|
|
|
belongs_to :deployable, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
|
2016-06-10 17:36:54 -04:00
|
|
|
|
2016-06-14 12:34:48 -04:00
|
|
|
validates :sha, presence: true
|
|
|
|
validates :ref, presence: true
|
2016-06-10 17:36:54 -04:00
|
|
|
|
|
|
|
delegate :name, to: :environment, prefix: true
|
|
|
|
|
2016-10-20 08:21:40 -04:00
|
|
|
after_create :create_ref
|
2017-05-23 04:43:55 -04:00
|
|
|
after_create :invalidate_cache
|
2016-06-20 13:22:08 -04:00
|
|
|
|
2016-06-10 17:36:54 -04:00
|
|
|
def commit
|
|
|
|
project.commit(sha)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_title
|
|
|
|
commit.try(:title)
|
|
|
|
end
|
|
|
|
|
|
|
|
def short_sha
|
2016-06-14 12:34:48 -04:00
|
|
|
Commit.truncate_sha(sha)
|
2016-06-10 17:36:54 -04:00
|
|
|
end
|
2016-06-14 08:47:00 -04:00
|
|
|
|
|
|
|
def last?
|
|
|
|
self == environment.last_deployment
|
|
|
|
end
|
2016-06-20 13:22:08 -04:00
|
|
|
|
2016-09-30 12:40:56 -04:00
|
|
|
def create_ref
|
2016-10-03 09:39:12 -04:00
|
|
|
project.repository.create_ref(ref, ref_path)
|
2016-06-20 13:22:08 -04:00
|
|
|
end
|
2016-07-16 12:39:58 -04:00
|
|
|
|
2017-05-23 04:43:55 -04:00
|
|
|
def invalidate_cache
|
|
|
|
environment.expire_etag_cache
|
|
|
|
end
|
|
|
|
|
2016-07-16 17:06:34 -04:00
|
|
|
def manual_actions
|
2016-10-17 06:45:31 -04:00
|
|
|
@manual_actions ||= deployable.try(:other_actions)
|
2016-07-16 12:39:58 -04:00
|
|
|
end
|
2016-08-02 08:01:22 -04:00
|
|
|
|
2016-08-09 09:11:14 -04:00
|
|
|
def includes_commit?(commit)
|
2016-08-02 08:01:22 -04:00
|
|
|
return false unless commit
|
|
|
|
|
2016-10-13 09:19:52 -04:00
|
|
|
# Before 8.10, deployments didn't have keep-around refs. Any deployment
|
|
|
|
# created before then could have a `sha` referring to a commit that no
|
|
|
|
# longer exists in the repository, so just ignore those.
|
|
|
|
begin
|
|
|
|
project.repository.is_ancestor?(commit.id, sha)
|
|
|
|
rescue Rugged::OdbError
|
|
|
|
false
|
|
|
|
end
|
2016-08-02 08:01:22 -04:00
|
|
|
end
|
2016-09-20 05:36:54 -04:00
|
|
|
|
2016-09-20 15:17:37 -04:00
|
|
|
def update_merge_request_metrics!
|
|
|
|
return unless environment.update_merge_request_metrics?
|
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
merge_requests = project.merge_requests
|
|
|
|
.joins(:metrics)
|
|
|
|
.where(target_branch: self.ref, merge_request_metrics: { first_deployed_to_production_at: nil })
|
|
|
|
.where("merge_request_metrics.merged_at <= ?", self.created_at)
|
2016-09-20 05:36:54 -04:00
|
|
|
|
2016-09-20 15:17:37 -04:00
|
|
|
if previous_deployment
|
|
|
|
merge_requests = merge_requests.where("merge_request_metrics.merged_at >= ?", previous_deployment.created_at)
|
2016-09-20 05:36:54 -04:00
|
|
|
end
|
2016-09-20 15:17:37 -04:00
|
|
|
|
|
|
|
# Need to use `map` instead of `select` because MySQL doesn't allow `SELECT`ing from the same table
|
|
|
|
# that we're updating.
|
|
|
|
merge_request_ids =
|
|
|
|
if Gitlab::Database.postgresql?
|
|
|
|
merge_requests.select(:id)
|
|
|
|
elsif Gitlab::Database.mysql?
|
|
|
|
merge_requests.map(&:id)
|
|
|
|
end
|
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
MergeRequest::Metrics
|
|
|
|
.where(merge_request_id: merge_request_ids, first_deployed_to_production_at: nil)
|
|
|
|
.update_all(first_deployed_to_production_at: self.created_at)
|
2016-09-20 05:36:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def previous_deployment
|
|
|
|
@previous_deployment ||=
|
2017-06-21 09:48:12 -04:00
|
|
|
project.deployments.joins(:environment)
|
|
|
|
.where(environments: { name: self.environment.name }, ref: self.ref)
|
|
|
|
.where.not(id: self.id)
|
|
|
|
.take
|
2016-09-20 05:36:54 -04:00
|
|
|
end
|
2016-09-30 09:45:27 -04:00
|
|
|
|
2016-10-17 06:45:31 -04:00
|
|
|
def stop_action
|
2017-04-06 09:19:52 -04:00
|
|
|
return unless on_stop.present?
|
|
|
|
return unless manual_actions
|
2016-10-06 07:10:50 -04:00
|
|
|
|
2016-10-17 06:45:31 -04:00
|
|
|
@stop_action ||= manual_actions.find_by(name: on_stop)
|
2016-10-06 07:10:50 -04:00
|
|
|
end
|
|
|
|
|
2017-02-07 07:30:33 -05:00
|
|
|
def stop_action?
|
2016-10-17 10:13:19 -04:00
|
|
|
stop_action.present?
|
2016-10-06 07:10:50 -04:00
|
|
|
end
|
|
|
|
|
2016-10-12 09:21:01 -04:00
|
|
|
def formatted_deployment_time
|
|
|
|
created_at.to_time.in_time_zone.to_s(:medium)
|
|
|
|
end
|
|
|
|
|
2017-05-09 00:15:34 -04:00
|
|
|
def has_metrics?
|
|
|
|
project.monitoring_service.present?
|
|
|
|
end
|
|
|
|
|
2017-04-26 16:09:03 -04:00
|
|
|
def metrics
|
2017-05-09 00:15:34 -04:00
|
|
|
return {} unless has_metrics?
|
|
|
|
|
2017-05-09 16:24:24 -04:00
|
|
|
project.monitoring_service.deployment_metrics(self)
|
2017-05-09 00:15:34 -04:00
|
|
|
end
|
|
|
|
|
2017-06-16 14:48:34 -04:00
|
|
|
def has_additional_metrics?
|
|
|
|
project.prometheus_service.present?
|
|
|
|
end
|
|
|
|
|
2017-05-25 11:39:43 -04:00
|
|
|
def additional_metrics
|
2017-06-16 14:48:34 -04:00
|
|
|
return {} unless project.prometheus_service.present?
|
2017-06-06 20:36:59 -04:00
|
|
|
|
2017-06-16 14:48:34 -04:00
|
|
|
metrics = project.prometheus_service.additional_deployment_metrics(self)
|
2017-05-25 11:39:43 -04:00
|
|
|
metrics&.merge(deployment_time: created_at.to_i) || {}
|
|
|
|
end
|
|
|
|
|
2016-09-30 09:45:27 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def ref_path
|
2016-10-19 08:49:09 -04:00
|
|
|
File.join(environment.ref_path, 'deployments', iid.to_s)
|
2016-09-30 09:45:27 -04:00
|
|
|
end
|
2016-06-10 17:36:54 -04:00
|
|
|
end
|