X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircuser.h;h=c7a02d5a8e484f753011cb1b00ed8737877aa762;hp=33dd143262ea5bd15af20eb8699f567ce4bb342b;hb=7298446b3e86140c4bbbfe7aeeb959c16c53363c;hpb=e008cd12ef319c4b5f9fe5a8cc1524829551771d diff --git a/src/common/ircuser.h b/src/common/ircuser.h index 33dd1432..c7a02d5a 100644 --- a/src/common/ircuser.h +++ b/src/common/ircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,126 +15,242 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _IRCUSER_H_ -#define _IRCUSER_H_ +#pragma once +#include "common-export.h" + +#include #include #include #include #include +#include "syncableobject.h" +#include "types.h" + class SignalProxy; -class NetworkInfo; +class Network; class IrcChannel; -class IrcUser : public QObject { - Q_OBJECT - - Q_PROPERTY(QString user READ user WRITE setUser STORED false) - Q_PROPERTY(QString host READ host WRITE setHost STORED false) - Q_PROPERTY(QString nick READ nick WRITE setNick STORED false) - - Q_PROPERTY(QStringList channels READ channels STORED false) - // Q_PROPERTY(QStringList usermodes READ usermodes WRITE setUsermodes) +class COMMON_EXPORT IrcUser : public SyncableObject +{ + Q_OBJECT + SYNCABLE_OBJECT + + Q_PROPERTY(QString user READ user WRITE setUser) + Q_PROPERTY(QString host READ host WRITE setHost) + Q_PROPERTY(QString nick READ nick WRITE setNick) + Q_PROPERTY(QString realName READ realName WRITE setRealName) + Q_PROPERTY(QString account READ account WRITE setAccount) + Q_PROPERTY(bool away READ isAway WRITE setAway) + Q_PROPERTY(QString awayMessage READ awayMessage WRITE setAwayMessage) + Q_PROPERTY(QDateTime idleTime READ idleTime WRITE setIdleTime) + Q_PROPERTY(QDateTime loginTime READ loginTime WRITE setLoginTime) + Q_PROPERTY(QString server READ server WRITE setServer) + Q_PROPERTY(QString ircOperator READ ircOperator WRITE setIrcOperator) + Q_PROPERTY(QDateTime lastAwayMessageTime READ lastAwayMessageTime WRITE setLastAwayMessageTime) + Q_PROPERTY(QString whoisServiceReply READ whoisServiceReply WRITE setWhoisServiceReply) + Q_PROPERTY(QString suserHost READ suserHost WRITE setSuserHost) + Q_PROPERTY(bool encrypted READ encrypted WRITE setEncrypted) + + Q_PROPERTY(QStringList channels READ channels) + Q_PROPERTY(QString userModes READ userModes WRITE setUserModes) public: - IrcUser(const QString &hostmask, NetworkInfo *networkInfo); - virtual ~IrcUser(); - - bool initialized() const; - - QString user() const; - QString host() const; - QString nick() const; - QString hostmask() const; - - QString userModes() const; - - QStringList channels() const; - - // user-specific encodings - QTextCodec *codecForEncoding() const; - QTextCodec *codecForDecoding() const; - void setCodecForEncoding(const QString &codecName); - void setCodecForEncoding(QTextCodec *codec); - void setCodecForDecoding(const QString &codecName); - void setCodecForDecoding(QTextCodec *codec); - - QString decodeString(const QByteArray &text) const; - QByteArray encodeString(const QString string) const; + IrcUser(const QString& hostmask, Network* network); + + inline QString user() const { return _user; } + inline QString host() const { return _host; } + inline QString nick() const { return _nick; } + inline QString realName() const { return _realName; } + /** + * Account name, e.g. NickServ/SASL account + * + * @return Account name if logged in, * if logged out, or empty string if unknown + */ + inline QString account() const { return _account; } + QString hostmask() const; + inline bool isAway() const { return _away; } + inline QString awayMessage() const { return _awayMessage; } + QDateTime idleTime(); + inline QDateTime loginTime() const { return _loginTime; } + inline QString server() const { return _server; } + inline QString ircOperator() const { return _ircOperator; } + inline QDateTime lastAwayMessageTime() const { return _lastAwayMessageTime; } + inline QString whoisServiceReply() const { return _whoisServiceReply; } + inline QString suserHost() const { return _suserHost; } + inline bool encrypted() const { return _encrypted; } + inline Network* network() const { return _network; } + + inline QString userModes() const { return _userModes; } + + QStringList channels() const; + + // user-specific encodings + inline QTextCodec* codecForEncoding() const { return _codecForEncoding; } + inline QTextCodec* codecForDecoding() const { return _codecForDecoding; } + void setCodecForEncoding(const QString& codecName); + void setCodecForEncoding(QTextCodec* codec); + void setCodecForDecoding(const QString& codecName); + void setCodecForDecoding(QTextCodec* codec); + + QString decodeString(const QByteArray& text) const; + QByteArray encodeString(const QString& string) const; + + // only valid on client side, these are not synced! + inline QDateTime lastChannelActivity(BufferId id) const { return _lastActivity.value(id); } + void setLastChannelActivity(BufferId id, const QDateTime& time); + inline QDateTime lastSpokenTo(BufferId id) const { return _lastSpokenTo.value(id); } + void setLastSpokenTo(BufferId id, const QDateTime& time); + + /** + * Gets whether or not the away state has changed since it was last acknowledged + * + * Away state is marked as changed by any modification to away status (away/here, message) + * + * NOTE: On servers lacking support for IRCv3 away-notify, this won't update until an autoWHO- + * run for away/here changes, or until sending a message to the user for away message changes. + * + * @see IrcUser::acknowledgeAwayChanged() + * + * @return True if current away state is unchanged from last acknowledgement, otherwise false + */ + inline bool hasAwayChanged() const { return _awayChanged; } + + /** + * Sets the last away state change as acknowledged + * + * @see IrcUser::hasAwayChanged() + */ + inline void acknowledgeAwayChanged() + { + // Don't sync this as individual clients may suppress different kinds of behaviors + _awayChanged = false; + } + + void partChannelInternal(IrcChannel* channel, bool skip_sync = false); + void quitInternal(bool skip_sync = false); public slots: - void setUser(const QString &user); - void setHost(const QString &host); - void setNick(const QString &nick); - void updateHostmask(const QString &mask); - - void setUserModes(const QString &modes); - - void joinChannel(IrcChannel *channel); - void joinChannel(const QString &channelname); - void partChannel(IrcChannel *channel); - void partChannel(const QString &channelname); - - void addUserMode(const QString &mode); - void removeUserMode(const QString &mode); - - // init seters - void initSetChannels(const QStringList channels); - - void setInitialized(); + void setUser(const QString& user); + void setHost(const QString& host); + void setNick(const QString& nick); + void setRealName(const QString& realName); + /** + * Set account name, e.g. NickServ/SASL account + * + * @param[in] account Account name if logged in, * if logged out, or empty string if unknown + */ + void setAccount(const QString& account); + void setAway(bool away); + void setAwayMessage(const QString& awayMessage); + void setIdleTime(const QDateTime& idleTime); + void setLoginTime(const QDateTime& loginTime); + void setServer(const QString& server); + void setIrcOperator(const QString& ircOperator); + // setLastAwayMessage is only called by legacy (pre-0.13) cores, which automatically gets + // converted to setting the appropriate lastAwayMessageTime. Do not use this in new code. + void setLastAwayMessage(int lastAwayMessage); + void setLastAwayMessageTime(const QDateTime& lastAwayMessageTime); + void setWhoisServiceReply(const QString& whoisServiceReply); + void setSuserHost(const QString& suserHost); + void setEncrypted(bool encrypted); + void updateHostmask(const QString& mask); + + void setUserModes(const QString& modes); + + /*! + * \brief joinChannel Called when user joins some channel, this function inserts the channel to internal list of channels this user is in. + * \param channel Pointer to a channel this user just joined + * \param skip_channel_join If this is false, this function will also call IrcChannel::joinIrcUser, can be set to true as a performance tweak. + */ + void joinChannel(IrcChannel* channel, bool skip_channel_join = false); + void joinChannel(const QString& channelname); + void partChannel(IrcChannel* channel); + void partChannel(const QString& channelname); + void quit(); + + void addUserModes(const QString& modes); + void removeUserModes(const QString& modes); signals: - void userSet(QString user); - void hostSet(QString host); - void nickSet(QString newnick); - void hostmaskUpdated(QString mask); - - void userModesSet(QString modes); - - void channelJoined(QString channel); - void channelParted(QString channel); - - void userModeAdded(QString mode); - void userModeRemoved(QString mode); - - void renameObject(QString oldname, QString newname); - -// void setUsermodes(const QSet &usermodes); -// QSet usermodes() const; - - void initDone(); + // void userSet(QString user); + // void hostSet(QString host); + void nickSet(QString newnick); // needed in NetworkModel + // void realNameSet(QString realName); + void awaySet(bool away); // needed in NetworkModel + // void awayMessageSet(QString awayMessage); + // void idleTimeSet(QDateTime idleTime); + // void loginTimeSet(QDateTime loginTime); + // void serverSet(QString server); + // void ircOperatorSet(QString ircOperator); + // void lastAwayMessageTimeSet(QDateTime lastAwayMessageTime); + // void whoisServiceReplySet(QString whoisServiceReply); + // void suserHostSet(QString suserHost); + void encryptedSet(bool encrypted); + + void userModesSet(QString modes); + void userModesAdded(QString modes); + void userModesRemoved(QString modes); + + // void channelJoined(QString channel); + void channelParted(QString channel); + void quited(); + + void lastChannelActivityUpdated(BufferId id, const QDateTime& newTime); + void lastSpokenToUpdated(BufferId id, const QDateTime& newTime); private slots: - void updateObjectName(); - void channelDestroyed(); + void updateObjectName(); + void channelDestroyed(); private: - inline bool operator==(const IrcUser &ircuser2) { - return (_nick.toLower() == ircuser2.nick().toLower()); - } - - inline bool operator==(const QString &nickname) { - return (_nick.toLower() == nickname.toLower()); - } - - bool _initialized; - - QString _nick; - QString _user; - QString _host; - - // QSet _channels; - QSet _channels; - QString _userModes; - - NetworkInfo *networkInfo; - - QTextCodec *_codecForEncoding; - QTextCodec *_codecForDecoding; + inline bool operator==(const IrcUser& ircuser2) { return (_nick.toLower() == ircuser2.nick().toLower()); } + + inline bool operator==(const QString& nickname) { return (_nick.toLower() == nickname.toLower()); } + + /** + * Sets the last away state change as unacknowledged + * + * @see IrcUser::hasAwayChanged() + */ + inline void markAwayChanged() { _awayChanged = true; } + + bool _initialized; + + QString _nick; + QString _user; + QString _host; + QString _realName; + QString _account; /// Account name, e.g. NickServ/SASL account + QString _awayMessage; + bool _away; + QString _server; + QDateTime _idleTime; + QDateTime _idleTimeSet; + QDateTime _loginTime; + QString _ircOperator; + QDateTime _lastAwayMessageTime; + QString _whoisServiceReply; + QString _suserHost; + bool _encrypted; + + // QSet _channels; + QSet _channels; + QString _userModes; + + Network* _network; + + QTextCodec* _codecForEncoding; + QTextCodec* _codecForDecoding; + + QHash _lastActivity; + QHash _lastSpokenTo; + + // Given it's never been acknowledged, assume changes exist on IrcUser creation + /// Tracks if changes in away state (away/here, message) have yet to be acknowledged + bool _awayChanged = true; }; - -#endif