| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 | /*GNU General Public License version 3 noticeCopyright (C) 2012 Mihawk <luiz@netdome.biz>. All rights reserved.This program is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program.  If not, see < http://www.gnu.org/licenses/ >.*/#include "App.h"#include "Client.h"#include <QStringList>#include <QTcpSocket>#include <QTcpServer>#include <QRegExp>#include <QHostInfo>#include <QTimerEvent>#include <QDebug>#include <QtSql/QSqlQuery>#include <QCryptographicHash>#include <QHostAddress>#include <QThread>#include <QTimer>#include "SshClient.h"#include "ActiveClient.h"#include "Settings.h"// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -/**  Used just to expose the msleep function  from QThread  @author  Mihawk <luiz@netdome.biz>*/class Sleeper: public QThread{public:  static void msleep(unsigned long msecs)  {    QThread::msleep(msecs);  }};// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -App::App(int &argc, char **argv) :  QCoreApplication(argc, argv),  myServer(new QTcpServer()),  mySocketConnectedFlag(false),  mySshClient(new SshClient(this)){  if(!parseCommandLine())  {    QTimer::singleShot(0, this, SLOT(quit()));    return;  }  print("CIMS Bot Service v0.12\n========================================================\n");  setApplicationName("CIMSBOT");  setOrganizationDomain("http://redmine.b4r.org/projects/cimsqwbot/");  setOrganizationName("CIMS");  setApplicationVersion("0.12");  myClientsFrameTimerID = startTimer(0);  loadServerList();  print("Connecting to central...\n");  connect(mySshClient, SIGNAL(connected()), SLOT(onCentralConnection()));  mySshClient->connectToHost(Settings::globalInstance()->sshUserName(), Settings::globalInstance()->sshHostName(), Settings::globalInstance()->sshPort());  Settings::globalInstance()->save();}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -App::~App(){  Settings::globalInstance()->save();  cleanup();  delete myServer;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool App::parseCommandLine(){  if(argc() < 2)    return true;  QStringList args = App::arguments();  QString arg;  QStringList::const_iterator itr;  for(itr = args.constBegin()+1; itr != args.constEnd(); ++itr)  {    arg = *itr;    if(arg == "--help" || arg == "-h")    {      printf("Usage: %s [--config/-c config_file] [-h]\n", args.at(0).section("/", -1).toAscii().data());      return false;    }    else if(arg == "--config" || arg == "-c")    {      itr++;      if(itr == args.constEnd())      {        printf("--config: Expected config file path.\n");        return false;      }      arg = *itr;      printf("Using config file [%s]...\n", arg.toAscii().data());      Settings::globalInstance()->changeConfigFile(*itr);      return true;    }  }  return true;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::loadServerList(){  Settings::ServerList list = Settings::globalInstance()->serverList();  Settings::Server sv;  foreach(sv, list)  {    if(myClients.size() == Settings::globalInstance()->maxServers())    {      print("Maximum number of servers allowed reached, some servers weren't added to the monitoring list.\n");      return;    }    addClient(sv.address, sv.port, sv.supportsSendPrivate);  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::saveServerList(){  Settings::ServerList list;  ActiveClient* ac;  foreach(ac, myClients)  {    Settings::Server sv;    sv.address = ac->serverAddressString().split(":").at(0);    sv.port = ac->serverAddressString().split(":").at(1).toUShort();    sv.supportsSendPrivate = ac->client()->supportsSendPrivate();    list.push_back(sv);  }  Settings::globalInstance()->setServerList(list);}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -const QStringList& App::lastMessages() const{  return myLastMessages;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::print(const QString &msg){  printf("%s", msg.toAscii().data());  if(mySocketConnectedFlag)  {    mySocket->write(msg.toAscii());    mySocket->waitForBytesWritten();  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool App::hasSendPrivateSupport(const QString &serverAddress) const{  ActiveClient* ac;  foreach(ac, myClients)  {    if(ac->serverAddressString() == serverAddress)      return ac->client()->supportsSendPrivate();  }  return false;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool App::addClient(const QString &host, quint16 port, bool sendPrivateSupport){  ActiveClient* ac;  QHostAddress ha(host);  QString fullAddress = host + ":" + QString::number(port);  foreach(ac, myClients)  {    if(ac->serverAddressString() == fullAddress)    {      print("That client is already on the list [" + fullAddress + "]\n");      return false;    }  }  ac = new ActiveClient(this, sendPrivateSupport, this);  ac->setAddress(ha, port);  ac->client()->setQuakeFolder(Settings::globalInstance()->quakeFolder().toAscii().data());  ac->client()->setName(Settings::globalInstance()->botName().toAscii().data());  ac->client()->setSpectator(Settings::globalInstance()->botSpectator());  ac->client()->setPing(Settings::globalInstance()->botPing());  ac->client()->setColor(Settings::globalInstance()->botTopColor(), Settings::globalInstance()->botBottomColor());  myClients.push_back(ac);  saveServerList();  print("Client added to watch list [" + fullAddress + "]\n");  return true;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool App::removeClient(const QString &host, quint16 port){  ActiveClient* ac;  QHostAddress ha(host);  QString fullAddress = host + ":" + QString::number(port);  foreach(ac, myClients)  {    if(ac->serverAddressString() == fullAddress)    {      ac->client()->disconnect();      delete ac;      myClients.removeAll(ac);      saveServerList();      print("Client removed from watch list [" + fullAddress + "]\n");      return true;    }  }  print("Client not found on the list [" + fullAddress + "]\n");  return false;}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::activeClientsReplyCounters(int *serverCount, int *playerCount, ActiveClient *ignoreClient){  ActiveClient* ac;  foreach(ac, myClients)  {    if(ac == ignoreClient)      continue;    if(ac->client()->state() == Client::ConnectedState)    {      int pc = ac->playerCount();      if(pc == 255 || pc == 0)        pc = 0;      else        pc--;      *playerCount += pc;      (*serverCount)++;    }  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::timerEvent(QTimerEvent *e){  if(e->timerId() == myClientsFrameTimerID)  {    ActiveClient *ac;    foreach(ac, myClients)    {      ac->run();    }    // HostNames scheduled daily refresh    int currentHour = QTime::currentTime().hour();    int refreshHour = Settings::globalInstance()->refreshHostNamesHour();    if(currentHour == refreshHour && !myHostNamesRequested)    {      print("Refreshing hostname cache...\n");      requestCachedHostNames();      myHostNamesRequested = true;    }    else if(currentHour != refreshHour && myHostNamesRequested)    {      myHostNamesRequested = false;    }  }  Sleeper::msleep(1);}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::requestBroadcast(const QString &type, const QString &user, const QString &server, const QString &message){  if(!Settings::globalInstance()->developerMode())    mySshClient->write("REQ_BC QWalt,-" + type + "-,qw://" + server + ",'" + user + "','" + message + "'\n");  else    mySshClient->write("REQ_BC QDEV,-dev-,qw://" + server + ",'" + user + "','" + message + "'\n");}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::addMessageToHistory(const QString &msg){  myLastMessages.push_back(msg);  if(myLastMessages.size() > 5)    myLastMessages.removeAt(0);}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::broadcast(const QString &msg, ActiveClient* ignoredClient){  ActiveClient* ac;  QString frequency = msg.section(' ', 0, 0);  addMessageToHistory(msg);  foreach(ac, myClients)  {    if(ac == ignoredClient)      continue;    if((frequency == "-qw-" && ac->client()->isQWMuted()) || (frequency == "-spam-" && ac->client()->isSpamMuted()))      continue;    if(ac->client()->state() == Client::ConnectedState)      ac->client()->say(msg);  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::broadcast(const QString &msg, int *serverCount, int *userCount){  ActiveClient* ac;  *serverCount = 0;  *userCount = 0;  QString frequency = msg.section(' ', 0, 0);  addMessageToHistory(msg);  foreach(ac, myClients)  {    if((frequency == "-qw-" && ac->client()->isQWMuted()) || (frequency == "-spam-" && ac->client()->isSpamMuted()))      continue;    if(ac->client()->state() == Client::ConnectedState)    {      ac->client()->say(msg);      *userCount += ac->playerCount() - 1;      (*serverCount)++;    }  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::cleanup(){  ActiveClient* ac;  foreach(ac, myClients)  {    ac->client()->disconnect();    delete ac;  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::setReplyHashAndWaitForReply(const QString &serverAddress, const QString &hash){  ActiveClient* ac;  foreach(ac, myClients)  {    if(serverAddress == ac->serverAddressString())    {      ac->setReplyHashAndWaitForReply(hash);      return;    }  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::incrementReplyCounters(const QString &hash, int userCount, int channelCount, int playerCount, int serverCount){  ActiveClient* ac;  foreach(ac, myClients)  {    if(ac->replyHash() == hash)    {      ac->incrementReplyCounters(userCount, channelCount, playerCount, serverCount);      return;    }  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::requestCachedHostNames(){  ActiveClient* ac;  foreach(ac, myClients)  {    print("Requested HostName for server " + ac->serverAddressString() + "\n");    mySshClient->write("REQ_DNS " + ac->serverAddressString() + "\n");  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::setServerHostName(const QString &serverAddress, const QString &hostName){  ActiveClient* ac;  foreach(ac, myClients)  {    if(ac->serverAddressString() == serverAddress)    {      print("HostName for " + serverAddress + " set to " + hostName + "\n");      ac->setHostName(hostName);      return;    }  }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -QString App::serverHostName(const QString &serverAddress) const{  ActiveClient* ac;  foreach(ac, myClients)  {    if(ac->serverAddressString() == serverAddress)    {      return ac->hostName();    }  }  return QString();}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void App::onCentralConnection(){  print("Connected!\nRefreshing cached hostnames...\n");  requestCachedHostNames();}
 |