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.

44 lines
1.5 KiB

  1. # frozen_string_literal: true
  2. class Api::V1::NotificationsController < ApiController
  3. before_action -> { doorkeeper_authorize! :read }
  4. before_action :require_user!
  5. respond_to :json
  6. def index
  7. @notifications = Notification.where(account: current_account).paginate_by_max_id(20, params[:max_id], params[:since_id])
  8. @notifications = cache(@notifications)
  9. statuses = @notifications.select { |n| !n.target_status.nil? }.map(&:target_status)
  10. set_maps(statuses)
  11. set_counters_maps(statuses)
  12. set_account_counters_maps(@notifications.map(&:from_account))
  13. next_path = api_v1_notifications_url(max_id: @notifications.last.id) if @notifications.size == 20
  14. prev_path = api_v1_notifications_url(since_id: @notifications.first.id) unless @notifications.empty?
  15. set_pagination_headers(next_path, prev_path)
  16. end
  17. private
  18. def cache(raw)
  19. uncached_ids = []
  20. cached_keys_with_value = Rails.cache.read_multi(*raw.map(&:cache_key))
  21. raw.each do |notification|
  22. uncached_ids << notification.id unless cached_keys_with_value.key?(notification.cache_key)
  23. end
  24. unless uncached_ids.empty?
  25. uncached = Notification.where(id: uncached_ids).with_includes.map { |n| [n.id, n] }.to_h
  26. uncached.values.each do |notification|
  27. Rails.cache.write(notification.cache_key, notification)
  28. end
  29. end
  30. raw.map { |notification| cached_keys_with_value[notification.cache_key] || uncached[notification.id] }
  31. end
  32. end