~ubuntu-branches/ubuntu/oneiric/kdeplasma-addons/oneiric

« back to all changes in this revision

Viewing changes to dataengines/pastebin/backends/imgur.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-26 13:35:18 UTC
  • mfrom: (1.1.37 upstream)
  • Revision ID: james.westby@ubuntu.com-20101126133518-oxz33xjsoi02ty9f
Tags: 4:4.5.80-0ubuntu1
* New upstream beta release
* Disable kubuntu_02_microblog_default_configuration.diff does not apply
* New package plasma-containments-addons

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2009 by Nikhil Marathe <nsm.nikhil@gmail.com>           *
3
 
 *                                                                         *
4
 
 *   This program is free software; you can redistribute it and/or modify  *
5
 
 *   it under the terms of the GNU General Public License as published by  *
6
 
 *   the Free Software Foundation; either version 2 of the License, or     *
7
 
 *   (at your option) any later version.                                   *
8
 
 *                                                                         *
9
 
 *   This program is distributed in the hope that it will be useful,       *
10
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 
 *   GNU General Public License for more details.                          *
13
 
 *                                                                         *
14
 
 *   You should have received a copy of the GNU General Public License     *
15
 
 *   along with this program; if not, write to the                         *
16
 
 *   Free Software Foundation, Inc.,                                       *
17
 
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
18
 
 ***************************************************************************/
19
 
 
20
 
#ifndef IMGUR_H
21
 
#define IMGUR_H
22
 
 
23
 
#include "server.h"
24
 
 
25
 
#include <QByteArray>
26
 
 
27
 
#include <KConfigDialog>
28
 
 
29
 
#include <kio/global.h>
30
 
#include <kio/job.h>
31
 
 
32
 
#define IMGUR_SERVER "http://imgur.com/api/upload"
33
 
 
34
 
class ImgurServer : public PastebinServer
35
 
{
36
 
    Q_OBJECT
37
 
 
38
 
public:
39
 
    ImgurServer(const QString &server = IMGUR_SERVER);
40
 
    virtual ~ImgurServer();
41
 
 
42
 
    void post(const QString& content);
43
 
 
44
 
    void finish();
45
 
 
46
 
protected:
47
 
    QByteArray m_buffer;
48
 
    QByteArray m_boundary;
49
 
 
50
 
public slots:
51
 
    void readKIOData(KIO::Job *job, const QByteArray &data);
52
 
    void finished(KJob *job);
53
 
 
54
 
private:
55
 
    bool addFile( const QString& name, const QString& path );
56
 
    bool addPair(const QString& name, const QString& value);
57
 
 
58
 
    QByteArray m_data;
59
 
};
60
 
 
61
 
#endif