2012-02-28 08:09:23 -05:00
|
|
|
class Event < ActiveRecord::Base
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
2013-12-09 12:40:55 -05:00
|
|
|
default_scope { where.not(author_id: nil) }
|
2012-03-07 03:13:43 -05:00
|
|
|
|
2013-02-13 06:48:16 -05:00
|
|
|
CREATED = 1
|
|
|
|
UPDATED = 2
|
|
|
|
CLOSED = 3
|
|
|
|
REOPENED = 4
|
|
|
|
PUSHED = 5
|
|
|
|
COMMENTED = 6
|
|
|
|
MERGED = 7
|
|
|
|
JOINED = 8 # User joined project
|
|
|
|
LEFT = 9 # User left project
|
2015-08-31 00:51:34 -04:00
|
|
|
DESTROYED = 10
|
2012-02-28 09:01:14 -05:00
|
|
|
|
2012-09-27 02:20:36 -04:00
|
|
|
delegate :name, :email, to: :author, prefix: true, allow_nil: true
|
|
|
|
delegate :title, to: :issue, prefix: true, allow_nil: true
|
|
|
|
delegate :title, to: :merge_request, prefix: true, allow_nil: true
|
2014-05-29 10:55:55 -04:00
|
|
|
delegate :title, to: :note, prefix: true, allow_nil: true
|
2012-09-27 02:20:36 -04:00
|
|
|
|
2012-09-27 16:23:11 -04:00
|
|
|
belongs_to :author, class_name: "User"
|
2012-02-28 08:09:23 -05:00
|
|
|
belongs_to :project
|
2012-08-10 18:07:50 -04:00
|
|
|
belongs_to :target, polymorphic: true
|
2012-02-28 09:01:14 -05:00
|
|
|
|
2012-04-03 19:49:58 -04:00
|
|
|
# For Hash only
|
|
|
|
serialize :data
|
2012-02-28 09:01:14 -05:00
|
|
|
|
2014-06-17 14:23:43 -04:00
|
|
|
# Callbacks
|
|
|
|
after_create :reset_project_activity
|
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
# Scopes
|
2015-11-11 09:17:12 -05:00
|
|
|
scope :recent, -> { reorder(id: :desc) }
|
2013-02-13 06:48:16 -05:00
|
|
|
scope :code_push, -> { where(action: PUSHED) }
|
2016-01-25 10:56:23 -05:00
|
|
|
|
|
|
|
scope :in_projects, ->(projects) do
|
2016-02-03 18:21:14 -05:00
|
|
|
where(project_id: projects.map(&:id)).recent
|
2016-01-25 10:56:23 -05:00
|
|
|
end
|
|
|
|
|
2015-02-18 12:38:46 -05:00
|
|
|
scope :with_associations, -> { includes(project: :namespace) }
|
2015-08-31 00:51:34 -04:00
|
|
|
scope :for_milestone_id, ->(milestone_id) { where(target_type: "Milestone", target_id: milestone_id) }
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
class << self
|
2014-07-16 14:44:24 -04:00
|
|
|
def reset_event_cache_for(target)
|
|
|
|
Event.where(target_id: target.id, target_type: target.class.to_s).
|
|
|
|
order('id DESC').limit(100).
|
|
|
|
update_all(updated_at: Time.now)
|
|
|
|
end
|
2015-03-22 16:55:00 -04:00
|
|
|
|
|
|
|
def contributions
|
|
|
|
where("action = ? OR (target_type in (?) AND action in (?))",
|
|
|
|
Event::PUSHED, ["MergeRequest", "Issue"],
|
|
|
|
[Event::CREATED, Event::CLOSED, Event::MERGED])
|
|
|
|
end
|
2015-11-11 11:14:47 -05:00
|
|
|
|
2015-11-18 06:25:37 -05:00
|
|
|
def limit_recent(limit = 20, offset = nil)
|
|
|
|
recent.limit(limit).offset(offset)
|
|
|
|
end
|
2012-07-20 01:39:34 -04:00
|
|
|
end
|
|
|
|
|
2016-03-24 13:24:22 -04:00
|
|
|
def visible_to_user?(user = nil)
|
2012-12-14 14:39:55 -05:00
|
|
|
if push?
|
|
|
|
true
|
|
|
|
elsif membership_changed?
|
|
|
|
true
|
2015-02-13 06:01:28 -05:00
|
|
|
elsif created_project?
|
|
|
|
true
|
2016-03-24 13:20:47 -04:00
|
|
|
elsif issue? || issue_note?
|
|
|
|
Ability.abilities.allowed?(user, :read_issue, note? ? note_target : target)
|
2012-12-14 14:39:55 -05:00
|
|
|
else
|
2016-07-04 10:29:28 -04:00
|
|
|
((merge_request? || note?) && target.present?) || milestone?
|
2012-12-14 14:39:55 -05:00
|
|
|
end
|
2012-03-01 13:47:57 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def project_name
|
|
|
|
if project
|
2013-06-22 09:00:39 -04:00
|
|
|
project.name_with_namespace
|
2012-09-14 11:46:40 -04:00
|
|
|
else
|
2012-09-30 09:04:43 -04:00
|
|
|
"(deleted project)"
|
2012-09-14 11:46:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-01 09:39:19 -04:00
|
|
|
def target_title
|
2016-05-08 14:05:45 -04:00
|
|
|
target.try(:title)
|
2015-02-13 06:00:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def created?
|
|
|
|
action == CREATED
|
2012-10-01 09:39:19 -04:00
|
|
|
end
|
|
|
|
|
2012-02-29 15:38:24 -05:00
|
|
|
def push?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == PUSHED && valid_push?
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
|
2012-04-01 17:24:45 -04:00
|
|
|
def merged?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == MERGED
|
2012-04-01 17:24:45 -04:00
|
|
|
end
|
|
|
|
|
2012-03-07 03:13:43 -05:00
|
|
|
def closed?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == CLOSED
|
2012-03-07 03:13:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def reopened?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == REOPENED
|
|
|
|
end
|
|
|
|
|
|
|
|
def joined?
|
|
|
|
action == JOINED
|
|
|
|
end
|
|
|
|
|
|
|
|
def left?
|
|
|
|
action == LEFT
|
|
|
|
end
|
|
|
|
|
2015-08-31 00:51:34 -04:00
|
|
|
def destroyed?
|
|
|
|
action == DESTROYED
|
|
|
|
end
|
|
|
|
|
2015-02-13 06:00:12 -05:00
|
|
|
def commented?
|
|
|
|
action == COMMENTED
|
|
|
|
end
|
|
|
|
|
|
|
|
def membership_changed?
|
|
|
|
joined? || left?
|
2012-03-07 03:13:43 -05:00
|
|
|
end
|
|
|
|
|
2015-02-13 06:01:28 -05:00
|
|
|
def created_project?
|
2015-08-31 00:51:34 -04:00
|
|
|
created? && !target && target_type.nil?
|
2015-02-13 06:01:28 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def created_target?
|
|
|
|
created? && target
|
|
|
|
end
|
|
|
|
|
2012-12-14 12:33:33 -05:00
|
|
|
def milestone?
|
|
|
|
target_type == "Milestone"
|
|
|
|
end
|
|
|
|
|
|
|
|
def note?
|
2016-07-06 04:08:42 -04:00
|
|
|
target.is_a?(Note)
|
2012-12-14 12:33:33 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def issue?
|
2012-04-01 17:24:45 -04:00
|
|
|
target_type == "Issue"
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def merge_request?
|
2012-04-01 17:24:45 -04:00
|
|
|
target_type == "MergeRequest"
|
2012-03-05 17:29:40 -05:00
|
|
|
end
|
|
|
|
|
2015-02-13 06:00:12 -05:00
|
|
|
def milestone
|
|
|
|
target if milestone?
|
2012-09-09 16:18:28 -04:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def issue
|
2015-02-13 06:00:12 -05:00
|
|
|
target if issue?
|
2012-03-01 15:43:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def merge_request
|
2015-02-13 06:00:12 -05:00
|
|
|
target if merge_request?
|
2012-03-01 15:43:04 -05:00
|
|
|
end
|
|
|
|
|
2014-05-29 10:55:55 -04:00
|
|
|
def note
|
2015-02-13 06:00:12 -05:00
|
|
|
target if note?
|
2014-05-29 10:55:55 -04:00
|
|
|
end
|
|
|
|
|
2012-04-01 17:24:45 -04:00
|
|
|
def action_name
|
2015-02-13 06:00:12 -05:00
|
|
|
if push?
|
|
|
|
if new_ref?
|
|
|
|
"pushed new"
|
|
|
|
elsif rm_ref?
|
|
|
|
"deleted"
|
|
|
|
else
|
|
|
|
"pushed to"
|
|
|
|
end
|
|
|
|
elsif closed?
|
2012-04-01 17:24:45 -04:00
|
|
|
"closed"
|
|
|
|
elsif merged?
|
2013-04-06 08:53:35 -04:00
|
|
|
"accepted"
|
2012-09-09 16:18:28 -04:00
|
|
|
elsif joined?
|
|
|
|
'joined'
|
2012-09-09 17:27:47 -04:00
|
|
|
elsif left?
|
|
|
|
'left'
|
2015-08-31 00:51:34 -04:00
|
|
|
elsif destroyed?
|
|
|
|
'destroyed'
|
2015-02-13 06:00:12 -05:00
|
|
|
elsif commented?
|
|
|
|
"commented on"
|
2015-02-13 06:01:28 -05:00
|
|
|
elsif created_project?
|
2015-12-02 04:56:05 -05:00
|
|
|
if project.external_import?
|
2015-04-06 08:51:41 -04:00
|
|
|
"imported"
|
|
|
|
else
|
|
|
|
"created"
|
|
|
|
end
|
2012-09-14 11:46:40 -04:00
|
|
|
else
|
2012-04-01 17:24:45 -04:00
|
|
|
"opened"
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
end
|
2013-01-02 16:35:11 -05:00
|
|
|
|
|
|
|
def valid_push?
|
2013-11-13 07:21:03 -05:00
|
|
|
data[:ref] && ref_name.present?
|
2014-12-29 04:36:57 -05:00
|
|
|
rescue
|
2013-01-02 16:35:11 -05:00
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag?
|
2015-03-10 06:51:36 -04:00
|
|
|
Gitlab::Git.tag_ref?(data[:ref])
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def branch?
|
2015-03-10 06:51:36 -04:00
|
|
|
Gitlab::Git.branch_ref?(data[:ref])
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def new_ref?
|
2015-03-10 06:51:36 -04:00
|
|
|
Gitlab::Git.blank_ref?(commit_from)
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def rm_ref?
|
2015-03-10 06:51:36 -04:00
|
|
|
Gitlab::Git.blank_ref?(commit_to)
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def md_ref?
|
|
|
|
!(rm_ref? || new_ref?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_from
|
|
|
|
data[:before]
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_to
|
|
|
|
data[:after]
|
|
|
|
end
|
|
|
|
|
|
|
|
def ref_name
|
|
|
|
if tag?
|
|
|
|
tag_name
|
|
|
|
else
|
|
|
|
branch_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch_name
|
2015-03-10 06:51:36 -04:00
|
|
|
@branch_name ||= Gitlab::Git.ref_name(data[:ref])
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def tag_name
|
2015-03-10 06:51:36 -04:00
|
|
|
@tag_name ||= Gitlab::Git.ref_name(data[:ref])
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Max 20 commits from push DESC
|
|
|
|
def commits
|
2013-11-25 10:59:12 -05:00
|
|
|
@commits ||= (data[:commits] || []).reverse
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def commits_count
|
|
|
|
data[:total_commits_count] || commits.count || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def ref_type
|
|
|
|
tag? ? "tag" : "branch"
|
|
|
|
end
|
|
|
|
|
|
|
|
def push_with_commits?
|
2015-03-17 10:51:14 -04:00
|
|
|
!commits.empty? && commit_from && commit_to
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_push_to_non_root?
|
|
|
|
branch? && project.default_branch != branch_name
|
|
|
|
end
|
|
|
|
|
2013-08-19 15:12:59 -04:00
|
|
|
def target_iid
|
|
|
|
target.respond_to?(:iid) ? target.iid : target_id
|
|
|
|
end
|
|
|
|
|
2016-05-12 16:31:53 -04:00
|
|
|
def commit_note?
|
2016-05-08 14:46:43 -04:00
|
|
|
target.for_commit?
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
2016-03-24 13:20:47 -04:00
|
|
|
def issue_note?
|
2016-05-08 14:46:43 -04:00
|
|
|
note? && target && target.for_issue?
|
2016-03-24 13:20:47 -04:00
|
|
|
end
|
|
|
|
|
2016-05-12 16:37:00 -04:00
|
|
|
def project_snippet_note?
|
2016-05-08 14:46:43 -04:00
|
|
|
target.for_snippet?
|
2013-03-25 07:58:09 -04:00
|
|
|
end
|
|
|
|
|
2013-01-02 16:35:11 -05:00
|
|
|
def note_target
|
|
|
|
target.noteable
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_id
|
2016-05-12 16:31:53 -04:00
|
|
|
if commit_note?
|
2013-01-02 16:35:11 -05:00
|
|
|
target.commit_id
|
|
|
|
else
|
|
|
|
target.noteable_id.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-12 17:47:45 -04:00
|
|
|
def note_target_reference
|
|
|
|
return unless note_target
|
|
|
|
|
|
|
|
# Commit#to_reference returns the full SHA, but we want the short one here
|
|
|
|
if commit_note?
|
|
|
|
note_target.short_id
|
2013-08-19 15:53:11 -04:00
|
|
|
else
|
2016-05-12 17:47:45 -04:00
|
|
|
note_target.to_reference
|
|
|
|
end
|
2013-08-19 15:53:11 -04:00
|
|
|
end
|
|
|
|
|
2013-01-02 16:35:11 -05:00
|
|
|
def note_target_type
|
|
|
|
if target.noteable_type.present?
|
|
|
|
target.noteable_type.titleize
|
|
|
|
else
|
|
|
|
"Wall"
|
|
|
|
end.downcase
|
|
|
|
end
|
2013-08-20 14:31:37 -04:00
|
|
|
|
|
|
|
def body?
|
|
|
|
if push?
|
2016-06-15 18:27:54 -04:00
|
|
|
push_with_commits? || rm_ref?
|
2013-08-20 14:31:37 -04:00
|
|
|
elsif note?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
target.respond_to? :title
|
|
|
|
end
|
|
|
|
end
|
2014-06-17 14:23:43 -04:00
|
|
|
|
|
|
|
def reset_project_activity
|
2016-04-21 03:42:08 -04:00
|
|
|
if project && Gitlab::ExclusiveLease.new("project:update_last_activity_at:#{project.id}", timeout: 60).try_obtain
|
2014-06-17 14:45:03 -04:00
|
|
|
project.update_column(:last_activity_at, self.created_at)
|
2014-06-17 14:23:43 -04:00
|
|
|
end
|
|
|
|
end
|
2012-02-28 08:09:23 -05:00
|
|
|
end
|