![]() |
cutelyst 5.0.1
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
|
Checks if the field value is not one from a list of values. More...
#include <Cutelyst/Plugins/Utils/validatornotin.h>

Public Member Functions | |
| ValidatorNotIn (const QString &field, const QVariant &values, Qt::CaseSensitivity cs=Qt::CaseSensitive, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey={}) | |
| ~ValidatorNotIn () override | |
Public Member Functions inherited from Cutelyst::ValidatorRule | |
| ValidatorRule (const QString &field, const ValidatorMessages &messages={}, const QString &defValKey={}, QByteArrayView validatorName=nullptr) | |
| virtual | ~ValidatorRule () |
| Deconstructs the ValidatorRule. | |
Protected Member Functions | |
| QString | genericValidationDataError (Context *c, const QVariant &errorData) const override |
| QString | genericValidationError (Context *c, const QVariant &errorData=QVariant()) const override |
| ValidatorReturnType | validate (Context *c, const ParamsMultiMap ¶ms) const override |
| void | validateCb (Context *c, const ParamsMultiMap ¶ms, ValidatorRtFn cb) const override |
Protected Member Functions inherited from Cutelyst::ValidatorRule | |
| ValidatorRule (ValidatorRulePrivate &dd) | |
| QString | debugString (const Context *c) const |
| void | defaultValue (Context *c, ValidatorReturnType *result) const |
| void | defaultValue (Context *c, ValidatorRtFn cb) const |
| QString | field () const noexcept |
| virtual QString | genericParsingError (Context *c, const QVariant &errorData={}) const |
| QString | label (const Context *c) const |
| QString | parsingError (Context *c, const QVariant &errorData={}) const |
| bool | trimBefore () const noexcept |
| QString | validationDataError (Context *c, const QVariant &errorData={}) const |
| QString | validationError (Context *c, const QVariant &errorData={}) const |
| QString | value (const ParamsMultiMap ¶ms) const |
Additional Inherited Members | |
Related Symbols inherited from Cutelyst::ValidatorRule | |
| using | ValidatorRtFn = std::function< void(ValidatorReturnType &&result)> |
| Void callback function for validator rules that processes the ValidatorReturnType. | |
This validator checks if the value of the field is not one from a list of values.
Definition at line 37 of file validatornotin.h.
| ValidatorNotIn::ValidatorNotIn | ( | const QString & | field, |
| const QVariant & | values, | ||
| Qt::CaseSensitivity | cs = Qt::CaseSensitive, |
||
| const ValidatorMessages & | messages = ValidatorMessages(), |
||
| const QString & | defValKey = {} |
||
| ) |
Constructs a new VaidatorNotIn with the given parameters.
| field | Name of the input field to validate. |
| values | List of values to compare against. Can be either a QStringList containing the not allowed values or a QString specifing a stash key containing a QStringList with not allowed values. |
| cs | Case sensitivity when comparing the values. |
| messages | Custom error message if validation fails. |
| defValKey | Stash key containing a default value if input field is empty. This value will NOT be validated. |
Definition at line 10 of file validatornotin.cpp.
|
overridedefault |
Destroys the ValidatorNotIn object.
|
overrideprotectedvirtual |
Returns a generic error messages if the list of comparison values is empty.
Reimplemented from Cutelyst::ValidatorRule.
Definition at line 77 of file validatornotin.cpp.
References QString::arg(), QString::isEmpty(), Cutelyst::ValidatorRule::label(), and Cutelyst::Context::qtTrId().
|
overrideprotectedvirtual |
Returns a generic error message if validation failed.
Reimplemented from Cutelyst::ValidatorRule.
Definition at line 64 of file validatornotin.cpp.
References QString::arg(), QString::isEmpty(), Cutelyst::ValidatorRule::label(), and Cutelyst::Context::qtTrId().
|
overrideprotectedvirtual |
Performs the validation on the input params and returns the result.
If validation succeeded, ValidatorReturnType::value will contain the input paramter value as QString.
Implements Cutelyst::ValidatorRule.
Definition at line 21 of file validatornotin.cpp.
References QStringList::contains(), Cutelyst::ValidatorRule::debugString(), Cutelyst::ValidatorRule::defaultValue(), QList::empty(), Cutelyst::ValidatorReturnType::errorMessage, QString::isEmpty(), QMetaType::QString, QMetaType::QStringList, QVariant::setValue(), Cutelyst::Context::stash(), Cutelyst::ValidatorRule::validationDataError(), Cutelyst::ValidatorRule::validationError(), Cutelyst::ValidatorReturnType::value, and Cutelyst::ValidatorRule::value().
Referenced by validateCb().
|
overrideprotectedvirtual |
Performs the validation on the input params and calls the cb with the ValidatorReturnType as argument.
If validation succeeded, ValidatorReturnType::value will contain the input paramter value as QString.
Reimplemented from Cutelyst::ValidatorRule.
Definition at line 59 of file validatornotin.cpp.
References validate().