Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013, Regents of the University of California |
| 4 | * Yingdi Yu |
| 5 | * |
| 6 | * BSD license, See the LICENSE file for more information |
| 7 | * |
| 8 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 9 | */ |
| 10 | |
| 11 | #include <QApplication> |
| 12 | #include <QMessageBox> |
| 13 | #include <QDir> |
| 14 | #include <QTimer> |
| 15 | #include "controller.h" |
| 16 | |
| 17 | #ifndef Q_MOC_RUN |
| 18 | #include <boost/filesystem.hpp> |
| 19 | #include <boost/lexical_cast.hpp> |
| 20 | #include <ndn-cpp-dev/util/random.hpp> |
| 21 | #include <cryptopp/sha.h> |
| 22 | #include <cryptopp/hex.h> |
| 23 | #include <cryptopp/files.h> |
| 24 | #include <cryptopp/filters.h> |
| 25 | #include "config.pb.h" |
| 26 | #include "endorse-info.pb.h" |
| 27 | #include "logging.h" |
| 28 | #endif |
| 29 | |
| 30 | INIT_LOGGER("chronos.Controller"); |
| 31 | |
| 32 | using namespace ndn; |
| 33 | |
| 34 | Q_DECLARE_METATYPE(ndn::Name) |
| 35 | Q_DECLARE_METATYPE(ndn::IdentityCertificate) |
| 36 | Q_DECLARE_METATYPE(chronos::EndorseInfo) |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 37 | Q_DECLARE_METATYPE(ndn::Interest) |
| 38 | Q_DECLARE_METATYPE(size_t) |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 39 | |
| 40 | namespace chronos { |
| 41 | |
| 42 | static const uint8_t ROUTING_PREFIX_SEPARATOR[2] = {0xF0, 0x2E}; |
| 43 | |
| 44 | // constructor & destructor |
| 45 | Controller::Controller(shared_ptr<Face> face, |
| 46 | QWidget* parent) |
| 47 | : QDialog(parent) |
| 48 | , m_face(face) |
| 49 | , m_invitationListenerId(0) |
| 50 | , m_contactManager(m_face) |
| 51 | , m_settingDialog(new SettingDialog) |
| 52 | , m_startChatDialog(new StartChatDialog) |
| 53 | , m_profileEditor(new ProfileEditor) |
| 54 | , m_invitationDialog(new InvitationDialog) |
| 55 | , m_contactPanel(new ContactPanel) |
| 56 | , m_browseContactDialog(new BrowseContactDialog) |
| 57 | , m_addContactPanel(new AddContactPanel) |
| 58 | { |
| 59 | qRegisterMetaType<ndn::Name>("ndn.Name"); |
| 60 | qRegisterMetaType<ndn::IdentityCertificate>("ndn.IdentityCertificate"); |
| 61 | qRegisterMetaType<chronos::EndorseInfo>("chronos.EndorseInfo"); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 62 | qRegisterMetaType<ndn::Interest>("ndn.Interest"); |
| 63 | qRegisterMetaType<size_t>("size_t"); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 64 | |
| 65 | connect(this, SIGNAL(localPrefixUpdated(const QString&)), |
| 66 | this, SLOT(onLocalPrefixUpdated(const QString&))); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 67 | connect(this, SIGNAL(invitationInterest(const ndn::Name&, const ndn::Interest&, size_t)), |
| 68 | this, SLOT(onInvitationInterest(const ndn::Name&, const ndn::Interest&, size_t))); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 69 | |
| 70 | // Connection to ContactManager |
| 71 | connect(this, SIGNAL(identityUpdated(const QString&)), |
| 72 | &m_contactManager, SLOT(onIdentityUpdated(const QString&))); |
| 73 | connect(&m_contactManager, SIGNAL(warning(const QString&)), |
| 74 | this, SLOT(onWarning(const QString&))); |
| 75 | connect(this, SIGNAL(refreshBrowseContact()), |
| 76 | &m_contactManager, SLOT(onRefreshBrowseContact())); |
| 77 | connect(&m_contactManager, SIGNAL(contactInfoFetchFailed(const QString&)), |
| 78 | this, SLOT(onWarning(const QString&))); |
| 79 | connect(&m_contactManager, SIGNAL(contactIdListReady(const QStringList&)), |
| 80 | this, SLOT(onContactIdListReady(const QStringList&))); |
| 81 | |
| 82 | // Connection to SettingDialog |
| 83 | connect(this, SIGNAL(identityUpdated(const QString&)), |
| 84 | m_settingDialog, SLOT(onIdentityUpdated(const QString&))); |
| 85 | connect(m_settingDialog, SIGNAL(identityUpdated(const QString&)), |
| 86 | this, SLOT(onIdentityUpdated(const QString&))); |
| 87 | connect(m_settingDialog, SIGNAL(nickUpdated(const QString&)), |
| 88 | this, SLOT(onNickUpdated(const QString&))); |
| 89 | |
| 90 | // Connection to ProfileEditor |
| 91 | connect(this, SIGNAL(closeDBModule()), |
| 92 | m_profileEditor, SLOT(onCloseDBModule())); |
| 93 | connect(this, SIGNAL(identityUpdated(const QString&)), |
| 94 | m_profileEditor, SLOT(onIdentityUpdated(const QString&))); |
| 95 | connect(m_profileEditor, SIGNAL(updateProfile()), |
| 96 | &m_contactManager, SLOT(onUpdateProfile())); |
| 97 | |
| 98 | // Connection to StartChatDialog |
| 99 | connect(m_startChatDialog, SIGNAL(startChatroom(const QString&, bool)), |
| 100 | this, SLOT(onStartChatroom(const QString&, bool))); |
| 101 | |
| 102 | // Connection to InvitationDialog |
| 103 | connect(m_invitationDialog, SIGNAL(invitationResponded(const ndn::Name&, bool)), |
| 104 | this, SLOT(onInvitationResponded(const ndn::Name&, bool))); |
| 105 | |
| 106 | // Connection to AddContactPanel |
| 107 | connect(m_addContactPanel, SIGNAL(fetchInfo(const QString&)), |
| 108 | &m_contactManager, SLOT(onFetchContactInfo(const QString&))); |
| 109 | connect(m_addContactPanel, SIGNAL(addContact(const QString&)), |
| 110 | &m_contactManager, SLOT(onAddFetchedContact(const QString&))); |
| 111 | connect(&m_contactManager, SIGNAL(contactEndorseInfoReady(const chronos::EndorseInfo&)), |
| 112 | m_addContactPanel, SLOT(onContactEndorseInfoReady(const chronos::EndorseInfo&))); |
| 113 | |
| 114 | |
| 115 | // Connection to BrowseContactDialog |
| 116 | connect(m_browseContactDialog, SIGNAL(directAddClicked()), |
| 117 | this, SLOT(onDirectAdd())); |
| 118 | connect(m_browseContactDialog, SIGNAL(fetchIdCert(const QString&)), |
| 119 | &m_contactManager, SLOT(onFetchIdCert(const QString&))); |
| 120 | connect(m_browseContactDialog, SIGNAL(addContact(const QString&)), |
| 121 | &m_contactManager, SLOT(onAddFetchedContactIdCert(const QString&))); |
| 122 | connect(&m_contactManager, SIGNAL(idCertNameListReady(const QStringList&)), |
| 123 | m_browseContactDialog, SLOT(onIdCertNameListReady(const QStringList&))); |
| 124 | connect(&m_contactManager, SIGNAL(nameListReady(const QStringList&)), |
| 125 | m_browseContactDialog, SLOT(onNameListReady(const QStringList&))); |
| 126 | connect(&m_contactManager, SIGNAL(idCertReady(const ndn::IdentityCertificate&)), |
| 127 | m_browseContactDialog, SLOT(onIdCertReady(const ndn::IdentityCertificate&))); |
| 128 | |
| 129 | // Connection to ContactPanel |
| 130 | connect(m_contactPanel, SIGNAL(waitForContactList()), |
| 131 | &m_contactManager, SLOT(onWaitForContactList())); |
| 132 | connect(m_contactPanel, SIGNAL(waitForContactInfo(const QString&)), |
| 133 | &m_contactManager, SLOT(onWaitForContactInfo(const QString&))); |
| 134 | connect(m_contactPanel, SIGNAL(removeContact(const QString&)), |
| 135 | &m_contactManager, SLOT(onRemoveContact(const QString&))); |
| 136 | connect(m_contactPanel, SIGNAL(updateAlias(const QString&, const QString&)), |
| 137 | &m_contactManager, SLOT(onUpdateAlias(const QString&, const QString&))); |
| 138 | connect(m_contactPanel, SIGNAL(updateIsIntroducer(const QString&, bool)), |
| 139 | &m_contactManager, SLOT(onUpdateIsIntroducer(const QString&, bool))); |
| 140 | connect(m_contactPanel, SIGNAL(updateEndorseCertificate(const QString&)), |
| 141 | &m_contactManager, SLOT(onUpdateEndorseCertificate(const QString&))); |
| 142 | connect(m_contactPanel, SIGNAL(warning(const QString&)), |
| 143 | this, SLOT(onWarning(const QString&))); |
| 144 | connect(this, SIGNAL(closeDBModule()), |
| 145 | m_contactPanel, SLOT(onCloseDBModule())); |
| 146 | connect(this, SIGNAL(identityUpdated(const QString&)), |
| 147 | m_contactPanel, SLOT(onIdentityUpdated(const QString&))); |
| 148 | connect(&m_contactManager, SIGNAL(contactAliasListReady(const QStringList&)), |
| 149 | m_contactPanel, SLOT(onContactAliasListReady(const QStringList&))); |
| 150 | connect(&m_contactManager, SIGNAL(contactIdListReady(const QStringList&)), |
| 151 | m_contactPanel, SLOT(onContactIdListReady(const QStringList&))); |
| 152 | connect(&m_contactManager, SIGNAL(contactInfoReady(const QString&, const QString&, const QString&, bool)), |
| 153 | m_contactPanel, SLOT(onContactInfoReady(const QString&, const QString&, const QString&, bool))); |
| 154 | |
| 155 | initialize(); |
| 156 | |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 157 | createTrayIcon(); |
| 158 | |
| 159 | onUpdateLocalPrefixAction(); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | Controller::~Controller() |
| 163 | { |
| 164 | saveConf(); |
| 165 | } |
| 166 | |
| 167 | // public methods |
| 168 | |
| 169 | |
| 170 | // private methods |
| 171 | std::string |
| 172 | Controller::getDBName() |
| 173 | { |
| 174 | std::string dbName("chronos-"); |
| 175 | |
| 176 | std::stringstream ss; |
| 177 | { |
| 178 | using namespace CryptoPP; |
| 179 | |
| 180 | SHA256 hash; |
| 181 | StringSource(m_identity.wireEncode().wire(), m_identity.wireEncode().size(), true, |
| 182 | new HashFilter(hash, new HexEncoder(new FileSink(ss), false))); |
| 183 | } |
| 184 | dbName.append(ss.str()).append(".db"); |
| 185 | |
| 186 | return dbName; |
| 187 | } |
| 188 | |
| 189 | void |
| 190 | Controller::openDB() |
| 191 | { |
| 192 | m_db = QSqlDatabase::addDatabase("QSQLITE"); |
| 193 | QString path = (QDir::home().path()); |
| 194 | path.append(QDir::separator()).append(".chronos").append(QDir::separator()).append(getDBName().c_str()); |
| 195 | m_db.setDatabaseName(path); |
| 196 | bool ok = m_db.open(); |
| 197 | |
| 198 | _LOG_DEBUG("DB opened: " << std::boolalpha << ok ); |
| 199 | } |
| 200 | |
| 201 | void |
| 202 | Controller::initialize() |
| 203 | { |
| 204 | loadConf(); |
| 205 | |
| 206 | m_keyChain.createIdentity(m_identity); |
| 207 | |
| 208 | openDB(); |
| 209 | |
| 210 | emit identityUpdated(QString(m_identity.toUri().c_str())); |
| 211 | |
| 212 | setInvitationListener(); |
| 213 | } |
| 214 | |
| 215 | void |
| 216 | Controller::setInvitationListener() |
| 217 | { |
| 218 | if(m_invitationListenerId != 0) |
| 219 | m_face->unsetInterestFilter(m_invitationListenerId); |
| 220 | |
| 221 | Name invitationPrefix; |
| 222 | Name routingPrefix = getInvitationRoutingPrefix(); |
| 223 | size_t offset = 0; |
| 224 | if(!routingPrefix.isPrefixOf(m_identity)) |
| 225 | { |
| 226 | invitationPrefix.append(routingPrefix).append(ROUTING_PREFIX_SEPARATOR, 2); |
| 227 | offset = routingPrefix.size() + 1; |
| 228 | } |
| 229 | invitationPrefix.append(m_identity).append("CHRONOCHAT-INVITATION"); |
| 230 | |
| 231 | m_invitationListenerId = m_face->setInterestFilter(invitationPrefix, |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 232 | bind(&Controller::onInvitationInterestWrapper, this, _1, _2, offset), |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 233 | bind(&Controller::onInvitationRegisterFailed, this, _1, _2)); |
| 234 | } |
| 235 | |
| 236 | void |
| 237 | Controller::loadConf() |
| 238 | { |
| 239 | namespace fs = boost::filesystem; |
| 240 | |
| 241 | fs::path chronosDir = fs::path(getenv("HOME")) / ".chronos"; |
| 242 | fs::create_directories (chronosDir); |
| 243 | |
| 244 | std::ifstream is((chronosDir / "config").c_str ()); |
| 245 | ChronoChat::Conf conf; |
| 246 | if(conf.ParseFromIstream(&is)) |
| 247 | { |
| 248 | m_identity.clear(); |
| 249 | m_identity.append(conf.identity()); |
| 250 | if(conf.has_nick()) |
| 251 | m_nick = conf.nick(); |
| 252 | else |
| 253 | m_nick = m_identity.get(-1).toUri(); |
| 254 | } |
| 255 | else |
| 256 | { |
| 257 | m_identity.clear(); |
| 258 | // TODO: change below to system default; |
| 259 | m_identity.append("chronochat-tmp-identity") |
| 260 | .append(boost::lexical_cast<std::string>(random::generateWord64())); |
| 261 | |
| 262 | m_nick = m_identity.get(-1).toUri(); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | void |
| 267 | Controller::saveConf() |
| 268 | { |
| 269 | namespace fs = boost::filesystem; |
| 270 | |
| 271 | fs::path chronosDir = fs::path(getenv("HOME")) / ".chronos"; |
| 272 | fs::create_directories (chronosDir); |
| 273 | |
| 274 | std::ofstream os((chronosDir / "config").c_str ()); |
| 275 | ChronoChat::Conf conf; |
| 276 | conf.set_identity(m_identity.toUri()); |
| 277 | if(!m_nick.empty()) |
| 278 | conf.set_nick(m_nick); |
| 279 | conf.SerializeToOstream(&os); |
| 280 | |
| 281 | os.close(); |
| 282 | } |
| 283 | |
| 284 | void |
| 285 | Controller::createActions() |
| 286 | { |
| 287 | m_startChatroom = new QAction(tr("Start new chat"), this); |
| 288 | connect(m_startChatroom, SIGNAL(triggered()), this, SLOT(onStartChatAction())); |
| 289 | |
| 290 | m_settingsAction = new QAction(tr("Settings"), this); |
| 291 | connect(m_settingsAction, SIGNAL(triggered()), this, SLOT(onSettingsAction())); |
| 292 | |
| 293 | m_editProfileAction = new QAction(tr("Edit profile"), this); |
| 294 | connect(m_editProfileAction, SIGNAL(triggered()), this, SLOT(onProfileEditorAction())); |
| 295 | |
| 296 | m_contactListAction = new QAction(tr("Contact List"), this); |
| 297 | connect(m_contactListAction, SIGNAL(triggered()), this, SLOT(onContactListAction())); |
| 298 | |
| 299 | m_addContactAction = new QAction(tr("Add contact"), this); |
| 300 | connect(m_addContactAction, SIGNAL(triggered()), this, SLOT(onAddContactAction())); |
| 301 | |
| 302 | m_updateLocalPrefixAction = new QAction(tr("Update local prefix"), this); |
| 303 | connect(m_updateLocalPrefixAction, SIGNAL(triggered()), this, SLOT(onUpdateLocalPrefixAction())); |
| 304 | |
| 305 | m_minimizeAction = new QAction(tr("Mi&nimize"), this); |
| 306 | connect(m_minimizeAction, SIGNAL(triggered()), this, SLOT(onMinimizeAction())); |
| 307 | |
| 308 | m_quitAction = new QAction(tr("Quit"), this); |
| 309 | connect(m_quitAction, SIGNAL(triggered()), this, SLOT(onQuitAction())); |
| 310 | } |
| 311 | |
| 312 | void |
| 313 | Controller::createTrayIcon() |
| 314 | { |
| 315 | createActions(); |
| 316 | |
| 317 | m_trayIconMenu = new QMenu(this); |
| 318 | m_trayIconMenu->addAction(m_startChatroom); |
| 319 | m_trayIconMenu->addSeparator(); |
| 320 | m_trayIconMenu->addAction(m_settingsAction); |
| 321 | m_trayIconMenu->addAction(m_editProfileAction); |
| 322 | m_trayIconMenu->addSeparator(); |
| 323 | m_trayIconMenu->addAction(m_contactListAction); |
| 324 | m_trayIconMenu->addAction(m_addContactAction); |
| 325 | m_trayIconMenu->addSeparator(); |
| 326 | m_trayIconMenu->addAction(m_updateLocalPrefixAction); |
| 327 | m_trayIconMenu->addSeparator(); |
| 328 | m_trayIconMenu->addAction(m_minimizeAction); |
| 329 | m_closeMenu = m_trayIconMenu->addMenu("Close chatroom"); |
| 330 | m_closeMenu->setEnabled(false); |
| 331 | m_trayIconMenu->addSeparator(); |
| 332 | m_trayIconMenu->addAction(m_quitAction); |
| 333 | |
| 334 | m_trayIcon = new QSystemTrayIcon(this); |
| 335 | m_trayIcon->setContextMenu(m_trayIconMenu); |
| 336 | |
| 337 | m_trayIcon->setIcon(QIcon(":/images/icon_small.png")); |
| 338 | m_trayIcon->setToolTip("ChronoChat System Tray Icon"); |
| 339 | m_trayIcon->setVisible(true); |
| 340 | } |
| 341 | |
| 342 | void |
| 343 | Controller::updateMenu() |
| 344 | { |
| 345 | QMenu* menu = new QMenu(this); |
| 346 | QMenu* closeMenu = 0; |
| 347 | |
| 348 | menu->addAction(m_startChatroom); |
| 349 | menu->addSeparator(); |
| 350 | menu->addAction(m_settingsAction); |
| 351 | menu->addAction(m_editProfileAction); |
| 352 | menu->addSeparator(); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 353 | menu->addAction(m_contactListAction); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 354 | menu->addAction(m_addContactAction); |
| 355 | menu->addSeparator(); |
| 356 | { |
| 357 | ChatActionList::const_iterator it = m_chatActionList.begin(); |
| 358 | ChatActionList::const_iterator end = m_chatActionList.end(); |
| 359 | if(it != end) |
| 360 | { |
| 361 | for(; it != end; it++) |
| 362 | menu->addAction(it->second); |
| 363 | menu->addSeparator(); |
| 364 | } |
| 365 | } |
| 366 | menu->addAction(m_updateLocalPrefixAction); |
| 367 | menu->addSeparator(); |
| 368 | menu->addAction(m_minimizeAction); |
| 369 | closeMenu = menu->addMenu("Close chatroom"); |
| 370 | { |
| 371 | ChatActionList::const_iterator it = m_closeActionList.begin(); |
| 372 | ChatActionList::const_iterator end = m_closeActionList.end(); |
| 373 | if(it == end) |
| 374 | { |
| 375 | closeMenu->setEnabled(false); |
| 376 | } |
| 377 | else |
| 378 | { |
| 379 | for(; it != end; it++) |
| 380 | closeMenu->addAction(it->second); |
| 381 | } |
| 382 | } |
| 383 | menu->addSeparator(); |
| 384 | menu->addAction(m_quitAction); |
| 385 | |
| 386 | m_trayIcon->setContextMenu(menu); |
| 387 | delete m_trayIconMenu; |
| 388 | m_trayIconMenu = menu; |
| 389 | m_closeMenu = closeMenu; |
| 390 | } |
| 391 | |
| 392 | void |
| 393 | Controller::onLocalPrefix(const Interest& interest, Data& data) |
| 394 | { |
| 395 | QString localPrefixStr = QString::fromUtf8 |
| 396 | (reinterpret_cast<const char*>(data.getContent().value()), data.getContent().value_size()) |
| 397 | .trimmed(); |
| 398 | |
| 399 | Name localPrefix(localPrefixStr.toStdString()); |
| 400 | if(m_localPrefix.empty() || m_localPrefix != localPrefix) |
| 401 | emit localPrefixUpdated(localPrefixStr); |
| 402 | } |
| 403 | |
| 404 | void |
| 405 | Controller::onLocalPrefixTimeout(const Interest& interest) |
| 406 | { |
| 407 | QString localPrefixStr("/private/local"); |
| 408 | |
| 409 | Name localPrefix(localPrefixStr.toStdString()); |
| 410 | if(m_localPrefix.empty() || m_localPrefix != localPrefix) |
| 411 | emit localPrefixUpdated(localPrefixStr); |
| 412 | } |
| 413 | |
| 414 | void |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 415 | Controller::onInvitationInterestWrapper(const Name& prefix, const Interest& interest, size_t routingPrefixOffset) |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 416 | { |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 417 | emit invitationInterest(prefix, interest, routingPrefixOffset); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | void |
| 421 | Controller::onInvitationRegisterFailed(const Name& prefix, const std::string& failInfo) |
| 422 | { |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 423 | _LOG_DEBUG("Controller::onInvitationRegisterFailed: " << failInfo); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | void |
| 427 | Controller::onInvitationValidated(const shared_ptr<const Interest>& interest) |
| 428 | { |
| 429 | Invitation invitation(interest->getName()); |
| 430 | std::string alias = invitation.getInviterCertificate().getPublicKeyName().getPrefix(-1).toUri(); // Should be obtained via a method of ContactManager. |
| 431 | |
| 432 | m_invitationDialog->setInvitation(alias, invitation.getChatroom(), interest->getName()); |
| 433 | m_invitationDialog->show(); |
| 434 | } |
| 435 | |
| 436 | void |
| 437 | Controller::onInvitationValidationFailed(const shared_ptr<const Interest>& interest, std::string failureInfo) |
| 438 | { |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 439 | _LOG_DEBUG("Invitation: " << interest->getName() << " cannot not be validated due to: " << failureInfo); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | std::string |
| 443 | Controller::getRandomString() |
| 444 | { |
| 445 | uint32_t r = random::generateWord32(); |
| 446 | std::stringstream ss; |
| 447 | { |
| 448 | using namespace CryptoPP; |
| 449 | StringSource(reinterpret_cast<uint8_t*>(&r), 4, true, |
| 450 | new HexEncoder(new FileSink(ss), false)); |
| 451 | |
| 452 | } |
| 453 | // for(int i = 0; i < 8; i++) |
| 454 | // { |
| 455 | // uint32_t t = r & mask; |
| 456 | // if(t < 10) |
| 457 | // ss << static_cast<char>(t + 0x30); |
| 458 | // else |
| 459 | // ss << static_cast<char>(t + 0x57); |
| 460 | // r = r >> 4; |
| 461 | // } |
| 462 | |
| 463 | return ss.str(); |
| 464 | } |
| 465 | |
| 466 | ndn::Name |
| 467 | Controller::getInvitationRoutingPrefix() |
| 468 | { |
| 469 | return Name("/ndn/broadcast"); |
| 470 | } |
| 471 | |
| 472 | void |
| 473 | Controller::addChatDialog(const QString& chatroomName, ChatDialog* chatDialog) |
| 474 | { |
| 475 | m_chatDialogList[chatroomName.toStdString()] = chatDialog; |
| 476 | connect(chatDialog, SIGNAL(closeChatDialog(const QString&)), |
| 477 | this, SLOT(onRemoveChatDialog(const QString&))); |
| 478 | connect(chatDialog, SIGNAL(showChatMessage(const QString&, const QString&, const QString&)), |
| 479 | this, SLOT(onShowChatMessage(const QString&, const QString&, const QString&))); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 480 | connect(chatDialog, SIGNAL(resetIcon()), |
| 481 | this, SLOT(onResetIcon())); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 482 | connect(this, SIGNAL(localPrefixUpdated(const QString&)), |
| 483 | chatDialog, SLOT(onLocalPrefixUpdated(const QString&))); |
| 484 | |
| 485 | QAction* chatAction = new QAction(chatroomName, this); |
| 486 | m_chatActionList[chatroomName.toStdString()] = chatAction; |
| 487 | connect(chatAction, SIGNAL(triggered()), chatDialog, SLOT(showNormal())); |
| 488 | |
| 489 | QAction* closeAction = new QAction(chatroomName, this); |
| 490 | m_closeActionList[chatroomName.toStdString()] = closeAction; |
| 491 | connect(closeAction, SIGNAL(triggered()), chatDialog, SLOT(onClose())); |
| 492 | |
| 493 | updateMenu(); |
| 494 | } |
| 495 | |
| 496 | // private slots: |
| 497 | void |
| 498 | Controller::onIdentityUpdated(const QString& identity) |
| 499 | { |
| 500 | Name identityName(identity.toStdString()); |
| 501 | |
| 502 | while(!m_chatDialogList.empty()) |
| 503 | { |
| 504 | ChatDialogList::const_iterator it = m_chatDialogList.begin(); |
| 505 | onRemoveChatDialog(QString::fromStdString(it->first)); |
| 506 | } |
| 507 | |
| 508 | m_identity = identityName; |
| 509 | m_keyChain.createIdentity(m_identity); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 510 | setInvitationListener(); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 511 | |
| 512 | emit closeDBModule(); |
| 513 | |
| 514 | QTimer::singleShot(500, this, SLOT(onIdentityUpdatedContinued())); |
| 515 | |
| 516 | } |
| 517 | |
| 518 | void |
| 519 | Controller::onIdentityUpdatedContinued() |
| 520 | { |
| 521 | QString connection = m_db.connectionName(); |
| 522 | // _LOG_DEBUG("connection name: " << connection.toStdString()); |
| 523 | QSqlDatabase::removeDatabase(connection); |
| 524 | m_db.close(); |
| 525 | |
| 526 | openDB(); |
| 527 | |
| 528 | emit identityUpdated(QString(m_identity.toUri().c_str())); |
| 529 | } |
| 530 | |
| 531 | void |
| 532 | Controller::onContactIdListReady(const QStringList& list) |
| 533 | { |
| 534 | ContactList contactList; |
| 535 | |
| 536 | m_contactManager.getContactList(contactList); |
| 537 | m_validator.cleanTrustAnchor(); |
| 538 | |
| 539 | ContactList::const_iterator it = contactList.begin(); |
| 540 | ContactList::const_iterator end = contactList.end(); |
| 541 | |
| 542 | for(; it != end; it++) |
| 543 | m_validator.addTrustAnchor((*it)->getPublicKeyName(), (*it)->getPublicKey()); |
| 544 | |
| 545 | } |
| 546 | |
| 547 | void |
| 548 | Controller::onNickUpdated(const QString& nick) |
| 549 | { |
| 550 | m_nick = nick.toStdString(); |
| 551 | } |
| 552 | |
| 553 | void |
| 554 | Controller::onLocalPrefixUpdated(const QString& localPrefix) |
| 555 | { |
| 556 | m_localPrefix = Name(localPrefix.toStdString()); |
| 557 | } |
| 558 | |
| 559 | void |
| 560 | Controller::onStartChatAction() |
| 561 | { |
| 562 | std::string chatroom = "chatroom-" + getRandomString(); |
| 563 | |
| 564 | m_startChatDialog->setChatroom(chatroom); |
| 565 | m_startChatDialog->show(); |
| 566 | m_startChatDialog->raise(); |
| 567 | } |
| 568 | |
| 569 | void |
| 570 | Controller::onSettingsAction() |
| 571 | { |
| 572 | m_settingDialog->setNick(QString(m_nick.c_str())); |
| 573 | m_settingDialog->show(); |
| 574 | m_settingDialog->raise(); |
| 575 | } |
| 576 | |
| 577 | void |
| 578 | Controller::onProfileEditorAction() |
| 579 | { |
| 580 | m_profileEditor->show(); |
| 581 | m_profileEditor->raise(); |
| 582 | } |
| 583 | |
| 584 | void |
| 585 | Controller::onAddContactAction() |
| 586 | { |
| 587 | emit refreshBrowseContact(); |
| 588 | m_browseContactDialog->show(); |
| 589 | m_browseContactDialog->raise(); |
| 590 | } |
| 591 | |
| 592 | void |
| 593 | Controller::onContactListAction() |
| 594 | { |
| 595 | m_contactPanel->show(); |
| 596 | m_contactPanel->raise(); |
| 597 | } |
| 598 | |
| 599 | void |
| 600 | Controller::onDirectAdd() |
| 601 | { |
| 602 | m_addContactPanel->show(); |
| 603 | m_addContactPanel->raise(); |
| 604 | } |
| 605 | |
| 606 | void |
| 607 | Controller::onUpdateLocalPrefixAction() |
| 608 | { |
| 609 | // Name interestName(); |
| 610 | Interest interest("/local/ndn/prefix"); |
| 611 | interest.setInterestLifetime(1000); |
| 612 | interest.setMustBeFresh(true); |
| 613 | |
| 614 | m_face->expressInterest(interest, |
| 615 | bind(&Controller::onLocalPrefix, this, _1, _2), |
| 616 | bind(&Controller::onLocalPrefixTimeout, this, _1)); |
| 617 | } |
| 618 | |
| 619 | void |
| 620 | Controller::onMinimizeAction() |
| 621 | { |
| 622 | m_settingDialog->hide(); |
| 623 | m_startChatDialog->hide(); |
| 624 | m_profileEditor->hide(); |
| 625 | m_invitationDialog->hide(); |
| 626 | m_addContactPanel->hide(); |
| 627 | |
| 628 | ChatDialogList::iterator it = m_chatDialogList.begin(); |
| 629 | ChatDialogList::iterator end = m_chatDialogList.end(); |
| 630 | for(; it != end; it++) |
| 631 | it->second->hide(); |
| 632 | } |
| 633 | |
| 634 | void |
| 635 | Controller::onQuitAction() |
| 636 | { |
| 637 | while(!m_chatDialogList.empty()) |
| 638 | { |
| 639 | ChatDialogList::const_iterator it = m_chatDialogList.begin(); |
| 640 | onRemoveChatDialog(QString::fromStdString(it->first)); |
| 641 | } |
| 642 | |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 643 | if(m_invitationListenerId != 0) |
| 644 | m_face->unsetInterestFilter(m_invitationListenerId); |
| 645 | |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 646 | delete m_settingDialog; |
| 647 | delete m_startChatDialog; |
| 648 | delete m_profileEditor; |
| 649 | delete m_invitationDialog; |
| 650 | delete m_addContactPanel; |
| 651 | // TODO: clean up all the dialog. |
| 652 | |
| 653 | QApplication::quit(); |
| 654 | } |
| 655 | |
| 656 | void |
| 657 | Controller::onStartChatroom(const QString& chatroomName, bool secured) |
| 658 | { |
| 659 | Name chatroomPrefix; |
| 660 | chatroomPrefix.append("ndn") |
| 661 | .append("broadcast") |
| 662 | .append("ChronoChat") |
| 663 | .append(chatroomName.toStdString()); |
| 664 | |
| 665 | // check if the chatroom exists |
| 666 | if(m_chatDialogList.find(chatroomName.toStdString()) != m_chatDialogList.end()) |
| 667 | { |
| 668 | QMessageBox::information(this, tr("ChronoChat"), |
| 669 | tr("You are creating an existing chatroom." |
| 670 | "You can check it in the context memu.")); |
| 671 | return; |
| 672 | } |
| 673 | |
| 674 | // TODO: We should create a chatroom specific key/cert (which should be created in the first half of this method, but let's use the default one for now. |
| 675 | shared_ptr<IdentityCertificate> idCert = m_keyChain.getCertificate(m_keyChain.getDefaultCertificateNameForIdentity(m_identity)); |
| 676 | ChatDialog* chatDialog = new ChatDialog(&m_contactManager, m_face, *idCert, chatroomPrefix, m_localPrefix, m_nick, secured); |
| 677 | |
| 678 | addChatDialog(chatroomName, chatDialog); |
| 679 | chatDialog->show(); |
| 680 | } |
| 681 | |
| 682 | void |
| 683 | Controller::onInvitationResponded(const Name& invitationName, bool accepted) |
| 684 | { |
| 685 | Data response; |
| 686 | shared_ptr<IdentityCertificate> chatroomCert; |
| 687 | |
| 688 | // generate reply; |
| 689 | if(accepted) |
| 690 | { |
| 691 | Name responseName = invitationName; |
| 692 | responseName.append(m_localPrefix.wireEncode()); |
| 693 | |
| 694 | response.setName(responseName); |
| 695 | |
| 696 | // We should create a particular certificate for this chatroom, but let's use default one for now. |
| 697 | chatroomCert = m_keyChain.getCertificate(m_keyChain.getDefaultCertificateNameForIdentity(m_identity)); |
| 698 | |
| 699 | response.setContent(chatroomCert->wireEncode()); |
| 700 | response.setFreshnessPeriod(1000); |
| 701 | } |
| 702 | else |
| 703 | { |
| 704 | response.setName(invitationName); |
| 705 | response.setFreshnessPeriod(1000); |
| 706 | } |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 707 | m_keyChain.signByIdentity(response, m_identity); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 708 | |
| 709 | // Check if we need a wrapper |
| 710 | Name invitationRoutingPrefix = getInvitationRoutingPrefix(); |
| 711 | if(invitationRoutingPrefix.isPrefixOf(m_identity)) |
| 712 | { |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 713 | m_face->put(response); |
| 714 | } |
| 715 | else |
| 716 | { |
| 717 | Name wrappedName; |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 718 | wrappedName.append(invitationRoutingPrefix) |
| 719 | .append(ROUTING_PREFIX_SEPARATOR, 2) |
| 720 | .append(response.getName()); |
| 721 | |
| 722 | _LOG_DEBUG("onInvitationResponded: prepare reply " << wrappedName); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 723 | |
| 724 | Data wrappedData(wrappedName); |
| 725 | wrappedData.setContent(response.wireEncode()); |
| 726 | wrappedData.setFreshnessPeriod(1000); |
| 727 | |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 728 | m_keyChain.signByIdentity(wrappedData, m_identity); |
| 729 | m_face->put(wrappedData); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | // create chatroom |
| 733 | if(accepted) |
| 734 | { |
| 735 | Invitation invitation(invitationName); |
| 736 | Name chatroomPrefix; |
| 737 | chatroomPrefix.append("ndn") |
| 738 | .append("broadcast") |
| 739 | .append("ChronoChat") |
| 740 | .append(invitation.getChatroom()); |
| 741 | |
| 742 | //We should create a chatroom specific key/cert (which should be created in the first half of this method, but let's use the default one for now. |
| 743 | shared_ptr<IdentityCertificate> idCert = m_keyChain.getCertificate(m_keyChain.getDefaultCertificateNameForIdentity(m_identity)); |
| 744 | ChatDialog* chatDialog = new ChatDialog(&m_contactManager, m_face, *idCert, chatroomPrefix, m_localPrefix, m_nick, true); |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 745 | chatDialog->addSyncAnchor(invitation); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 746 | |
| 747 | addChatDialog(QString::fromStdString(invitation.getChatroom()), chatDialog); |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 748 | chatDialog->show(); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | void |
| 753 | Controller::onShowChatMessage(const QString& chatroomName, const QString& from, const QString& data) |
| 754 | { |
| 755 | m_trayIcon->showMessage(QString("Chatroom %1 has a new message").arg(chatroomName), |
| 756 | QString("<%1>: %2").arg(from).arg(data), |
| 757 | QSystemTrayIcon::Information, 20000); |
| 758 | m_trayIcon->setIcon(QIcon(":/images/note.png")); |
| 759 | } |
| 760 | |
| 761 | void |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 762 | Controller::onResetIcon() |
| 763 | { |
| 764 | m_trayIcon->setIcon(QIcon(":/images/icon_small.png")); |
| 765 | } |
| 766 | |
| 767 | void |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 768 | Controller::onRemoveChatDialog(const QString& chatroomName) |
| 769 | { |
| 770 | ChatDialogList::iterator it = m_chatDialogList.find(chatroomName.toStdString()); |
| 771 | |
| 772 | if(it != m_chatDialogList.end()) |
| 773 | { |
| 774 | ChatDialog* deletedChat = it->second; |
| 775 | if(deletedChat) |
| 776 | delete deletedChat; |
| 777 | m_chatDialogList.erase(it); |
| 778 | |
| 779 | QAction* chatAction = m_chatActionList[chatroomName.toStdString()]; |
| 780 | QAction* closeAction = m_closeActionList[chatroomName.toStdString()]; |
| 781 | if(chatAction) |
| 782 | delete chatAction; |
| 783 | if(closeAction) |
| 784 | delete closeAction; |
| 785 | |
| 786 | m_chatActionList.erase(chatroomName.toStdString()); |
| 787 | m_closeActionList.erase(chatroomName.toStdString()); |
| 788 | |
| 789 | updateMenu(); |
| 790 | } |
| 791 | } |
| 792 | |
| 793 | void |
| 794 | Controller::onWarning(const QString& msg) |
| 795 | { |
| 796 | QMessageBox::information(this, tr("ChronoChat"), msg); |
| 797 | } |
| 798 | |
| 799 | void |
| 800 | Controller::onError(const QString& msg) |
| 801 | { |
| 802 | QMessageBox::critical(this, tr("ChronoChat"), msg, QMessageBox::Ok); |
| 803 | exit(1); |
| 804 | } |
| 805 | |
Yingdi Yu | 233a972 | 2014-03-07 15:47:09 -0800 | [diff] [blame^] | 806 | void |
| 807 | Controller::onInvitationInterest(const Name& prefix, const Interest& interest, size_t routingPrefixOffset) |
| 808 | { |
| 809 | _LOG_DEBUG("onInvitationInterest: " << interest.getName()); |
| 810 | shared_ptr<Interest> invitationInterest = make_shared<Interest>(boost::cref(interest.getName().getSubName(routingPrefixOffset))); |
| 811 | |
| 812 | // check if the chatroom already exists; |
| 813 | try |
| 814 | { |
| 815 | Invitation invitation(invitationInterest->getName()); |
| 816 | if(m_chatDialogList.find(invitation.getChatroom()) != m_chatDialogList.end()) |
| 817 | return; |
| 818 | } |
| 819 | catch(Invitation::Error& e) |
| 820 | { |
| 821 | // Cannot parse the invitation; |
| 822 | return; |
| 823 | } |
| 824 | |
| 825 | OnInterestValidated onValidated = bind(&Controller::onInvitationValidated, this, _1); |
| 826 | OnInterestValidationFailed onValidationFailed = bind(&Controller::onInvitationValidationFailed, this, _1, _2); |
| 827 | m_validator.validate(*invitationInterest, onValidated, onValidationFailed); |
| 828 | } |
| 829 | |
Yingdi Yu | 348f5ea | 2014-03-01 14:47:25 -0800 | [diff] [blame] | 830 | } // namespace chronos |
| 831 | |
| 832 | #if WAF |
| 833 | #include "controller.moc" |
| 834 | #include "controller.cpp.moc" |
| 835 | #endif |