bump © years
[quassel.git] / src / common / messageevent.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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,
25                            Message::Flags flags, const QDateTime &timestamp)
26     : NetworkEvent(EventManager::MessageEvent, net),
27       _msgType(msgType),
28       _text(msg),
29       _sender(sender),
30       _target(target),
31       _msgFlags(flags)
32 {
33   IrcChannel *channel = network()->ircChannel(_target);
34   if(!channel) {
35     if(!_target.isEmpty() && network()->prefixes().contains(_target.at(0)))
36       _target = _target.mid(1);
37
38     if(_target.startsWith('$') || _target.startsWith('#'))
39       _target = nickFromMask(sender);
40   }
41
42   _bufferType = bufferTypeByTarget(_target);
43
44   if(timestamp.isValid())
45     setTimestamp(timestamp);
46   else
47     setTimestamp(QDateTime::currentDateTime());
48 }
49
50 BufferInfo::Type MessageEvent::bufferTypeByTarget(const QString &target) const {
51   if(target.isEmpty())
52     return BufferInfo::StatusBuffer;
53
54   if(network()->isChannelName(target))
55     return BufferInfo::ChannelBuffer;
56
57   return BufferInfo::QueryBuffer;
58 }
59