Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F26446033
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
5 KB
Subscribers
None
View Options
diff --git a/utils/validation.cpp b/utils/validation.cpp
index 39a055899..a6f57e6d6 100644
--- a/utils/validation.cpp
+++ b/utils/validation.cpp
@@ -1,106 +1,127 @@
/* -*- mode: c++; c-basic-offset:4 -*-
utils/validation.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2008 Klarälvdalens Datakonsult AB
Kleopatra is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Kleopatra is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include <config-kleopatra.h>
#include "validation.h"
#include <utils/multivalidator.h>
#include <KDebug>
#include <QRegExp>
#include <QUrl>
+#include <cassert>
+
using namespace Kleo;
static const char email_rx[] = "[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?";
// these are modeled after gnupg/g10/keygen.c:ask_user_id:
static const char name_rx[] = "[^0-9<>][^<>@]{4,}";
static const char comment_rx[] = "[^()]*";
namespace {
class EMailValidator : public QRegExpValidator {
public:
explicit EMailValidator( QObject * parent=0 ) : QRegExpValidator( QRegExp( email_rx ), parent ) {}
/* reimp */ void fixup( QString & ) const {}
/* reimp */ State validate( QString & str, int & pos ) const {
const int atIdx = str.lastIndexOf( '@' );
- if ( atIdx < 0 )
+ if ( atIdx < 0 || str.endsWith( '@' ) )
return QRegExpValidator::validate( str, pos );
+ // toAce/fromAce doesn't like intermediate domain names,
+ // so we fix them up with something innocuous to help it
+ // along, and which we strip again afterwards
+
QString domain = str.mid( atIdx + 1 ).toLower();
- const bool domainEndsWithDot = domain.endsWith( '.' );
- if ( domainEndsWithDot )
- domain.chop( 1 );
+ const int dotIndex = domain.lastIndexOf( '.' );
+ const bool needsOrgAdded = domain.endsWith( '.' );
+ const bool needsDotOrgAdded = !needsOrgAdded && ( dotIndex < 0 || dotIndex == domain.size() - 2 ) ; // yeah, foo.s also disrupts fromAce...
+ if ( needsOrgAdded )
+ domain += "org";
+ if ( needsDotOrgAdded )
+ domain += ".org";
const QByteArray domainEncoded = QUrl::toAce( domain );
const QString domainRestored = QUrl::fromAce( domainEncoded );
+ QString encoded = str.left( atIdx ) + '@' + QString::fromLatin1( domainEncoded );
+ if ( needsDotOrgAdded ) {
+ assert( encoded.endsWith( ".org" ) );
+ encoded.chop( 4 );
+ }
+ if ( needsOrgAdded ) {
+ assert( encoded.endsWith( ".org" ) );
+ encoded.chop( 3 ); // '.' was part of domain before
+ }
+ kDebug() << "\n str :" << str
+ << "\n domain :" << domain
+ << "\n domainEncoded :" << domainEncoded
+ << "\n domainRestored:" << domainRestored
+ << "\n encoded :" << encoded ;
if ( domain != domainRestored )
return Invalid;
- QString encoded = str.left( atIdx ) + '@' + QString::fromLatin1( domainEncoded );
- if ( domainEndsWithDot )
- encoded += '.';
int dummyPosition = 0;
return QRegExpValidator::validate( encoded, dummyPosition );
}
};
}
QValidator * Validation::email( QObject * parent ) {
return new EMailValidator( parent );
}
QValidator * Validation::email( const QRegExp & addRX, QObject * parent ) {
return new MultiValidator( email(), new QRegExpValidator( addRX, 0 ), parent );
}
QValidator * Validation::pgpName( QObject * parent ) {
return new QRegExpValidator( QRegExp( name_rx ), parent );
}
QValidator * Validation::pgpName( const QRegExp & addRX, QObject * parent ) {
return new MultiValidator( pgpName(), new QRegExpValidator( addRX, 0 ), parent );
}
QValidator * Validation::pgpComment( QObject * parent ) {
return new QRegExpValidator( QRegExp( comment_rx ), parent );
}
QValidator * Validation::pgpComment( const QRegExp & addRX, QObject * parent ) {
return new MultiValidator( pgpComment(), new QRegExpValidator( addRX, 0 ), parent );
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Jul 17, 12:22 AM (6 h, 57 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
23/00/907b646c5819238b8c603879aec4
Attached To
rKLEOPATRA Kleopatra
Event Timeline
Log In to Comment