cutelyst  4.4.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
Cutelyst::ValidatorJson Class Reference

Checks if the inut data is valid JSON. More...

#include <Cutelyst/Plugins/Utils/validatorjson.h>

Inheritance diagram for Cutelyst::ValidatorJson:

Public Types

enum class  ExpectedType { All , Array , Object }
 

Public Member Functions

 ValidatorJson (const QString &field, ExpectedType expectedType=ExpectedType::All, const ValidatorMessages &messages=ValidatorMessages(), const QString &defValKey=QString())
 
 ~ValidatorJson () override
 
- Public Member Functions inherited from Cutelyst::ValidatorRule
 ValidatorRule (const QString &field, const ValidatorMessages &messages={}, const QString &defValKey={}, QByteArrayView validatorName=nullptr)
 
virtual ~ValidatorRule ()
 Deconstructs the ValidatorRule.
 

Protected Member Functions

QString genericValidationError (Context *c, const QVariant &errorData=QVariant()) const override
 
ValidatorReturnType validate (Context *c, const ParamsMultiMap &params) const override
 
- Protected Member Functions inherited from Cutelyst::ValidatorRule
 ValidatorRule (ValidatorRulePrivate &dd)
 
QString debugString (Context *c) const
 
void defaultValue (Context *c, ValidatorReturnType *result) const
 
QString field () const noexcept
 
virtual QString genericParsingError (Context *c, const QVariant &errorData={}) const
 
virtual QString genericValidationDataError (Context *c, const QVariant &errorData={}) const
 
QString label (Context *c) const
 
QString parsingError (Context *c, const QVariant &errorData={}) const
 
bool trimBefore () const noexcept
 
QString validationDataError (Context *c, const QVariant &errorData={}) const
 
QString validationError (Context *c, const QVariant &errorData={}) const
 
QString value (const ParamsMultiMap &params) const
 

Detailed Description

This tries to load the input field string into a QJsonDocument and checks if it is not null and not empty and if it complies to the expected type.

Note
Unless validation is started with NoTrimming, whitespaces will be removed from the beginning and the end of the input value before validation. If the field's value is empty or if the field is missing in the input data, the validation will succeed without performing the validation itself. Use one of the required validators to require the field to be present and not empty.
Return type
On success, ValidatorReturnType::value will contain a QJsonDocument if expectedType is set to ExpectedType::All, a QJsonArray if expectedType is set to ExpectedType::Array, or a QJsonObject if expectedType is set to ExpectedType::Object.
See also
Validator for general usage of validators.

Definition at line 36 of file validatorjson.h.

Member Enumeration Documentation

◆ ExpectedType

Defines the expected JSON root type that will be accepted as valid.

Enumerator
All 

Accepts both, object and array, as valid. If valid, ValidatorReturnType::value will contain a QJsonDocument.

Array 

Only accepts the input as valid if the root is of type array. If valid, ValidatorReturnType::value will contain a QJsonArray.

Object 

Only accepts the input as valid if the root is of type object. If valid, ValidatorReturnType::value will contain a QJsonObject.

Definition at line 42 of file validatorjson.h.

Constructor & Destructor Documentation

◆ ValidatorJson()

ValidatorJson::ValidatorJson ( const QString field,
ExpectedType  expectedType = ExpectedType::All,
const ValidatorMessages messages = ValidatorMessages(),
const QString defValKey = QString() 
)

Constructs a new ValidatorJson object with the given parameters.

Parameters
fieldName of the input field to validate.
expectedTypeExpected JSON root type.
messagesCustom error message if validation fails.
defValKeyStash key containing a default value if input field is empty. This value will NOT be validated.

Definition at line 15 of file validatorjson.cpp.

◆ ~ValidatorJson()

ValidatorJson::~ValidatorJson ( )
overridedefault

Destroys the ValidatorJson object.

Member Function Documentation

◆ genericValidationError()

QString ValidatorJson::genericValidationError ( Context c,
const QVariant errorData = QVariant() 
) const
overrideprotectedvirtual

Returns a generic error message if validation failed.

Reimplemented from Cutelyst::ValidatorRule.

Definition at line 71 of file validatorjson.cpp.

References QString::arg(), Array, QString::isEmpty(), QVariant::isNull(), Cutelyst::ValidatorRule::label(), Cutelyst::Context::qtTrId(), and QVariant::toString().

◆ validate()