2012-02-13 13:43:15 -05:00
|
|
|
/*
|
|
|
|
* Retroshare Identity.
|
|
|
|
*
|
|
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
2012-02-13 13:43:15 -05:00
|
|
|
#include "IdDialog.h"
|
2013-06-04 17:00:43 -04:00
|
|
|
#include "gui/gxs/GxsIdTreeWidgetItem.h"
|
2013-07-10 17:57:23 -04:00
|
|
|
#include "gui/common/UIStateHelper.h"
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
#include <retroshare/rspeers.h>
|
|
|
|
#include <retroshare/rsidentity.h>
|
2013-02-28 16:58:38 -05:00
|
|
|
#include "retroshare/rsgxsflags.h"
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
/******
|
|
|
|
* #define ID_DEBUG 1
|
|
|
|
*****/
|
|
|
|
|
2012-06-13 20:36:25 -04:00
|
|
|
// Data Requests.
|
|
|
|
#define IDDIALOG_IDLIST 1
|
|
|
|
#define IDDIALOG_IDDETAILS 2
|
2013-06-04 17:00:43 -04:00
|
|
|
#define IDDIALOG_REPLIST 3
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
*/
|
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
#define RSID_COL_NICKNAME 0
|
|
|
|
#define RSID_COL_KEYID 1
|
|
|
|
#define RSID_COL_IDTYPE 2
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
#define RSIDREP_COL_NAME 0
|
|
|
|
#define RSIDREP_COL_OPINION 1
|
|
|
|
#define RSIDREP_COL_COMMENT 2
|
|
|
|
#define RSIDREP_COL_REPUTATION 3
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
#define RSID_FILTER_YOURSELF 0x0001
|
|
|
|
#define RSID_FILTER_FRIENDS 0x0002
|
|
|
|
#define RSID_FILTER_OTHERS 0x0004
|
|
|
|
#define RSID_FILTER_PSEUDONYMS 0x0008
|
|
|
|
#define RSID_FILTER_ALL 0xffff
|
2012-06-07 13:11:57 -04:00
|
|
|
|
2012-02-13 13:43:15 -05:00
|
|
|
/** Constructor */
|
|
|
|
IdDialog::IdDialog(QWidget *parent)
|
2013-07-14 14:48:40 -04:00
|
|
|
: RsGxsUpdateBroadcastPage(rsIdentity, parent)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
mIdQueue = NULL;
|
|
|
|
|
|
|
|
/* Setup UI helper */
|
|
|
|
mStateHelper = new UIStateHelper(this);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDLIST, ui.treeWidget_IdList);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDLIST, ui.treeWidget_IdList, false);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDLIST, ui.treeWidget_IdList);
|
|
|
|
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.lineEdit_Nickname);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.lineEdit_KeyId);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.lineEdit_GpgHash);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.lineEdit_GpgId);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.lineEdit_GpgName);
|
2013-09-02 15:20:47 -04:00
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.toolButton_Reputation);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.toolButton_Delete);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.toolButton_EditId);
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.line_RatingOverall);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.line_RatingImplicit);
|
|
|
|
mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui.line_RatingOwn);
|
|
|
|
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_Nickname);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_GpgName);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_KeyId);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_GpgHash);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_GpgId);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.lineEdit_GpgName);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.line_RatingOverall);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.line_RatingImplicit);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui.line_RatingOwn);
|
|
|
|
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_Nickname);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_GpgName);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_KeyId);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_GpgHash);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_GpgId);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.lineEdit_GpgName);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.line_RatingOverall);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.line_RatingImplicit);
|
|
|
|
mStateHelper->addClear(IDDIALOG_IDDETAILS, ui.line_RatingOwn);
|
|
|
|
|
|
|
|
mStateHelper->addWidget(IDDIALOG_REPLIST, ui.treeWidget_RepList);
|
|
|
|
mStateHelper->addLoadPlaceholder(IDDIALOG_REPLIST, ui.treeWidget_RepList);
|
|
|
|
mStateHelper->addClear(IDDIALOG_REPLIST, ui.treeWidget_RepList);
|
|
|
|
|
|
|
|
/* Connect signals */
|
2013-09-02 15:20:47 -04:00
|
|
|
connect(ui.toolButton_NewId, SIGNAL(clicked()), this, SLOT(addIdentity()));
|
2013-07-10 17:57:23 -04:00
|
|
|
connect(ui.todoPushButton, SIGNAL(clicked()), this, SLOT(todo()));
|
2013-09-02 15:20:47 -04:00
|
|
|
connect(ui.toolButton_EditId, SIGNAL(clicked()), this, SLOT(editIdentity()));
|
2014-02-13 06:55:14 -05:00
|
|
|
connect(ui.treeWidget_IdList, SIGNAL(itemSelectionChanged()), this, SLOT(updateSelection()));
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
connect(ui.filterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(filterComboBoxChanged()));
|
|
|
|
connect(ui.filterLineEdit, SIGNAL(textChanged(QString)), this, SLOT(filterChanged(QString)));
|
|
|
|
|
|
|
|
/* Add filter types */
|
|
|
|
ui.filterComboBox->addItem(tr("All"), RSID_FILTER_ALL);
|
|
|
|
ui.filterComboBox->addItem(tr("Yourself"), RSID_FILTER_YOURSELF);
|
|
|
|
ui.filterComboBox->addItem(tr("Friends / Friends of Friends"), RSID_FILTER_FRIENDS);
|
|
|
|
ui.filterComboBox->addItem(tr("Others"), RSID_FILTER_OTHERS);
|
|
|
|
ui.filterComboBox->addItem(tr("Pseudonyms"), RSID_FILTER_PSEUDONYMS);
|
|
|
|
ui.filterComboBox->setCurrentIndex(0);
|
|
|
|
|
|
|
|
/* Add filter actions */
|
|
|
|
QTreeWidgetItem *headerItem = ui.treeWidget_IdList->headerItem();
|
|
|
|
QString headerText = headerItem->text(RSID_COL_NICKNAME);
|
|
|
|
ui.filterLineEdit->addFilter(QIcon(), headerText, RSID_COL_NICKNAME, QString("%1 %2").arg(tr("Search"), headerText));
|
|
|
|
headerText = headerItem->text(RSID_COL_KEYID);
|
|
|
|
ui.filterLineEdit->addFilter(QIcon(), headerItem->text(RSID_COL_KEYID), RSID_COL_KEYID, QString("%1 %2").arg(tr("Search"), headerText));
|
|
|
|
|
|
|
|
/* Setup tree */
|
|
|
|
ui.treeWidget_IdList->sortByColumn(RSID_COL_NICKNAME, Qt::AscendingOrder);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-11-01 20:49:06 -04:00
|
|
|
mIdQueue = new TokenQueue(rsIdentity->getTokenService(), this);
|
2013-07-10 17:57:23 -04:00
|
|
|
|
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::todo()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
QMessageBox::information(this, "Todo",
|
|
|
|
"<b>Open points:</b><ul>"
|
|
|
|
"<li>Delete ID"
|
|
|
|
"<li>Edit ID"
|
|
|
|
"<li>Reputation"
|
|
|
|
"<li>Load/save settings"
|
|
|
|
"</ul>");
|
|
|
|
}
|
|
|
|
|
|
|
|
void IdDialog::filterComboBoxChanged()
|
2013-07-11 04:14:38 -04:00
|
|
|
{
|
|
|
|
requestIdList();
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::filterChanged(const QString& /*text*/)
|
|
|
|
{
|
|
|
|
filterIds();
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
void IdDialog::updateSelection()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem();
|
2013-07-10 17:57:23 -04:00
|
|
|
std::string id;
|
|
|
|
|
|
|
|
if (item)
|
|
|
|
{
|
|
|
|
id = item->text(RSID_COL_KEYID).toStdString();
|
|
|
|
}
|
|
|
|
|
|
|
|
requestIdDetails(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IdDialog::requestIdList()
|
|
|
|
{
|
|
|
|
if (!mIdQueue)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mStateHelper->setLoading(IDDIALOG_IDLIST, true);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_IDDETAILS, true);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, true);
|
|
|
|
|
|
|
|
mIdQueue->cancelActiveRequestTokens(IDDIALOG_IDLIST);
|
|
|
|
|
|
|
|
RsTokReqOptions opts;
|
|
|
|
opts.mReqType = GXS_REQUEST_TYPE_GROUP_DATA;
|
|
|
|
|
|
|
|
uint32_t token;
|
|
|
|
|
|
|
|
mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, IDDIALOG_IDLIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const std::string &ownPgpId, int accept)
|
|
|
|
{
|
|
|
|
bool isOwnId = (data.mPgpKnown && (data.mPgpId == ownPgpId)) || (data.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN);
|
|
|
|
|
|
|
|
/* do filtering */
|
|
|
|
bool ok = false;
|
|
|
|
if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
|
|
|
|
{
|
|
|
|
if (isOwnId && (accept & RSID_FILTER_YOURSELF))
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (data.mPgpKnown)
|
|
|
|
{
|
|
|
|
if (accept & RSID_FILTER_FRIENDS)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (accept & RSID_FILTER_OTHERS)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (accept & RSID_FILTER_PSEUDONYMS)
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isOwnId && (accept & RSID_FILTER_YOURSELF))
|
|
|
|
{
|
|
|
|
ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
|
|
|
if (!item)
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
item = new QTreeWidgetItem();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
2013-07-10 17:57:23 -04:00
|
|
|
item->setText(RSID_COL_NICKNAME, QString::fromUtf8(data.mMeta.mGroupName.c_str()));
|
|
|
|
item->setText(RSID_COL_KEYID, QString::fromStdString(data.mMeta.mGroupId));
|
|
|
|
|
|
|
|
if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
|
|
|
|
{
|
|
|
|
if (data.mPgpKnown)
|
|
|
|
{
|
|
|
|
RsPeerDetails details;
|
|
|
|
rsPeers->getGPGDetails(data.mPgpId, details);
|
|
|
|
item->setText(RSID_COL_IDTYPE, QString::fromUtf8(details.name.c_str()));
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
else
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
item->setText(RSID_COL_IDTYPE, tr("PGP Linked Id"));
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-10 17:57:23 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
item->setText(RSID_COL_IDTYPE, tr("Anon Id"));
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
return true;
|
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::insertIdList(uint32_t token)
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setLoading(IDDIALOG_IDLIST, false);
|
|
|
|
|
|
|
|
int accept = ui.filterComboBox->itemData(ui.filterComboBox->currentIndex()).toInt();
|
|
|
|
|
|
|
|
RsGxsIdGroup data;
|
|
|
|
std::vector<RsGxsIdGroup> datavector;
|
|
|
|
std::vector<RsGxsIdGroup>::iterator vit;
|
|
|
|
if (!rsIdentity->getGroupData(token, datavector))
|
|
|
|
{
|
|
|
|
std::cerr << "IdDialog::insertIdList() Error getting GroupData";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
mStateHelper->setLoading(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_IDLIST, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->clear(IDDIALOG_IDLIST);
|
|
|
|
mStateHelper->clear(IDDIALOG_IDDETAILS);
|
|
|
|
mStateHelper->clear(IDDIALOG_REPLIST);
|
|
|
|
|
|
|
|
return;
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setActive(IDDIALOG_IDLIST, true);
|
|
|
|
|
|
|
|
std::string ownPgpId = rsPeers->getGPGOwnId();
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
/* Update existing and remove not existing items */
|
|
|
|
QTreeWidgetItemIterator itemIterator(ui.treeWidget_IdList);
|
|
|
|
QTreeWidgetItem *item = NULL;
|
|
|
|
while ((item = *itemIterator) != NULL) {
|
|
|
|
itemIterator++;
|
2012-06-13 20:36:25 -04:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
for (vit = datavector.begin(); vit != datavector.end(); ++vit)
|
|
|
|
{
|
|
|
|
if (vit->mMeta.mGroupId == item->text(RSID_COL_KEYID).toStdString())
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (vit == datavector.end())
|
|
|
|
{
|
|
|
|
delete(item);
|
|
|
|
} else {
|
|
|
|
if (!fillIdListItem(*vit, item, ownPgpId, accept))
|
|
|
|
{
|
|
|
|
delete(item);
|
|
|
|
}
|
|
|
|
datavector.erase(vit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Insert new items */
|
|
|
|
for (vit = datavector.begin(); vit != datavector.end(); ++vit)
|
|
|
|
{
|
|
|
|
data = (*vit);
|
|
|
|
|
|
|
|
item = NULL;
|
|
|
|
if (fillIdListItem(*vit, item, ownPgpId, accept))
|
|
|
|
{
|
|
|
|
ui.treeWidget_IdList->addTopLevelItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
filterIds();
|
|
|
|
|
|
|
|
// fix up buttons.
|
|
|
|
updateSelection();
|
|
|
|
}
|
2012-06-13 20:36:25 -04:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::requestIdDetails(std::string &id)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mIdQueue->cancelActiveRequestTokens(IDDIALOG_IDDETAILS);
|
|
|
|
|
|
|
|
if (id.empty())
|
|
|
|
{
|
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->clear(IDDIALOG_IDDETAILS);
|
|
|
|
mStateHelper->clear(IDDIALOG_REPLIST);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mStateHelper->setLoading(IDDIALOG_IDDETAILS, true);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, true);
|
|
|
|
|
2012-06-13 20:36:25 -04:00
|
|
|
RsTokReqOptions opts;
|
2013-07-11 04:14:38 -04:00
|
|
|
opts.mReqType = GXS_REQUEST_TYPE_GROUP_DATA;
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2012-06-13 20:36:25 -04:00
|
|
|
uint32_t token;
|
|
|
|
std::list<std::string> groupIds;
|
|
|
|
groupIds.push_back(id);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, groupIds, IDDIALOG_IDDETAILS);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
void IdDialog::insertIdDetails(uint32_t token)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setLoading(IDDIALOG_IDDETAILS, false);
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
/* get details from libretroshare */
|
2012-10-31 19:32:56 -04:00
|
|
|
RsGxsIdGroup data;
|
2012-11-01 20:49:06 -04:00
|
|
|
std::vector<RsGxsIdGroup> datavector;
|
|
|
|
if (!rsIdentity->getGroupData(token, datavector))
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->clear(IDDIALOG_IDDETAILS);
|
|
|
|
mStateHelper->clear(IDDIALOG_REPLIST);
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
ui.lineEdit_KeyId->setText("ERROR GETTING KEY!");
|
2013-07-10 17:57:23 -04:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-01 20:49:06 -04:00
|
|
|
if (datavector.size() != 1)
|
|
|
|
{
|
|
|
|
std::cerr << "IdDialog::insertIdDetails() Invalid datavector size";
|
2013-07-10 17:57:23 -04:00
|
|
|
|
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, false);
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->clear(IDDIALOG_IDDETAILS);
|
|
|
|
mStateHelper->clear(IDDIALOG_REPLIST);
|
|
|
|
|
2012-11-01 20:49:06 -04:00
|
|
|
ui.lineEdit_KeyId->setText("INVALID DV SIZE");
|
2013-07-10 17:57:23 -04:00
|
|
|
|
2012-11-01 20:49:06 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setActive(IDDIALOG_IDDETAILS, true);
|
|
|
|
|
2012-11-01 20:49:06 -04:00
|
|
|
data = datavector[0];
|
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
/* get GPG Details from rsPeers */
|
2012-11-06 14:18:56 -05:00
|
|
|
std::string ownPgpId = rsPeers->getGPGOwnId();
|
2013-07-11 04:14:38 -04:00
|
|
|
|
2013-07-24 10:33:47 -04:00
|
|
|
ui.lineEdit_Nickname->setText(QString::fromUtf8(data.mMeta.mGroupName.c_str()));
|
2012-06-13 20:36:25 -04:00
|
|
|
ui.lineEdit_KeyId->setText(QString::fromStdString(data.mMeta.mGroupId));
|
2012-11-05 17:32:52 -05:00
|
|
|
ui.lineEdit_GpgHash->setText(QString::fromStdString(data.mPgpIdHash));
|
2012-11-06 14:18:56 -05:00
|
|
|
ui.lineEdit_GpgId->setText(QString::fromStdString(data.mPgpId));
|
2012-11-05 17:32:52 -05:00
|
|
|
|
2012-11-06 14:18:56 -05:00
|
|
|
if (data.mPgpKnown)
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2012-11-06 14:18:56 -05:00
|
|
|
RsPeerDetails details;
|
|
|
|
rsPeers->getGPGDetails(data.mPgpId, details);
|
2013-07-24 10:33:47 -04:00
|
|
|
ui.lineEdit_GpgName->setText(QString::fromUtf8(details.name.c_str()));
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2012-11-06 14:18:56 -05:00
|
|
|
else
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2012-11-06 14:18:56 -05:00
|
|
|
if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
ui.lineEdit_GpgName->setText(tr("Unknown real name"));
|
2012-11-06 14:18:56 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
ui.lineEdit_GpgName->setText(tr("Anonymous Id"));
|
2012-11-06 14:18:56 -05:00
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2012-11-06 14:18:56 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
bool isOwnId = (data.mPgpKnown && (data.mPgpId == ownPgpId)) || (data.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN);
|
2012-11-06 14:18:56 -05:00
|
|
|
|
|
|
|
if (isOwnId)
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2012-11-06 14:18:56 -05:00
|
|
|
ui.radioButton_IdYourself->setChecked(true);
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2012-11-06 14:18:56 -05:00
|
|
|
else if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2012-11-06 14:18:56 -05:00
|
|
|
if (data.mPgpKnown)
|
|
|
|
{
|
|
|
|
if (rsPeers->isGPGAccepted(data.mPgpId))
|
|
|
|
{
|
|
|
|
ui.radioButton_IdFriend->setChecked(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui.radioButton_IdFOF->setChecked(true);
|
|
|
|
}
|
|
|
|
}
|
2013-07-11 04:14:38 -04:00
|
|
|
else
|
2012-11-06 14:18:56 -05:00
|
|
|
{
|
|
|
|
ui.radioButton_IdOther->setChecked(true);
|
|
|
|
}
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2012-11-06 14:18:56 -05:00
|
|
|
else
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2012-11-06 14:18:56 -05:00
|
|
|
ui.radioButton_IdPseudo->setChecked(true);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
2012-11-06 14:18:56 -05:00
|
|
|
|
|
|
|
if (isOwnId)
|
2012-06-07 13:11:57 -04:00
|
|
|
{
|
2013-09-02 15:20:47 -04:00
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_Reputation, false);
|
2013-07-10 17:57:23 -04:00
|
|
|
// No Delete Ids yet!
|
2013-09-02 15:20:47 -04:00
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_Delete, /*true*/ false);
|
2014-02-01 09:16:15 -05:00
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_EditId, true);
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
// No Reputation yet!
|
2013-09-02 15:20:47 -04:00
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_Reputation, /*true*/ false);
|
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_Delete, false);
|
|
|
|
mStateHelper->setWidgetEnabled(ui.toolButton_EditId, false);
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
/* now fill in the reputation information */
|
|
|
|
ui.line_RatingOverall->setText("Overall Rating TODO");
|
|
|
|
ui.line_RatingOwn->setText("Own Rating TODO");
|
|
|
|
|
|
|
|
if (data.mPgpKnown)
|
|
|
|
{
|
|
|
|
ui.line_RatingImplicit->setText("+50 Known PGP");
|
|
|
|
}
|
|
|
|
else if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
|
|
|
|
{
|
|
|
|
ui.line_RatingImplicit->setText("+10 UnKnown PGP");
|
|
|
|
}
|
2013-07-11 04:14:38 -04:00
|
|
|
else
|
2013-06-04 17:00:43 -04:00
|
|
|
{
|
|
|
|
ui.line_RatingImplicit->setText("+5 Anon Id");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* request network ratings */
|
|
|
|
requestRepList(data.mMeta.mGroupId);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-19 05:48:51 -04:00
|
|
|
void IdDialog::updateDisplay(bool /*complete*/)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-14 14:48:40 -04:00
|
|
|
/* Update identity list */
|
|
|
|
requestIdList();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::addIdentity()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
IdEditDialog dlg(this);
|
|
|
|
dlg.setupNewId(false);
|
|
|
|
dlg.exec();
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::editIdentity()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
|
|
|
QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem();
|
|
|
|
if (!item)
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
std::cerr << "IdDialog::editIdentity() Invalid item";
|
2012-02-13 13:43:15 -05:00
|
|
|
std::cerr << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string keyId = item->text(RSID_COL_KEYID).toStdString();
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
IdEditDialog dlg(this);
|
|
|
|
dlg.setupExistingId(keyId);
|
|
|
|
dlg.exec();
|
2012-06-07 13:11:57 -04:00
|
|
|
}
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::filterIds()
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
int filterColumn = ui.filterLineEdit->currentFilter();
|
|
|
|
QString text = ui.filterLineEdit->text();
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
ui.treeWidget_IdList->filterItems(filterColumn, text);
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::requestRepList(const RsGxsGroupId &aboutId)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, true);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
mIdQueue->cancelActiveRequestTokens(IDDIALOG_REPLIST);
|
2012-02-13 13:43:15 -05:00
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
std::list<RsGxsGroupId> groupIds;
|
|
|
|
groupIds.push_back(aboutId);
|
2013-06-04 17:00:43 -04:00
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
RsTokReqOptions opts;
|
|
|
|
opts.mReqType = GXS_REQUEST_TYPE_MSG_DATA;
|
2013-06-04 17:00:43 -04:00
|
|
|
|
2013-07-11 04:14:38 -04:00
|
|
|
uint32_t token;
|
|
|
|
mIdQueue->requestMsgInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, groupIds, IDDIALOG_REPLIST);
|
2013-06-04 17:00:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void IdDialog::insertRepList(uint32_t token)
|
|
|
|
{
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setLoading(IDDIALOG_REPLIST, false);
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
std::vector<RsGxsIdOpinion> opinions;
|
|
|
|
std::vector<RsGxsIdOpinion>::iterator vit;
|
|
|
|
if (!rsIdentity->getMsgData(token, opinions))
|
|
|
|
{
|
|
|
|
std::cerr << "IdDialog::insertRepList() Error getting Opinions";
|
|
|
|
std::cerr << std::endl;
|
2013-07-10 17:57:23 -04:00
|
|
|
|
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, false);
|
|
|
|
mStateHelper->clear(IDDIALOG_REPLIST);
|
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
mStateHelper->setActive(IDDIALOG_REPLIST, true);
|
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
for(vit = opinions.begin(); vit != opinions.end(); vit++)
|
|
|
|
{
|
|
|
|
RsGxsIdOpinion &op = (*vit);
|
|
|
|
GxsIdTreeWidgetItem *item = new GxsIdTreeWidgetItem();
|
|
|
|
|
|
|
|
/* insert 4 columns */
|
|
|
|
|
|
|
|
/* friend name */
|
|
|
|
item->setId(op.mMeta.mGroupId, RSIDREP_COL_NAME);
|
|
|
|
|
|
|
|
/* score */
|
|
|
|
item->setText(RSIDREP_COL_OPINION, QString::number(op.getOpinion()));
|
|
|
|
|
|
|
|
/* comment */
|
|
|
|
item->setText(RSIDREP_COL_COMMENT, QString::fromUtf8(op.mComment.c_str()));
|
|
|
|
|
|
|
|
/* local reputation */
|
|
|
|
item->setText(RSIDREP_COL_REPUTATION, QString::number(op.getReputation()));
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
ui.treeWidget_RepList->addTopLevelItem(item);
|
2013-06-04 17:00:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 17:57:23 -04:00
|
|
|
void IdDialog::loadRequest(const TokenQueue */*queue*/, const TokenRequest &req)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2013-07-11 04:14:38 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() UserType: " << req.mUserType;
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
2012-06-13 20:36:25 -04:00
|
|
|
switch(req.mUserType)
|
2012-02-13 13:43:15 -05:00
|
|
|
{
|
2012-06-13 20:36:25 -04:00
|
|
|
case IDDIALOG_IDLIST:
|
|
|
|
insertIdList(req.mToken);
|
|
|
|
break;
|
2013-07-11 04:14:38 -04:00
|
|
|
|
2012-06-13 20:36:25 -04:00
|
|
|
case IDDIALOG_IDDETAILS:
|
|
|
|
insertIdDetails(req.mToken);
|
|
|
|
break;
|
2013-07-11 04:14:38 -04:00
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
case IDDIALOG_REPLIST:
|
|
|
|
insertRepList(req.mToken);
|
|
|
|
break;
|
2013-07-11 04:14:38 -04:00
|
|
|
|
2012-06-07 13:11:57 -04:00
|
|
|
default:
|
2013-07-11 04:14:38 -04:00
|
|
|
std::cerr << "IdDialog::loadRequest() ERROR";
|
|
|
|
std::cerr << std::endl;
|
2012-06-13 20:36:25 -04:00
|
|
|
break;
|
2012-02-13 13:43:15 -05:00
|
|
|
}
|
|
|
|
}
|