Cutelyst  2.14.2
validatorrequiredwithoutall.cpp
1 /*
2  * Copyright (C) 2017-2018 Matthias Fehring <kontakt@buschmann23.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "validatorrequiredwithoutall_p.h"
20 
21 using namespace Cutelyst;
22 
24  ValidatorRule(*new ValidatorRequiredWithoutAllPrivate(field, otherFields, messages))
25 {
26 }
27 
29 {
30 }
31 
33 {
34  ValidatorReturnType result;
35 
36  Q_D(const ValidatorRequiredWithoutAll);
37 
38  if (d->otherFields.empty()) {
40  qCWarning(C_VALIDATOR, "ValidatorRequiredWithoutAll: invalid validation data for field %s at %s::%s", qPrintable(field()), qPrintable(c->controllerName()), qPrintable(c->actionName()));
41  } else {
42 
43  const QStringList ofc = d->otherFields;
44 
45  bool withoutAll = true;
46 
47  for (const QString &other : ofc) {
48  if (params.contains(other)) {
49  withoutAll = false;
50  break;
51  }
52  }
53 
54  const QString v = value(params);
55 
56  if (withoutAll) {
57  if (!v.isEmpty()) {
58  result.value.setValue<QString>(v);
59  } else {
60  result.errorMessage = validationError(c);
61  qCDebug(C_VALIDATOR, "ValidatorRequiredWithoutAll: Validation failed for field %s at %s::%s", qPrintable(field()), qPrintable(c->controllerName()), qPrintable(c->actionName()));
62  }
63  } else {
64  if (!v.isEmpty()) {
65  result.value.setValue<QString>(v);
66  }
67  }
68  }
69 
70  return result;
71 }
72 
74 {
75  QString error;
76  Q_UNUSED(errorData)
77  const QString _label = label(c);
78  if (_label.isEmpty()) {
79  error = c->translate("Cutelyst::ValidatorRequiredWithoutAll", "This is required.");
80  } else {
81  //: %1 will be replaced by the field label
82  error = c->translate("Cutelyst::ValidatorRequiredWithoutAll", "The “%1” field is required.").arg(_label);
83  }
84  return error;
85 }
bool contains(const Key &key) const
QString field() const
Returns the name of the field to validate.
QString label(Context *c) const
Returns the human readable field label used for generic error messages.
Stores custom error messages and the input field label.
The Cutelyst Context.
Definition: context.h:51
QString value(const ParamsMultiMap &params) const
Returns the value of the field from the input params.
QString validationError(Context *c, const QVariant &errorData=QVariant()) const
Returns a descriptive error message if validation failed.
bool isEmpty() const
~ValidatorRequiredWithoutAll() override
Deconstructs the required without all validator.
Base class for all validator rules.
ValidatorRequiredWithoutAll(const QString &field, const QStringList &otherFields, const ValidatorMessages &messages=ValidatorMessages())
Constructs a new required without all validator.
QString genericValidationError(Context *c, const QVariant &errorData=QVariant()) const override
Returns a generic error message if validation failed.
void setValue(const T &value)
ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override
Performs the validation and returns the result.
QString translate(const char *context, const char *sourceText, const char *disambiguation=nullptr, int n=-1) const
Definition: context.cpp:481
Contains the result of a single input parameter validation.
Definition: validatorrule.h:62
QString validationDataError(Context *c, const QVariant &errorData=QVariant()) const
Returns an error message if any validation data is missing or invalid.
The field under validation must be present and not empty only when all of the other specified fields ...
QString arg(qlonglong a, int fieldWidth, int base, QChar fillChar) const