2017-02-14 19:59:26 +00:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 00:14:47 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: reports
|
|
|
|
#
|
2017-11-17 23:16:48 +00:00
|
|
|
# id :integer not null, primary key
|
2017-05-02 00:14:47 +00:00
|
|
|
# status_ids :integer default([]), not null, is an Array
|
|
|
|
# comment :text default(""), not null
|
|
|
|
# action_taken :boolean default(FALSE), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-11-17 23:16:48 +00:00
|
|
|
# account_id :integer not null
|
|
|
|
# action_taken_by_account_id :integer
|
|
|
|
# target_account_id :integer not null
|
2018-04-02 20:04:14 +00:00
|
|
|
# assigned_account_id :integer
|
2017-05-02 00:14:47 +00:00
|
|
|
#
|
2017-02-14 19:59:26 +00:00
|
|
|
|
|
|
|
class Report < ApplicationRecord
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :target_account, class_name: 'Account'
|
2018-01-19 19:56:47 +00:00
|
|
|
belongs_to :action_taken_by_account, class_name: 'Account', optional: true
|
2018-04-02 20:04:14 +00:00
|
|
|
belongs_to :assigned_account, class_name: 'Account', optional: true
|
|
|
|
|
|
|
|
has_many :notes, class_name: 'ReportNote', foreign_key: :report_id, inverse_of: :report, dependent: :destroy
|
2017-02-14 19:59:26 +00:00
|
|
|
|
|
|
|
scope :unresolved, -> { where(action_taken: false) }
|
|
|
|
scope :resolved, -> { where(action_taken: true) }
|
2017-04-14 09:10:28 +00:00
|
|
|
|
2017-09-07 07:55:42 +00:00
|
|
|
validates :comment, length: { maximum: 1000 }
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
def object_type
|
|
|
|
:flag
|
|
|
|
end
|
|
|
|
|
2017-04-14 09:10:28 +00:00
|
|
|
def statuses
|
2017-06-09 13:07:02 +00:00
|
|
|
Status.where(id: status_ids).includes(:account, :media_attachments, :mentions)
|
2017-04-14 09:10:28 +00:00
|
|
|
end
|
2017-04-23 22:44:37 +00:00
|
|
|
|
|
|
|
def media_attachments
|
2017-04-30 16:15:49 +00:00
|
|
|
MediaAttachment.where(status_id: status_ids)
|
2017-04-23 22:44:37 +00:00
|
|
|
end
|
2017-02-14 19:59:26 +00:00
|
|
|
end
|