1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/*
* AuthKeysConfigurationPage.cpp - implementation of the authentication configuration page
*
* Copyright (c) 2017-2025 Tobias Junghans <tobydox@veyon.io>
*
* This file is part of Veyon - https://veyon.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#include <QFileDialog>
#include <QInputDialog>
#include <QMessageBox>
#include "AuthKeysConfigurationPage.h"
#include "AuthKeysManager.h"
#include "FileSystemBrowser.h"
#include "UserGroupsBackendManager.h"
#include "VeyonConfiguration.h"
#include "Configuration/UiMapping.h"
#include "ui_AuthKeysConfigurationPage.h"
AuthKeysConfigurationPage::AuthKeysConfigurationPage() :
ConfigurationPage(),
ui(new Ui::AuthKeysConfigurationPage),
m_authKeyTableModel( this ),
m_keyFilesFilter( tr( "Key files (*.pem)" ) )
{
ui->setupUi(this);
Configuration::UiMapping::setFlags( ui->keyFileDirectories, Configuration::Property::Flag::Advanced );
#define CONNECT_BUTTON_SLOT(name) \
connect( ui->name, &QAbstractButton::clicked, this, &AuthKeysConfigurationPage::name );
CONNECT_BUTTON_SLOT( openPublicKeyBaseDir );
CONNECT_BUTTON_SLOT( openPrivateKeyBaseDir );
CONNECT_BUTTON_SLOT( createKeyPair );
CONNECT_BUTTON_SLOT( deleteKey );
CONNECT_BUTTON_SLOT( importKey );
CONNECT_BUTTON_SLOT( exportKey );
CONNECT_BUTTON_SLOT( setAccessGroup );
reloadKeyTable();
ui->keyTable->setModel( &m_authKeyTableModel );
}
AuthKeysConfigurationPage::~AuthKeysConfigurationPage()
{
delete ui;
}
void AuthKeysConfigurationPage::resetWidgets()
{
FOREACH_VEYON_KEY_AUTHENTICATION_CONFIG_PROPERTY(INIT_WIDGET_FROM_PROPERTY);
reloadKeyTable();
}
void AuthKeysConfigurationPage::connectWidgetsToProperties()
{
FOREACH_VEYON_KEY_AUTHENTICATION_CONFIG_PROPERTY(CONNECT_WIDGET_TO_PROPERTY);
}
void AuthKeysConfigurationPage::applyConfiguration()
{
}
void AuthKeysConfigurationPage::openPublicKeyBaseDir()
{
FileSystemBrowser(FileSystemBrowser::ExistingDirectory, this).exec(ui->publicKeyBaseDir);
}
void AuthKeysConfigurationPage::openPrivateKeyBaseDir()
{
FileSystemBrowser(FileSystemBrowser::ExistingDirectory, this).exec(ui->privateKeyBaseDir);
}
void AuthKeysConfigurationPage::createKeyPair()
{
const auto keyName = QInputDialog::getText( this, tr( "Authentication key name" ),
tr( "Please enter the name of the user group or role for which to create an authentication key pair:") );
if( keyName.isEmpty() == false )
{
AuthKeysManager authKeysManager;
const auto success = authKeysManager.createKeyPair( keyName );
showResultMessage( success, tr( "Create key pair" ), authKeysManager.resultMessage() );
reloadKeyTable();
}
}
void AuthKeysConfigurationPage::deleteKey()
{
const auto title = ui->deleteKey->text();
const auto nameAndType = selectedKey().split(QLatin1Char('/'));
if( nameAndType.size() > 1 )
{
const auto name = nameAndType[0];
const auto type = nameAndType[1];
if( QMessageBox::question( this, title, tr( "Do you really want to delete authentication key \"%1/%2\"?" ).arg( name, type ) ) ==
QMessageBox::Yes )
{
AuthKeysManager authKeysManager;
const auto success = authKeysManager.deleteKey( name, type );
showResultMessage( success, title, authKeysManager.resultMessage() );
reloadKeyTable();
}
}
else
{
showResultMessage( false, title, tr( "Please select a key to delete!" ) );
}
}
void AuthKeysConfigurationPage::importKey()
{
const auto title = ui->importKey->text();
const auto inputFile = QFileDialog::getOpenFileName( this, title, {}, m_keyFilesFilter );
if( inputFile.isEmpty() )
{
return;
}
auto keyName = AuthKeysManager::keyNameFromExportedKeyFile(inputFile);
if (keyName.isEmpty())
{
keyName = QInputDialog::getText(this, tr("Authentication key name"),
tr("Please enter the name of the user group or role for which to import the authentication key.\n\nMake sure that the names of the keys belonging to each other are identical on all computers."),
QLineEdit::Normal);
}
if( keyName.isEmpty() )
{
return;
}
AuthKeysManager authKeysManager;
const auto keyType = authKeysManager.detectKeyType( inputFile );
const auto success = authKeysManager.importKey( keyName, keyType, inputFile );
showResultMessage( success, title, authKeysManager.resultMessage() );
reloadKeyTable();
}
void AuthKeysConfigurationPage::exportKey()
{
const auto title = ui->exportKey->text();
const auto nameAndType = selectedKey().split(QLatin1Char('/'));
if( nameAndType.size() > 1 )
{
const auto name = nameAndType[0];
const auto type = nameAndType[1];
const auto outputFile = QFileDialog::getSaveFileName( this, title, QDir::homePath() + QDir::separator() +
AuthKeysManager::exportedKeyFileName( name, type ),
m_keyFilesFilter );
if( outputFile.isEmpty() == false )
{
AuthKeysManager authKeysManager;
const auto success = authKeysManager.exportKey( name, type, outputFile, true );
showResultMessage( success, title, authKeysManager.resultMessage() );
}
}
else
{
showResultMessage( false, title, tr( "Please select a key to export!" ) );
}
}
void AuthKeysConfigurationPage::setAccessGroup()
{
const auto title = ui->setAccessGroup->text();
const auto key = selectedKey();
if( key.isEmpty() == false )
{
const auto userGroups = VeyonCore::userGroupsBackendManager().configuredBackend()->userGroups(VeyonCore::config().useDomainUserGroups());
const auto currentGroup = AuthKeysManager().accessGroup( key );
bool ok = false;
const auto selectedGroup = QInputDialog::getItem( this, title,
tr( "Please select a user group which to grant access to key \"%1\":" ).arg( key ),
userGroups, userGroups.indexOf( currentGroup ), true, &ok );
if( ok && selectedGroup.isEmpty() == false )
{
AuthKeysManager manager;
const auto success = manager.setAccessGroup( key, selectedGroup );
showResultMessage( success, title, manager.resultMessage() );
reloadKeyTable();
}
}
else
{
showResultMessage( false, title, tr( "Please select a key which to set the access group for!" ) );
}
}
void AuthKeysConfigurationPage::reloadKeyTable()
{
m_authKeyTableModel.reload();
ui->keyTable->resizeColumnsToContents();
}
QString AuthKeysConfigurationPage::selectedKey() const
{
const auto row = ui->keyTable->currentIndex().row();
if( row >= 0 && row < m_authKeyTableModel.rowCount() )
{
return m_authKeyTableModel.key( row );
}
return {};
}
void AuthKeysConfigurationPage::showResultMessage( bool success, const QString& title, const QString& message )
{
if( message.isEmpty() )
{
return;
}
if( success )
{
QMessageBox::information( this, title, message );
}
else
{
QMessageBox::critical( this, title, message );
}
}
|