blob: 9d0d844e20bda58d61f820b43898e1c6984a9b14 [file] [log] [blame]
Yingdi Yu3b318c12013-10-15 17:54:00 -07001/* -*- 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 "profileeditor.h"
12#include "ui_profileeditor.h"
13#include <QtSql/QSqlRecord>
14#include <QtSql/QSqlField>
15#include <QtSql/QSqlError>
16
17#ifndef Q_MOC_RUN
18#include "logging.h"
Yingdi Yu3b318c12013-10-15 17:54:00 -070019#endif
20
21using namespace ndn;
Yingdi Yu76dd8002013-12-24 11:16:32 +080022using namespace std;
23using namespace ndn::ptr_lib;
Yingdi Yu3b318c12013-10-15 17:54:00 -070024
25INIT_LOGGER("ProfileEditor");
26
Yingdi Yu76dd8002013-12-24 11:16:32 +080027ProfileEditor::ProfileEditor(shared_ptr<ContactManager> contactManager,
Yingdi Yu8f7325a2013-10-17 17:03:46 -070028 QWidget *parent)
Yingdi Yu3b318c12013-10-15 17:54:00 -070029 : QDialog(parent)
30 , ui(new Ui::ProfileEditor)
31 , m_tableModel(new QSqlTableModel())
Yingdi Yu4685b1b2013-10-18 17:05:02 -070032 , m_contactManager(contactManager)
Yingdi Yuf8f572d2014-01-13 11:19:47 -080033 , m_keyChain(new KeyChain())
Yingdi Yu3b318c12013-10-15 17:54:00 -070034{
Yingdi Yu8f7325a2013-10-17 17:03:46 -070035 ui->setupUi(this);
36
Yingdi Yue35bdb82013-11-07 11:32:40 -080037 m_currentIdentity = contactManager->getDefaultIdentity();
38 ui->identityInput->setText(m_currentIdentity.toUri().c_str());
Yingdi Yu3b318c12013-10-15 17:54:00 -070039
Yingdi Yu8f7325a2013-10-17 17:03:46 -070040 connect(ui->addRowButton, SIGNAL(clicked()),
41 this, SLOT(onAddClicked()));
42 connect(ui->deleteRowButton, SIGNAL(clicked()),
43 this, SLOT(onDeleteClicked()));
44 connect(ui->okButton, SIGNAL(clicked()),
45 this, SLOT(onOkClicked()));
46 connect(ui->getButton, SIGNAL(clicked()),
47 this, SLOT(onGetClicked()));
Yingdi Yu3b318c12013-10-15 17:54:00 -070048
Yingdi Yu8f7325a2013-10-17 17:03:46 -070049
Yingdi Yu3b318c12013-10-15 17:54:00 -070050
51}
52
53ProfileEditor::~ProfileEditor()
54{
55 delete ui;
56 delete m_tableModel;
57}
58
59void
60ProfileEditor::onAddClicked()
61{
62 int rowCount = m_tableModel->rowCount();
Yingdi Yu8f7325a2013-10-17 17:03:46 -070063 QSqlRecord record;
64 QSqlField identityField("profile_identity", QVariant::String);
65 record.append(identityField);
66 record.setValue("profile_identity", QString(m_currentIdentity.toUri().c_str()));
Yingdi Yu3b318c12013-10-15 17:54:00 -070067 m_tableModel->insertRow(rowCount);
Yingdi Yu8f7325a2013-10-17 17:03:46 -070068 m_tableModel->setRecord(rowCount, record);
Yingdi Yu3b318c12013-10-15 17:54:00 -070069}
70
71void
72ProfileEditor::onDeleteClicked()
73{
74 QItemSelectionModel* selectionModel = ui->profileTable->selectionModel();
Yingdi Yub2e747d2013-11-05 23:06:43 -080075 QModelIndexList indexList = selectionModel->selectedIndexes();
Yingdi Yu3b318c12013-10-15 17:54:00 -070076
77 int i = indexList.size() - 1;
78 for(; i >= 0; i--)
Yingdi Yu8f7325a2013-10-17 17:03:46 -070079 m_tableModel->removeRow(indexList[i].row());
80
Yingdi Yu3b318c12013-10-15 17:54:00 -070081 m_tableModel->submitAll();
82}
83
84void
85ProfileEditor::onOkClicked()
86{
Yingdi Yuf8f572d2014-01-13 11:19:47 -080087 Name defaultCertName = m_keyChain->getDefaultCertificateNameForIdentity(m_currentIdentity);
Yingdi Yu711f5892013-11-09 22:18:26 -080088 if(defaultCertName.size() == 0)
Yingdi Yue433a502013-11-10 01:34:57 -080089 {
90 emit noKeyOrCert(QString::fromStdString("Corresponding certificate is missing!\nHave you installed the certificate?"));
91 return;
92 }
Yingdi Yu711f5892013-11-09 22:18:26 -080093
Yingdi Yu3b318c12013-10-15 17:54:00 -070094 m_tableModel->submitAll();
Yingdi Yu4685b1b2013-10-18 17:05:02 -070095 m_contactManager->updateProfileData(m_currentIdentity);
Yingdi Yu3b318c12013-10-15 17:54:00 -070096 this->hide();
97}
98
Yingdi Yu8f7325a2013-10-17 17:03:46 -070099void
100ProfileEditor::onGetClicked()
101{
102 QString inputIdentity = ui->identityInput->text();
103 m_currentIdentity = Name(inputIdentity.toUtf8().constData());
104 string filter("profile_identity = '");
105 filter.append(m_currentIdentity.toUri()).append("'");
106
107 m_tableModel->setEditStrategy(QSqlTableModel::OnManualSubmit);
108 m_tableModel->setTable("SelfProfile");
109 m_tableModel->setFilter(filter.c_str());
110 m_tableModel->select();
111 m_tableModel->setHeaderData(0, Qt::Horizontal, QObject::tr("Identity"));
112 m_tableModel->setHeaderData(1, Qt::Horizontal, QObject::tr("Type"));
113 m_tableModel->setHeaderData(2, Qt::Horizontal, QObject::tr("Value"));
114
115 ui->profileTable->setModel(m_tableModel);
116 ui->profileTable->setColumnHidden(0, true);
117 ui->profileTable->show();
118}
119
Yingdi Yu3b318c12013-10-15 17:54:00 -0700120#if WAF
121#include "profileeditor.moc"
122#include "profileeditor.cpp.moc"
123#endif