event.rb 1.3 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1
class Event < ActiveRecord::Base
2 3 4 5 6 7 8
  Created   = 1
  Updated   = 2
  Closed    = 3
  Reopened  = 4
  Pushed    = 5
  Commented = 6

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

D
Dmitriy Zaporozhets 已提交
12
  serialize :data
13

14 15
  scope :recent, order("created_at DESC")

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

D
Dmitriy Zaporozhets 已提交
24 25 26 27 28
  # For now only push events enabled for system
  def allowed?
    push?
  end

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  def push?
    action == self.class::Pushed
  end

  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

  def pusher
    User.find_by_id(data[:user_id])
  end
  
  def commits
    @commits ||= data[:commits].map do |commit|
      project.commit(commit[:id])
    end
  end

  delegate :id, :name, :email, :to => :pusher, :prefix => true, :allow_nil => true
D
Dmitriy Zaporozhets 已提交
60 61 62 63 64
end
# == Schema Information
#
# Table name: events
#
65 66 67 68 69 70 71 72 73
#  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 已提交
74
#
75