|
| 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 | + class BaseValidatorGroup |
| 35 | + include TaggedLogging |
| 36 | + |
| 37 | + def initialize(storage) |
| 38 | + @storage = storage |
| 39 | + @results = ValidationGroupResult.new |
| 40 | + end |
| 41 | + |
| 42 | + def call |
| 43 | + catch :interrupted do |
| 44 | + validate |
| 45 | + end |
| 46 | + |
| 47 | + @results |
| 48 | + end |
| 49 | + |
| 50 | + private |
| 51 | + |
| 52 | + def validate = raise Errors::SubclassResponsibility |
| 53 | + |
| 54 | + def register_checks(*keys) |
| 55 | + keys.each { @results.register_check(it) } |
| 56 | + end |
| 57 | + |
| 58 | + def update_result(...) |
| 59 | + @results.update_result(...) |
| 60 | + end |
| 61 | + |
| 62 | + def pass_check(key) |
| 63 | + update_result(key, CheckResult.success(key)) |
| 64 | + end |
| 65 | + |
| 66 | + def fail_check(key, message) |
| 67 | + update_result(key, CheckResult.failure(key, message)) |
| 68 | + throw :interrupted |
| 69 | + end |
| 70 | + |
| 71 | + def warn_check(key, message, halt_validation: false) |
| 72 | + update_result(key, CheckResult.warning(key, message)) |
| 73 | + throw :interrupted if halt_validation |
| 74 | + end |
| 75 | + |
| 76 | + def message(key, context = {}) |
| 77 | + I18n.t("storages.health.connection_validation.#{key}", **context) |
| 78 | + end |
| 79 | + end |
| 80 | + end |
| 81 | + end |
| 82 | +end |
0 commit comments