You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.3 KiB
101 lines
3.3 KiB
/*************************************************************************** |
|
* Copyright 2010 Artur Duque de Souza <asouza@kde.org> * |
|
* * |
|
* This program 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 2 of the License, or * |
|
* (at your option) any later version. * |
|
* * |
|
* 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., * |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * |
|
***************************************************************************/ |
|
|
|
#ifndef SHAREPROVIDER_H |
|
#define SHAREPROVIDER_H |
|
|
|
#include <QObject> |
|
#include <kio/global.h> |
|
#include <KIO/Job> |
|
#include <QUrl> |
|
#include <KLocalizedString> |
|
|
|
#include <Plasma/PackageStructure> |
|
|
|
namespace KJSEmbed { class Engine; } |
|
|
|
class ShareProvider : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ShareProvider(KJSEmbed::Engine* engine, QObject *parent = 0); |
|
|
|
QString method() const; |
|
void setMethod(const QString &method); |
|
|
|
QUrl url() const; |
|
void setUrl(const QString &url); |
|
|
|
void addPostFile(const QString &contentKey, const QVariant &content); |
|
|
|
Q_SIGNALS: |
|
void readyToPublish(); |
|
void finished(const QString &url); |
|
void finishedError(const QString &msg); |
|
|
|
public Q_SLOTS: |
|
// ###: Function to return the content so the plugin can |
|
// play with it before publishing? |
|
|
|
// helper methods |
|
void publish(); |
|
QString parseXML(const QString &key, const QString &data); |
|
void addQueryItem(const QString &key, const QString &value); |
|
void addPostItem(const QString &key, const QString &value, |
|
const QString &contentType); |
|
|
|
// result methods |
|
void success(const QString &url); |
|
void error(const QString &msg); |
|
void redirected(KIO::Job *job, const QUrl &from); |
|
|
|
protected Q_SLOTS: |
|
// Q_SLOTS for kio |
|
void mimetypeJobFinished(KJob *job); |
|
void openFile(KIO::Job *job); |
|
void finishedContentData(KIO::Job *job, const QByteArray &data); |
|
void finishedPublish(KJob *job); |
|
void readPublishData(KIO::Job *job, const QByteArray &data); |
|
|
|
protected: |
|
void finishHeader(); |
|
|
|
private: |
|
void publishUrl(const QUrl& url); |
|
void uploadData(const QByteArray &data); |
|
|
|
QString m_content; |
|
QString m_contentKey; |
|
QString m_mimetype; |
|
|
|
bool m_isBlob; |
|
bool m_isPost; |
|
|
|
QUrl m_url; |
|
QUrl m_service; |
|
|
|
QByteArray m_data; |
|
QByteArray m_buffer; |
|
QByteArray m_boundary; |
|
|
|
KJSEmbed::Engine* m_engine; |
|
}; |
|
|
|
#endif // SHAREPROVIDER
|
|
|