2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::NotificationsController < Api::V1::Accounts::BaseController
|
2020-05-01 09:23:43 +00:00
|
|
|
protect_from_forgery with: :null_session
|
|
|
|
|
|
|
|
before_action :fetch_notification, only: [:update]
|
2020-06-15 08:06:56 +00:00
|
|
|
before_action :set_primary_actor, only: [:read_all]
|
2020-05-01 09:23:43 +00:00
|
|
|
|
|
|
|
def index
|
2020-06-09 12:12:18 +00:00
|
|
|
@unread_count = current_user.notifications.where(account_id: current_account.id, read_at: nil).count
|
|
|
|
@notifications = current_user.notifications.where(account_id: current_account.id).page params[:page]
|
|
|
|
end
|
|
|
|
|
|
|
|
def read_all
|
2020-06-15 08:06:56 +00:00
|
|
|
if @primary_actor
|
|
|
|
current_user.notifications.where(account_id: current_account.id, primary_actor: @primary_actor, read_at: nil)
|
|
|
|
.update(read_at: DateTime.now.utc)
|
|
|
|
else
|
|
|
|
current_user.notifications.where(account_id: current_account.id, read_at: nil).update(read_at: DateTime.now.utc)
|
|
|
|
end
|
|
|
|
|
2020-06-09 12:12:18 +00:00
|
|
|
head :ok
|
2020-05-01 09:23:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@notification.update(read_at: DateTime.now.utc)
|
|
|
|
render json: @notification
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-06-15 08:06:56 +00:00
|
|
|
def set_primary_actor
|
|
|
|
return unless params[:primary_actor_type]
|
|
|
|
return unless Notification::PRIMARY_ACTORS.include?(params[:primary_actor_type])
|
|
|
|
|
|
|
|
@primary_actor = params[:primary_actor_type].safe_constantize.find_by(id: params[:primary_actor_id])
|
|
|
|
end
|
|
|
|
|
2020-05-01 09:23:43 +00:00
|
|
|
def fetch_notification
|
|
|
|
@notification = current_user.notifications.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|