gitlabhq/app/models/note.rb

174 lines
4.0 KiB
Ruby
Raw Normal View History

2012-11-19 19:24:05 +01:00
# == Schema Information
#
# Table name: notes
#
# id :integer not null, primary key
# note :text
# noteable_type :string(255)
# author_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# project_id :integer
# attachment :string(255)
# line_code :string(255)
2013-01-03 20:09:18 +01:00
# commit_id :string(255)
# noteable_id :integer
2012-11-19 19:24:05 +01:00
#
2011-10-08 23:36:38 +02:00
require 'carrierwave/orm/activerecord'
require 'file_size_validator'
class Note < ActiveRecord::Base
attr_accessible :note, :noteable, :noteable_id, :noteable_type, :project_id,
:attachment, :line_code, :commit_id
2012-10-09 02:10:04 +02:00
attr_accessor :notify
attr_accessor :notify_author
2011-10-08 23:36:38 +02:00
belongs_to :project
belongs_to :noteable, polymorphic: true
2012-09-27 08:20:36 +02:00
belongs_to :author, class_name: "User"
2011-10-08 23:36:38 +02:00
2012-09-27 08:20:36 +02:00
delegate :name, to: :project, prefix: true
delegate :name, :email, to: :author, prefix: true
2012-12-01 12:19:16 +01:00
validates :note, :project, presence: true
2013-01-15 10:12:17 +01:00
validates :line_code, format: { with: /\A[a-z0-9]+_\d+_\d+\Z/ }, allow_blank: true
2012-09-27 08:20:36 +02:00
validates :attachment, file_size: { maximum: 10.megabytes.to_i }
2011-10-08 23:36:38 +02:00
validates :noteable_id, presence: true, if: ->(n) { n.noteable_type.present? && n.noteable_type != 'Commit' }
validates :commit_id, presence: true, if: ->(n) { n.noteable_type == 'Commit' }
2012-12-01 12:19:16 +01:00
mount_uploader :attachment, AttachmentUploader
2012-10-09 02:10:04 +02:00
# Scopes
2013-01-05 12:11:15 +01:00
scope :for_commit_id, ->(commit_id) { where(noteable_type: "Commit", commit_id: commit_id) }
2013-02-12 08:16:45 +01:00
scope :inline, -> { where("line_code IS NOT NULL") }
scope :not_inline, -> { where("line_code IS NULL") }
2013-01-05 12:11:15 +01:00
2013-01-03 20:09:18 +01:00
scope :common, ->{ where(noteable_type: ["", nil]) }
scope :fresh, ->{ order("created_at ASC, id ASC") }
scope :inc_author_project, ->{ includes(:project, :author) }
scope :inc_author, ->{ includes(:author) }
2011-10-18 13:33:30 +02:00
def self.create_status_change_note(noteable, author, status)
2012-09-27 08:20:36 +02:00
create({
noteable: noteable,
project: noteable.project,
author: author,
note: "_Status changed to #{status}_"
}, without_protection: true)
end
2012-10-29 15:49:37 +01:00
def commit_author
@commit_author ||=
project.users.find_by_email(noteable.author_email) ||
project.users.find_by_name(noteable.author_name)
rescue
nil
2011-12-17 14:58:35 +01:00
end
2012-10-29 15:49:37 +01:00
def diff
2013-01-15 10:12:17 +01:00
if noteable.diffs.present?
noteable.diffs.select do |d|
if d.b_path
Digest::SHA1.hexdigest(d.b_path) == diff_file_index
end
end.first
end
2012-10-29 15:49:37 +01:00
end
def diff_file_index
2013-01-15 10:12:17 +01:00
line_code.split('_')[0]
2012-10-29 15:49:37 +01:00
end
def diff_file_name
diff.b_path
end
def diff_new_line
line_code.split('_')[2].to_i
end
def discussion_id
2013-01-15 10:12:17 +01:00
@discussion_id ||= [:discussion, noteable_type.try(:underscore), noteable_id, line_code].join("-").to_sym
2012-10-29 15:49:37 +01:00
end
# Returns true if this is a downvote note,
# otherwise false is returned
def downvote?
2012-10-30 03:27:36 +01:00
votable? && (note.start_with?('-1') ||
note.start_with?(':-1:')
)
2012-10-29 15:49:37 +01:00
end
def for_commit?
noteable_type == "Commit"
end
def for_commit_diff_line?
for_commit? && for_diff_line?
end
def for_diff_line?
line_code.present?
end
2012-10-30 03:27:36 +01:00
def for_issue?
noteable_type == "Issue"
end
2012-10-29 15:49:37 +01:00
def for_merge_request?
noteable_type == "MergeRequest"
end
def for_merge_request_diff_line?
for_merge_request? && for_diff_line?
end
2012-01-04 21:19:41 +01:00
2012-11-22 02:57:22 +01:00
def for_wall?
noteable_type.blank?
end
2012-10-13 16:23:12 +02:00
# override to return commits, which are not active record
def noteable
if for_commit?
project.repository.commit(commit_id)
2012-03-14 14:31:31 +01:00
else
2012-10-13 16:23:12 +02:00
super
2012-01-04 21:19:41 +01:00
end
2012-01-20 08:51:48 +01:00
# Temp fix to prevent app crash
# if note commit id doesn't 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
2012-10-29 15:49:37 +01:00
def notify
@notify ||= false
end
def notify_author
@notify_author ||= false
end
2012-03-14 14:31:31 +01:00
# Returns true if this is an upvote note,
# otherwise false is returned
def upvote?
2012-10-30 03:27:36 +01:00
votable? && (note.start_with?('+1') ||
note.start_with?(':+1:')
)
end
def votable?
for_issue? || (for_merge_request? && !for_diff_line?)
2012-03-14 14:31:31 +01:00
end
def noteable_type_name
if noteable_type.present?
noteable_type.downcase
else
"wall"
end
end
2011-10-08 23:36:38 +02:00
end