Rivendellaudio/rdairplay/list_logs.cpp
Fred Gleason 3e0c293c09 2021-04-19 Fred Gleason <fredg@paravelsystems.com>
* Escaped all SQL identifiers in 'rdairplay/'.
	* Replaced " with ' delimiters in all SQL literal strings in
	'rdairplay/'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-04-19 18:44:14 -04:00

252 lines
6.2 KiB
C++

// list_logs.cpp
//
// Select a Rivendell Log
//
// (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 <rdadd_log.h>
#include <rdapplication.h>
#include <rddb.h>
#include <rdescape_string.h>
#include "list_logs.h"
ListLogs::ListLogs(RDLogPlay *log,QWidget *parent)
: RDDialog(parent)
{
//
// Fix the Window Size
//
setMinimumSize(sizeHint());
list_log=log;
setWindowTitle("RDAirPlay - "+tr("Select Log"));
//
// Filter Widget
//
list_filter_widget=new RDLogFilter(RDLogFilter::StationFilter,this);
//
// Log List
//
list_log_view=new RDTableView(this);
list_log_model=new RDLogListModel(this);
list_log_model->setFont(defaultFont());
list_log_model->setPalette(palette());
list_log_view->setModel(list_log_model);
list_log_view->resizeColumnsToContents();
connect(list_filter_widget,SIGNAL(filterChanged(const QString &)),
list_log_model,SLOT(setFilterSql(const QString &)));
connect(list_log_view,SIGNAL(doubleClicked(const QModelIndex &)),
this,SLOT(doubleClickedData(const QModelIndex &)));
connect(list_log_model,SIGNAL(modelReset()),this,SLOT(modelResetData()));
//
// Load Button
//
list_load_button=new QPushButton(tr("Load"),this);
list_load_button->setFont(buttonFont());
connect(list_load_button,SIGNAL(clicked()),this,SLOT(loadButtonData()));
//
// Unload Button
//
list_unload_button=new QPushButton(tr("Unload"),this);
list_unload_button->setFont(buttonFont());
connect(list_unload_button,SIGNAL(clicked()),this,SLOT(unloadButtonData()));
//
// Save Button
//
list_save_button=new QPushButton(tr("Save"),this);
list_save_button->setFont(buttonFont());
connect(list_save_button,SIGNAL(clicked()),this,SLOT(saveButtonData()));
//
// Save As Button
//
list_saveas_button=new QPushButton(tr("Save As"),this);
list_saveas_button->setFont(buttonFont());
connect(list_saveas_button,SIGNAL(clicked()),this,SLOT(saveAsButtonData()));
//
// Cancel Button
//
list_cancel_button=new QPushButton(tr("Cancel"),this);
list_cancel_button->setFont(buttonFont());
list_cancel_button->setDefault(true);
connect(list_cancel_button,SIGNAL(clicked()),this,SLOT(cancelButtonData()));
}
QSize ListLogs::sizeHint() const
{
return QSize(600,400);
}
QSizePolicy ListLogs::sizePolicy() const
{
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
}
int ListLogs::exec(QString *logname,QString *svcname,RDLogLock **log_lock)
{
list_logname=logname;
list_svcname=svcname;
list_log_lock=log_lock;
list_saveas_button->setEnabled(rda->user()->createLog());
QStringList services_list;
QString sql=QString("select `SERVICE_NAME` from `SERVICE_PERMS` where ")+
"`STATION_NAME`='"+RDEscapeString(rda->station()->name())+"'";
RDSqlQuery *q=new RDSqlQuery(sql);
services_list.push_back(tr("ALL"));
while(q->next()) {
services_list.push_back(q->value(0).toString());
}
delete q;
list_log_model->setFilterSql(list_filter_widget->whereSql());
return QDialog::exec();
}
void ListLogs::closeEvent(QCloseEvent *e)
{
done(ListLogs::Cancel);
}
void ListLogs::doubleClickedData(const QModelIndex &index)
{
loadButtonData();
}
void ListLogs::loadButtonData()
{
if(list_log_view->selectionModel()->selectedRows().size()!=1) {
return;
}
*list_logname=list_log_model->logName(list_log_view->selectionModel()->
selectedRows().at(0));
done(ListLogs::Load);
}
void ListLogs::saveButtonData()
{
if(list_logname->isEmpty()) {
saveAsButtonData();
}
else {
*list_log_lock=new RDLogLock(*list_logname,rda->user(),rda->station(),this);
if(!TryLock(*list_log_lock)) {
delete *list_log_lock;
*list_log_lock=NULL;
return;
}
if(list_log->isRefreshable()) {
QMessageBox::warning(this,"RDAirPlay - "+tr("Error"),
tr("You must refresh the log before it can be saved."));
delete *list_log_lock;
*list_log_lock=NULL;
return;
}
done(ListLogs::Save);
}
}
void ListLogs::saveAsButtonData()
{
QString logname;
QString svcname=*list_svcname;
RDAddLog *log;
log=new RDAddLog(&logname,&svcname,RDLogFilter::StationFilter,
tr("Rename Log"),this);
if(log->exec()<0) {
delete log;
return;
}
delete log;
*list_logname=logname;
*list_svcname=svcname;
done(ListLogs::SaveAs);
}
void ListLogs::unloadButtonData()
{
*list_log_lock=NULL;
done(ListLogs::Unload);
}
void ListLogs::cancelButtonData()
{
*list_log_lock=NULL;
done(ListLogs::Cancel);
}
void ListLogs::modelResetData()
{
list_log_view->resizeColumnsToContents();
}
void ListLogs::resizeEvent(QResizeEvent *e)
{
int w=size().width();
int h=size().height();
list_filter_widget->
setGeometry(10,10,w-20,list_filter_widget->sizeHint().height());
list_log_view->setGeometry(10,list_filter_widget->sizeHint().height(),
w-20,h-list_filter_widget->sizeHint().height()-80);
list_load_button->setGeometry(10,h-60,80,50);
list_unload_button->setGeometry(100,h-60,80,50);
list_save_button->setGeometry(210,h-60,80,50);
list_saveas_button->setGeometry(300,h-60,80,50);
list_cancel_button->setGeometry(w-90,h-60,80,50);
}
bool ListLogs::TryLock(RDLogLock *lock)
{
QString username;
QString stationname;
QHostAddress addr;
if(!lock->tryLock(&username,&stationname,&addr)) {
QString msg=tr("Log already being edited by")+" "+username+"@"+stationname;
if(stationname!=addr.toString()) {
msg+=" ["+addr.toString()+"]";
}
msg+=".";
QMessageBox::warning(this,"RDAirPlay - "+tr("Log Locked"),msg);
return false;
}
return true;
}