mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 22:48:01 +02:00
* Added the option to provision users from an existing RSS feed to the 'Add RSS Feed' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
502 lines
12 KiB
C++
502 lines
12 KiB
C++
// list_feeds.cpp
|
|
//
|
|
// List Rivendell Feeds
|
|
//
|
|
// (C) Copyright 2002-2024 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 <math.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <QApplication>
|
|
#include <QMessageBox>
|
|
#include <QProgressDialog>
|
|
|
|
#include <rdapplication.h>
|
|
#include <rddb.h>
|
|
#include <rdescape_string.h>
|
|
#include <rdpodcast.h>
|
|
#include <rdtextfile.h>
|
|
|
|
#include "add_feed.h"
|
|
#include "edit_feed.h"
|
|
#include "globals.h"
|
|
#include "list_feeds.h"
|
|
|
|
ListFeeds::ListFeeds(QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
|
|
setWindowTitle("RDAdmin - "+tr("Rivendell Feed List"));
|
|
|
|
//
|
|
// Add Button
|
|
//
|
|
list_add_button=new QPushButton(this);
|
|
list_add_button->setFont(buttonFont());
|
|
list_add_button->setText(tr("Add"));
|
|
connect(list_add_button,SIGNAL(clicked()),this,SLOT(addData()));
|
|
|
|
//
|
|
// Edit Button
|
|
//
|
|
list_edit_button=new QPushButton(this);
|
|
list_edit_button->setFont(buttonFont());
|
|
list_edit_button->setText(tr("Edit"));
|
|
list_edit_button->setDisabled(true);
|
|
connect(list_edit_button,SIGNAL(clicked()),this,SLOT(editData()));
|
|
|
|
//
|
|
// Delete Button
|
|
//
|
|
list_delete_button=new QPushButton(this);
|
|
list_delete_button->setFont(buttonFont());
|
|
list_delete_button->setText(tr("Delete"));
|
|
list_delete_button->setDisabled(true);
|
|
connect(list_delete_button,SIGNAL(clicked()),this,SLOT(deleteData()));
|
|
|
|
//
|
|
// Repost Button
|
|
//
|
|
list_repost_button=new QPushButton(this);
|
|
list_repost_button->setFont(buttonFont());
|
|
list_repost_button->setText(tr("Repost"));
|
|
list_repost_button->setDisabled(true);
|
|
connect(list_repost_button,SIGNAL(clicked()),this,SLOT(repostData()));
|
|
|
|
//
|
|
// Unpost Button
|
|
//
|
|
list_unpost_button=new QPushButton(this);
|
|
list_unpost_button->setFont(buttonFont());
|
|
list_unpost_button->setText(tr("Unpost"));
|
|
list_unpost_button->setDisabled(true);
|
|
connect(list_unpost_button,SIGNAL(clicked()),this,SLOT(unpostData()));
|
|
|
|
//
|
|
// Close Button
|
|
//
|
|
list_close_button=new QPushButton(this);
|
|
list_close_button->setDefault(true);
|
|
list_close_button->setFont(buttonFont());
|
|
list_close_button->setText(tr("Close"));
|
|
connect(list_close_button,SIGNAL(clicked()),this,SLOT(closeData()));
|
|
|
|
//
|
|
// Feed List
|
|
//
|
|
list_feeds_view=new FeedListView(this);
|
|
list_feeds_model=new RDFeedListModel(true,false,this);
|
|
list_feeds_model->setFont(font());
|
|
list_feeds_model->setPalette(palette());
|
|
list_feeds_view->setModel(list_feeds_model);
|
|
list_feeds_view->setColumnHidden(2,true);
|
|
list_box_label=new QLabel(tr("Podcast Feeds"),this);
|
|
list_box_label->setFont(bigLabelFont());
|
|
connect(list_feeds_model,SIGNAL(modelReset()),this,SLOT(resetModelData()));
|
|
connect(list_feeds_view,SIGNAL(doubleClicked(const QModelIndex &)),
|
|
this,SLOT(doubleClickedData(const QModelIndex &)));
|
|
connect(list_feeds_view->selectionModel(),
|
|
SIGNAL(selectionChanged(const QItemSelection &,const QItemSelection &)),
|
|
this,
|
|
SLOT(feedSelectionChangedData(const QItemSelection &,const QItemSelection &)));
|
|
resetModelData();
|
|
}
|
|
|
|
|
|
ListFeeds::~ListFeeds()
|
|
{
|
|
delete list_feeds_view;
|
|
}
|
|
|
|
|
|
QSize ListFeeds::sizeHint() const
|
|
{
|
|
return QSize(800,450);
|
|
}
|
|
|
|
|
|
QSizePolicy ListFeeds::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void ListFeeds::addData()
|
|
{
|
|
QString feed;
|
|
unsigned id;
|
|
QStringList usernames;
|
|
QString sql;
|
|
|
|
AddFeed *ad=new AddFeed(&id,&feed,&usernames,this);
|
|
if(ad->exec()) {
|
|
EditFeed *d=new EditFeed(feed,this);
|
|
if(d->exec()) {
|
|
QModelIndex row=list_feeds_model->addFeed(feed);
|
|
if(row.isValid()) {
|
|
list_feeds_model->refreshRow(row);
|
|
list_feeds_view->selectRow(row.row());
|
|
}
|
|
}
|
|
else {
|
|
sql=QString("delete from `FEED_PERMS` where ")+
|
|
"`KEY_NAME`='"+RDEscapeString(feed)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
|
|
sql=QString("delete from `FEED_IMAGES` where ")+
|
|
"`FEED_KEY_NAME`='"+RDEscapeString(feed)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
|
|
sql=QString("delete from `FEEDS` where ")+
|
|
"`KEY_NAME`='"+RDEscapeString(feed)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
}
|
|
delete d;
|
|
}
|
|
delete ad;
|
|
}
|
|
|
|
|
|
void ListFeeds::editData()
|
|
{
|
|
QModelIndexList rows=list_feeds_view->selectionModel()->selectedRows();
|
|
|
|
if(rows.size()!=1) {
|
|
return;
|
|
}
|
|
EditFeed *d=new EditFeed(list_feeds_model->keyName(rows.first()),this);
|
|
if(d->exec()) {
|
|
list_feeds_model->refreshRow(rows.first());
|
|
}
|
|
delete d;
|
|
}
|
|
|
|
|
|
void ListFeeds::deleteData()
|
|
{
|
|
QString sql;
|
|
RDSqlQuery *q;
|
|
QString warning;
|
|
QString str;
|
|
RDFeed *feed;
|
|
QString errs;
|
|
QModelIndexList rows=list_feeds_view->selectionModel()->selectedRows();
|
|
|
|
if(rows.size()!=1) {
|
|
return;
|
|
}
|
|
|
|
QString feedname=list_feeds_model->keyName(rows.first());
|
|
warning+=tr("Are you sure you want to delete feed")+" \""+feedname+"\"?";
|
|
if(QMessageBox::warning(this,"RDAdmin - "+tr("Delete Feed"),warning,
|
|
QMessageBox::Yes,QMessageBox::No)!=QMessageBox::Yes) {
|
|
return;
|
|
}
|
|
feed=new RDFeed(feedname,rda->config());
|
|
|
|
//
|
|
// Delete Casts
|
|
//
|
|
// First, Delete Remote Audio
|
|
//
|
|
RDPodcast *cast;
|
|
sql=QString("select ")+
|
|
"`ID` "+ // 00
|
|
"from `PODCASTS` where "+
|
|
QString::asprintf("`FEED_ID`=%u",list_feeds_model->feedId(rows.first()));
|
|
q=new RDSqlQuery(sql);
|
|
QProgressDialog *pd=
|
|
new QProgressDialog(tr("Deleting remote audio..."),"",0,q->size()+1,this);
|
|
pd->setWindowTitle("RDAdmin");
|
|
pd->setValue(0);
|
|
qApp->processEvents();
|
|
sleep(1);
|
|
while(q->next()) {
|
|
pd->setValue(pd->value()+1);
|
|
qApp->processEvents();
|
|
cast=new RDPodcast(rda->config(),q->value(0).toUInt());
|
|
cast->dropAudio(feed,&errs,rda->config()->logXloadDebugData());
|
|
delete cast;
|
|
}
|
|
delete q;
|
|
|
|
//
|
|
// Delete Remote XML
|
|
//
|
|
if(!feed->removeRss()) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Warning"),
|
|
tr("Failed to delete remote feed XML."));
|
|
}
|
|
|
|
//
|
|
// Delete Cast Entries
|
|
//
|
|
sql=QString("delete from `PODCASTS` where ")+
|
|
QString::asprintf("`FEED_ID`=%u",list_feeds_model->feedId(rows.first()));
|
|
RDSqlQuery::apply(sql);
|
|
|
|
//
|
|
// Delete Images
|
|
//
|
|
feed->removeAllImages();
|
|
sql=QString("delete from `FEED_IMAGES` where ")+
|
|
QString::asprintf("`FEED_ID`=%d",feed->id());
|
|
RDSqlQuery::apply(sql);
|
|
|
|
//
|
|
// Delete Feed
|
|
//
|
|
sql=QString("delete from `FEED_PERMS` where ")+
|
|
"`KEY_NAME`='"+RDEscapeString(feedname)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
sql=QString("delete from `SUPERFEED_MAPS` where ")+
|
|
"`KEY_NAME`='"+RDEscapeString(feedname)+"' || "+
|
|
"`MEMBER_KEY_NAME`='"+RDEscapeString(feedname)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
sql=QString("delete from `FEEDS` where ")+
|
|
"`KEY_NAME`='"+RDEscapeString(feedname)+"'";
|
|
RDSqlQuery::apply(sql);
|
|
list_feeds_model->removeFeed(feedname);
|
|
|
|
pd->reset();
|
|
|
|
delete pd;
|
|
delete feed;
|
|
}
|
|
|
|
|
|
void ListFeeds::doubleClickedData(const QModelIndex &index)
|
|
{
|
|
editData();
|
|
}
|
|
|
|
|
|
void ListFeeds::feedSelectionChangedData(const QItemSelection &selected,
|
|
const QItemSelection &unselected)
|
|
{
|
|
QModelIndexList rows=list_feeds_view->selectionModel()->selectedRows();
|
|
|
|
list_edit_button->setEnabled(rows.size()==1);
|
|
list_delete_button->setEnabled(rows.size()==1);
|
|
list_repost_button->setEnabled(rows.size()==1);
|
|
list_unpost_button->setEnabled(rows.size()==1);
|
|
}
|
|
|
|
|
|
void ListFeeds::repostData()
|
|
{
|
|
QString err_msg;
|
|
QString sql;
|
|
RDFeed *feed=NULL;
|
|
int count;
|
|
QModelIndexList rows=list_feeds_view->selectionModel()->selectedRows();
|
|
|
|
if(rows.size()!=1) {
|
|
return;
|
|
}
|
|
|
|
QString keyname=list_feeds_model->keyName(rows.first());
|
|
|
|
if(QMessageBox::question(this,"RDAdmin - "+tr("Feed Repost"),
|
|
tr("This operation will repost all XML, image and")+"\n"+
|
|
tr("audio data to the remote archive, and thus may")+"\n"+
|
|
tr("take signficant time to complete.")+"\n\n"+
|
|
tr("Continue?"),QMessageBox::Yes,QMessageBox::No)!=
|
|
QMessageBox::Yes) {
|
|
return;
|
|
}
|
|
feed=new RDFeed(keyname,rda->config(),this);
|
|
|
|
//
|
|
// Generate Queries
|
|
//
|
|
sql=QString("select ")+
|
|
"`ID` "+ // 00
|
|
"from `FEED_IMAGES` where "+
|
|
QString::asprintf("`FEED_ID`=%u",feed->id());
|
|
RDSqlQuery *image_q=new RDSqlQuery(sql);
|
|
|
|
sql=QString("select ")+
|
|
"`ID` "+ // 00
|
|
"from `PODCASTS` where "+
|
|
QString::asprintf("`FEED_ID`=%u",feed->id());
|
|
RDSqlQuery *item_q=new RDSqlQuery(sql);
|
|
|
|
//
|
|
// Progress Dialog
|
|
//
|
|
QProgressDialog *pd=new QProgressDialog(this);
|
|
pd->setWindowTitle("RDAdmin");
|
|
pd->setLabelText(tr("Reposting feed")+" "+feed->keyName()+".");
|
|
pd->setCancelButton(NULL);
|
|
pd->setMinimumDuration(0);
|
|
pd->setWindowModality(Qt::WindowModal);
|
|
pd->setRange(0,image_q->size()+item_q->size());
|
|
count=0;
|
|
pd->setValue(count);
|
|
|
|
//
|
|
// Post Images
|
|
//
|
|
while(image_q->next()) {
|
|
feed->postImage(image_q->value(0).toUInt());
|
|
pd->setValue(++count);
|
|
}
|
|
|
|
//
|
|
// Post Item Data
|
|
//
|
|
while(item_q->next()) {
|
|
if(!feed->postPodcast(item_q->value(0).toUInt(),&err_msg)) {
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Error posting audio to feed")+" \""+
|
|
feed->keyName()+"\"\n"+
|
|
"["+err_msg+"].");
|
|
}
|
|
pd->setValue(++count);
|
|
}
|
|
|
|
//
|
|
// Post RSS XML
|
|
//
|
|
feed->setSha1Hash(""); // So we force a new upload
|
|
if(!feed->postXml(&err_msg)) {
|
|
pd->setValue(++count);
|
|
QMessageBox::warning(this,"RDAdmin - "+tr("Error"),
|
|
tr("Error posting updated XML to feed")+" \""+
|
|
feed->keyName()+"\"\n"+
|
|
"["+err_msg+"].");
|
|
}
|
|
|
|
delete image_q;
|
|
delete item_q;
|
|
delete pd;
|
|
}
|
|
|
|
|
|
void ListFeeds::unpostData()
|
|
{
|
|
QString sql;
|
|
RDFeed *feed=NULL;
|
|
int count;
|
|
QModelIndexList rows=list_feeds_view->selectionModel()->selectedRows();
|
|
|
|
if(rows.size()!=1) {
|
|
return;
|
|
}
|
|
|
|
QString keyname=list_feeds_model->keyName(rows.first());
|
|
|
|
if(QMessageBox::question(this,"RDAdmin - "+tr("Feed Repost"),
|
|
tr("This operation will unpost (remove) all XML, image and")+"\n"+
|
|
tr("audio data from the remote archive, and thus may")+"\n"+
|
|
tr("take signficant time to complete.")+"\n\n"+
|
|
tr("Continue?"),QMessageBox::Yes,QMessageBox::No)!=
|
|
QMessageBox::Yes) {
|
|
return;
|
|
}
|
|
|
|
feed=new RDFeed(keyname,rda->config(),this);
|
|
|
|
//
|
|
// Generate Queries
|
|
//
|
|
sql=QString("select ")+
|
|
"`ID` "+ // 00
|
|
"from `PODCASTS` where "+
|
|
QString::asprintf("`FEED_ID`=%u",feed->id());
|
|
RDSqlQuery *item_q=new RDSqlQuery(sql);
|
|
|
|
sql=QString("select ")+
|
|
"`ID` "+ // 00
|
|
"from `FEED_IMAGES` where "+
|
|
QString::asprintf("`FEED_ID`=%u",feed->id());
|
|
RDSqlQuery *image_q=new RDSqlQuery(sql);
|
|
|
|
//
|
|
// Progress Dialog
|
|
//
|
|
QProgressDialog *pd=new QProgressDialog(this);
|
|
pd->setWindowTitle("RDAdmin");
|
|
pd->setLabelText(tr("Unposting feed")+" "+feed->keyName()+".");
|
|
pd->setCancelButton(NULL);
|
|
pd->setMinimumDuration(0);
|
|
pd->setWindowModality(Qt::WindowModal);
|
|
pd->setRange(0,image_q->size()+item_q->size());
|
|
count=0;
|
|
pd->setValue(count);
|
|
|
|
//
|
|
// Remove RSS XML
|
|
//
|
|
feed->removeRss();
|
|
pd->setValue(++count);
|
|
|
|
//
|
|
// Remove Item Data
|
|
//
|
|
while(item_q->next()) {
|
|
RDPodcast *cast=new RDPodcast(rda->config(),item_q->value(0).toUInt());
|
|
cast->removePodcast();
|
|
delete cast;
|
|
pd->setValue(++count);
|
|
}
|
|
|
|
//
|
|
// Remove Images
|
|
//
|
|
while(image_q->next()) {
|
|
feed->removeImage(image_q->value(0).toUInt());
|
|
pd->setValue(++count);
|
|
}
|
|
|
|
delete item_q;
|
|
delete image_q;
|
|
delete pd;
|
|
}
|
|
|
|
|
|
void ListFeeds::closeData()
|
|
{
|
|
done(0);
|
|
}
|
|
|
|
|
|
void ListFeeds::resetModelData()
|
|
{
|
|
list_feeds_view->resizeColumnsToContents();
|
|
list_feeds_view->resizeRowsToContents();
|
|
}
|
|
|
|
|
|
void ListFeeds::resizeEvent(QResizeEvent *e)
|
|
{
|
|
list_add_button->setGeometry(size().width()-90,30,80,50);
|
|
list_edit_button->setGeometry(size().width()-90,90,80,50);
|
|
list_delete_button->setGeometry(size().width()-90,150,80,50);
|
|
list_repost_button->setGeometry(size().width()-90,240,80,50);
|
|
list_unpost_button->setGeometry(size().width()-90,300,80,50);
|
|
list_close_button->setGeometry(size().width()-90,size().height()-60,80,50);
|
|
list_box_label->setGeometry(14,11,size().width()-28,19);
|
|
list_feeds_view->setGeometry(10,30,size().width()-120,size().height()-40);
|
|
}
|