2011-10-08 17:36:38 -04:00
|
|
|
require 'carrierwave/orm/activerecord'
|
|
|
|
require 'file_size_validator'
|
|
|
|
|
|
|
|
class Note < ActiveRecord::Base
|
2012-09-27 02:20:36 -04:00
|
|
|
mount_uploader :attachment, AttachmentUploader
|
2012-09-26 14:17:17 -04:00
|
|
|
attr_accessible :note, :noteable, :noteable_id, :noteable_type, :project_id,
|
|
|
|
:attachment, :line_code
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
belongs_to :project
|
2012-08-10 18:07:50 -04:00
|
|
|
belongs_to :noteable, polymorphic: true
|
2012-09-27 02:20:36 -04:00
|
|
|
belongs_to :author, class_name: "User"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-09-27 02:20:36 -04:00
|
|
|
delegate :name, to: :project, prefix: true
|
|
|
|
delegate :name, :email, to: :author, prefix: true
|
2011-11-03 06:56:26 -04:00
|
|
|
|
2011-12-17 08:58:35 -05:00
|
|
|
attr_accessor :notify
|
2011-12-24 11:28:20 -05:00
|
|
|
attr_accessor :notify_author
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
validates_presence_of :project
|
|
|
|
|
2012-09-27 02:20:36 -04:00
|
|
|
validates :note, presence: true, length: { within: 0..5000 }
|
|
|
|
validates :attachment, file_size: { maximum: 10.megabytes.to_i }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
scope :common, where(noteable_id: nil)
|
|
|
|
scope :today, where("created_at >= :date", date: Date.today)
|
|
|
|
scope :last_week, where("created_at >= :date", date: (Date.today - 7.days))
|
|
|
|
scope :since, lambda { |day| where("created_at >= :date", date: (day)) }
|
2012-09-14 11:01:34 -04:00
|
|
|
scope :fresh, order("created_at ASC, id ASC")
|
2011-11-15 04:09:07 -05:00
|
|
|
scope :inc_author_project, includes(:project, :author)
|
|
|
|
scope :inc_author, includes(:author)
|
2011-10-18 07:33:30 -04:00
|
|
|
|
2012-05-20 14:35:03 -04:00
|
|
|
def self.create_status_change_note(noteable, author, status)
|
2012-09-27 02:20:36 -04:00
|
|
|
create({
|
|
|
|
noteable: noteable,
|
|
|
|
project: noteable.project,
|
|
|
|
author: author,
|
|
|
|
note: "_Status changed to #{status}_"
|
|
|
|
}, without_protection: true)
|
2012-05-20 14:35:03 -04:00
|
|
|
end
|
|
|
|
|
2011-12-17 08:58:35 -05:00
|
|
|
def notify
|
|
|
|
@notify ||= false
|
|
|
|
end
|
2011-12-24 11:28:20 -05:00
|
|
|
|
|
|
|
def notify_author
|
|
|
|
@notify_author ||= false
|
|
|
|
end
|
2012-01-04 15:19:41 -05:00
|
|
|
|
|
|
|
def target
|
2012-03-14 09:31:31 -04:00
|
|
|
if noteable_type == "Commit"
|
2012-01-04 15:19:41 -05:00
|
|
|
project.commit(noteable_id)
|
2012-03-14 09:31:31 -04:00
|
|
|
else
|
2012-01-04 15:19:41 -05:00
|
|
|
noteable
|
|
|
|
end
|
2012-01-20 02:51:48 -05:00
|
|
|
# Temp fix to prevent app crash
|
|
|
|
# if note commit id doesnt exist
|
2012-03-14 09:31:31 -04:00
|
|
|
rescue
|
2012-01-20 02:51:48 -05:00
|
|
|
nil
|
2012-01-04 15:19:41 -05:00
|
|
|
end
|
2012-02-09 21:59:39 -05:00
|
|
|
|
|
|
|
# Check if we can notify commit author
|
|
|
|
# with email about our comment
|
|
|
|
#
|
2012-03-14 09:31:31 -04:00
|
|
|
# If commit author email exist in project
|
|
|
|
# and commit author is not passed user we can
|
2012-02-09 21:59:39 -05:00
|
|
|
# send email to him
|
|
|
|
#
|
|
|
|
# params:
|
|
|
|
# user - current user
|
2012-03-14 09:31:31 -04:00
|
|
|
#
|
2012-02-09 21:59:39 -05: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 09:31:31 -04:00
|
|
|
@commit_author ||=
|
|
|
|
project.users.find_by_email(target.author_email) ||
|
2012-02-09 21:59:39 -05:00
|
|
|
project.users.find_by_name(target.author_name)
|
2012-03-14 09:31:31 -04:00
|
|
|
rescue
|
2012-02-09 21:59:39 -05:00
|
|
|
nil
|
|
|
|
end
|
2012-03-14 09:31:31 -04:00
|
|
|
|
|
|
|
# Returns true if this is an upvote note,
|
|
|
|
# otherwise false is returned
|
|
|
|
def upvote?
|
2012-09-06 15:31:25 -04:00
|
|
|
note.start_with?('+1') || note.start_with?(':+1:')
|
2012-03-14 09:31:31 -04:00
|
|
|
end
|
2012-09-07 20:08:35 -04:00
|
|
|
|
|
|
|
# Returns true if this is a downvote note,
|
|
|
|
# otherwise false is returned
|
|
|
|
def downvote?
|
|
|
|
note.start_with?('-1') || note.start_with?(':-1:')
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-09-27 02:20:36 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
2012-09-27 01:36:31 -04:00
|
|
|
# id :integer not null, primary key
|
2011-11-10 17:08:20 -05:00
|
|
|
# note :text
|
2011-10-08 17:36:38 -04:00
|
|
|
# noteable_id :string(255)
|
|
|
|
# noteable_type :string(255)
|
2012-09-27 01:36:31 -04:00
|
|
|
# author_id :integer
|
2012-06-26 14:23:09 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-09-27 01:36:31 -04:00
|
|
|
# project_id :integer
|
2011-10-08 17:36:38 -04:00
|
|
|
# attachment :string(255)
|
2012-01-21 07:54:32 -05:00
|
|
|
# line_code :string(255)
|
2011-10-08 17:36:38 -04:00
|
|
|
#
|