Strict value validation in passport.

This commit is contained in:
John Preston 2018-04-13 15:15:07 +04:00
parent e7ce4ca10a
commit e82430cb50
5 changed files with 49 additions and 14 deletions

View File

@ -20,6 +20,14 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace Passport { namespace Passport {
constexpr auto kMaxNameSize = 255;
constexpr auto kMaxDocumentSize = 24;
constexpr auto kMaxStreetSize = 64;
constexpr auto kMinCitySize = 2;
constexpr auto kMaxCitySize = 64;
constexpr auto kMinPostcodeSize = 2;
constexpr auto kMaxPostcodeSize = 12;
EditDocumentScheme GetDocumentScheme( EditDocumentScheme GetDocumentScheme(
Scope::Type type, Scope::Type type,
base::optional<Value::Type> scansType) { base::optional<Value::Type> scansType) {
@ -39,9 +47,18 @@ EditDocumentScheme GetDocumentScheme(
return value; return value;
}; };
const auto DontValidate = nullptr; const auto DontValidate = nullptr;
const auto NotEmptyValidate = [](const QString &value) { const auto LimitedValidate = [](int max, int min = 1) {
return !value.isEmpty(); return [=](const QString &value) {
return (value.size() >= min) && (value.size() <= max);
};
}; };
const auto NameValidate = LimitedValidate(kMaxNameSize);
const auto DocumentValidate = LimitedValidate(kMaxDocumentSize);
const auto StreetValidate = LimitedValidate(kMaxStreetSize);
const auto CityValidate = LimitedValidate(kMaxCitySize, kMinCitySize);
const auto PostcodeValidate = LimitedValidate(
kMaxPostcodeSize,
kMinPostcodeSize);
const auto DateValidate = [](const QString &value) { const auto DateValidate = [](const QString &value) {
return QRegularExpression( return QRegularExpression(
"^\\d{2}\\.\\d{2}\\.\\d{4}$" "^\\d{2}\\.\\d{2}\\.\\d{4}$"
@ -82,16 +99,18 @@ EditDocumentScheme GetDocumentScheme(
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("first_name"), qsl("first_name"),
lang(lng_passport_first_name), lang(lng_passport_first_name),
NotEmptyValidate, NameValidate,
DontFormat, DontFormat,
kMaxNameSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("last_name"), qsl("last_name"),
lang(lng_passport_last_name), lang(lng_passport_last_name),
DontValidate, NameValidate,
DontFormat, DontFormat,
kMaxNameSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
@ -122,8 +141,9 @@ EditDocumentScheme GetDocumentScheme(
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("document_no"), qsl("document_no"),
lang(lng_passport_document_number), lang(lng_passport_document_number),
NotEmptyValidate, DocumentValidate,
DontFormat, DontFormat,
kMaxDocumentSize,
}, },
{ {
ValueClass::Scans, ValueClass::Scans,
@ -161,8 +181,9 @@ EditDocumentScheme GetDocumentScheme(
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("street_line1"), qsl("street_line1"),
lang(lng_passport_street), lang(lng_passport_street),
NotEmptyValidate, StreetValidate,
DontFormat, DontFormat,
kMaxStreetSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
@ -171,14 +192,16 @@ EditDocumentScheme GetDocumentScheme(
lang(lng_passport_street), lang(lng_passport_street),
DontValidate, DontValidate,
DontFormat, DontFormat,
kMaxStreetSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("city"), qsl("city"),
lang(lng_passport_city), lang(lng_passport_city),
NotEmptyValidate, CityValidate,
DontFormat, DontFormat,
kMaxStreetSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
@ -187,6 +210,7 @@ EditDocumentScheme GetDocumentScheme(
lang(lng_passport_state), lang(lng_passport_state),
DontValidate, DontValidate,
DontFormat, DontFormat,
kMaxStreetSize,
}, },
{ {
ValueClass::Fields, ValueClass::Fields,
@ -201,8 +225,9 @@ EditDocumentScheme GetDocumentScheme(
PanelDetailsType::Text, PanelDetailsType::Text,
qsl("post_code"), qsl("post_code"),
lang(lng_passport_postcode), lang(lng_passport_postcode),
NotEmptyValidate, PostcodeValidate,
DontFormat, DontFormat,
kMaxPostcodeSize,
}, },
}; };
return result; return result;

View File

@ -24,7 +24,11 @@ namespace {
class TextRow : public PanelDetailsRow { class TextRow : public PanelDetailsRow {
public: public:
TextRow(QWidget *parent, const QString &label, const QString &value); TextRow(
QWidget *parent,
const QString &label,
const QString &value,
int limit);
bool setFocusFast() override; bool setFocusFast() override;
rpl::producer<QString> value() const override; rpl::producer<QString> value() const override;
@ -191,10 +195,12 @@ private:
TextRow::TextRow( TextRow::TextRow(
QWidget *parent, QWidget *parent,
const QString &label, const QString &label,
const QString &value) const QString &value,
int limit)
: PanelDetailsRow(parent, label) : PanelDetailsRow(parent, label)
, _field(this, st::passportDetailsField, nullptr, value) , _field(this, st::passportDetailsField, nullptr, value)
, _value(value) { , _value(value) {
_field->setMaxLength(limit);
connect(_field, &Ui::InputField::changed, [=] { connect(_field, &Ui::InputField::changed, [=] {
_value = valueCurrent(); _value = valueCurrent();
}); });
@ -890,11 +896,12 @@ object_ptr<PanelDetailsRow> PanelDetailsRow::Create(
not_null<PanelController*> controller, not_null<PanelController*> controller,
const QString &label, const QString &label,
const QString &value, const QString &value,
const QString &error) { const QString &error,
int limit) {
auto result = [&]() -> object_ptr<PanelDetailsRow> { auto result = [&]() -> object_ptr<PanelDetailsRow> {
switch (type) { switch (type) {
case Type::Text: case Type::Text:
return object_ptr<TextRow>(parent, label, value); return object_ptr<TextRow>(parent, label, value, limit);
case Type::Country: case Type::Country:
return object_ptr<CountryRow>(parent, controller, label, value); return object_ptr<CountryRow>(parent, controller, label, value);
case Type::Gender: case Type::Gender:

View File

@ -59,7 +59,8 @@ public:
not_null<PanelController*> controller, not_null<PanelController*> controller,
const QString &label, const QString &label,
const QString &value, const QString &value,
const QString &error); const QString &error,
int limit = 0);
virtual bool setFocusFast(); virtual bool setFocusFast();
virtual rpl::producer<QString> value() const = 0; virtual rpl::producer<QString> value() const = 0;

View File

@ -246,7 +246,8 @@ not_null<Ui::RpWidget*> PanelEditDocument::setupContent(
_controller, _controller,
row.label, row.label,
valueOrEmpty(*fields, row.key), valueOrEmpty(*fields, row.key),
QString()))); QString(),
row.lengthLimit)));
} }
inner->add( inner->add(

View File

@ -38,6 +38,7 @@ struct EditDocumentScheme {
QString label; QString label;
base::lambda<bool(const QString &value)> validate; base::lambda<bool(const QString &value)> validate;
base::lambda<QString(const QString &value)> format; base::lambda<QString(const QString &value)> format;
int lengthLimit = 0;
}; };
std::vector<Row> rows; std::vector<Row> rows;
QString rowsHeader; QString rowsHeader;