cutelyst 4.3.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
validatordate.cpp
1/*
2 * SPDX-FileCopyrightText: (C) 2017-2023 Matthias Fehring <mf@huessenbergnetz.de>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#include "validatordate_p.h"
7
8#include <QDate>
9
10using namespace Cutelyst;
11
13 const char *inputFormat,
14 const Cutelyst::ValidatorMessages &messages,
15 const QString &defValKey)
16 : ValidatorRule(*new ValidatorDatePrivate(field, inputFormat, messages, defValKey))
17{
18}
19
21
23{
25
26 Q_D(const ValidatorDate);
27
28 const QString v = value(params);
29
30 if (!v.isEmpty()) {
31 const QDate date = d->extractDate(c, v, d->inputFormat);
32
33 if (!date.isValid()) {
34 result.errorMessage = validationError(c);
35 qCDebug(C_VALIDATOR).noquote().nospace()
36 << debugString(c) << " \"" << v << "\" is not a valid date";
37 } else {
38 result.value.setValue(date);
39 }
40 } else {
41 defaultValue(c, &result);
42 }
43
44 return result;
45}
46
48{
49 Q_D(const ValidatorDate);
50 Q_UNUSED(errorData)
51
52 const QString _label = label(c);
53
54 if (d->inputFormat) {
55 const QString inputFormatTranslated =
56 d->translationContext ? c->translate(d->translationContext, d->inputFormat)
57 : c->qtTrId(d->inputFormat);
58 if (_label.isEmpty()) {
59 //: %1 will be replaced by the required date format
60 //% "Not a valid date according to the following format: %1"
61 return c->qtTrId("cutelyst-valdate-genvalerr-format").arg(inputFormatTranslated);
62 } else {
63 //: %1 will be replaced by the field label, %2 will be replaced
64 //: by the required date format
65 //% "The value in the “%1” field can not be parsed as date according "
66 //% "to the following format: %2"
67 return c->qtTrId("cutelyst-valdate-genvalerr-format-label")
68 .arg(_label, inputFormatTranslated);
69 }
70 } else {
71 if (_label.isEmpty()) {
72 //% "Not a valid date."
73 return c->qtTrId("cutelyst-valdate-genvalerr");
74 } else {
75 //: %1 will be replaced by the field label
76 //% "The value in the “%1” field can not be parsed as date."
77 return c->qtTrId("cutelyst-valdate-genvalerr-label").arg(_label);
78 }
79 }
80}
The Cutelyst Context.
Definition context.h:42
QString translate(const char *context, const char *sourceText, const char *disambiguation=nullptr, int n=-1) const
Definition context.cpp:484
QString qtTrId(const char *id, int n=-1) const
Definition context.h:656
Checks if the input data is a valid date.
QString genericValidationError(Context *c, const QVariant &errorData=QVariant()) const override
ValidatorDate(const QString &field, const char *inputFormat=nullptr, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey=QString())
ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override
Base class for all validator rules.
QString validationError(Context *c, const QVariant &errorData={}) const
QString label(Context *c) const
void defaultValue(Context *c, ValidatorReturnType *result) const
QString value(const ParamsMultiMap &params) const
QString debugString(Context *c) const
The Cutelyst namespace holds all public Cutelyst API.
bool isValid(int year, int month, int day)
QString arg(Args &&... args) const const
bool isEmpty() const const
void setValue(QVariant &&value)
Stores custom error messages and the input field label.
Contains the result of a single input parameter validation.