gitlabhq/app/models/note.rb

125 lines
2.8 KiB
Ruby
Raw Normal View History

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"
delegate :name,
:to => :project,
:prefix => true
delegate :name,
2011-11-15 09:34:30 +01:00
:email,
:to => :author,
:prefix => true
attr_protected :author, :author_id
2011-12-17 14:58:35 +01:00
attr_accessor :notify
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
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 self.create_status_change_note(noteable, author, status)
create({ :noteable => noteable,
:project => noteable.project,
:author => author,
:note => "_Status changed to #{status}_" },
:without_protection => true)
end
2011-12-17 14:58:35 +01:00
def notify
@notify ||= false
end
def notify_author
@notify_author ||= false
end
2012-01-04 21:19:41 +01:00
def target
2012-03-14 14:31:31 +01:00
if noteable_type == "Commit"
2012-01-04 21:19:41 +01:00
project.commit(noteable_id)
2012-03-14 14:31:31 +01:00
else
2012-01-04 21:19:41 +01:00
noteable
end
2012-01-20 08:51:48 +01:00
# Temp fix to prevent app crash
# if note commit id doesnt exist
2012-03-14 14:31:31 +01:00
rescue
2012-01-20 08:51:48 +01:00
nil
2012-01-04 21:19:41 +01:00
end
2012-02-10 03:59:39 +01:00
# Check if we can notify commit author
# with email about our comment
#
2012-03-14 14:31:31 +01:00
# If commit author email exist in project
# and commit author is not passed user we can
2012-02-10 03:59:39 +01:00
# send email to him
#
# params:
# user - current user
2012-03-14 14:31:31 +01:00
#
2012-02-10 03:59:39 +01: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 14:31:31 +01:00
@commit_author ||=
project.users.find_by_email(target.author_email) ||
2012-02-10 03:59:39 +01:00
project.users.find_by_name(target.author_name)
2012-03-14 14:31:31 +01:00
rescue
2012-02-10 03:59:39 +01:00
nil
end
2012-03-14 14:31:31 +01:00
# Returns true if this is an upvote note,
# otherwise false is returned
def upvote?
note =~ /^\+1/ ? true : false
end
2011-10-08 23:36:38 +02:00
end
# == Schema Information
#
# Table name: notes
#
2012-06-26 20:23:09 +02:00
# id :integer(4) 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)
2012-06-26 20:23:09 +02:00
# author_id :integer(4)
# created_at :datetime not null
# updated_at :datetime not null
# project_id :integer(4)
2011-10-08 23:36:38 +02:00
# attachment :string(255)
2012-01-21 13:54:32 +01:00
# line_code :string(255)
2011-10-08 23:36:38 +02:00
#