cutelyst 4.8.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
validatorurl.h
1/*
2 * SPDX-FileCopyrightText: (C) 2017-2023 Matthias Fehring <mf@huessenbergnetz.de>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5#ifndef CUTELYSTVALIDATORURL_H
6#define CUTELYSTVALIDATORURL_H
7
8#include "validatorrule.h"
9
10namespace Cutelyst {
11
12class ValidatorUrlPrivate;
13
33class CUTELYST_PLUGIN_UTILS_VALIDATOR_EXPORT ValidatorUrl : public ValidatorRule
34{
35public:
40 NoConstraint = 0,
41 StrictParsing = 1,
42 NoRelative = 2,
43 NoLocalFile = 4,
44 WebsiteOnly = 8,
46 };
47 Q_DECLARE_FLAGS(Constraints, Constraint)
48
49
59 ValidatorUrl(const QString &field,
60 Constraints constraints = NoConstraint,
61 const QStringList &schemes = QStringList(),
62 const ValidatorMessages &messages = ValidatorMessages(),
63 const QString &defValKey = QString());
64
68 ~ValidatorUrl() override;
69
70protected:
77 ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override;
78
82 QString genericValidationError(Context *c,
83 const QVariant &errorData = QVariant()) const override;
84
85private:
86 Q_DECLARE_PRIVATE(ValidatorUrl) // NOLINT(cppcoreguidelines-pro-type-reinterpret-cast)
87 Q_DISABLE_COPY(ValidatorUrl)
88};
89
90} // namespace Cutelyst
91
92Q_DECLARE_OPERATORS_FOR_FLAGS(Cutelyst::ValidatorUrl::Constraints)
93
94#endif // CUTELYSTVALIDATORURL_H
The Cutelyst Context.
Definition context.h:42
Base class for all validator rules.
The field under validation must be a valid URL.
QMultiMap< QString, QString > ParamsMultiMap
The Cutelyst namespace holds all public Cutelyst API.
Stores custom error messages and the input field label.
Contains the result of a single input parameter validation.