2011-11-20 15:32:12 -05:00
|
|
|
class Commit
|
2012-01-28 09:47:55 -05:00
|
|
|
include ActiveModel::Conversion
|
2012-09-01 23:39:28 -04:00
|
|
|
include StaticModel
|
2012-01-28 09:47:55 -05:00
|
|
|
extend ActiveModel::Naming
|
2013-05-30 19:16:49 -04:00
|
|
|
include Mentionable
|
2015-04-21 09:23:20 -04:00
|
|
|
include Participable
|
2013-05-30 19:16:49 -04:00
|
|
|
|
|
|
|
attr_mentionable :safe_message
|
2015-04-21 09:23:20 -04:00
|
|
|
participant :author, :committer, :notes, :mentioned_users
|
2011-11-28 04:46:41 -05:00
|
|
|
|
2015-04-21 09:09:15 -04:00
|
|
|
attr_accessor :project
|
|
|
|
|
2013-09-04 03:33:09 -04:00
|
|
|
# Safe amount of changes (files and lines) in one commit to render
|
2012-10-25 05:16:14 -04:00
|
|
|
# Used to prevent 500 error on huge commits by suppressing diff
|
|
|
|
#
|
2013-09-04 03:33:09 -04:00
|
|
|
# User can force display of diff above this size
|
2014-12-14 09:13:09 -05:00
|
|
|
DIFF_SAFE_FILES = 100 unless defined?(DIFF_SAFE_FILES)
|
|
|
|
DIFF_SAFE_LINES = 5000 unless defined?(DIFF_SAFE_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
|
2014-12-14 09:13:09 -05:00
|
|
|
DIFF_HARD_LIMIT_FILES = 1000 unless defined?(DIFF_HARD_LIMIT_FILES)
|
|
|
|
DIFF_HARD_LIMIT_LINES = 50000 unless defined?(DIFF_HARD_LIMIT_LINES)
|
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)
|
2014-07-15 11:28:21 -04:00
|
|
|
diffs.reduce(0) { |sum, d| sum + d.diff.lines.count }
|
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
|
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
|
|
|
|
|
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-04-21 09:15:49 -04:00
|
|
|
def hook_attrs
|
2014-09-15 03:10:35 -04:00
|
|
|
path_with_namespace = project.path_with_namespace
|
|
|
|
|
|
|
|
{
|
|
|
|
id: id,
|
|
|
|
message: safe_message,
|
|
|
|
timestamp: committed_date.xmlschema,
|
|
|
|
url: "#{Gitlab.config.gitlab.url}/#{path_with_namespace}/commit/#{id}",
|
|
|
|
author: {
|
|
|
|
name: author_name,
|
|
|
|
email: author_email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
|
|
|
|
# Mentionable override.
|
|
|
|
def gfm_reference
|
2014-10-10 08:44:27 -04:00
|
|
|
"commit #{id}"
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2015-03-27 07:16:34 -04:00
|
|
|
def author
|
|
|
|
User.find_for_commit(author_email, author_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def committer
|
|
|
|
User.find_for_commit(committer_email, committer_name)
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
|
|
def respond_to?(method)
|
|
|
|
return true if @raw.respond_to?(method)
|
|
|
|
|
|
|
|
super
|
|
|
|
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
|
|
|
|
|
2014-09-25 05:19:26 -04:00
|
|
|
def parents
|
2015-04-21 09:09:15 -04:00
|
|
|
@parents ||= Commit.decorate(super, project)
|
2014-09-25 05:19:26 -04:00
|
|
|
end
|
2011-11-20 15:32:12 -05:00
|
|
|
end
|