6#include "validatornotin_p.h"
11 const QStringList &values,
12 Qt::CaseSensitivity cs,
14 const QString &defValKey)
15 :
ValidatorRule(*new ValidatorNotInPrivate(field, values, cs, messages, defValKey))
30 if (d->values.empty()) {
34 "ValidatorNotIn: The list of comparison values for the field %s at %s::%s is empty.",
36 qPrintable(c->controllerName()),
37 qPrintable(c->actionName()));
39 const QString v =
value(params);
41 if (d->values.contains(v, d->cs)) {
44 "ValidatorNotIn: Validation failed for field %s at %s::%s: \"%s\" is part "
45 "of the list of not allowed comparison values.",
47 qPrintable(c->controllerName()),
48 qPrintable(c->actionName()),
51 result.
value.setValue(v);
65 const QString _label =
label(c);
66 if (_label.isEmpty()) {
67 error = c->
translate(
"Cutelyst::ValidatorNotIn",
"Value is not allowed.");
70 c->
translate(
"Cutelyst::ValidatorNotIn",
"The value in the “%1” field is not allowed.")
80 const QString _label =
label(c);
81 if (_label.isEmpty()) {
82 error = c->
translate(
"Cutelyst::ValidatorNotIn",
"The list of comparison values is empty.");
84 error = c->
translate(
"Cutelyst::ValidatorNotIn",
85 "The list of comparison values for the “%1” field is empty.")
QString translate(const char *context, const char *sourceText, const char *disambiguation=nullptr, int n=-1) const
Checks if the field value is not one from a list of values.
ValidatorReturnType validate(Context *c, const ParamsMultiMap ¶ms) const override
Performs the validation and returns the result.
~ValidatorNotIn() override
Deconstructs the validator.
QString genericValidationError(Context *c, const QVariant &errorData=QVariant()) const override
Returns a generic error message if validation failed.
QString genericValidationDataError(Context *c, const QVariant &errorData) const override
Returns a generic error messages if the list of comparison values is empty.
ValidatorNotIn(const QString &field, const QStringList &values, Qt::CaseSensitivity cs=Qt::CaseSensitive, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey=QString())
Constructs a new not in validator.
Base class for all validator rules.
QString label(Context *c) const
Returns the human readable field label used for generic error messages.
QString field() const
Returns the name of the field to validate.
void defaultValue(Context *c, ValidatorReturnType *result, const char *validatorName) const
I a defValKey has been set in the constructor, this will try to get the default value from the stash ...
QString value(const ParamsMultiMap ¶ms) const
Returns the value of the field from the input params.
QString validationDataError(Context *c, const QVariant &errorData=QVariant()) const
Returns an error message if any validation data is missing or invalid.
QString validationError(Context *c, const QVariant &errorData=QVariant()) const
Returns a descriptive error message if validation failed.
The Cutelyst namespace holds all public Cutelyst API.
QMultiMap< QString, QString > ParamsMultiMap
Stores custom error messages and the input field label.
Contains the result of a single input parameter validation.