#-- 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. require 'open_project/authentication' module API class Root < Grape::API include OpenProject::Authentication::Scope extend API::Utilities::GrapeHelper 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(details: 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 use OpenProject::Authentication::Manager helpers do def current_user User.current end def warden env['warden'] end def request_body env['api.request.body'] end def authenticate warden.authenticate! scope: API_V3 User.current = warden.user scope: API_V3 if Setting.login_required? and not logged_in? raise ::API::Errors::Unauthenticated end end def logged_in? # An admin SystemUser is anonymous but still a valid user to be logged in. current_user && (current_user.admin? || !current_user.anonymous?) end def authorize(permission, context: nil, global: false, user: current_user) is_authorized = AuthorizationService.new(permission, context: context, global: global, user: user).call return true if is_authorized if block_given? yield else raise API::Errors::Unauthorized end false end def authorize_by_with_raise(&_block) if yield true else raise API::Errors::Unauthorized end 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: nil, global: false, user: current_user) raise ArgumentError if projects.nil? && !global projects = Array(projects) authorized = permissions.any? do |permission| allowed_condition = Project.allowed_to_condition(user, permission) allowed_projects = Project.where(allowed_condition) if global allowed_projects.any? else !(allowed_projects & projects).empty? end end raise API::Errors::Unauthorized unless authorized authorized end end def self.auth_headers scheme = OpenProject::Authentication::WWWAuthenticate.auth_scheme realm = OpenProject::Authentication::WWWAuthenticate.realm { 'WWW-Authenticate' => %(#{scheme} realm="#{realm}") } end ## # Return JSON error response on authentication failure. OpenProject::Authentication.handle_failure(scope: API_V3) do |warden, _opts| e = grape_error_for warden.env, self error_message = I18n.t('api_v3.errors.code_401_wrong_credentials') api_error = ::API::Errors::Unauthenticated.new error_message representer = ::API::V3::Errors::ErrorRepresenter.new api_error e.error_response status: 401, message: representer.to_json, headers: warden.headers end error_response ActiveRecord::RecordNotFound, ::API::Errors::NotFound.new error_response ActiveRecord::StaleObjectError, ::API::Errors::Conflict.new error_response MultiJson::ParseError, ::API::Errors::ParseError.new error_response ::API::Errors::Unauthenticated, headers: auth_headers error_response ::API::Errors::ErrorBase, rescue_subclasses: true # run authentication before each request before do authenticate end version 'v3', using: :path do mount API::V3::Root end end end