2012-11-19 19:24:05 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: events
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# target_type :string(255)
|
|
|
|
# target_id :integer
|
|
|
|
# title :string(255)
|
|
|
|
# data :text
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# action :integer
|
|
|
|
# author_id :integer
|
|
|
|
#
|
|
|
|
|
2012-02-28 14:09:23 +01:00
|
|
|
class Event < ActiveRecord::Base
|
2012-09-26 20:17:17 +02:00
|
|
|
attr_accessible :project, :action, :data, :author_id, :project_id,
|
|
|
|
:target_id, :target_type
|
|
|
|
|
2012-03-07 09:13:43 +01:00
|
|
|
default_scope where("author_id IS NOT NULL")
|
|
|
|
|
2012-02-28 15:01:14 +01:00
|
|
|
Created = 1
|
|
|
|
Updated = 2
|
|
|
|
Closed = 3
|
|
|
|
Reopened = 4
|
|
|
|
Pushed = 5
|
|
|
|
Commented = 6
|
2012-03-14 23:57:43 +01:00
|
|
|
Merged = 7
|
2012-09-09 22:18:28 +02:00
|
|
|
Joined = 8 # User joined project
|
2012-09-09 23:27:47 +02:00
|
|
|
Left = 9 # User left project
|
2012-02-28 15:01:14 +01:00
|
|
|
|
2012-09-27 08:20:36 +02: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
|
|
|
|
|
2012-09-27 22:23:11 +02:00
|
|
|
belongs_to :author, class_name: "User"
|
2012-02-28 14:09:23 +01:00
|
|
|
belongs_to :project
|
2012-08-11 00:07:50 +02:00
|
|
|
belongs_to :target, polymorphic: true
|
2012-02-28 15:01:14 +01:00
|
|
|
|
2012-04-04 01:49:58 +02:00
|
|
|
# For Hash only
|
|
|
|
serialize :data
|
2012-02-28 15:01:14 +01:00
|
|
|
|
2012-10-09 02:10:04 +02:00
|
|
|
# Scopes
|
2012-02-29 21:38:24 +01:00
|
|
|
scope :recent, order("created_at DESC")
|
2012-08-11 00:07:50 +02:00
|
|
|
scope :code_push, where(action: Pushed)
|
2012-10-09 21:09:46 +02:00
|
|
|
scope :in_projects, ->(project_ids) { where(project_id: project_ids).recent }
|
2012-02-29 21:38:24 +01:00
|
|
|
|
2012-10-09 02:10:04 +02:00
|
|
|
class << self
|
|
|
|
def determine_action(record)
|
|
|
|
if [Issue, MergeRequest].include? record.class
|
|
|
|
Event::Created
|
|
|
|
elsif record.kind_of? Note
|
|
|
|
Event::Commented
|
|
|
|
end
|
2012-02-28 15:01:14 +01:00
|
|
|
end
|
2012-07-20 07:39:34 +02:00
|
|
|
end
|
|
|
|
|
2012-12-14 20:39:55 +01:00
|
|
|
def proper?
|
|
|
|
if push?
|
|
|
|
true
|
|
|
|
elsif membership_changed?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
(issue? || merge_request? || note? || milestone?) && target
|
|
|
|
end
|
2012-03-01 19:47:57 +01:00
|
|
|
end
|
|
|
|
|
2012-09-14 17:46:40 +02:00
|
|
|
def project_name
|
|
|
|
if project
|
|
|
|
project.name
|
|
|
|
else
|
2012-09-30 15:04:43 +02:00
|
|
|
"(deleted project)"
|
2012-09-14 17:46:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-01 15:39:19 +02:00
|
|
|
def target_title
|
|
|
|
target.try :title
|
|
|
|
end
|
|
|
|
|
2012-02-29 21:38:24 +01:00
|
|
|
def push?
|
2012-04-04 01:25:33 +02:00
|
|
|
action == self.class::Pushed && valid_push?
|
2012-02-29 21:38:24 +01:00
|
|
|
end
|
|
|
|
|
2012-04-01 23:24:45 +02:00
|
|
|
def merged?
|
|
|
|
action == self.class::Merged
|
|
|
|
end
|
|
|
|
|
2012-03-07 09:13:43 +01:00
|
|
|
def closed?
|
|
|
|
action == self.class::Closed
|
|
|
|
end
|
|
|
|
|
|
|
|
def reopened?
|
|
|
|
action == self.class::Reopened
|
|
|
|
end
|
|
|
|
|
2012-12-14 18:33:33 +01:00
|
|
|
def milestone?
|
|
|
|
target_type == "Milestone"
|
|
|
|
end
|
|
|
|
|
|
|
|
def note?
|
|
|
|
target_type == "Note"
|
|
|
|
end
|
|
|
|
|
2012-09-14 17:46:40 +02:00
|
|
|
def issue?
|
2012-04-01 23:24:45 +02:00
|
|
|
target_type == "Issue"
|
2012-02-29 21:38:24 +01:00
|
|
|
end
|
|
|
|
|
2012-09-14 17:46:40 +02:00
|
|
|
def merge_request?
|
2012-04-01 23:24:45 +02:00
|
|
|
target_type == "MergeRequest"
|
2012-03-05 23:29:40 +01:00
|
|
|
end
|
|
|
|
|
2012-09-09 22:18:28 +02:00
|
|
|
def joined?
|
2012-09-09 23:27:47 +02:00
|
|
|
action == Joined
|
|
|
|
end
|
|
|
|
|
|
|
|
def left?
|
|
|
|
action == Left
|
|
|
|
end
|
|
|
|
|
|
|
|
def membership_changed?
|
|
|
|
joined? || left?
|
2012-09-09 22:18:28 +02:00
|
|
|
end
|
|
|
|
|
2012-09-14 17:46:40 +02:00
|
|
|
def issue
|
2012-03-01 21:43:04 +01:00
|
|
|
target if target_type == "Issue"
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge_request
|
|
|
|
target if target_type == "MergeRequest"
|
|
|
|
end
|
|
|
|
|
2012-09-14 17:46:40 +02:00
|
|
|
def author
|
2012-03-07 09:13:43 +01:00
|
|
|
@author ||= User.find(author_id)
|
2012-03-01 21:43:04 +01:00
|
|
|
end
|
2012-04-01 23:24:45 +02:00
|
|
|
|
|
|
|
def action_name
|
|
|
|
if closed?
|
|
|
|
"closed"
|
|
|
|
elsif merged?
|
|
|
|
"merged"
|
2012-09-09 22:18:28 +02:00
|
|
|
elsif joined?
|
|
|
|
'joined'
|
2012-09-09 23:27:47 +02:00
|
|
|
elsif left?
|
|
|
|
'left'
|
2012-09-14 17:46:40 +02:00
|
|
|
else
|
2012-04-01 23:24:45 +02:00
|
|
|
"opened"
|
2012-02-29 21:38:24 +01:00
|
|
|
end
|
|
|
|
end
|
2013-01-02 22:35:11 +01:00
|
|
|
|
|
|
|
def valid_push?
|
|
|
|
data[:ref]
|
|
|
|
rescue => ex
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag?
|
|
|
|
data[:ref]["refs/tags"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch?
|
|
|
|
data[:ref]["refs/heads"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_branch?
|
|
|
|
commit_from =~ /^00000/
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_ref?
|
|
|
|
commit_from =~ /^00000/
|
|
|
|
end
|
|
|
|
|
|
|
|
def rm_ref?
|
|
|
|
commit_to =~ /^00000/
|
|
|
|
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
|
|
|
|
@branch_name ||= data[:ref].gsub("refs/heads/", "")
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag_name
|
|
|
|
@tag_name ||= data[:ref].gsub("refs/tags/", "")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Max 20 commits from push DESC
|
|
|
|
def commits
|
2013-01-04 07:43:25 +01:00
|
|
|
@commits ||= data[:commits].map { |commit| repository.commit(commit[:id]) }.reverse
|
2013-01-02 22:35:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def commits_count
|
|
|
|
data[:total_commits_count] || commits.count || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def ref_type
|
|
|
|
tag? ? "tag" : "branch"
|
|
|
|
end
|
|
|
|
|
|
|
|
def push_action_name
|
|
|
|
if new_ref?
|
|
|
|
"pushed new"
|
|
|
|
elsif rm_ref?
|
|
|
|
"deleted"
|
|
|
|
else
|
|
|
|
"pushed to"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-04 07:43:25 +01:00
|
|
|
def repository
|
|
|
|
project.repository
|
|
|
|
end
|
|
|
|
|
2013-01-02 22:35:11 +01:00
|
|
|
def parent_commit
|
2013-01-04 07:43:25 +01:00
|
|
|
repository.commit(commit_from)
|
2013-01-02 22:35:11 +01:00
|
|
|
rescue => ex
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_commit
|
2013-01-04 07:43:25 +01:00
|
|
|
repository.commit(commit_to)
|
2013-01-02 22:35:11 +01:00
|
|
|
rescue => ex
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def push_with_commits?
|
|
|
|
md_ref? && commits.any? && parent_commit && last_commit
|
|
|
|
rescue Grit::NoSuchPathError
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_push_to_non_root?
|
|
|
|
branch? && project.default_branch != branch_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_commit_id
|
|
|
|
target.commit_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_short_commit_id
|
|
|
|
note_commit_id[0..8]
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_commit?
|
|
|
|
target.noteable_type == "Commit"
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target
|
|
|
|
target.noteable
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_id
|
|
|
|
if note_commit?
|
|
|
|
target.commit_id
|
|
|
|
else
|
|
|
|
target.noteable_id.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def wall_note?
|
|
|
|
target.noteable_type.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_type
|
|
|
|
if target.noteable_type.present?
|
|
|
|
target.noteable_type.titleize
|
|
|
|
else
|
|
|
|
"Wall"
|
|
|
|
end.downcase
|
|
|
|
end
|
2012-02-28 14:09:23 +01:00
|
|
|
end
|