2016-11-15 15:56:29 +00:00
# frozen_string_literal: true
2017-05-02 01:14:47 +01:00
# == Schema Information
#
# Table name: statuses
#
# id :integer not null, primary key
# uri :string
# account_id :integer not null
# text :text default(""), not null
# created_at :datetime not null
# updated_at :datetime not null
# in_reply_to_id :integer
# reblog_of_id :integer
# url :string
# sensitive :boolean default(FALSE)
# visibility :integer default("public"), not null
# in_reply_to_account_id :integer
# application_id :integer
# spoiler_text :text default(""), not null
# reply :boolean default(FALSE)
# favourites_count :integer default(0), not null
# reblogs_count :integer default(0), not null
# language :string default("en"), not null
2017-05-12 18:09:21 +01:00
# conversation_id :integer
2017-05-02 01:14:47 +01:00
#
2016-11-15 15:56:29 +00:00
2016-08-17 16:56:23 +01:00
class Status < ApplicationRecord
2016-03-24 12:21:53 +00:00
include Paginable
2016-03-25 01:13:30 +00:00
include Streamable
2016-11-30 14:57:56 +00:00
include Cacheable
2017-06-05 15:07:44 +01:00
include StatusThreadingConcern
2016-03-24 12:21:53 +00:00
2017-03-15 21:52:57 +00:00
enum visibility : [ :public , :unlisted , :private , :direct ] , _suffix : :visibility
2016-11-30 20:32:11 +00:00
2017-01-14 21:58:50 +00:00
belongs_to :application , class_name : 'Doorkeeper::Application'
2017-04-17 14:54:33 +01:00
belongs_to :account , inverse_of : :statuses , counter_cache : true , required : true
2016-12-31 13:35:08 +00:00
belongs_to :in_reply_to_account , foreign_key : 'in_reply_to_account_id' , class_name : 'Account'
2017-05-12 18:09:21 +01:00
belongs_to :conversation
2016-02-22 15:00:20 +00:00
2016-03-06 11:34:39 +00:00
belongs_to :thread , foreign_key : 'in_reply_to_id' , class_name : 'Status' , inverse_of : :replies
2017-03-30 14:06:59 +01:00
belongs_to :reblog , foreign_key : 'reblog_of_id' , class_name : 'Status' , inverse_of : :reblogs , counter_cache : :reblogs_count
2016-02-23 18:17:37 +00:00
2016-02-24 11:57:29 +00:00
has_many :favourites , inverse_of : :status , dependent : :destroy
2016-03-16 09:46:15 +00:00
has_many :reblogs , foreign_key : 'reblog_of_id' , class_name : 'Status' , inverse_of : :reblog , dependent : :destroy
2016-03-06 11:34:39 +00:00
has_many :replies , foreign_key : 'in_reply_to_id' , class_name : 'Status' , inverse_of : :thread
2016-03-25 01:13:30 +00:00
has_many :mentions , dependent : :destroy
2016-09-05 16:46:36 +01:00
has_many :media_attachments , dependent : :destroy
2016-11-05 14:20:05 +00:00
has_and_belongs_to_many :tags
2016-02-23 18:17:37 +00:00
2016-11-21 13:59:13 +00:00
has_one :notification , as : :activity , dependent : :destroy
2017-01-20 00:00:14 +00:00
has_one :preview_card , dependent : :destroy
2016-11-21 13:59:13 +00:00
2017-05-19 02:11:23 +01:00
validates :uri , uniqueness : true , unless : :local?
validates :text , presence : true , unless : :reblog?
2017-01-13 04:54:26 +00:00
validates_with StatusLengthValidator
2017-05-19 02:11:23 +01:00
validates :reblog , uniqueness : { scope : :account } , if : :reblog?
2016-02-23 18:17:37 +00:00
2017-05-23 01:53:01 +01:00
default_scope { recent }
2016-10-09 14:15:21 +01:00
2017-05-23 01:53:01 +01:00
scope :recent , - > { reorder ( id : :desc ) }
2016-12-02 13:14:49 +00:00
scope :remote , - > { where . not ( uri : nil ) }
scope :local , - > { where ( uri : nil ) }
2016-11-30 14:57:56 +00:00
2017-03-05 16:27:17 +00:00
scope :without_replies , - > { where ( 'statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id' ) }
scope :without_reblogs , - > { where ( 'statuses.reblog_of_id IS NULL' ) }
2017-04-28 14:10:41 +01:00
scope :with_public_visibility , - > { where ( visibility : :public ) }
scope :tagged_with , - > ( tag ) { joins ( :statuses_tags ) . where ( statuses_tags : { tag_id : tag } ) }
scope :local_only , - > { left_outer_joins ( :account ) . where ( accounts : { domain : nil } ) }
scope :excluding_silenced_accounts , - > { left_outer_joins ( :account ) . where ( accounts : { silenced : false } ) }
scope :including_silenced_accounts , - > { left_outer_joins ( :account ) . where ( accounts : { silenced : true } ) }
2017-05-19 20:05:32 +01:00
scope :not_excluded_by_account , - > ( account ) { where . not ( account_id : account . excluded_from_timeline_account_ids ) }
2017-05-20 12:38:13 +01:00
scope :not_domain_blocked_by_account , - > ( account ) { account . excluded_from_timeline_domains . blank? ? left_outer_joins ( :account ) : left_outer_joins ( :account ) . where ( 'accounts.domain IS NULL OR accounts.domain NOT IN (?)' , account . excluded_from_timeline_domains ) }
2017-03-05 16:27:17 +00:00
2017-01-15 13:01:33 +00:00
cache_associated :account , :application , :media_attachments , :tags , :stream_entry , mentions : :account , reblog : [ :account , :application , :stream_entry , :tags , :media_attachments , mentions : :account ] , thread : :account
2016-03-11 15:47:36 +00:00
2017-05-31 19:38:17 +01:00
delegate :domain , to : :account , prefix : true
2017-02-09 19:25:39 +00:00
def reply?
2017-05-15 20:20:55 +01:00
! in_reply_to_id . nil? || attributes [ 'reply' ]
2017-02-09 19:25:39 +00:00
end
2016-02-23 18:17:37 +00:00
def local?
2016-09-29 20:28:21 +01:00
uri . nil?
2016-02-23 18:17:37 +00:00
end
def reblog?
2016-09-29 20:28:21 +01:00
! reblog_of_id . nil?
2016-02-23 18:17:37 +00:00
end
2016-02-22 17:10:30 +00:00
def verb
2016-02-23 18:17:37 +00:00
reblog? ? :share : :post
2016-02-22 17:10:30 +00:00
end
def object_type
2016-02-23 18:17:37 +00:00
reply? ? :comment : :note
2016-02-22 17:10:30 +00:00
end
2017-04-07 19:18:30 +01:00
def proper
reblog? ? reblog : self
end
2016-02-22 17:10:30 +00:00
def content
2017-04-07 19:18:30 +01:00
proper . text
2016-02-23 18:17:37 +00:00
end
def target
2016-09-29 20:28:21 +01:00
reblog
2016-02-22 17:10:30 +00:00
end
def title
2017-04-09 19:55:54 +01:00
reblog? ? " #{ account . acct } shared a status by #{ reblog . account . acct } " : " New status by #{ account . acct } "
2016-02-22 17:10:30 +00:00
end
2016-12-21 19:00:18 +00:00
def hidden?
2017-03-15 21:52:57 +00:00
private_visibility? || direct_visibility?
2016-03-12 15:09:46 +00:00
end
2017-04-16 15:38:02 +01:00
def non_sensitive_with_media?
! sensitive? && media_attachments . any?
end
2017-05-12 18:09:21 +01:00
before_validation :prepare_contents
2017-05-15 20:20:55 +01:00
before_validation :set_reblog
before_validation :set_visibility
before_validation :set_conversation
2017-05-12 18:09:21 +01:00
2016-11-05 14:20:05 +00:00
class << self
2017-05-20 16:32:44 +01:00
def not_in_filtered_languages ( account )
where . not ( language : account . filtered_languages )
2017-05-01 16:42:13 +01:00
end
2016-11-05 14:20:05 +00:00
def as_home_timeline ( account )
2017-03-02 17:49:32 +00:00
where ( account : [ account ] + account . following )
2016-11-05 14:20:05 +00:00
end
2017-02-06 22:16:20 +00:00
def as_public_timeline ( account = nil , local_only = false )
2017-04-28 14:10:41 +01:00
query = timeline_scope ( local_only ) . without_replies
2016-12-05 21:59:30 +00:00
2017-05-19 20:05:32 +01:00
apply_timeline_filters ( query , account , local_only )
2016-11-05 14:20:05 +00:00
end
2017-02-06 22:16:20 +00:00
def as_tag_timeline ( tag , account = nil , local_only = false )
2017-04-28 14:10:41 +01:00
query = timeline_scope ( local_only ) . tagged_with ( tag )
2017-02-06 22:16:20 +00:00
2017-05-19 20:05:32 +01:00
apply_timeline_filters ( query , account , local_only )
2016-11-05 14:20:05 +00:00
end
2017-04-23 04:21:10 +01:00
def as_outbox_timeline ( account )
where ( account : account , visibility : :public )
end
2016-11-05 14:20:05 +00:00
def favourites_map ( status_ids , account_id )
Favourite . select ( 'status_id' ) . where ( status_id : status_ids ) . where ( account_id : account_id ) . map { | f | [ f . status_id , true ] } . to_h
end
def reblogs_map ( status_ids , account_id )
select ( 'reblog_of_id' ) . where ( reblog_of_id : status_ids ) . where ( account_id : account_id ) . map { | s | [ s . reblog_of_id , true ] } . to_h
end
2016-11-09 23:03:33 +00:00
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-15 02:04:13 +01:00
def mutes_map ( conversation_ids , account_id )
ConversationMute . select ( 'conversation_id' ) . where ( conversation_id : conversation_ids ) . where ( account_id : account_id ) . map { | m | [ m . conversation_id , true ] } . to_h
end
2016-12-03 17:21:26 +00:00
def reload_stale_associations! ( cached_items )
account_ids = [ ]
cached_items . each do | item |
account_ids << item . account_id
account_ids << item . reblog . account_id if item . reblog?
end
accounts = Account . where ( id : account_ids . uniq ) . map { | a | [ a . id , a ] } . to_h
cached_items . each do | item |
item . account = accounts [ item . account_id ]
item . reblog . account = accounts [ item . reblog . account_id ] if item . reblog?
end
end
2016-12-26 18:13:56 +00:00
def permitted_for ( target_account , account )
2017-05-16 01:54:17 +01:00
visibility = [ :public , :unlisted ]
2017-03-15 21:52:57 +00:00
2017-05-16 01:54:17 +01:00
if account . nil?
where ( visibility : visibility )
elsif target_account . blocking? ( account ) # get rid of blocked peeps
2017-04-05 07:02:58 +01:00
none
2017-03-15 21:52:57 +00:00
elsif account . id == target_account . id # author can see own stuff
2017-04-05 07:02:58 +01:00
all
2017-05-16 01:54:17 +01:00
else
# followers can see followers-only stuff, but also things they are mentioned in.
# non-followers can see everything that isn't private/direct, but can see stuff they are mentioned in.
visibility . push ( :private ) if account . following? ( target_account )
joins ( " LEFT OUTER JOIN mentions ON statuses.id = mentions.status_id AND mentions.account_id = #{ account . id } " )
. where ( arel_table [ :visibility ] . in ( visibility ) . or ( Mention . arel_table [ :id ] . not_eq ( nil ) ) )
. order ( visibility : :desc )
2016-12-26 18:13:56 +00:00
end
end
2016-11-09 23:03:33 +00:00
private
2017-04-28 14:10:41 +01:00
def timeline_scope ( local_only = false )
starting_scope = local_only ? Status . local_only : Status
starting_scope
. with_public_visibility
. without_reblogs
end
2017-05-19 20:05:32 +01:00
def apply_timeline_filters ( query , account , local_only )
2017-04-28 14:10:41 +01:00
if account . nil?
filter_timeline_default ( query )
else
2017-05-19 20:05:32 +01:00
filter_timeline_for_account ( query , account , local_only )
2017-04-28 14:10:41 +01:00
end
end
2017-05-19 20:05:32 +01:00
def filter_timeline_for_account ( query , account , local_only )
2017-04-28 14:10:41 +01:00
query = query . not_excluded_by_account ( account )
2017-05-19 20:05:32 +01:00
query = query . not_domain_blocked_by_account ( account ) unless local_only
2017-05-20 16:32:44 +01:00
query = query . not_in_filtered_languages ( account ) if account . filtered_languages . present?
2017-04-28 14:10:41 +01:00
query . merge ( account_silencing_filter ( account ) )
2016-12-05 21:59:30 +00:00
end
def filter_timeline_default ( query )
2017-04-28 14:10:41 +01:00
query . excluding_silenced_accounts
end
def account_silencing_filter ( account )
if account . silenced?
including_silenced_accounts
else
excluding_silenced_accounts
end
2016-11-09 23:03:33 +00:00
end
2016-09-08 20:23:29 +01:00
end
2016-09-22 20:39:53 +01:00
2017-05-12 18:09:21 +01:00
private
def prepare_contents
2017-04-04 00:33:34 +01:00
text & . strip!
2017-01-24 23:49:08 +00:00
spoiler_text & . strip!
2017-05-12 18:09:21 +01:00
end
2016-12-31 13:35:08 +00:00
2017-05-12 18:09:21 +01:00
def set_reblog
self . reblog = reblog . reblog if reblog? && reblog . reblog?
2016-12-21 19:00:18 +00:00
end
2017-05-12 18:09:21 +01:00
def set_visibility
self . visibility = ( account . locked? ? :private : :public ) if visibility . nil?
end
def set_conversation
self . reply = ! ( in_reply_to_id . nil? && thread . nil? ) unless reply
if reply? && ! thread . nil?
self . in_reply_to_account_id = carried_over_reply_to_account_id
self . conversation_id = thread . conversation_id if conversation_id . nil?
elsif conversation_id . nil?
create_conversation
end
end
def carried_over_reply_to_account_id
if thread . account_id == account_id && thread . reply?
thread . in_reply_to_account_id
else
thread . account_id
end
end
2016-02-20 21:53:20 +00:00
end