The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

97 lines
2.2 KiB

  1. # frozen_string_literal: true
  2. class Api::V1::Accounts::StatusesController < Api::BaseController
  3. before_action -> { doorkeeper_authorize! :read }
  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. default_statuses.tap do |statuses|
  23. statuses.merge!(only_media_scope) if params[:only_media]
  24. statuses.merge!(pinned_scope) if params[:pinned]
  25. statuses.merge!(no_replies_scope) if params[:exclude_replies]
  26. end
  27. end
  28. def default_statuses
  29. permitted_account_statuses.paginate_by_max_id(
  30. limit_param(DEFAULT_STATUSES_LIMIT),
  31. params[:max_id],
  32. params[:since_id]
  33. )
  34. end
  35. def permitted_account_statuses
  36. @account.statuses.permitted_for(@account, current_account)
  37. end
  38. def only_media_scope
  39. Status.where(id: account_media_status_ids)
  40. end
  41. def account_media_status_ids
  42. @account.media_attachments.attached.reorder(nil).select(:status_id).distinct
  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 pagination_params(core_params)
  51. params.permit(:limit, :only_media, :exclude_replies).merge(core_params)
  52. end
  53. def insert_pagination_headers
  54. set_pagination_headers(next_path, prev_path)
  55. end
  56. def next_path
  57. if records_continue?
  58. api_v1_account_statuses_url pagination_params(max_id: pagination_max_id)
  59. end
  60. end
  61. def prev_path
  62. unless @statuses.empty?
  63. api_v1_account_statuses_url pagination_params(since_id: pagination_since_id)
  64. end
  65. end
  66. def records_continue?
  67. @statuses.size == limit_param(DEFAULT_STATUSES_LIMIT)
  68. end
  69. def pagination_max_id
  70. @statuses.last.id
  71. end
  72. def pagination_since_id
  73. @statuses.first.id
  74. end
  75. end