mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
114 lines
3.8 KiB
Ruby
114 lines
3.8 KiB
Ruby
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
module API
|
|
module V3
|
|
module Notifications
|
|
class NotificationsAPI < ::API::OpenProjectAPI
|
|
resources :notifications do
|
|
after_validation do
|
|
authorize_by_with_raise(current_user.logged?)
|
|
end
|
|
|
|
helpers do
|
|
def notification_query
|
|
@notification_query ||= ParamsToQueryService
|
|
.new(Notification, current_user)
|
|
.call(params)
|
|
end
|
|
|
|
def notification_scope
|
|
::Notification
|
|
.visible(current_user)
|
|
.where
|
|
.not(read_ian: nil)
|
|
.order(id: :desc)
|
|
end
|
|
|
|
def bulk_update_status(attributes)
|
|
if notification_query.valid?
|
|
notification_query.results.update_all({ updated_at: Time.zone.now }.merge(attributes))
|
|
status 204
|
|
else
|
|
raise_query_errors(notification_query)
|
|
end
|
|
end
|
|
end
|
|
|
|
# No need to reapply the visibility scope here as this will be done by the used
|
|
# NotificationQuery.
|
|
get &::API::V3::Utilities::Endpoints::SqlFallbackedIndex
|
|
.new(model: Notification, scope: -> { Notification.where.not(read_ian: nil) })
|
|
.mount
|
|
|
|
post :read_ian do
|
|
bulk_update_status(read_ian: true)
|
|
end
|
|
|
|
post :unread_ian do
|
|
bulk_update_status(read_ian: false)
|
|
end
|
|
|
|
route_param :id, type: Integer, desc: "Notification ID" do
|
|
after_validation do
|
|
@notification = notification_scope.find(params[:id])
|
|
end
|
|
|
|
helpers do
|
|
def update_status(attributes)
|
|
@notification.update_columns({ updated_at: Time.zone.now }.merge(attributes))
|
|
status 204
|
|
end
|
|
end
|
|
|
|
get &::API::V3::Utilities::Endpoints::Show.new(model: Notification).mount
|
|
|
|
post :read_ian do
|
|
update_status(read_ian: true)
|
|
end
|
|
|
|
post :unread_ian do
|
|
update_status(read_ian: false)
|
|
end
|
|
|
|
namespace :details do
|
|
route_param :detail_id, type: Integer, desc: "Notification Detail ID" do
|
|
get do
|
|
PropertyFactory.details_for(@notification).at(params[:detail_id]).tap do |detail|
|
|
raise API::Errors::NotFound unless detail
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|