event.rb 2.4 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1
class Event < ActiveRecord::Base
2 3
  default_scope where("author_id IS NOT NULL")

4 5 6 7 8 9 10
  Created   = 1
  Updated   = 2
  Closed    = 3
  Reopened  = 4
  Pushed    = 5
  Commented = 6

D
Dmitriy Zaporozhets 已提交
11
  belongs_to :project
12 13
  belongs_to :target, :polymorphic => true

D
Dmitriy Zaporozhets 已提交
14
  serialize :data
15

16 17
  scope :recent, order("created_at DESC")

18 19 20 21 22 23 24
  def self.determine_action(record)
    if [Issue, MergeRequest].include? record.class
      Event::Created
    elsif record.kind_of? Note
      Event::Commented
    end
  end
25

26 27 28 29
  # Next events currently enabled for system
  #  - push 
  #  - new issue
  #  - merge request
D
Dmitriy Zaporozhets 已提交
30
  def allowed?
31 32
    push? || new_issue? || new_merge_request? || 
      changed_merge_request? || changed_issue?
D
Dmitriy Zaporozhets 已提交
33 34
  end

35 36 37 38
  def push?
    action == self.class::Pushed
  end

39 40 41 42 43 44 45 46
  def closed?
    action == self.class::Closed
  end

  def reopened?
    action == self.class::Reopened
  end

47 48 49 50
  def new_tag? 
    data[:ref]["refs/tags"]
  end

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  def new_branch?
    data[:before] =~ /^00000/
  end

  def commit_from
    data[:before]
  end

  def commit_to
    data[:after]
  end

  def branch_name
    @branch_name ||= data[:ref].gsub("refs/heads/", "")
  end

67 68 69 70
  def tag_name
    @tag_name ||= data[:ref].gsub("refs/tags/", "")
  end

71 72 73 74 75 76 77 78 79 80
  def new_issue? 
    target_type == "Issue" && 
      action == Created
  end

  def new_merge_request? 
    target_type == "MergeRequest" && 
      action == Created
  end

81 82 83 84 85 86 87 88 89 90
  def changed_merge_request? 
    target_type == "MergeRequest" && 
      [Closed, Reopened].include?(action)
  end

  def changed_issue? 
    target_type == "Issue" && 
      [Closed, Reopened].include?(action)
  end

91 92 93 94 95 96 97 98 99
  def issue 
    target if target_type == "Issue"
  end

  def merge_request
    target if target_type == "MergeRequest"
  end

  def author 
100
    @author ||= User.find(author_id)
101
  end
102 103 104 105 106 107 108
  
  def commits
    @commits ||= data[:commits].map do |commit|
      project.commit(commit[:id])
    end
  end

109 110 111
  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
D
Dmitriy Zaporozhets 已提交
112 113 114 115 116
end
# == Schema Information
#
# Table name: events
#
117 118 119 120 121 122 123 124 125
#  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
D
Dmitriy Zaporozhets 已提交
126
#
127