cutelyst 4.0.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
validatornotin.h
1/*
2 * SPDX-FileCopyrightText: (C) 2017-2023 Matthias Fehring <mf@huessenbergnetz.de>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5#ifndef CUTELYSTVALIDATORNOTIN_H
6#define CUTELYSTVALIDATORNOTIN_H
7
8#include "validatorrule.h"
9
10#include <Cutelyst/cutelyst_global.h>
11
12#include <QStringList>
13
14namespace Cutelyst {
15
16class ValidatorNotInPrivate;
17
36class CUTELYST_PLUGIN_UTILS_VALIDATOR_EXPORT ValidatorNotIn : public ValidatorRule
37{
38public:
49 ValidatorNotIn(const QString &field,
50 const QVariant &values,
51 Qt::CaseSensitivity cs = Qt::CaseSensitive,
52 const ValidatorMessages &messages = ValidatorMessages(),
53 const QString &defValKey = QString());
54
58 ~ValidatorNotIn() override;
59
60protected:
67 ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override;
68
72 QString genericValidationError(Context *c,
73 const QVariant &errorData = QVariant()) const override;
74
78 QString genericValidationDataError(Context *c, const QVariant &errorData) const override;
79
80private:
81 Q_DECLARE_PRIVATE(ValidatorNotIn) // NOLINT(cppcoreguidelines-pro-type-reinterpret-cast)
82 Q_DISABLE_COPY(ValidatorNotIn)
83};
84
85} // namespace Cutelyst
86
87#endif // CUTELYSTVALIDATORNOTIN_H
The Cutelyst Context.
Definition: context.h:38
Checks if the field value is not one from a list of values.
~ValidatorNotIn() override
Deconstructs the validator.
Base class for all validator rules.
The Cutelyst namespace holds all public Cutelyst API.
Definition: Mainpage.dox:8
QMultiMap< QString, QString > ParamsMultiMap
Stores custom error messages and the input field label.
Contains the result of a single input parameter validation.
Definition: validatorrule.h:49