cutelyst 4.0.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
validatortime.cpp
1/*
2 * SPDX-FileCopyrightText: (C) 2017-2023 Matthias Fehring <mf@huessenbergnetz.de>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#include "validatortime_p.h"
7
8#include <QTime>
9
10using namespace Cutelyst;
11
12ValidatorTime::ValidatorTime(const QString &field,
13 const char *format,
14 const Cutelyst::ValidatorMessages &messages,
15 const QString &defValKey)
16 : ValidatorRule(*new ValidatorTimePrivate(field, format, messages, defValKey))
17{
18}
19
21
23{
25
26 Q_D(const ValidatorTime);
27
28 const QString v = value(params);
29
30 if (!v.isEmpty()) {
31 const QTime time = d->extractTime(c, v, d->format);
32
33 if (!time.isValid()) {
34 result.errorMessage = validationError(c);
35 qCDebug(C_VALIDATOR).noquote().nospace()
36 << debugString(c) << " \"" << v << "\" is not a valid time";
37 } else {
38 result.value.setValue(time);
39 }
40
41 } else {
42 defaultValue(c, &result);
43 }
44
45 return result;
46}
47
48QString ValidatorTime::genericValidationError(Context *c, const QVariant &errorData) const
49{
50 QString error;
51
52 Q_D(const ValidatorTime);
53
54 Q_UNUSED(errorData)
55
56 const QString _label = label(c);
57
58 if (_label.isEmpty()) {
59
60 if (d->format) {
61 //: %1 will be replaced by the erquired time format
62 error = c->translate("Cutelyst::ValidatorTime",
63 "Not a valid time according to the following date format: %1")
64 .arg(c->translate(d->translationContext.data(), d->format));
65 } else {
66 error = c->translate("Cutelyst::ValidatorTime", "Not a valid time.");
67 }
68
69 } else {
70
71 if (d->format) {
72 //: %1 will be replaced by the field label, %2 will be replaced by the required time
73 //: format
74 error = c->translate("Cutelyst::ValidatorTime",
75 "The value in the “%1” field can not be parsed as time according "
76 "to the following scheme: %2")
77 .arg(_label, c->translate(d->translationContext.data(), d->format));
78 } else {
79 //: %1 will be replaced by the field label
80 error = c->translate("Cutelyst::ValidatorTime",
81 "The value in the “%1” field can not be parsed as time.")
82 .arg(_label);
83 }
84 }
85
86 return error;
87}
The Cutelyst Context.
Definition: context.h:38
QString translate(const char *context, const char *sourceText, const char *disambiguation=nullptr, int n=-1) const
Definition: context.cpp:477
Base class for all validator rules.
QString label(Context *c) const
Returns the human readable field label used for generic error messages.
void defaultValue(Context *c, ValidatorReturnType *result) 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 &params) const
Returns the value of the field from the input params.
QString validationError(Context *c, const QVariant &errorData=QVariant()) const
Returns a descriptive error message if validation failed.
QString debugString(Context *c) const
Returns a string that can be used for debug output if validation fails.
Checks if the input data is a valid time.
Definition: validatortime.h:41
QString genericValidationError(Context *c, const QVariant &errorData=QVariant()) const override
Returns a generic error if validation failed.
ValidatorTime(const QString &field, const char *format=nullptr, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey=QString())
Constructs a new time validator.
ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override
Performs the validation and returns the result.
~ValidatorTime() override
Deconstructs time the validator.
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