mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 00:24:47 -07:00
* Add `disallowedwords` setting and perform check Check if any of the words in `disallowedwords` are contained in the username. If so, return false like other checks. NOTE: Needs testing for advanced bugs. * Remove "administrator" from `disallowedwords` "administrator" contains "admin" anyway, so it is not needed. * Add error message if username contains a disallowed word * Add `disallowedregexp` setting and perform check Check if each expression in `disallowedregexp` exactly matches the username. If so, return false. TODO: Add specific error to dialog in `window_main.cpp`. * Add error message for username matching RegExp * Fix indentation * Compile `disallowedregexp` into a QList upon initialization Reduces system load with each registration request. * Clean up `isUsernameValid` function * Fix indentation * Add backwards compatibility to client Client can accept either 7 or 9 rules to maintain compatibility with older versions of server. * Add examples and warnings to `servatrice.ini`
21 lines
528 B
C++
21 lines
528 B
C++
#ifndef SERVATRICE_SETTINGSCACHE_H
|
|
#define SERVATRICE_SETTINGSCACHE_H
|
|
|
|
#include <QSettings>
|
|
#include <QString>
|
|
#include <QList>
|
|
#include <QRegExp>
|
|
|
|
class SettingsCache : public QSettings {
|
|
Q_OBJECT
|
|
private:
|
|
QSettings *settings;
|
|
public:
|
|
SettingsCache(const QString & fileName="servatrice.ini", QSettings::Format format=QSettings::IniFormat, QObject * parent = 0);
|
|
static QString guessConfigurationPath(QString & specificPath);
|
|
QList<QRegExp> disallowedRegExp;
|
|
};
|
|
|
|
extern SettingsCache *settingsCache;
|
|
|
|
#endif
|