Skip to content

Commit

Permalink
Remove deprecated REST API GET /api/v1/timelines/direct (mastodon#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron committed Jul 5, 2019
1 parent ba85c43 commit 8258f06
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 172 deletions.
63 changes: 0 additions & 63 deletions app/controllers/api/v1/timelines/direct_controller.rb

This file was deleted.

41 changes: 0 additions & 41 deletions app/models/status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -280,47 +280,6 @@ def as_home_timeline(account)
where(account: [account] + account.following).where(visibility: [:public, :unlisted, :private])
end

def as_direct_timeline(account, limit = 20, max_id = nil, since_id = nil, cache_ids = false)
# direct timeline is mix of direct message from_me and to_me.
# 2 queries are executed with pagination.
# constant expression using arel_table is required for partial index

# _from_me part does not require any timeline filters
query_from_me = where(account_id: account.id)
.where(Status.arel_table[:visibility].eq(3))
.limit(limit)
.order('statuses.id DESC')

# _to_me part requires mute and block filter.
# FIXME: may we check mutes.hide_notifications?
query_to_me = Status
.joins(:mentions)
.merge(Mention.where(account_id: account.id))
.where(Status.arel_table[:visibility].eq(3))
.limit(limit)
.order('mentions.status_id DESC')
.not_excluded_by_account(account)

if max_id.present?
query_from_me = query_from_me.where('statuses.id < ?', max_id)
query_to_me = query_to_me.where('mentions.status_id < ?', max_id)
end

if since_id.present?
query_from_me = query_from_me.where('statuses.id > ?', since_id)
query_to_me = query_to_me.where('mentions.status_id > ?', since_id)
end

if cache_ids
# returns array of cache_ids object that have id and updated_at
(query_from_me.cache_ids.to_a + query_to_me.cache_ids.to_a).uniq(&:id).sort_by(&:id).reverse.take(limit)
else
# returns ActiveRecord.Relation
items = (query_from_me.select(:id).to_a + query_to_me.select(:id).to_a).uniq(&:id).sort_by(&:id).reverse.take(limit)
Status.where(id: items.map(&:id))
end
end

def as_public_timeline(account = nil, local_only = false)
query = timeline_scope(local_only).without_replies

Expand Down
1 change: 0 additions & 1 deletion config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@
end

namespace :timelines do
resource :direct, only: :show, controller: :direct
resource :home, only: :show, controller: :home
resource :public, only: :show, controller: :public
resources :tag, only: :show
Expand Down
17 changes: 0 additions & 17 deletions spec/controllers/api/v1/timelines/direct_controller_spec.rb

This file was deleted.

50 changes: 0 additions & 50 deletions spec/models/status_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -339,56 +339,6 @@
end
end

describe '.as_direct_timeline' do
let(:account) { Fabricate(:account) }
let(:followed) { Fabricate(:account) }
let(:not_followed) { Fabricate(:account) }

before do
Fabricate(:follow, account: account, target_account: followed)

@self_public_status = Fabricate(:status, account: account, visibility: :public)
@self_direct_status = Fabricate(:status, account: account, visibility: :direct)
@followed_public_status = Fabricate(:status, account: followed, visibility: :public)
@followed_direct_status = Fabricate(:status, account: followed, visibility: :direct)
@not_followed_direct_status = Fabricate(:status, account: not_followed, visibility: :direct)

@results = Status.as_direct_timeline(account)
end

it 'does not include public statuses from self' do
expect(@results).to_not include(@self_public_status)
end

it 'includes direct statuses from self' do
expect(@results).to include(@self_direct_status)
end

it 'does not include public statuses from followed' do
expect(@results).to_not include(@followed_public_status)
end

it 'does not include direct statuses not mentioning recipient from followed' do
expect(@results).to_not include(@followed_direct_status)
end

it 'does not include direct statuses not mentioning recipient from non-followed' do
expect(@results).to_not include(@not_followed_direct_status)
end

it 'includes direct statuses mentioning recipient from followed' do
Fabricate(:mention, account: account, status: @followed_direct_status)
results2 = Status.as_direct_timeline(account)
expect(results2).to include(@followed_direct_status)
end

it 'includes direct statuses mentioning recipient from non-followed' do
Fabricate(:mention, account: account, status: @not_followed_direct_status)
results2 = Status.as_direct_timeline(account)
expect(results2).to include(@not_followed_direct_status)
end
end

describe '.as_public_timeline' do
it 'only includes statuses with public visibility' do
public_status = Fabricate(:status, visibility: :public)
Expand Down

0 comments on commit 8258f06

Please sign in to comment.