cutelyst  4.4.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 
10 using namespace Cutelyst;
11 
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 {
24  ValidatorReturnType result;
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 
49 {
50  Q_D(const ValidatorTime);
51  Q_UNUSED(errorData)
52  const QString _label = label(c);
53 
54  if (d->format) {
55  const QString _formatTranslated = d->translationContext
56  ? c->translate(d->translationContext, d->format)
57  : c->qtTrId(d->format);
58  if (_label.isEmpty()) {
59  //% "Not a valid time according to the following format: %1"
60  return c->qtTrId("cutelyst-valtime-genvalerr-format").arg(_formatTranslated);
61  } else {
62  //% "The value in the “%1” field can not be parsed as time according "
63  //% "to the following format: %2"
64  return c->qtTrId("cutelyst-valtime-genvalerr-format-label")
65  .arg(_label, _formatTranslated);
66  }
67  } else {
68  if (_label.isEmpty()) {
69  //% "Not a valid time."
70  return c->qtTrId("cutelyst-valtime-genvalerr");
71  } else {
72  //% "The value in the “%1” field can not be parsed as time."
73  return c->qtTrId("cutelyst-valtime-genvalerr-label").arg(_label);
74  }
75  }
76 }
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
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
Checks if the input data is a valid time.
Definition: validatortime.h:42
QString genericValidationError(Context *c, const QVariant &errorData=QVariant()) const override
ValidatorTime(const QString &field, const char *format=nullptr, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey=QString())
ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override
The Cutelyst namespace holds all public Cutelyst API.
QString arg(Args &&... args) const const
bool isEmpty() const const
bool isValid(int h, int m, int s, int ms)
void setValue(QVariant &&value)
Stores custom error messages and the input field label.
Contains the result of a single input parameter validation.
Definition: validatorrule.h:49