You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.8 KiB

  1. # frozen_string_literal: true
  2. class Api::V1::Accounts::StatusesController < Api::BaseController
  3. before_action -> { authorize_if_got_token! :read, :'read:statuses' }
  4. before_action :set_account
  5. after_action :insert_pagination_headers
  6. respond_to :json
  7. def index
  8. @statuses = load_statuses
  9. render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
  10. end
  11. private
  12. def set_account
  13. @account = Account.find(params[:account_id])
  14. end
  15. def load_statuses
  16. cached_account_statuses
  17. end
  18. def cached_account_statuses
  19. cache_collection account_statuses, Status
  20. end
  21. def account_statuses
  22. statuses = truthy_param?(:pinned) ? pinned_scope : permitted_account_statuses
  23. statuses = statuses.paginate_by_id(limit_param(DEFAULT_STATUSES_LIMIT), params_slice(:max_id, :since_id, :min_id))
  24. statuses.merge!(only_media_scope) if truthy_param?(:only_media)
  25. statuses.merge!(no_replies_scope) if truthy_param?(:exclude_replies)
  26. statuses.merge!(no_reblogs_scope) if truthy_param?(:exclude_reblogs)
  27. statuses
  28. end
  29. def permitted_account_statuses
  30. @account.statuses.permitted_for(@account, current_account)
  31. end
  32. def only_media_scope
  33. Status.where(id: account_media_status_ids)
  34. end
  35. def account_media_status_ids
  36. # `SELECT DISTINCT id, updated_at` is too slow, so pluck ids at first, and then select id, updated_at with ids.
  37. # Also, Avoid getting slow by not narrowing down by `statuses.account_id`.
  38. # When narrowing down by `statuses.account_id`, `index_statuses_20180106` will be used
  39. # and the table will be joined by `Merge Semi Join`, so the query will be slow.
  40. Status.joins(:media_attachments).merge(@account.media_attachments).permitted_for(@account, current_account)
  41. .paginate_by_max_id(limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id])
  42. .reorder(id: :desc).distinct(:id).pluck(:id)
  43. end
  44. def pinned_scope
  45. @account.pinned_statuses
  46. end
  47. def no_replies_scope
  48. Status.without_replies
  49. end
  50. def no_reblogs_scope
  51. Status.without_reblogs
  52. end
  53. def pagination_params(core_params)
  54. params.slice(:limit, :only_media, :exclude_replies).permit(:limit, :only_media, :exclude_replies).merge(core_params)
  55. end
  56. def insert_pagination_headers
  57. set_pagination_headers(next_path, prev_path)
  58. end
  59. def next_path
  60. if records_continue?
  61. api_v1_account_statuses_url pagination_params(max_id: pagination_max_id)
  62. end
  63. end
  64. def prev_path
  65. unless @statuses.empty?
  66. api_v1_account_statuses_url pagination_params(min_id: pagination_since_id)
  67. end
  68. end
  69. def records_continue?
  70. @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
  71. end
  72. def pagination_max_id
  73. @statuses.last.id
  74. end
  75. def pagination_since_id
  76. @statuses.first.id
  77. end
  78. end