2011-11-20 15:32:12 -05:00
|
|
|
class Commit
|
2012-01-28 09:47:55 -05:00
|
|
|
extend ActiveModel::Naming
|
2015-05-02 23:11:21 -04:00
|
|
|
|
|
|
|
include ActiveModel::Conversion
|
2015-04-21 09:23:20 -04:00
|
|
|
include Participable
|
2015-10-14 10:20:11 -04:00
|
|
|
include Mentionable
|
2015-05-02 23:11:21 -04:00
|
|
|
include Referable
|
|
|
|
include StaticModel
|
2013-05-30 19:16:49 -04:00
|
|
|
|
2015-10-22 09:40:02 -04:00
|
|
|
attr_mentionable :safe_message, pipeline: :single_line
|
2016-05-26 07:38:28 -04:00
|
|
|
|
|
|
|
participant :author
|
|
|
|
participant :committer
|
|
|
|
participant :notes_with_associations
|
2011-11-28 04:46:41 -05:00
|
|
|
|
2015-04-21 09:09:15 -04:00
|
|
|
attr_accessor :project
|
|
|
|
|
2016-03-03 12:38:44 -05:00
|
|
|
DIFF_SAFE_LINES = Gitlab::Git::DiffCollection::DEFAULT_LIMITS[:max_lines]
|
2014-07-15 11:28:21 -04:00
|
|
|
|
2013-09-04 03:33:09 -04:00
|
|
|
# Commits above this size will not be rendered in HTML
|
2016-04-19 05:48:10 -04:00
|
|
|
DIFF_HARD_LIMIT_FILES = 1000
|
|
|
|
DIFF_HARD_LIMIT_LINES = 50000
|
2012-10-25 05:16:14 -04:00
|
|
|
|
2014-02-03 11:13:24 -05:00
|
|
|
class << self
|
2015-04-21 09:09:15 -04:00
|
|
|
def decorate(commits, project)
|
2014-10-10 10:39:29 -04:00
|
|
|
commits.map do |commit|
|
|
|
|
if commit.kind_of?(Commit)
|
|
|
|
commit
|
|
|
|
else
|
2015-04-21 09:09:15 -04:00
|
|
|
self.new(commit, project)
|
2014-10-10 10:39:29 -04:00
|
|
|
end
|
|
|
|
end
|
2014-02-03 11:13:24 -05:00
|
|
|
end
|
2013-04-01 09:04:35 -04:00
|
|
|
|
2014-02-03 11:13:24 -05:00
|
|
|
# Calculate number of lines to render for diffs
|
|
|
|
def diff_line_count(diffs)
|
2016-03-03 12:38:44 -05:00
|
|
|
diffs.reduce(0) { |sum, d| sum + Gitlab::Git::Util.count_lines(d.diff) }
|
2014-02-03 11:13:24 -05:00
|
|
|
end
|
2014-10-10 08:39:48 -04:00
|
|
|
|
2014-10-10 09:30:14 -04:00
|
|
|
# Truncate sha to 8 characters
|
2014-10-10 08:39:48 -04:00
|
|
|
def truncate_sha(sha)
|
2014-10-10 09:30:14 -04:00
|
|
|
sha[0..7]
|
2014-10-10 08:39:48 -04:00
|
|
|
end
|
2016-03-03 12:38:44 -05:00
|
|
|
|
|
|
|
def max_diff_options
|
|
|
|
{
|
|
|
|
max_files: DIFF_HARD_LIMIT_FILES,
|
|
|
|
max_lines: DIFF_HARD_LIMIT_LINES,
|
|
|
|
}
|
|
|
|
end
|
2013-09-04 03:33:09 -04:00
|
|
|
end
|
|
|
|
|
2013-03-31 11:49:58 -04:00
|
|
|
attr_accessor :raw
|
2012-09-27 02:20:36 -04:00
|
|
|
|
2015-04-21 09:09:15 -04:00
|
|
|
def initialize(raw_commit, project)
|
2013-01-04 17:35:38 -05:00
|
|
|
raise "Nil as raw commit passed" unless raw_commit
|
|
|
|
|
2013-03-31 11:49:58 -04:00
|
|
|
@raw = raw_commit
|
2015-04-21 09:09:15 -04:00
|
|
|
@project = project
|
2012-11-22 14:49:01 -05:00
|
|
|
end
|
2013-03-21 16:50:18 -04:00
|
|
|
|
2013-03-31 12:00:45 -04:00
|
|
|
def id
|
|
|
|
@raw.id
|
|
|
|
end
|
|
|
|
|
2015-05-02 22:41:37 -04:00
|
|
|
def ==(other)
|
|
|
|
(self.class === other) && (raw == other.raw)
|
|
|
|
end
|
|
|
|
|
2015-05-14 16:59:39 -04:00
|
|
|
def self.reference_prefix
|
|
|
|
'@'
|
|
|
|
end
|
|
|
|
|
|
|
|
# Pattern used to extract commit references from text
|
|
|
|
#
|
2016-01-29 19:49:07 -05:00
|
|
|
# The SHA can be between 7 and 40 hex characters.
|
2015-05-14 16:59:39 -04:00
|
|
|
#
|
|
|
|
# This pattern supports cross-project references.
|
|
|
|
def self.reference_pattern
|
2016-03-24 11:41:48 -04:00
|
|
|
@reference_pattern ||= %r{
|
2015-05-15 16:10:55 -04:00
|
|
|
(?:#{Project.reference_pattern}#{reference_prefix})?
|
2016-01-29 19:49:07 -05:00
|
|
|
(?<commit>\h{7,40})
|
2015-05-15 16:10:55 -04:00
|
|
|
}x
|
2015-05-14 16:59:39 -04:00
|
|
|
end
|
|
|
|
|
2015-11-30 15:14:46 -05:00
|
|
|
def self.link_reference_pattern
|
2016-03-24 11:41:48 -04:00
|
|
|
@link_reference_pattern ||= super("commit", /(?<commit>\h{7,40})/)
|
2015-11-30 15:14:46 -05:00
|
|
|
end
|
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
def to_reference(from_project = nil)
|
|
|
|
if cross_project_reference?(from_project)
|
2015-12-01 06:58:45 -05:00
|
|
|
project.to_reference + self.class.reference_prefix + self.id
|
|
|
|
else
|
|
|
|
self.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reference_link_text(from_project = nil)
|
2015-05-02 23:11:21 -04:00
|
|
|
if cross_project_reference?(from_project)
|
2015-11-30 15:14:46 -05:00
|
|
|
project.to_reference + self.class.reference_prefix + self.short_id
|
2015-05-02 23:11:21 -04:00
|
|
|
else
|
2015-11-30 15:14:46 -05:00
|
|
|
self.short_id
|
2015-05-02 23:11:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-04 03:33:09 -04:00
|
|
|
def diff_line_count
|
|
|
|
@diff_line_count ||= Commit::diff_line_count(self.diffs)
|
|
|
|
@diff_line_count
|
|
|
|
end
|
|
|
|
|
2013-03-31 16:48:12 -04:00
|
|
|
# Returns a string describing the commit for use in a link title
|
|
|
|
#
|
|
|
|
# Example
|
|
|
|
#
|
|
|
|
# "Commit: Alex Denisov - Project git clone panel"
|
|
|
|
def link_title
|
|
|
|
"Commit: #{author_name} - #{title}"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the commits title.
|
|
|
|
#
|
|
|
|
# Usually, the commit title is the first line of the commit message.
|
2013-08-12 15:28:31 -04:00
|
|
|
# In case this first line is longer than 100 characters, it is cut off
|
|
|
|
# after 80 characters and ellipses (`&hellp;`) are appended.
|
2013-03-31 16:48:12 -04:00
|
|
|
def title
|
|
|
|
title = safe_message
|
|
|
|
|
|
|
|
return no_commit_message if title.blank?
|
|
|
|
|
2014-10-19 10:09:38 -04:00
|
|
|
title_end = title.index("\n")
|
2013-08-12 15:28:31 -04:00
|
|
|
if (!title_end && title.length > 100) || (title_end && title_end > 100)
|
2015-04-14 09:45:06 -04:00
|
|
|
title[0..79] << "…"
|
2013-03-31 16:48:12 -04:00
|
|
|
else
|
2014-10-19 10:09:38 -04:00
|
|
|
title.split("\n", 2).first
|
2013-03-31 16:48:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the commits description
|
|
|
|
#
|
|
|
|
# cut off, ellipses (`&hellp;`) are prepended to the commit message.
|
|
|
|
def description
|
2014-10-19 10:09:38 -04:00
|
|
|
title_end = safe_message.index("\n")
|
2015-02-03 00:38:50 -05:00
|
|
|
@description ||=
|
|
|
|
if (!title_end && safe_message.length > 100) || (title_end && title_end > 100)
|
2015-04-14 09:45:06 -04:00
|
|
|
"…" << safe_message[80..-1]
|
2015-02-03 00:38:50 -05:00
|
|
|
else
|
|
|
|
safe_message.split("\n", 2)[1].try(:chomp)
|
|
|
|
end
|
2014-02-25 08:54:30 -05:00
|
|
|
end
|
2013-03-31 16:48:12 -04:00
|
|
|
|
2014-02-25 08:54:30 -05:00
|
|
|
def description?
|
|
|
|
description.present?
|
2013-03-31 16:48:12 -04:00
|
|
|
end
|
|
|
|
|
2015-12-07 08:13:06 -05:00
|
|
|
def hook_attrs(with_changed_files: false)
|
2015-12-07 07:11:15 -05:00
|
|
|
data = {
|
2014-09-15 03:10:35 -04:00
|
|
|
id: id,
|
|
|
|
message: safe_message,
|
|
|
|
timestamp: committed_date.xmlschema,
|
2016-04-13 05:25:42 -04:00
|
|
|
url: Gitlab::UrlBuilder.build(self),
|
2014-09-15 03:10:35 -04:00
|
|
|
author: {
|
|
|
|
name: author_name,
|
|
|
|
email: author_email
|
|
|
|
}
|
|
|
|
}
|
2015-12-07 07:11:15 -05:00
|
|
|
|
|
|
|
if with_changed_files
|
2015-12-07 08:13:06 -05:00
|
|
|
data.merge!(repo_changes)
|
2015-12-07 07:11:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
data
|
2014-09-15 03:10:35 -04:00
|
|
|
end
|
|
|
|
|
2013-05-30 19:16:49 -04:00
|
|
|
# Discover issues should be closed when this commit is pushed to a project's
|
|
|
|
# default branch.
|
2015-04-21 09:15:49 -04:00
|
|
|
def closes_issues(current_user = self.committer)
|
2015-04-03 12:03:26 -04:00
|
|
|
Gitlab::ClosingIssueExtractor.new(project, current_user).closed_by_message(safe_message)
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2015-03-27 07:16:34 -04:00
|
|
|
def author
|
2015-12-04 16:54:25 -05:00
|
|
|
@author ||= User.find_by_any_email(author_email.downcase)
|
2015-03-27 07:16:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def committer
|
2015-12-04 16:54:25 -05:00
|
|
|
@committer ||= User.find_by_any_email(committer_email.downcase)
|
2015-03-27 07:16:34 -04:00
|
|
|
end
|
|
|
|
|
2015-10-20 08:23:56 -04:00
|
|
|
def parents
|
|
|
|
@parents ||= parent_ids.map { |id| project.commit(id) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def parent
|
|
|
|
@parent ||= project.commit(self.parent_id) if self.parent_id
|
|
|
|
end
|
|
|
|
|
2015-04-21 09:15:49 -04:00
|
|
|
def notes
|
2015-04-15 09:56:21 -04:00
|
|
|
project.notes.for_commit_id(self.id)
|
|
|
|
end
|
|
|
|
|
2016-05-26 07:38:28 -04:00
|
|
|
def notes_with_associations
|
2016-06-03 14:47:09 -04:00
|
|
|
notes.includes(:author)
|
2016-05-26 07:38:28 -04:00
|
|
|
end
|
|
|
|
|
2013-03-31 11:49:58 -04:00
|
|
|
def method_missing(m, *args, &block)
|
|
|
|
@raw.send(m, *args, &block)
|
2013-03-21 16:50:18 -04:00
|
|
|
end
|
2013-03-31 16:48:12 -04:00
|
|
|
|
2015-05-23 18:38:44 -04:00
|
|
|
def respond_to_missing?(method, include_private = false)
|
|
|
|
@raw.respond_to?(method, include_private) || super
|
2013-03-31 16:48:12 -04:00
|
|
|
end
|
2014-09-25 05:19:26 -04:00
|
|
|
|
2014-10-10 09:30:14 -04:00
|
|
|
# Truncate sha to 8 characters
|
|
|
|
def short_id
|
|
|
|
@raw.short_id(7)
|
|
|
|
end
|
|
|
|
|
2016-06-02 10:19:18 -04:00
|
|
|
def pipelines
|
|
|
|
@pipeline ||= project.pipelines.where(sha: sha)
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def status
|
2016-03-31 13:51:28 -04:00
|
|
|
return @status if defined?(@status)
|
2016-06-02 10:19:18 -04:00
|
|
|
@status ||= pipelines.status
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
2015-12-04 09:23:21 -05:00
|
|
|
|
2016-02-03 18:28:40 -05:00
|
|
|
def revert_branch_name
|
2016-02-12 10:08:42 -05:00
|
|
|
"revert-#{short_id}"
|
2016-02-03 18:28:40 -05:00
|
|
|
end
|
2016-05-26 07:38:28 -04:00
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def cherry_pick_branch_name
|
|
|
|
project.repository.next_branch("cherry-pick-#{short_id}", mild: true)
|
|
|
|
end
|
2016-02-03 18:28:40 -05:00
|
|
|
|
2016-02-14 22:36:30 -05:00
|
|
|
def revert_description
|
|
|
|
if merged_merge_request
|
|
|
|
"This reverts merge request #{merged_merge_request.to_reference}"
|
|
|
|
else
|
|
|
|
"This reverts commit #{sha}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-03 18:28:40 -05:00
|
|
|
def revert_message
|
2016-03-22 19:01:31 -04:00
|
|
|
%Q{Revert "#{title.strip}"\n\n#{revert_description}}
|
2016-02-14 22:36:30 -05:00
|
|
|
end
|
2016-02-11 10:03:13 -05:00
|
|
|
|
2016-02-14 22:36:30 -05:00
|
|
|
def reverts_commit?(commit)
|
2016-02-22 09:46:39 -05:00
|
|
|
description? && description.include?(commit.revert_description)
|
2016-02-03 18:28:40 -05:00
|
|
|
end
|
|
|
|
|
2016-02-09 14:50:25 -05:00
|
|
|
def merge_commit?
|
2016-02-05 18:49:45 -05:00
|
|
|
parents.size > 1
|
|
|
|
end
|
|
|
|
|
2016-02-08 15:37:27 -05:00
|
|
|
def merged_merge_request
|
|
|
|
return @merged_merge_request if defined?(@merged_merge_request)
|
|
|
|
|
2016-02-18 11:58:04 -05:00
|
|
|
@merged_merge_request = project.merge_requests.find_by(merge_commit_sha: id) if merge_commit?
|
2016-02-08 15:37:27 -05:00
|
|
|
end
|
|
|
|
|
2016-02-14 22:36:30 -05:00
|
|
|
def has_been_reverted?(current_user = nil, noteable = self)
|
2016-05-26 07:38:28 -04:00
|
|
|
ext = all_references(current_user)
|
|
|
|
|
|
|
|
noteable.notes_with_associations.system.each do |note|
|
|
|
|
note.all_references(current_user, extractor: ext)
|
|
|
|
end
|
|
|
|
|
|
|
|
ext.commits.any? { |commit_ref| commit_ref.reverts_commit?(self) }
|
2016-02-14 22:36:30 -05:00
|
|
|
end
|
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def change_type_title
|
|
|
|
merged_merge_request ? 'merge request' : 'commit'
|
|
|
|
end
|
|
|
|
|
2015-12-04 09:23:21 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def repo_changes
|
|
|
|
changes = { added: [], modified: [], removed: [] }
|
|
|
|
|
2015-12-07 08:13:06 -05:00
|
|
|
diffs.each do |diff|
|
|
|
|
if diff.deleted_file
|
|
|
|
changes[:removed] << diff.old_path
|
|
|
|
elsif diff.renamed_file || diff.new_file
|
|
|
|
changes[:added] << diff.new_path
|
|
|
|
else
|
|
|
|
changes[:modified] << diff.new_path
|
2015-12-04 09:23:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
changes
|
|
|
|
end
|
2011-11-20 15:32:12 -05:00
|
|
|
end
|