/*************************************************************************** * This file is part of awesome-widgets * * * * awesome-widgets is free software: you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * awesome-widgets 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 awesome-widgets. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "extnetworkrequest.h" #include "ui_extnetworkrequest.h" #include #include #include "awdebug.h" ExtNetworkRequest::ExtNetworkRequest(QObject *_parent, const QString &_filePath) : AbstractExtItem(_parent, _filePath) { qCDebug(LOG_LIB) << __PRETTY_FUNCTION__; if (!_filePath.isEmpty()) ExtNetworkRequest::readConfiguration(); m_values[tag("response")] = ""; // HACK declare as child of nullptr to avoid crash with plasmawindowed // in the destructor m_manager = new QNetworkAccessManager(nullptr); connect(m_manager, &QNetworkAccessManager::finished, this, &ExtNetworkRequest::networkReplyReceived); connect(this, &ExtNetworkRequest::requestDataUpdate, this, &ExtNetworkRequest::sendRequest); } ExtNetworkRequest::~ExtNetworkRequest() { qCDebug(LOG_LIB) << __PRETTY_FUNCTION__; m_manager->deleteLater(); } ExtNetworkRequest *ExtNetworkRequest::copy(const QString &_fileName, const int _number) { qCDebug(LOG_LIB) << "File" << _fileName << "with number" << _number; auto item = new ExtNetworkRequest(parent(), _fileName); copyDefaults(item); item->setNumber(_number); item->setUrl(url()); return item; } QString ExtNetworkRequest::url() const { return m_url.toString(); } QString ExtNetworkRequest::uniq() const { return url(); } void ExtNetworkRequest::setUrl(const QString &_url) { qCDebug(LOG_LIB) << "Url" << _url; m_url = QUrl(_url); } void ExtNetworkRequest::readConfiguration() { AbstractExtItem::readConfiguration(); QSettings settings(filePath(), QSettings::IniFormat); settings.beginGroup("Desktop Entry"); setUrl(settings.value("X-AW-Url", url()).toString()); settings.endGroup(); bumpApi(AW_EXTNETREQUEST_API); } QVariantHash ExtNetworkRequest::run() { if (m_isRunning) return m_values; startTimer(); return m_values; } int ExtNetworkRequest::showConfiguration(QWidget *_parent, const QVariant &_args) { Q_UNUSED(_args) auto dialog = new QDialog(_parent); auto ui = new Ui::ExtNetworkRequest(); ui->setupUi(dialog); ui->lineEdit_name->setText(name()); ui->lineEdit_comment->setText(comment()); ui->label_numberValue->setText(QString("%1").arg(number())); ui->lineEdit_url->setText(url()); ui->checkBox_active->setCheckState(isActive() ? Qt::Checked : Qt::Unchecked); ui->lineEdit_schedule->setText(cron()); ui->lineEdit_socket->setText(socket()); ui->spinBox_interval->setValue(interval()); auto ret = dialog->exec(); if (ret == 1) { setName(ui->lineEdit_name->text()); setComment(ui->lineEdit_comment->text()); setNumber(ui->label_numberValue->text().toInt()); setApiVersion(AW_EXTNETREQUEST_API); setUrl(ui->lineEdit_url->text()); setActive(ui->checkBox_active->checkState() == Qt::Checked); setCron(ui->lineEdit_schedule->text()); setSocket(ui->lineEdit_socket->text()); setInterval(ui->spinBox_interval->value()); writeConfiguration(); } dialog->deleteLater(); delete ui; return ret; } void ExtNetworkRequest::writeConfiguration() const { AbstractExtItem::writeConfiguration(); QSettings settings(writableConfig(), QSettings::IniFormat); qCInfo(LOG_LIB) << "Configuration file" << settings.fileName(); settings.beginGroup("Desktop Entry"); settings.setValue("X-AW-Url", url()); settings.endGroup(); settings.sync(); } void ExtNetworkRequest::networkReplyReceived(QNetworkReply *_reply) { if (_reply->error() != QNetworkReply::NoError) { qCWarning(LOG_AW) << "An error occurs" << _reply->error() << "with message" << _reply->errorString(); return; } m_isRunning = false; m_values[tag("response")] = QString::fromUtf8(_reply->readAll()).trimmed(); emit(dataReceived(m_values)); } void ExtNetworkRequest::sendRequest() { m_isRunning = true; auto reply = m_manager->get(QNetworkRequest(m_url)); new QReplyTimeout(reply, REQUEST_TIMEOUT); }