|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +#-- copyright |
| 4 | +# OpenProject is an open source project management software. |
| 5 | +# Copyright (C) the OpenProject GmbH |
| 6 | +# |
| 7 | +# This program is free software; you can redistribute it and/or |
| 8 | +# modify it under the terms of the GNU General Public License version 3. |
| 9 | +# |
| 10 | +# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: |
| 11 | +# Copyright (C) 2006-2013 Jean-Philippe Lang |
| 12 | +# Copyright (C) 2010-2013 the ChiliProject Team |
| 13 | +# |
| 14 | +# This program is free software; you can redistribute it and/or |
| 15 | +# modify it under the terms of the GNU General Public License |
| 16 | +# as published by the Free Software Foundation; either version 2 |
| 17 | +# of the License, or (at your option) any later version. |
| 18 | +# |
| 19 | +# This program is distributed in the hope that it will be useful, |
| 20 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | +# GNU General Public License for more details. |
| 23 | +# |
| 24 | +# You should have received a copy of the GNU General Public License |
| 25 | +# along with this program; if not, write to the Free Software |
| 26 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 27 | +# |
| 28 | +# See COPYRIGHT and LICENSE files for more details. |
| 29 | +#++ |
| 30 | + |
| 31 | +module Storages |
| 32 | + module Peripherals |
| 33 | + module ConnectionValidators |
| 34 | + module Nextcloud |
| 35 | + class AuthenticationValidator < BaseValidator |
| 36 | + def initialize(storage) |
| 37 | + super |
| 38 | + @user = User.current |
| 39 | + end |
| 40 | + |
| 41 | + private |
| 42 | + |
| 43 | + def validate |
| 44 | + @storage.authenticate_via_idp? ? validate_sso : validate_oauth |
| 45 | + end |
| 46 | + |
| 47 | + def validate_oauth |
| 48 | + register_checks(:existing_token, :user_bound_request) |
| 49 | + |
| 50 | + oauth_token |
| 51 | + user_bound_request |
| 52 | + end |
| 53 | + |
| 54 | + def oauth_token |
| 55 | + if OAuthClientToken.where(user: @user, oauth_client: @storage.oauth_client).any? |
| 56 | + pass_check(:existing_token) |
| 57 | + else |
| 58 | + warn_check(:existing_token, message(:oauth_token_missing), halt_validation: true) |
| 59 | + end |
| 60 | + end |
| 61 | + |
| 62 | + def user_bound_request |
| 63 | + Registry["nextcloud.queries.user"].call(storage: @storage, auth_strategy:).on_failure do |
| 64 | + fail_check(:user_bound_request, message("oauth_request_#{it.result}")) |
| 65 | + end |
| 66 | + |
| 67 | + pass_check(:user_bound_request) |
| 68 | + end |
| 69 | + |
| 70 | + def auth_strategy = Registry["nextcloud.authentication.user_bound"].call(storage: @storage, user: @user) |
| 71 | + |
| 72 | + def validate_sso |
| 73 | + register_checks(:non_provisioned_user, :provisioned_user_provider, :token_negotiable, :user_bound_request) |
| 74 | + |
| 75 | + non_provisioned_user |
| 76 | + non_oidc_provisioned_user |
| 77 | + token_negotiable |
| 78 | + user_bound_request |
| 79 | + end |
| 80 | + |
| 81 | + def non_provisioned_user |
| 82 | + if @user.identity_url.present? |
| 83 | + pass_check(:non_provisioned_user) |
| 84 | + else |
| 85 | + warn_check(:non_provisioned_user, message(:oidc_non_provisioned_user), halt_validation: true) |
| 86 | + end |
| 87 | + end |
| 88 | + |
| 89 | + def non_oidc_provisioned_user |
| 90 | + if @user.authentication_provider.is_a?(OpenIDConnect::Provider) |
| 91 | + pass_check(:provisioned_user_provider) |
| 92 | + else |
| 93 | + warn_check(:provisioned_user_provider, message(:oidc_non_oidc_user), halt_validation: true) |
| 94 | + end |
| 95 | + end |
| 96 | + |
| 97 | + def token_negotiable |
| 98 | + service = OpenIDConnect::UserTokens::FetchService.new(user: @user) |
| 99 | + |
| 100 | + result = service.access_token_for(audience: @storage.audience) |
| 101 | + return pass_check(:token_negotiable) if result.success? |
| 102 | + |
| 103 | + error_code = case result.failure |
| 104 | + in { code: /token_exchange/ | :unable_to_exchange_token } |
| 105 | + :oidc_cant_exchange_token |
| 106 | + in { code: /token_refresh/ } |
| 107 | + :oidc_cant_refresh_token |
| 108 | + in { code: :no_token_for_audience } |
| 109 | + :oidc_cant_acquire_token |
| 110 | + else |
| 111 | + :unknown_error |
| 112 | + end |
| 113 | + |
| 114 | + fail_check(:token_negotiable, message(error_code)) |
| 115 | + end |
| 116 | + end |
| 117 | + end |
| 118 | + end |
| 119 | + end |
| 120 | +end |
0 commit comments