test: Add build system support and a main function for unit tests
[quassel.git] / src / client / clientignorelistmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "client-export.h"
24
25 #include "ignorelistmanager.h"
26 #include <QMap>
27
28 class CLIENT_EXPORT ClientIgnoreListManager : public IgnoreListManager
29 {
30     Q_OBJECT
31
32 public:
33     explicit ClientIgnoreListManager(QObject *parent = nullptr);
34
35     //! Fetch all matching ignore rules for a given hostmask
36     /** \param hostmask The hostmask of the user
37       * \param network The network name
38       * \param channel The channel name
39       * \return Returns a QMap with the rule as key and a bool, representing if the rule is enabled or not, as value
40       */
41     QMap<QString, bool> matchingRulesForHostmask(const QString &hostmask, const QString &network, const QString &channel) const;
42
43 signals:
44     void ignoreListChanged();
45
46 private:
47     // matches an ignore rule against a given string
48     bool pureMatch(const IgnoreListItem &item, const QString &string) const;
49 };