Event backend porting
[quassel.git] / src / common / messageevent.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 #include "messageevent.h"
22
23
24 MessageEvent::MessageEvent(Message::Type msgType, Network *net, const QString &msg, const QString &sender, const QString &target, Message::Flags flags)
25     : NetworkEvent(EventManager::MessageEvent, net),
26       _msgType(msgType),
27       _text(msg),
28       _sender(sender),
29       _target(target),
30       _msgFlags(flags)
31 {
32   IrcChannel *channel = network()->ircChannel(_target);
33   if(!channel) {
34     if(!_target.isEmpty() && network()->prefixes().contains(_target.at(0)))
35       _target = _target.mid(1);
36
37     if(_target.startsWith('$') || _target.startsWith('#'))
38       _target = nickFromMask(sender);
39   }
40
41   _bufferType = bufferTypeByTarget(_target);
42 }
43
44 BufferInfo::Type MessageEvent::bufferTypeByTarget(const QString &target) const {
45   if(target.isEmpty())
46     return BufferInfo::StatusBuffer;
47
48   if(network()->isChannelName(target))
49     return BufferInfo::ChannelBuffer;
50
51   return BufferInfo::QueryBuffer;
52 }
53