dogecoin/src/qt/bitcoinaddressvalidator.cpp

84 lines
2 KiB
C++
Raw Normal View History

2011-05-13 22:00:27 +02:00
#include "bitcoinaddressvalidator.h"
/* Base58 characters are:
"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
This is:
- All numbers except for '0'
- All uppercase letters except for 'I' and 'O'
- All lowercase letters except for 'l'
User friendly Base58 input can map
- 'l' and 'I' to '1'
- '0' and 'O' to 'o'
*/
2011-05-13 22:00:27 +02:00
BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) :
2011-06-03 10:52:49 +02:00
QValidator(parent)
2011-05-13 22:00:27 +02:00
{
}
QValidator::State BitcoinAddressValidator::validate(QString &input, int &pos) const
{
// Correction
for(int idx=0; idx<input.size();)
{
bool removeChar = false;
QChar ch = input.at(idx);
// Transform characters that are visually close
switch(ch.unicode())
{
case 'l':
case 'I':
input[idx] = QChar('1');
break;
case '0':
case 'O':
input[idx] = QChar('o');
break;
// Qt categorizes these as "Other_Format" not "Separator_Space"
case 0x200B: // ZERO WIDTH SPACE
case 0xFEFF: // ZERO WIDTH NO-BREAK SPACE
removeChar = true;
break;
default:
break;
}
// Remove whitespace
if(ch.isSpace())
removeChar = true;
// To next character
if(removeChar)
input.remove(idx, 1);
else
++idx;
2011-06-03 10:52:49 +02:00
}
// Validation
2011-06-03 10:52:49 +02:00
QValidator::State state = QValidator::Acceptable;
for(int idx=0; idx<input.size(); ++idx)
{
int ch = input.at(idx).unicode();
2011-06-03 10:52:49 +02:00
if(((ch >= '0' && ch<='9') ||
(ch >= 'a' && ch<='z') ||
(ch >= 'A' && ch<='Z')) &&
ch != 'l' && ch != 'I' && ch != '0' && ch != 'O')
{
// Alphanumeric and not a 'forbidden' character
2011-06-03 10:52:49 +02:00
}
else
{
state = QValidator::Invalid;
}
}
2011-06-03 10:52:49 +02:00
2011-07-16 19:01:05 +02:00
// Empty address is "intermediate" input
if(input.isEmpty())
{
state = QValidator::Intermediate;
}
2011-06-03 10:52:49 +02:00
return state;
}