mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Fixed a bug in rdadmin(1) that prevented login from a system with no host record in the database.
		
			
				
	
	
		
			406 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			406 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdadmin.cpp
 | 
						|
//
 | 
						|
// The Administrator Utility for Rivendell.
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2018 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 <stdlib.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <sys/types.h>
 | 
						|
#include <sys/wait.h>
 | 
						|
 | 
						|
#include <qapplication.h>
 | 
						|
#include <qwindowsstyle.h>
 | 
						|
#include <qwidget.h>
 | 
						|
#include <qpainter.h>
 | 
						|
#include <qmessagebox.h>
 | 
						|
#include <qpushbutton.h>
 | 
						|
#include <qlabel.h>
 | 
						|
#include <q3filedialog.h>
 | 
						|
#include <qtextcodec.h>
 | 
						|
#include <qtranslator.h>
 | 
						|
 | 
						|
#include <rd.h>
 | 
						|
#include <rdapplication.h>
 | 
						|
#include <rdconf.h>
 | 
						|
#include <rddb.h>
 | 
						|
#include <rddbheartbeat.h>
 | 
						|
#include <rdescape_string.h>
 | 
						|
 | 
						|
#include "edit_settings.h"
 | 
						|
#include "globals.h"
 | 
						|
#include "info_dialog.h"
 | 
						|
#include "list_feeds.h"
 | 
						|
#include "list_groups.h"
 | 
						|
#include "list_replicators.h"
 | 
						|
#include "list_reports.h"
 | 
						|
#include "list_schedcodes.h"
 | 
						|
#include "list_svcs.h"
 | 
						|
#include "list_stations.h"
 | 
						|
#include "list_users.h"
 | 
						|
#include "login.h"
 | 
						|
#include "rdadmin.h"
 | 
						|
 | 
						|
//
 | 
						|
// Icons
 | 
						|
//
 | 
						|
#include "../icons/rdadmin-22x22.xpm"
 | 
						|
 | 
						|
//
 | 
						|
// Global Classes
 | 
						|
//
 | 
						|
RDCartDialog *admin_cart_dialog;
 | 
						|
bool exiting=false;
 | 
						|
 | 
						|
