gitlabhq/app/models/note.rb

113 lines
2.5 KiB
Ruby
Raw Normal View History

2011-10-09 00:36:38 +03: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"
delegate :name,
2011-11-15 12:34:30 +04:00
:email,
:to => :author,
:prefix => true
attr_protected :author, :author_id
2011-12-17 15:58:35 +02:00
attr_accessor :notify
attr_accessor :notify_author
2011-10-09 00:36:38 +03:00
validates_presence_of :project
validates :note,
:presence => true,
2011-10-27 17:33:20 +03:00
:length => { :within => 0..5000 }
2011-10-09 00:36:38 +03:00
validates :attachment,
:file_size => {
:maximum => 10.megabytes.to_i
}
2011-10-09 00:36:38 +03:00
scope :common, where(:noteable_id => nil)
2011-11-18 01:52:13 -05:00
scope :today, where("created_at >= :date", :date => Date.today)
2011-10-18 14:33:30 +03:00
scope :last_week, where("created_at >= :date", :date => (Date.today - 7.days))
2011-10-18 17:44:43 +03:00
scope :since, lambda { |day| where("created_at >= :date", :date => (day)) }
2011-10-21 14:03:34 +03:00
scope :fresh, order("created_at DESC")
2011-11-15 04:09:07 -05:00
scope :inc_author_project, includes(:project, :author)
scope :inc_author, includes(:author)
2011-10-18 14:33:30 +03:00
2011-10-09 00:36:38 +03:00
mount_uploader :attachment, AttachmentUploader
2011-12-17 15:58:35 +02:00
def notify
@notify ||= false
end
def notify_author
@notify_author ||= false
end
2012-01-04 22:19:41 +02:00
def target
2012-03-14 15:31:31 +02:00
if noteable_type == "Commit"
2012-01-04 22:19:41 +02:00
project.commit(noteable_id)
2012-03-14 15:31:31 +02:00
else
2012-01-04 22:19:41 +02:00
noteable
end
2012-01-20 09:51:48 +02:00
# Temp fix to prevent app crash
# if note commit id doesnt exist
2012-03-14 15:31:31 +02:00
rescue
2012-01-20 09:51:48 +02:00
nil
2012-01-04 22:19:41 +02:00
end
2012-02-10 10:59:39 +08:00
# Check if we can notify commit author
# with email about our comment
#
2012-03-14 15:31:31 +02:00
# If commit author email exist in project
# and commit author is not passed user we can
2012-02-10 10:59:39 +08:00
# send email to him
#
# params:
# user - current user
2012-03-14 15:31:31 +02:00
#
2012-02-10 10:59:39 +08:00
# return:
# Boolean
#
def notify_only_author?(user)
commit? && commit_author &&
commit_author.email != user.email
end
def commit?
noteable_type == "Commit"
end
def commit_author
2012-03-14 15:31:31 +02:00
@commit_author ||=
project.users.find_by_email(target.author_email) ||
2012-02-10 10:59:39 +08:00
project.users.find_by_name(target.author_name)
2012-03-14 15:31:31 +02:00
rescue
2012-02-10 10:59:39 +08:00
nil
end
2012-03-14 15:31:31 +02:00
# Returns true if this is an upvote note,
# otherwise false is returned
def upvote?
note =~ /^\+1/ ? true : false
end
2011-10-09 00:36:38 +03:00
end
# == Schema Information
#
# Table name: notes
#
# id :integer not null, primary key
2011-11-11 00:08:20 +02:00
# note :text
2011-10-09 00:36:38 +03: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 14:54:32 +02:00
# line_code :string(255)
2011-10-09 00:36:38 +03:00
#