Introduce CoreAccount and CoreAccountModel
[quassel.git] / src / client / coreaccount.h
diff --git a/src/client/coreaccount.h b/src/client/coreaccount.h
new file mode 100644 (file)
index 0000000..f684743
--- /dev/null
@@ -0,0 +1,96 @@
+/***************************************************************************
+ *   Copyright (C) 2009 by the Quassel Project                             *
+ *   devel@quassel-irc.org                                                 *
+ *                                                                         *
+ *   This program 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) version 3.                                           *
+ *                                                                         *
+ *   This program 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.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+
+#ifndef COREACCOUNT_H_
+#define COREACCOUNT_H_
+
+#include <QCoreApplication>
+#include <QNetworkProxy>
+#include <QUuid>
+#include <QVariantMap>
+
+#include "types.h"
+class CoreAccount {
+  Q_DECLARE_TR_FUNCTIONS(CoreAccount)
+
+public:
+  CoreAccount(AccountId accountId = 0);
+  virtual ~CoreAccount() {};
+
+  inline bool isValid() const { return accountId().isValid(); }
+  inline AccountId accountId() const { return _accountId; }
+  inline QString accountName() const { return isInternal() ? tr("Internal Core") : _accountName; }
+  inline QUuid uuid() const { return _uuid; }
+  inline bool isInternal() const { return _internal; }
+
+  inline QString user() const { return _user; }
+  inline bool storePassword() const { return _storePassword; }
+  inline QString hostName() const { return _hostName; }
+  inline uint port() const { return _port; }
+  inline bool useSsl() const { return _useSsl; }
+
+  inline bool useProxy() const { return _useProxy; }
+  inline QNetworkProxy::ProxyType proxyType() const { return _proxyType; }
+  inline QString proxyUser() const { return _proxyUser; }
+  inline QString proxyHostName() const { return _proxyHostName; }
+  inline uint proxyPort() const { return _proxyPort; }
+
+  void setAccountId(AccountId id);
+  void setAccountName(const QString &accountName);
+  void setUuid(const QUuid &uuid);
+  void setInternal(bool);
+
+  void setUser(const QString &user);
+  void setStorePassword(bool);
+  void setHostName(const QString &hostname);
+  void setPort(uint port);
+  void setUseSsl(bool);
+
+  void setUseProxy(bool);
+  void setProxyType(QNetworkProxy::ProxyType);
+  void setProxyUser(const QString &);
+  void setProxyHostName(const QString &);
+  void setProxyPort(uint);
+
+  /* These might be overridden for KWallet support */
+  virtual inline QString password() const { return _password; }
+  virtual void setPassword(const QString &password);
+  virtual inline QString proxyPassword() const { return _proxyPassword; }
+  virtual void setProxyPassword(const QString &);
+
+  virtual QVariantMap toVariantMap(bool forcePassword = false) const;
+  virtual void fromVariantMap(const QVariantMap &);
+
+  bool operator==(const CoreAccount &other) const;
+
+private:
+  AccountId _accountId;
+  QString _accountName;
+  QUuid _uuid;
+  bool _internal;
+  QString _user, _password, _hostName;
+  uint _port;
+  bool _storePassword, _useSsl, _useProxy;
+  QNetworkProxy::ProxyType _proxyType;
+  QString _proxyUser, _proxyPassword, _proxyHostName;
+  uint _proxyPort;
+};
+
+#endif