2012-02-28 08:09:23 -05:00
|
|
|
class Event < ActiveRecord::Base
|
2012-06-07 08:44:57 -04:00
|
|
|
include PushEvent
|
|
|
|
|
2012-03-07 03:13:43 -05:00
|
|
|
default_scope where("author_id IS NOT NULL")
|
|
|
|
|
2012-02-28 09:01:14 -05:00
|
|
|
Created = 1
|
|
|
|
Updated = 2
|
|
|
|
Closed = 3
|
|
|
|
Reopened = 4
|
|
|
|
Pushed = 5
|
|
|
|
Commented = 6
|
2012-03-14 18:57:43 -04:00
|
|
|
Merged = 7
|
2012-09-09 16:18:28 -04:00
|
|
|
Joined = 8 # User joined project
|
2012-09-09 17:27:47 -04:00
|
|
|
Left = 9 # User left project
|
2012-02-28 09:01:14 -05:00
|
|
|
|
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
|
|
|
|
2012-02-29 15:38:24 -05:00
|
|
|
scope :recent, order("created_at DESC")
|
2012-08-10 18:07:50 -04:00
|
|
|
scope :code_push, where(action: Pushed)
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2012-02-28 09:01:14 -05:00
|
|
|
def self.determine_action(record)
|
|
|
|
if [Issue, MergeRequest].include? record.class
|
|
|
|
Event::Created
|
|
|
|
elsif record.kind_of? Note
|
|
|
|
Event::Commented
|
|
|
|
end
|
|
|
|
end
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2012-07-20 01:39:34 -04:00
|
|
|
def self.recent_for_user user
|
2012-08-10 18:07:50 -04:00
|
|
|
where(project_id: user.projects.map(&:id)).recent
|
2012-07-20 01:39:34 -04:00
|
|
|
end
|
|
|
|
|
2012-03-01 15:43:04 -05:00
|
|
|
# Next events currently enabled for system
|
2012-09-14 11:46:40 -04:00
|
|
|
# - push
|
2012-03-01 15:43:04 -05:00
|
|
|
# - new issue
|
|
|
|
# - merge request
|
2012-03-01 13:47:57 -05:00
|
|
|
def allowed?
|
2012-09-09 17:27:47 -04:00
|
|
|
push? || issue? || merge_request? || membership_changed?
|
2012-03-01 13:47:57 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def project_name
|
|
|
|
if project
|
|
|
|
project.name
|
|
|
|
else
|
|
|
|
"(deleted)"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-29 15:38:24 -05:00
|
|
|
def push?
|
2012-04-03 19:25:33 -04:00
|
|
|
action == self.class::Pushed && valid_push?
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
|
2012-04-01 17:24:45 -04:00
|
|
|
def merged?
|
|
|
|
action == self.class::Merged
|
|
|
|
end
|
|
|
|
|
2012-03-07 03:13:43 -05:00
|
|
|
def closed?
|
|
|
|
action == self.class::Closed
|
|
|
|
end
|
|
|
|
|
|
|
|
def reopened?
|
|
|
|
action == self.class::Reopened
|
|
|
|
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
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def new_issue?
|
|
|
|
target_type == "Issue" &&
|
2012-03-01 15:43:04 -05:00
|
|
|
action == Created
|
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def new_merge_request?
|
|
|
|
target_type == "MergeRequest" &&
|
2012-03-01 15:43:04 -05:00
|
|
|
action == Created
|
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def changed_merge_request?
|
|
|
|
target_type == "MergeRequest" &&
|
2012-03-07 03:13:43 -05:00
|
|
|
[Closed, Reopened].include?(action)
|
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def changed_issue?
|
|
|
|
target_type == "Issue" &&
|
2012-03-07 03:13:43 -05:00
|
|
|
[Closed, Reopened].include?(action)
|
|
|
|
end
|
|
|
|
|
2012-09-09 16:18:28 -04:00
|
|
|
def joined?
|
2012-09-09 17:27:47 -04:00
|
|
|
action == Joined
|
|
|
|
end
|
|
|
|
|
|
|
|
def left?
|
|
|
|
action == Left
|
|
|
|
end
|
|
|
|
|
|
|
|
def membership_changed?
|
|
|
|
joined? || left?
|
2012-09-09 16:18:28 -04:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def issue
|
2012-03-01 15:43:04 -05:00
|
|
|
target if target_type == "Issue"
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge_request
|
|
|
|
target if target_type == "MergeRequest"
|
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def author
|
2012-03-07 03:13:43 -05:00
|
|
|
@author ||= User.find(author_id)
|
2012-03-01 15:43:04 -05:00
|
|
|
end
|
2012-04-01 17:24:45 -04:00
|
|
|
|
|
|
|
def action_name
|
|
|
|
if closed?
|
|
|
|
"closed"
|
|
|
|
elsif merged?
|
|
|
|
"merged"
|
2012-09-09 16:18:28 -04:00
|
|
|
elsif joined?
|
|
|
|
'joined'
|
2012-09-09 17:27:47 -04:00
|
|
|
elsif left?
|
|
|
|
'left'
|
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
|
|
|
|
|
2012-08-10 18:07:50 -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
|
2012-02-28 08:09:23 -05:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: events
|
|
|
|
#
|
2012-06-26 14:23:09 -04:00
|
|
|
# id :integer(4) not null, primary key
|
2012-02-28 09:01:14 -05:00
|
|
|
# target_type :string(255)
|
2012-06-26 14:23:09 -04:00
|
|
|
# target_id :integer(4)
|
2012-02-28 09:01:14 -05:00
|
|
|
# title :string(255)
|
|
|
|
# data :text
|
2012-06-26 14:23:09 -04:00
|
|
|
# project_id :integer(4)
|
2012-02-28 09:01:14 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-06-26 14:23:09 -04:00
|
|
|
# action :integer(4)
|
|
|
|
# author_id :integer(4)
|
2012-02-28 08:09:23 -05:00
|
|
|
#
|
2012-02-28 09:01:14 -05:00
|
|
|
|