Adapt to SignalProxy changes
[quassel.git] / src / common / ignorelistmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef IGNORELISTMANAGER_H
22 #define IGNORELISTMANAGER_H
23
24 #include <QString>
25
26 #include "syncableobject.h"
27
28 class Message;
29
30 class IgnoreListManager : public SyncableObject
31 {
32   SYNCABLE_OBJECT
33   Q_OBJECT
34 public:
35   inline IgnoreListManager(QObject *parent = 0) : SyncableObject(parent) { setAllowClientUpdates(true); }
36   IgnoreListManager &operator=(const IgnoreListManager &other);
37
38   enum IgnoreType {
39     SenderIgnore,
40     MessageIgnore
41   };
42
43   enum StrictnessType {
44     UnmatchedStrictness = 0,
45     SoftStrictness = 1,
46     HardStrictness = 2
47   };
48
49   enum ScopeType {
50     GlobalScope,
51     NetworkScope,
52     ChannelScope,
53   };
54
55   struct IgnoreListItem {
56     IgnoreType type;
57     QString ignoreRule;
58     bool isRegEx;
59     StrictnessType strictness;
60     ScopeType scope;
61     QString scopeRule;
62     bool isActive;
63     IgnoreListItem() {}
64     IgnoreListItem(IgnoreType type_, const QString &ignoreRule_, bool isRegEx_, StrictnessType strictness_,
65                ScopeType scope_, const QString &scopeRule_, bool isActive_)
66         : type(type_), ignoreRule(ignoreRule_), isRegEx(isRegEx_), strictness(strictness_), scope(scope_), scopeRule(scopeRule_), isActive(isActive_)  {}
67     bool operator!=(const IgnoreListItem &other) {
68       return (type != other.type ||
69         ignoreRule != other.ignoreRule ||
70         isRegEx != other.isRegEx ||
71         strictness != other.strictness ||
72         scope != other.scope ||
73         scopeRule != other.scopeRule ||
74         isActive != other.isActive);
75     }
76   };
77   typedef QList<IgnoreListItem> IgnoreList;
78
79   int indexOf(const QString &ignore) const;
80   inline bool contains(const QString &ignore) const { return indexOf(ignore) != -1; }
81   inline bool isEmpty() const { return _ignoreList.isEmpty(); }
82   inline int count() const { return _ignoreList.count(); }
83   inline void removeAt(int index) { _ignoreList.removeAt(index); }
84   inline IgnoreListItem &operator[](int i) { return _ignoreList[i]; }
85   inline const IgnoreListItem &operator[](int i) const { return _ignoreList.at(i); }
86   inline const IgnoreList &ignoreList() const { return _ignoreList; }
87
88   //! Check if a message matches the IgnoreRule
89   /** This method checks if a message matches the users ignorelist.
90     * \param msg The Message that should be checked
91     * \param network The networkname the message belongs to
92     * \return UnmatchedStrictness, HardStrictness or SoftStrictness representing the match type
93     */
94   StrictnessType match(const Message &msg, const QString &network = QString());
95
96 public slots:
97   virtual QVariantMap initIgnoreList() const;
98   virtual void initSetIgnoreList(const QVariantMap &ignoreList);
99
100   virtual void addIgnoreListItem(IgnoreType type, const QString &ignoreRule, bool isRegEx, StrictnessType strictness,
101                              ScopeType scope, const QString &scopeRule, bool isActive);
102   virtual void addIgnoreListItem(const IgnoreListItem &item);
103 protected:
104   void setIgnoreList(const QList<IgnoreListItem> &ignoreList) { _ignoreList = ignoreList; }
105
106 signals:
107   void ignoreAdded(IgnoreType type, const QString &ignoreRule, bool isRegex, StrictnessType strictness, ScopeType scope, const QVariant &scopeRule, bool isActive);
108
109 private:
110   // scopeRule is a ; separated list, string is a network/channel-name
111   bool scopeMatch(const QString &scopeRule, const QString &string);
112   IgnoreList _ignoreList;
113 };
114
115 #endif // IGNORELISTMANAGER_H