kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
140 lines
4.6 KiB
140 lines
4.6 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# 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 doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
# Root class of the API
|
|
# This is the place for all API wide configuration, helper methods, exceptions
|
|
# rescuing, mounting of differnet API versions etc.
|
|
|
|
module API
|
|
class Root < Grape::API
|
|
prefix :api
|
|
|
|
class Formatter
|
|
def call(object, _env)
|
|
object.respond_to?(:to_json) ? object.to_json : MultiJson.dump(object)
|
|
end
|
|
end
|
|
|
|
class Parser
|
|
def call(object, _env)
|
|
MultiJson.load(object)
|
|
rescue MultiJson::ParseError => e
|
|
error = ::API::Errors::ParseError.new(e.message)
|
|
representer = ::API::V3::Errors::ErrorRepresenter.new(error)
|
|
|
|
throw :error, status: 400, message: representer.to_json
|
|
end
|
|
end
|
|
|
|
content_type 'hal+json', 'application/hal+json; charset=utf-8'
|
|
content_type :json, 'application/json; charset=utf-8'
|
|
format 'hal+json'
|
|
formatter 'hal+json', Formatter.new
|
|
|
|
parser :json, Parser.new
|
|
|
|
helpers do
|
|
def current_user
|
|
return User.current if running_in_test_env?
|
|
user_id = env['rack.session']['user_id']
|
|
User.current = user_id ? User.find(user_id) : User.anonymous
|
|
end
|
|
|
|
def authenticate
|
|
raise API::Errors::Unauthenticated if current_user.nil? || current_user.anonymous? if Setting.login_required?
|
|
end
|
|
|
|
def authorize(permission, context: nil, global: false, user: current_user, &block)
|
|
is_authorized = AuthorizationService.new(permission, context: context, global: global, user: user).call
|
|
|
|
return true if is_authorized
|
|
|
|
if block_given?
|
|
yield block
|
|
else
|
|
raise API::Errors::Unauthorized
|
|
end
|
|
|
|
false
|
|
end
|
|
|
|
|
|
def running_in_test_env?
|
|
Rails.env.test? && ENV['CAPYBARA_DISABLE_TEST_AUTH_PROTECTION'] != 'true'
|
|
end
|
|
|
|
# checks whether the user has
|
|
# any of the provided permission in any of the provided
|
|
# projects
|
|
def authorize_any(permissions, projects, user: current_user)
|
|
projects = Array(projects)
|
|
|
|
authorized = permissions.any? do |permission|
|
|
allowed_condition = Project.allowed_to_condition(user, permission)
|
|
allowed_projects = Project.where(allowed_condition)
|
|
|
|
!(allowed_projects & projects).empty?
|
|
end
|
|
|
|
raise API::Errors::Unauthorized unless authorized
|
|
authorized
|
|
end
|
|
end
|
|
|
|
rescue_from ActiveRecord::RecordNotFound do |e|
|
|
api_error = ::API::Errors::NotFound.new(e.message)
|
|
representer = ::API::V3::Errors::ErrorRepresenter.new(api_error)
|
|
error_response(status: api_error.code, message: representer.to_json)
|
|
end
|
|
|
|
rescue_from ActiveRecord::StaleObjectError do
|
|
api_error = ::API::Errors::Conflict.new
|
|
representer = ::API::V3::Errors::ErrorRepresenter.new(api_error)
|
|
error_response(status: api_error.code, message: representer.to_json)
|
|
end
|
|
|
|
rescue_from ::API::Errors::ErrorBase, rescue_subclasses: true do |e|
|
|
representer = ::API::V3::Errors::ErrorRepresenter.new(e)
|
|
error_response(status: e.code, message: representer.to_json)
|
|
end
|
|
|
|
# run authentication before each request
|
|
before do
|
|
# Call current_user as it sets User.current.
|
|
# Not doing this might cause devs to use User.current without that value
|
|
# being set to the actually current user. That might result in standard
|
|
# users becoming admins and otherwise based on who called the ruby
|
|
# process last.
|
|
current_user
|
|
authenticate
|
|
end
|
|
|
|
mount API::V3::Root
|
|
end
|
|
end
|
|
|