mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 05:36:28 +01:00
24cafd73a2
* Add structure for lists * Add list timeline streaming API * Add list APIs, bind list-account relation to follow relation * Add API for adding/removing accounts from lists * Add pagination to lists API * Add pagination to list accounts API * Adjust scopes for new APIs - Creating and modifying lists merely requires "write" scope - Fetching information about lists merely requires "read" scope * Add test for wrong user context on list timeline * Clean up tests
59 lines
1.6 KiB
Ruby
59 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
# == Schema Information
|
|
#
|
|
# Table name: stream_entries
|
|
#
|
|
# id :integer not null, primary key
|
|
# activity_id :integer
|
|
# activity_type :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# hidden :boolean default(FALSE), not null
|
|
# account_id :integer
|
|
#
|
|
|
|
class StreamEntry < ApplicationRecord
|
|
include Paginable
|
|
|
|
belongs_to :account, inverse_of: :stream_entries
|
|
belongs_to :activity, polymorphic: true
|
|
belongs_to :status, foreign_type: 'Status', foreign_key: 'activity_id', inverse_of: :stream_entry
|
|
|
|
validates :account, :activity, presence: true
|
|
|
|
STATUS_INCLUDES = [:account, :stream_entry, :conversation, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :conversation, :media_attachments, :tags, mentions: :account], thread: [:stream_entry, :account]].freeze
|
|
|
|
default_scope { where(activity_type: 'Status') }
|
|
scope :recent, -> { reorder(id: :desc) }
|
|
scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES) }
|
|
|
|
delegate :target, :title, :content, :thread,
|
|
to: :status,
|
|
allow_nil: true
|
|
|
|
def object_type
|
|
orphaned? || targeted? ? :activity : status.object_type
|
|
end
|
|
|
|
def verb
|
|
orphaned? ? :delete : status.verb
|
|
end
|
|
|
|
def targeted?
|
|
[:follow, :request_friend, :authorize, :reject, :unfollow, :block, :unblock, :share, :favorite].include? verb
|
|
end
|
|
|
|
def threaded?
|
|
(verb == :favorite || object_type == :comment) && !thread.nil?
|
|
end
|
|
|
|
def mentions
|
|
orphaned? ? [] : status.mentions.map(&:account)
|
|
end
|
|
|
|
private
|
|
|
|
def orphaned?
|
|
status.nil?
|
|
end
|
|
end
|