OpenProject is the leading open source project management software.
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.
openproject/lib/api/v3/work_packages/watchers_api.rb

127 lines
4.4 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 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-2017 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'hashie'
module API
module V3
module WorkPackages
class WatchersAPI < ::API::OpenProjectAPI
helpers ::API::Utilities::PageSizeHelper
get '/available_watchers' do
authorize(:add_work_package_watchers, context: @work_package.project)
service = ParamsToQueryService.new(User, current_user)
query = service.call(params)
if query.valid?
users = query.results.merge(@work_package.addable_watcher_users).includes(:preference)
::API::V3::Users::PaginatedUserCollectionRepresenter.new(
users,
api_v3_paths.users,
page: to_i_or_nil(params[:offset]),
User mentions feature (#5897) * Extend syntax for linking users via their ID * Allow login names for linking user profiles. * User require_relative for legacy tests * Add specs for login name based user links; Fixes other specs, too. * Notify mentioned users * Notify linked users; - require quotes for login names in user links as login names can contain spaces, dots that are typical word boundaries - Adding specs * For the decision who gets notified due to mentions only the visibility permissions of the recipient are relevant. * Rubucop satisfaction * Add autocomplete for user names to work pack package descriptions and activity - Uses API V3 Principals endpoint. - Extends API endpoint with name filter and name order. - Make it activate when user types an "@" or a "user#" - Still for work packages only. * Directly show a list of users after typing '@' and allow navigating list with cursor keys * Add an '@' before the rendered user link * Adopting spec as WP autocompleter now expects whitespace before hash sign * Adding spec for using user autocompleter * Introduce magic pageSize of 0 for maximum length * Add id filter for principals * Allow pagination for principals and protect from falling back to a too low default value * Fixing specs * fixing typo in spec * Add magic number 0 for user custom fields * Add a toParams method for ApiV3FilterBuilder * User ApiV3FilterBuilder in path helper service * Add test for mentions principals to path helper * WIP * Convert auto complete helper to TS [ci skip]
7 years ago
per_page: resolve_page_size(params[:pageSize]),
current_user: current_user
)
else
raise ::API::Errors::InvalidQuery.new(query.errors.full_messages)
end
end
resources :watchers do
helpers do
def watchers_collection
watchers = @work_package.watcher_users.active_or_registered
self_link = api_v3_paths.work_package_watchers(@work_package.id)
Users::UserCollectionRepresenter.new(watchers,
self_link,
current_user: current_user)
end
end
get do
authorize(:view_work_package_watchers, context: @work_package.project)
watchers_collection
end
post do
unless request_body
fail ::API::Errors::InvalidRequestBody.new(I18n.t('api_v3.errors.missing_request_body'))
end
representer = ::API::V3::Watchers::WatcherRepresenter.new(::Hashie::Mash.new)
representer.from_hash(request_body)
user_id = representer.represented.user_id.to_i
if current_user.id == user_id
authorize(:view_work_packages, context: @work_package.project)
else
authorize(:add_work_package_watchers, context: @work_package.project)
end
user = User.find user_id
Services::CreateWatcher.new(@work_package, user).run(
success: -> (result) { status(200) unless result[:created] },
failure: -> (watcher) {
raise ::API::Errors::ErrorBase.create_and_merge_errors(watcher.errors)
}
)
::API::V3::Users::UserRepresenter.new(user, current_user: current_user)
end
namespace ':user_id' do
params do
requires :user_id, desc: 'The watcher\'s user id', type: Integer
end
delete do
if current_user.id == params[:user_id]
authorize(:view_work_packages, context: @work_package.project)
else
authorize(:delete_work_package_watchers, context: @work_package.project)
end
user = User.find_by(id: params[:user_id])
raise ::API::Errors::NotFound unless user
Services::RemoveWatcher.new(@work_package, user).run
status 204
end
end
end
end
end
end
end