mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
158 lines
5.6 KiB
C++
158 lines
5.6 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/gxs/GxsGroupShareKey.cpp *
|
|
* *
|
|
* Copyright 2010 by Christopher Evi-Parker <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the 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 of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#include "GxsGroupShareKey.h"
|
|
|
|
#include <QMessageBox>
|
|
#include <algorithm>
|
|
|
|
#include <retroshare/rspeers.h>
|
|
#include <retroshare/rsgxschannels.h>
|
|
#include <retroshare/rsgxsforums.h>
|
|
#include <retroshare/rsposted.h>
|
|
|
|
#include "gui/common/PeerDefs.h"
|
|
|
|
GroupShareKey::GroupShareKey(QWidget *parent, const RsGxsGroupId &grpId, int grpType) :
|
|
QDialog(parent, Qt::WindowSystemMenuHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint), mGrpId(grpId), mGrpType(grpType)
|
|
{
|
|
ui = new Ui::ShareKey();
|
|
ui->setupUi(this);
|
|
|
|
ui->headerFrame->setHeaderImage(QPixmap(":/images/user/agt_forum64.png"));
|
|
ui->headerFrame->setHeaderText(tr("Share"));
|
|
|
|
connect( ui->buttonBox, SIGNAL(accepted()), this, SLOT(shareKey()));
|
|
connect( ui->buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
|
|
|
/* initialize key share list */
|
|
ui->keyShareList->setHeaderText(tr("Contacts:"));
|
|
ui->keyShareList->setModus(FriendSelectionWidget::MODUS_CHECK);
|
|
ui->keyShareList->setShowType(FriendSelectionWidget::SHOW_GROUP | FriendSelectionWidget::SHOW_SSL);
|
|
ui->keyShareList->start();
|
|
|
|
setTyp();
|
|
}
|
|
|
|
GroupShareKey::~GroupShareKey()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void GroupShareKey::changeEvent(QEvent *e)
|
|
{
|
|
QDialog::changeEvent(e);
|
|
switch (e->type()) {
|
|
case QEvent::LanguageChange:
|
|
ui->retranslateUi(this);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void GroupShareKey::setTyp()
|
|
{
|
|
|
|
if (mGrpType == CHANNEL_KEY_SHARE)
|
|
{
|
|
if (!rsGxsChannels)
|
|
return;
|
|
|
|
ui->headerFrame->setHeaderImage(QPixmap(":/images/channels.png"));
|
|
ui->headerFrame->setHeaderText(tr("Share channel publish permissions"));
|
|
ui->sharekeyinfo_label->setText(tr("You can allow your friends to publish in your channel, or send the publish permissions to another Retroshare instance of yours. Select the friends which you want to be allowed to publish in this channel. Note: it is currently not possible to revoke channel publish permissions."));
|
|
}
|
|
else if(mGrpType == FORUM_KEY_SHARE)
|
|
{
|
|
|
|
ui->headerFrame->setHeaderImage(QPixmap(":/images/konversation64.png"));
|
|
ui->headerFrame->setHeaderText(tr("Share forum admin permissions"));
|
|
ui->sharekeyinfo_label->setText(tr("You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum."));
|
|
|
|
}
|
|
else if (mGrpType == POSTED_KEY_SHARE)
|
|
{
|
|
if (!rsPosted)
|
|
return;
|
|
|
|
ui->headerFrame->setHeaderImage(QPixmap(":/images/posted_64.png"));
|
|
ui->headerFrame->setHeaderText(tr("Share topic admin permissions"));
|
|
ui->sharekeyinfo_label->setText(tr("You can allow your friends to edit the topic. Select them in the list below. Note: it is not possible to revoke Posted admin permissions."));
|
|
|
|
}
|
|
else
|
|
{
|
|
// incorrect type
|
|
return;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
void GroupShareKey::shareKey()
|
|
{
|
|
std::set<RsPeerId> shareList;
|
|
ui->keyShareList->selectedIds<RsPeerId,FriendSelectionWidget::IDTYPE_SSL>(shareList, false);
|
|
|
|
if (shareList.empty()) {
|
|
QMessageBox::warning(this, "RetroShare", tr("Please select at least one peer"), QMessageBox::Ok, QMessageBox::Ok);
|
|
|
|
return;
|
|
}
|
|
|
|
if (mGrpType == CHANNEL_KEY_SHARE)
|
|
{
|
|
if (!rsGxsChannels)
|
|
return;
|
|
|
|
if (!rsGxsChannels->groupShareKeys(mGrpId, shareList)) {
|
|
std::cerr << "Failed to share keys!" << std::endl;
|
|
return;
|
|
}
|
|
}
|
|
else if(mGrpType == FORUM_KEY_SHARE)
|
|
{
|
|
QMessageBox::warning(NULL,"Not implemented.","Not implemented") ;
|
|
|
|
// if (!rsForums->forumShareKeys(mGrpId, shareList)) {
|
|
// std::cerr << "Failed to share keys!" << std::endl;
|
|
//return;
|
|
//}
|
|
}
|
|
else if (mGrpType == POSTED_KEY_SHARE)
|
|
{
|
|
if (!rsPosted)
|
|
return;
|
|
|
|
if (!rsPosted->groupShareKeys(mGrpId, shareList)) {
|
|
std::cerr << "Failed to share keys!" << std::endl;
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// incorrect type
|
|
return;
|
|
}
|
|
|
|
close();
|
|
}
|