void PrintError(const QString &str,bool interactive)
 | 
						|
{
 | 
						|
  if(interactive) {
 | 
						|
    QMessageBox::warning(NULL,QObject::tr("RDAdmin Error"),str);
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    fprintf(stderr,QString().sprintf("rdadmin: %s\n",(const char *)str));
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
MainWidget::MainWidget(QWidget *parent)
 | 
						|
  : QWidget(parent)
 | 
						|
{
 | 
						|
  QString str;
 | 
						|
  QString err_msg;
 | 
						|
  RDApplication::ErrorType err_type=RDApplication::ErrorOk;
 | 
						|
 | 
						|
  //
 | 
						|
  // Fix the Window Size
 | 
						|
  //
 | 
						|
  setMinimumWidth(sizeHint().width());
 | 
						|
  setMaximumWidth(sizeHint().width());
 | 
						|
  setMinimumHeight(sizeHint().height());
 | 
						|
  setMaximumHeight(sizeHint().height());
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Fonts
 | 
						|
  //
 | 
						|
  QFont font=QFont("Helvetica",12,QFont::Bold);
 | 
						|
  font.setPixelSize(12);
 | 
						|
  QFont default_font("Helvetica",12,QFont::Normal);
 | 
						|
  default_font.setPixelSize(12);
 | 
						|
  qApp->setFont(default_font);
 | 
						|
 | 
						|
  //
 | 
						|
  // Create And Set Icon
 | 
						|
  //
 | 
						|
  admin_rivendell_map=new QPixmap(rdadmin_22x22_xpm);
 | 
						|
  setWindowIcon(*admin_rivendell_map);
 | 
						|
 | 
						|
  //
 | 
						|
  // Open the Database
 | 
						|
  //
 | 
						|
  rda=new RDApplication("RDAdmin","rdadmin",RDADMIN_USAGE,this);
 | 
						|
  if(!rda->open(&err_msg,&err_type)) {
 | 
						|
    if(err_type!=RDApplication::ErrorNoHostEntry) {
 | 
						|
      QMessageBox::critical(this,"RDAdmin - "+tr("Error"),err_msg);
 | 
						|
      exit(1);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  setWindowTitle(QString("RDAdmin v")+VERSION+" - "+
 | 
						|
		 tr("Host")+": "+rda->config()->stationName());
 | 
						|
 | 
						|
  rda->ripc()->connectHost("localhost",RIPCD_TCP_PORT,rda->config()->password());
 | 
						|
 | 
						|
  //
 | 
						|
  // Log In
 | 
						|
  //
 | 
						|
  Login *login=new Login(&admin_username,&admin_password,this);
 | 
						|
  if(!login->exec()) {
 | 
						|
    exit(0);
 | 
						|
  }
 | 
						|
  rda->user()->setName(admin_username);
 | 
						|
  if(!rda->user()->checkPassword(admin_password,false)) {
 | 
						|
    QMessageBox::warning(this,"Login Failed","Login Failed!.\n");
 | 
						|
    exit(1);
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    if(!rda->user()->adminConfig()) {
 | 
						|
      QMessageBox::warning(this,tr("Insufficient Priviledges"),
 | 
						|
         tr("This account has insufficient priviledges for this operation."));
 | 
						|
      exit(1);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Cart Dialog
 | 
						|
  //
 | 
						|
  admin_cart_dialog=
 | 
						|
    new RDCartDialog(&admin_filter,&admin_group,&admin_schedcode,this);
 | 
						|
 | 
						|
  //
 | 
						|
  // User Labels
 | 
						|
  //
 | 
						|
  QLabel *name_label=new QLabel(this);
 | 
						|
  name_label->setGeometry(0,5,sizeHint().width(),20);
 | 
						|
  name_label->setAlignment(Qt::AlignVCenter|Qt::AlignCenter);
 | 
						|
  name_label->setFont(font);
 | 
						|
  name_label->setText(tr("User")+": "+rda->user()->name());
 | 
						|
 | 
						|
  QLabel *description_label=new QLabel(this);
 | 
						|
  description_label->setGeometry(0,24,sizeHint().width(),14);
 | 
						|
  description_label->setAlignment(Qt::AlignVCenter|Qt::AlignCenter);
 | 
						|
  name_label->setFont(font);
 | 
						|
  description_label->setText(rda->user()->description());
 | 
						|
 | 
						|
  //
 | 
						|
  // Manage Users Button
 | 
						|
  //
 | 
						|
  QPushButton *users_button=new QPushButton(this);
 | 
						|
  users_button->setGeometry(10,50,80,60);
 | 
						|
  users_button->setFont(font);
 | 
						|
  users_button->setText(tr("Manage\n&Users"));
 | 
						|
  connect(users_button,SIGNAL(clicked()),this,SLOT(manageUsersData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Manage Groups Button
 | 
						|
  //
 | 
						|
  QPushButton *groups_button=new QPushButton(this);
 | 
						|
  groups_button->setGeometry(10,120,80,60);
 | 
						|
  groups_button->setFont(font);
 | 
						|
  groups_button->setText(tr("Manage\n&Groups"));
 | 
						|
  connect(groups_button,SIGNAL(clicked()),this,SLOT(manageGroupsData()));
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Manage Services Button
 | 
						|
  //
 | 
						|
  QPushButton *services_button=new QPushButton(this);
 | 
						|
  services_button->setGeometry(100,50,80,60);
 | 
						|
  services_button->setFont(font);
 | 
						|
  services_button->setText(tr("Manage\n&Services"));
 | 
						|
  connect(services_button,SIGNAL(clicked()),this,SLOT(manageServicesData()));
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Manage Stations (Hosts) Button
 | 
						|
  //
 | 
						|
  QPushButton *stations_button=new QPushButton(this);
 | 
						|
  stations_button->setGeometry(100,120,80,60);
 | 
						|
  stations_button->setFont(font);
 | 
						|
  stations_button->setText(tr("Manage\nHo&sts"));
 | 
						|
  connect(stations_button,SIGNAL(clicked()),this,SLOT(manageStationsData()));
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Manage Reports
 | 
						|
  //
 | 
						|
  QPushButton *reports_button=new QPushButton(this);
 | 
						|
  reports_button->setGeometry(190,50,80,60);
 | 
						|
  reports_button->setFont(font);
 | 
						|
  reports_button->setText(tr("Manage\nR&eports"));
 | 
						|
  connect(reports_button,SIGNAL(clicked()),this,SLOT(reportsData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Manage Podcasts
 | 
						|
  //
 | 
						|
  QPushButton *podcasts_button=new QPushButton(this);
 | 
						|
  podcasts_button->setGeometry(280,50,80,60);
 | 
						|
  podcasts_button->setFont(font);
 | 
						|
  podcasts_button->setText(tr("Manage\n&Feeds"));
 | 
						|
  connect(podcasts_button,SIGNAL(clicked()),this,SLOT(podcastsData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // System Wide Settings Button
 | 
						|
  //
 | 
						|
  QPushButton *system_button=new QPushButton(this);
 | 
						|
  system_button->setGeometry(190,120,80,60);
 | 
						|
  system_button->setFont(font);
 | 
						|
  system_button->setText(tr("System\nSettings"));
 | 
						|
  connect(system_button,SIGNAL(clicked()),this,SLOT(systemSettingsData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Manage Scheduler Codes Button
 | 
						|
  //
 | 
						|
  QPushButton *schedcodes_button=new QPushButton(this);
 | 
						|
  schedcodes_button->setGeometry(280,120,80,60);
 | 
						|
  schedcodes_button->setFont(font);
 | 
						|
  schedcodes_button->setText(tr("Scheduler\nCodes"));
 | 
						|
  connect(schedcodes_button,SIGNAL(clicked()),this,SLOT(manageSchedCodes()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Manage Replicators Button
 | 
						|
  //
 | 
						|
  QPushButton *repl_button=new QPushButton(this);
 | 
						|
  repl_button->setGeometry(100,190,80,60);
 | 
						|
  repl_button->setFont(font);
 | 
						|
  repl_button->setText(tr("Manage\nReplicators"));
 | 
						|
  connect(repl_button,SIGNAL(clicked()),this,SLOT(manageReplicatorsData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // System Info Button
 | 
						|
  //
 | 
						|
  QPushButton *info_button=new QPushButton(this);
 | 
						|
  info_button->setGeometry(190,190,80,60);
 | 
						|
  info_button->setFont(font);
 | 
						|
  info_button->setText(tr("System\nInfo"));
 | 
						|
  connect(info_button,SIGNAL(clicked()),this,SLOT(systemInfoData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Quit Button
 | 
						|
  //
 | 
						|
  QPushButton *quit_button=new QPushButton(this);
 | 
						|
  quit_button->setGeometry(10,sizeHint().height()-70,sizeHint().width()-20,60);
 | 
						|
  quit_button->setFont(font);
 | 
						|
  quit_button->setText(tr("&Quit"));
 | 
						|
  connect(quit_button,SIGNAL(clicked()),this,SLOT(quitMainWidget()));
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize MainWidget::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(370,330);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSizePolicy MainWidget::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::manageUsersData()
 | 
						|
{
 | 
						|
  ListUsers *list_users=new ListUsers(rda->user()->name(),this);
 | 
						|
  list_users->exec();
 | 
						|
  delete list_users;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::manageGroupsData()
 | 
						|
{
 | 
						|
  ListGroups *list_groups=new ListGroups(this);
 | 
						|
  list_groups->exec();
 | 
						|
  delete list_groups;
 | 
						|
}
 | 
						|
 | 
						|
void MainWidget::manageSchedCodes()
 | 
						|
{
 | 
						|
  ListSchedCodes *list_schedCodes=new ListSchedCodes(this);
 | 
						|
  list_schedCodes->exec();
 | 
						|
  delete list_schedCodes;
 | 
						|
}
 | 
						|
 | 
						|
void MainWidget::manageServicesData()
 | 
						|
{
 | 
						|
  ListSvcs *list_svcs=new ListSvcs(this);
 | 
						|
  list_svcs->exec();
 | 
						|
  delete list_svcs;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::manageStationsData()
 | 
						|
{
 | 
						|
  ListStations *list_stations=new ListStations(this);
 | 
						|
  list_stations->exec();
 | 
						|
  delete list_stations;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::systemSettingsData()
 | 
						|
{
 | 
						|
  EditSettings *edit_settings=new EditSettings(this);
 | 
						|
  edit_settings->exec();
 | 
						|
  delete edit_settings;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::manageReplicatorsData()
 | 
						|
{
 | 
						|
  ListReplicators *d=new ListReplicators(this);
 | 
						|
  d->exec();
 | 
						|
  delete d;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::systemInfoData()
 | 
						|
{
 | 
						|
  InfoDialog *info=new InfoDialog(this);
 | 
						|
  info->exec();
 | 
						|
  delete info;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::reportsData()
 | 
						|
{
 | 
						|
  ListReports *list_reports=new ListReports(this);
 | 
						|
  list_reports->exec();
 | 
						|
  delete list_reports;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::podcastsData()
 | 
						|
{
 | 
						|
  ListFeeds *list_feeds=new ListFeeds(this);
 | 
						|
  list_feeds->exec();
 | 
						|
  delete list_feeds;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::quitMainWidget()
 | 
						|
{
 | 
						|
  exit(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::ClearTables()
 | 
						|
{
 | 
						|
  QString sql="show tables";
 | 
						|
  RDSqlQuery *q=new RDSqlQuery(sql);
 | 
						|
  while(q->next()) {
 | 
						|
    rda->dropTable(q->value(0).toString());
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int main(int argc,char *argv[])
 | 
						|
{
 | 
						|
  QApplication::setStyle(RD_GUI_STYLE);
 | 
						|
  QApplication a(argc,argv);
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Load Translations
 | 
						|
  //
 | 
						|
  QTranslator qt(0);
 | 
						|
  qt.load(QString("/usr/share/qt4/translations/qt_")+QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&qt);
 | 
						|
  QTranslator rd(0);
 | 
						|
  rd.load(QString(PREFIX)+QString("/share/rivendell/librd_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&rd);
 | 
						|
 | 
						|
  QTranslator rdhpi(0);
 | 
						|
  rdhpi.load(QString(PREFIX)+QString("/share/rivendell/librdhpi_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&rdhpi);
 | 
						|
 | 
						|
  QTranslator tr(0);
 | 
						|
  tr.load(QString(PREFIX)+QString("/share/rivendell/rdadmin_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&tr);
 | 
						|
 | 
						|
  MainWidget *w=new MainWidget();
 | 
						|
  a.setMainWidget(w);
 | 
						|
  w->setGeometry(QRect(QPoint(0,0),w->sizeHint()));
 | 
						|
  w->show();
 | 
						|
  return a.exec();
 | 
						|
}
 |