mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-18 22:22:36 +02:00
* Added 'RDTextValidator::setUpperCaseOnly()' and 'RDTextValidator::setLowerCaseOnly()' methods. * Added the RDGroupListModel::indexOf()' method. * Fixed a bug in the 'Rename Group' dialog in rdadmin(1) that caused the group being renamed to be deleted when simply attempting to change the case of its name. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
188 lines
4.8 KiB
C++
188 lines
4.8 KiB
C++
// add_group.cpp
|
|
//
|
|
// Add a Rivendell Group
|
|
//
|
|
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// 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; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <rddb.h>
|
|
#include <rdescape_string.h>
|
|
|
|
#include "add_group.h"
|
|
#include "edit_group.h"
|
|
#include "rdpasswd.h"
|
|
#include "rdtextvalidator.h"
|
|
|
|
AddGroup::AddGroup(QString *group,QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
group_group=group;
|
|
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
setWindowTitle("RDAdmin - "+tr("Add Group"));
|
|
|
|
//
|
|
// Text Validator
|
|
//
|
|
RDTextValidator *validator=new RDTextValidator(this);
|
|
validator->addBannedChar(',');
|
|
|
|
//
|
|
// Group Name
|
|
//
|
|
group_name_edit=new QLineEdit(this);
|
|
group_name_edit->setMaxLength(10);
|
|
group_name_edit->setValidator(validator);
|
|
connect(group_name_edit,SIGNAL(textChanged(const QString &)),
|
|
this,SLOT(groupNameChangedData(const QString &)));
|
|
group_name_label=new QLabel(tr("New Group Name:"),this);
|
|
group_name_label->setFont(labelFont());
|
|
group_name_label->setFont(labelFont());
|
|
group_name_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
|
|
|
//
|
|
// Enable Users Checkbox
|
|
//
|
|
group_users_box=new QCheckBox(this);
|
|
group_users_box->setChecked(true);
|
|
group_users_label=new QLabel(tr("Enable Group for All Users"),this);
|
|
group_users_label->setFont(subLabelFont());
|
|
group_users_label->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
|
|
|
|
//
|
|
// Enable Services Checkbox
|
|
//
|
|
group_svcs_box=new QCheckBox(this);
|
|
group_svcs_box->setChecked(true);
|
|
group_svcs_label=new QLabel(tr("Enable Group for All Services"),this);
|
|
group_svcs_label->setFont(subLabelFont());
|
|
group_svcs_label->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
|
|
|
|
//
|
|
// Ok Button
|
|
//
|
|
group_ok_button=new QPushButton(this);
|
|
group_ok_button->setDefault(true);
|
|
group_ok_button->setFont(buttonFont());
|
|
group_ok_button->setText(tr("OK"));
|
|
connect(group_ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
|
|
|
//
|
|
// Cancel Button
|
|
//
|
|
group_cancel_button=new QPushButton(this);
|
|
group_cancel_button->setFont(buttonFont());
|
|
group_cancel_button->setText(tr("Cancel"));
|
|
connect(group_cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
|
|
|
group_name_edit->setText(*group);
|
|
groupNameChangedData(*group);
|
|
}
|
|
|
|
|
|
AddGroup::~AddGroup()
|
|
{
|
|
delete group_name_edit;
|
|
}
|
|
|
|
|
|
QSize AddGroup::sizeHint() const
|
|
{
|
|
return QSize(250,152);
|
|
}
|
|
|
|
|
|
QSizePolicy AddGroup::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void AddGroup::groupNameChangedData(const QString &str)
|
|
{
|
|
QString sql;
|
|
RDSqlQuery *q=NULL;
|
|
|
|
sql=QString("select ")+
|
|
"`NAME` "+
|
|
"from `GROUPS` where `NAME`='"+RDEscapeString(str)+"'";
|
|
q=new RDSqlQuery(sql);
|
|
group_ok_button->setDisabled(str.isEmpty()||q->first());
|
|
delete q;
|
|
}
|
|
|
|
|
|
void AddGroup::okData()
|
|
{
|
|
QString err_msg;
|
|
|
|
if(group_name_edit->text().isEmpty()) {
|
|
QMessageBox::warning(this,tr("Invalid Name"),tr("You must give the group a name!"));
|
|
return;
|
|
}
|
|
if(!RDGroup::create(group_name_edit->text(),group_users_box->isChecked(),
|
|
group_svcs_box->isChecked(),&err_msg)) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Error creating group!")+"\n"+
|
|
"["+err_msg+"]");
|
|
return;
|
|
}
|
|
|
|
EditGroup *group=new EditGroup(group_name_edit->text(),this);
|
|
if(!group->exec()) {
|
|
if(!RDGroup::remove(group_name_edit->text(),&err_msg)) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Error removing stale database record!")+"\n"+
|
|
"["+err_msg+"]");
|
|
}
|
|
delete group;
|
|
done(false);
|
|
return;
|
|
}
|
|
delete group;
|
|
*group_group=group_name_edit->text();
|
|
done(true);
|
|
}
|
|
|
|
|
|
void AddGroup::cancelData()
|
|
{
|
|
done(false);
|
|
}
|
|
|
|
|
|
void AddGroup::resizeEvent(QResizeEvent *e)
|
|
{
|
|
group_name_edit->setGeometry(145,11,size().width()-150,19);
|
|
group_name_label->setGeometry(10,11,130,19);
|
|
|
|
group_users_box->setGeometry(40,40,15,15);
|
|
group_users_label->setGeometry(60,38,size().width()-60,19);
|
|
|
|
group_svcs_box->setGeometry(40,61,15,15);
|
|
group_svcs_label->setGeometry(60,58,size().width()-60,19);
|
|
|
|
group_ok_button->setGeometry(size().width()-180,size().height()-60,80,50);
|
|
group_cancel_button->setGeometry(size().width()-90,size().height()-60,80,50);
|
|
}
|