properly rewind oidentd config file
[quassel.git] / src / client / clientuserinputhandler.cpp
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 #include "clientuserinputhandler.h"
22
23 #include "buffermodel.h"
24 #include "client.h"
25 #include "clientaliasmanager.h"
26 #include "clientsettings.h"
27 #include "execwrapper.h"
28 #include "ircuser.h"
29 #include "network.h"
30 #include "types.h"
31 #include "bufferinfo.h"
32 #include "clientbufferviewconfig.h"
33 #include "clientbufferviewmanager.h"
34 #include "messagemodel.h"
35
36 #include <QDateTime>
37
38 ClientUserInputHandler::ClientUserInputHandler(QObject *parent)
39 : BasicHandler(parent)
40 {
41   TabCompletionSettings s;
42   s.notify("CompletionSuffix", this, SLOT(completionSuffixChanged(QVariant)));
43   completionSuffixChanged(s.completionSuffix());
44 }
45
46 void ClientUserInputHandler::completionSuffixChanged(const QVariant &v) {
47   QString suffix = v.toString();
48   QString letter = "A-Za-z";
49   QString special = "\x5b-\x60\x7b-\x7d";
50   _nickRx = QRegExp(QString("^([%1%2][%1%2\\d-]*)%3").arg(letter, special, suffix).trimmed());
51 }
52
53 // this would be the place for a client-side hook
54 void ClientUserInputHandler::handleUserInput(const BufferInfo &bufferInfo, const QString &msg) {
55   if(msg.isEmpty())
56     return;
57
58   if(!msg.startsWith('/')) {
59     if(_nickRx.indexIn(msg) == 0) {
60       const Network *net = Client::network(bufferInfo.networkId());
61       IrcUser *user = net ? net->ircUser(_nickRx.cap(1)) : 0;
62       if(user)
63         user->setLastSpokenTo(bufferInfo.bufferId(), QDateTime::currentDateTime().toUTC());
64     }
65   }
66
67   AliasManager::CommandList clist = Client::aliasManager()->processInput(bufferInfo, msg);
68
69   for(int i = 0; i < clist.count(); i++) {
70     QString cmd = clist.at(i).second.section(' ', 0, 0).remove(0, 1).toUpper();
71     QString payload = clist.at(i).second.section(' ', 1);
72     handle(cmd, Q_ARG(BufferInfo, clist.at(i).first), Q_ARG(QString, payload));
73   }
74 }
75
76 void ClientUserInputHandler::defaultHandler(const QString &cmd, const BufferInfo &bufferInfo, const QString &text) {
77   QString command = QString("/%1 %2").arg(cmd, text);
78   emit sendInput(bufferInfo, command);
79 }
80
81 void ClientUserInputHandler::handleExec(const BufferInfo &bufferInfo, const QString &execString) {
82   ExecWrapper *exec = new ExecWrapper(this); // gets suicidal when it's done
83   exec->start(bufferInfo, execString);
84 }
85
86 void ClientUserInputHandler::handleJoin(const BufferInfo &bufferInfo, const QString &text) {
87   if(text.isEmpty()) {
88     Client::messageModel()->insertErrorMessage(bufferInfo, tr("/JOIN expects a channel"));
89     return;
90   }
91   switchBuffer(bufferInfo.networkId(), text.section(' ', 0, 0));
92   // send to core
93   defaultHandler("JOIN", bufferInfo, text);
94 }
95
96 void ClientUserInputHandler::handleQuery(const BufferInfo &bufferInfo, const QString &text) {
97   if(text.isEmpty()) {
98     Client::messageModel()->insertErrorMessage(bufferInfo, tr("/QUERY expects at least a nick"));
99     return;
100   }
101   switchBuffer(bufferInfo.networkId(), text.section(' ', 0, 0));
102   // send to core
103   defaultHandler("QUERY", bufferInfo, text);
104 }
105
106 void ClientUserInputHandler::switchBuffer(const NetworkId &networkId, const QString &bufferName) {
107   BufferId newBufId = Client::networkModel()->bufferId(networkId, bufferName);
108   if(!newBufId.isValid()) {
109     Client::bufferModel()->switchToBufferAfterCreation(networkId, bufferName);
110   }
111   else {
112     Client::bufferModel()->switchToBuffer(newBufId);
113     // unhide the buffer
114     ClientBufferViewManager *clientBufferViewManager = Client::bufferViewManager();
115     QList<ClientBufferViewConfig*> bufferViewConfigList = clientBufferViewManager->clientBufferViewConfigs();
116     foreach (ClientBufferViewConfig *bufferViewConfig, bufferViewConfigList) {
117       if (bufferViewConfig->temporarilyRemovedBuffers().contains(newBufId)) {
118         bufferViewConfig->addBuffer(newBufId, bufferViewConfig->bufferList().length());
119         //if (bufferViewConfig->sortAlphabetically()) {
120           // TODO we need to trigger a sort here, but can't reach the model required
121           // to get a bufferviewfilter, as the bufferviewmanager only managers configs
122           //BufferViewFilter *filter = qobject_cast<BufferViewFilter *>(model());
123         //}
124       }
125     }
126   }
127 }