You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kvirc/src/kvilib/irc/kvi_nickserv.h

113 lines
4.7 KiB

#ifndef _KVI_NICKSERV_H_
#define _KVI_NICKSERV_H_
//=============================================================================
//
// File : kvi_nickserv.h
// Creation date : Thu Aug 09 2001 16:43:56 by Szymon Stefanek
//
// This file is part of the KVirc irc client distribution
// Copyright (C) 2001-2004 Szymon Stefanek (pragma at kvirc dot net)
//
// 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 opinion) any later version.
//
// 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. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#include "kvi_settings.h"
#include "kvi_qstring.h"
#include "kvi_heapobject.h"
#include "kvi_pointerlist.h"
class KviConfig;
class KviIrcMask;
class KVILIB_API KviNickServRule : public KviHeapObject
{
protected:
TQString m_szRegisteredNick; // my registered nickname
TQString m_szNickServMask; // the NickServ service mask
TQString m_szMessageRegexp; // the NickServ message regexp
TQString m_szIdentifyCommand; // the IDENTIFY command to send to server
TQString m_szServerMask; // the mask that the server must match (not used in per-network rules)
public:
KviNickServRule() : KviHeapObject() {};
KviNickServRule(
const TQString &szRegisteredNick,
const TQString &szNickServMask,
const TQString &szMessageRegexp,
const TQString &szIdentifyCommand,
const TQString &szServerMask = TQString())
: KviHeapObject(),
m_szRegisteredNick(szRegisteredNick),
m_szNickServMask(szNickServMask),
m_szMessageRegexp(szMessageRegexp),
m_szIdentifyCommand(szIdentifyCommand),
m_szServerMask(szServerMask)
{};
public:
const TQString & registeredNick() const { return m_szRegisteredNick; };
const TQString & nickServMask() const { return m_szNickServMask; };
const TQString & messageRegexp() const { return m_szMessageRegexp; };
const TQString & identifyCommand() const { return m_szIdentifyCommand; };
const TQString & serverMask() const { return m_szServerMask; };
void setRegisteredNick(const TQString &szRegisteredNick){ m_szRegisteredNick = szRegisteredNick; };
void setNickServMask(const TQString &szNickServMask){ m_szNickServMask = szNickServMask; };
void setMessageRegexp(const TQString &szMessageRegexp){ m_szMessageRegexp = szMessageRegexp; };
void setIdentifyCommand(const TQString &szIdentifyCommand){ m_szIdentifyCommand = szIdentifyCommand; };
void setServerMask(const TQString &szServerMask){ m_szServerMask = szServerMask; };
public:
// avoid crashes under windows
static KviNickServRule * createInstance(const TQString &szRegisteredNick,
const TQString &szNickServMask,
const TQString &szMessageRegexp,
const TQString &szIdentifyCommand,
const TQString &szServerMask = TQString());
void save(KviConfig * cfg,const TQString &prefix);
// returns false if the loaded data has no sense
bool load(KviConfig * cfg,const TQString &prefix);
void copyFrom(const KviNickServRule &src);
};
class KVILIB_API KviNickServRuleSet : public KviHeapObject
{
public:
KviNickServRuleSet();
KviNickServRuleSet(const KviNickServRuleSet &s);
~KviNickServRuleSet();
protected:
KviPointerList<KviNickServRule> * m_pRules; // FIXME: Replace with KviPointerHashTable<TQString,KviPointerList>
bool m_bEnabled;
public:
// avoid crashes under windows
static KviNickServRuleSet * createInstance();
void clear();
bool isEnabled(){ return m_bEnabled; };
void setEnabled(bool bEnabled){ m_bEnabled = bEnabled; };
bool isEmpty(){ return m_pRules ? m_pRules->isEmpty() : true; };
void addRule(KviNickServRule * r);
KviNickServRule * matchRule(const TQString &szNick,const KviIrcMask *nickServ,const TQString &szMsg,const TQString &szServer = TQString());
void copyFrom(const KviNickServRuleSet &src);
void load(const TQString &szConfigFile);
void save(const TQString &szConfigFile);
void save(KviConfig * cfg,const TQString &prefix);
KviPointerList<KviNickServRule> * rules(){ return m_pRules; };
static KviNickServRuleSet * load(KviConfig * cfg,const TQString &prefix);
protected:
bool loadPrivate(KviConfig * cfg,const TQString &prefix,unsigned int nEntries);
};
#endif // _KVI_NICKSERV_H_