mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-09 16:13:49 +02:00
2017-11-28 Fred Gleason <fredg@paravelsystems.com>
* Added a 'USER_SERVICE_PERMS' table to the database. * Incremented the database version to 272. * Added a 'Service Permissions' button to the Edit User dialog in rdadmin(1).
This commit is contained in:
161
rdadmin/edit_user_service_perms.cpp
Normal file
161
rdadmin/edit_user_service_perms.cpp
Normal file
@@ -0,0 +1,161 @@
|
||||
// edit_user_service_perms.cpp
|
||||
//
|
||||
// Edit Rivendell User/Group Permissions
|
||||
//
|
||||
// (C) Copyright 2002-2005,2016-2017 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 <qpushbutton.h>
|
||||
|
||||
#include <rddb.h>
|
||||
#include <rdescape_string.h>
|
||||
|
||||
#include "edit_user_service_perms.h"
|
||||
|
||||
EditUserServicePerms::EditUserServicePerms(RDUser *user,QWidget *parent)
|
||||
: QDialog(parent,"",true)
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
|
||||
user_user=user;
|
||||
|
||||
//
|
||||
// Fix the Window Size
|
||||
//
|
||||
setMinimumWidth(sizeHint().width());
|
||||
setMaximumWidth(sizeHint().width());
|
||||
setMinimumHeight(sizeHint().height());
|
||||
setMaximumHeight(sizeHint().height());
|
||||
|
||||
setCaption(tr("User: ")+user_user->name());
|
||||
|
||||
//
|
||||
// Create Fonts
|
||||
//
|
||||
QFont font=QFont("Helvetica",12,QFont::Bold);
|
||||
font.setPixelSize(12);
|
||||
|
||||
//
|
||||
// Groups Selector
|
||||
//
|
||||
user_host_sel=new RDListSelector(this);
|
||||
user_host_sel->sourceSetLabel(tr("Available Services"));
|
||||
user_host_sel->destSetLabel(tr("Enabled Services"));
|
||||
user_host_sel->setGeometry(10,10,380,130);
|
||||
|
||||
//
|
||||
// Ok Button
|
||||
//
|
||||
QPushButton *ok_button=new QPushButton(this);
|
||||
ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
|
||||
ok_button->setDefault(true);
|
||||
ok_button->setFont(font);
|
||||
ok_button->setText(tr("&OK"));
|
||||
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
||||
|
||||
//
|
||||
// Cancel Button
|
||||
//
|
||||
QPushButton *cancel_button=new QPushButton(this);
|
||||
cancel_button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,
|
||||
80,50);
|
||||
cancel_button->setFont(font);
|
||||
cancel_button->setText(tr("&Cancel"));
|
||||
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
||||
|
||||
//
|
||||
// Populate Fields
|
||||
//
|
||||
sql=QString("select SERVICE_NAME from USER_SERVICE_PERMS where ")+
|
||||
"USER_NAME=\""+RDEscapeString(user_user->name())+"\"";
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
user_host_sel->destInsertItem(q->value(0).toString());
|
||||
}
|
||||
delete q;
|
||||
|
||||
sql=QString().sprintf("select NAME from SERVICES");
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
if(user_host_sel->destFindItem(q->value(0).toString())==0) {
|
||||
user_host_sel->sourceInsertItem(q->value(0).toString());
|
||||
}
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
EditUserServicePerms::~EditUserServicePerms()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
QSize EditUserServicePerms::sizeHint() const
|
||||
{
|
||||
return QSize(400,212);
|
||||
}
|
||||
|
||||
|
||||
QSizePolicy EditUserServicePerms::sizePolicy() const
|
||||
{
|
||||
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
||||
}
|
||||
|
||||
|
||||
void EditUserServicePerms::okData()
|
||||
{
|
||||
RDSqlQuery *q;
|
||||
QString sql;
|
||||
|
||||
//
|
||||
// Add New Groups
|
||||
//
|
||||
for(unsigned i=0;i<user_host_sel->destCount();i++) {
|
||||
sql=QString().sprintf("select SERVICE_NAME from USER_SERVICE_PERMS \
|
||||
where USER_NAME=\"%s\" && SERVICE_NAME=\"%s\"",
|
||||
(const char *)user_user->name(),
|
||||
(const char *)user_host_sel->destText(i));
|
||||
q=new RDSqlQuery(sql);
|
||||
if(q->size()==0) {
|
||||
delete q;
|
||||
sql=QString("insert into USER_SERVICE_PERMS (USER_NAME,SERVICE_NAME) ")+
|
||||
"values (\""+RDEscapeString(user_user->name())+"\","+
|
||||
"\""+RDEscapeString(user_host_sel->destText(i))+"\")";
|
||||
q=new RDSqlQuery(sql);
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
//
|
||||
// Delete Old Groups
|
||||
//
|
||||
sql=QString("delete from USER_SERVICE_PERMS where ")+
|
||||
"USER_NAME=\""+RDEscapeString(user_user->name())+"\"";
|
||||
for(unsigned i=0;i<user_host_sel->destCount();i++) {
|
||||
sql+=QString(" && SERVICE_NAME<>\"")+
|
||||
RDEscapeString(user_host_sel->destText(i))+"\"";
|
||||
}
|
||||
q=new RDSqlQuery(sql);
|
||||
delete q;
|
||||
done(0);
|
||||
}
|
||||
|
||||
|
||||
void EditUserServicePerms::cancelData()
|
||||
{
|
||||
done(1);
|
||||
}
|
Reference in New Issue
Block a user