2011-10-08 23:36:38 +02:00
|
|
|
require 'carrierwave/orm/activerecord'
|
|
|
|
require 'file_size_validator'
|
|
|
|
|
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :noteable, :polymorphic => true
|
|
|
|
belongs_to :author,
|
|
|
|
:class_name => "User"
|
|
|
|
|
2011-11-03 11:56:26 +01:00
|
|
|
delegate :name,
|
2011-11-15 09:34:30 +01:00
|
|
|
:email,
|
|
|
|
:to => :author,
|
2011-11-03 11:56:26 +01:00
|
|
|
:prefix => true
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
attr_protected :author, :author_id
|
2011-12-17 14:58:35 +01:00
|
|
|
attr_accessor :notify
|
2011-12-24 17:28:20 +01:00
|
|
|
attr_accessor :notify_author
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
validates_presence_of :project
|
|
|
|
|
|
|
|
validates :note,
|
|
|
|
:presence => true,
|
2011-10-27 16:33:20 +02:00
|
|
|
:length => { :within => 0..5000 }
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
validates :attachment,
|
|
|
|
:file_size => {
|
|
|
|
:maximum => 10.megabytes.to_i
|
|
|
|
}
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
scope :common, where(:noteable_id => nil)
|
|
|
|
|
2011-11-18 07:52:13 +01:00
|
|
|
scope :today, where("created_at >= :date", :date => Date.today)
|
2011-10-18 13:33:30 +02:00
|
|
|
scope :last_week, where("created_at >= :date", :date => (Date.today - 7.days))
|
2011-10-18 16:44:43 +02:00
|
|
|
scope :since, lambda { |day| where("created_at >= :date", :date => (day)) }
|
2011-10-21 13:03:34 +02:00
|
|
|
scope :fresh, order("created_at DESC")
|
2011-11-15 10:09:07 +01:00
|
|
|
scope :inc_author_project, includes(:project, :author)
|
|
|
|
scope :inc_author, includes(:author)
|
2011-10-18 13:33:30 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
mount_uploader :attachment, AttachmentUploader
|
2011-12-17 14:58:35 +01:00
|
|
|
|
|
|
|
def notify
|
|
|
|
@notify ||= false
|
|
|
|
end
|
2011-12-24 17:28:20 +01:00
|
|
|
|
|
|
|
def notify_author
|
|
|
|
@notify_author ||= false
|
|
|
|
end
|
2012-01-04 21:19:41 +01:00
|
|
|
|
|
|
|
def target
|
|
|
|
if noteable_type == "Commit"
|
|
|
|
project.commit(noteable_id)
|
|
|
|
else
|
|
|
|
noteable
|
|
|
|
end
|
2012-01-20 08:51:48 +01:00
|
|
|
# Temp fix to prevent app crash
|
|
|
|
# if note commit id doesnt exist
|
|
|
|
rescue
|
|
|
|
nil
|
2012-01-04 21:19:41 +01:00
|
|
|
end
|
2012-01-10 21:08:46 +01:00
|
|
|
|
|
|
|
def line_file_id
|
|
|
|
@line_file_id ||= line_code.split("_")[1].to_i if line_code
|
|
|
|
end
|
|
|
|
|
|
|
|
def line_type_id
|
|
|
|
@line_type_id ||= line_code.split("_").first if line_code
|
|
|
|
end
|
|
|
|
|
|
|
|
def line_number
|
|
|
|
@line_number ||= line_code.split("_").last.to_i if line_code
|
|
|
|
end
|
|
|
|
|
|
|
|
def for_line?(file_id, old_line, new_line)
|
|
|
|
line_file_id == file_id &&
|
|
|
|
((line_type_id == "NEW" && line_number == new_line) || (line_type_id == "OLD" && line_number == old_line ))
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2011-11-10 23:08:20 +01:00
|
|
|
# note :text
|
2011-10-08 23:36:38 +02:00
|
|
|
# noteable_id :string(255)
|
|
|
|
# noteable_type :string(255)
|
|
|
|
# author_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# project_id :integer
|
|
|
|
# attachment :string(255)
|
2012-01-21 13:54:32 +01:00
|
|
|
# line_code :string(255)
|
2011-10-08 23:36:38 +02:00
|
|
|
#
|
|
|
|
|