1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
/*
This file is part of Choqok, the KDE micro-blogging client
Copyright (C) 2010-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
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) version 3 or any later version
accepted by the membership of KDE e.V. (or its successor approved
by the membership of KDE e.V.), which shall act as a proxy
defined in Section 14 of version 3 of the license.
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, see http://www.gnu.org/licenses/
*/
#include "imageshack.h"
#include <KAction>
#include <KActionCollection>
#include <KAboutData>
#include <KGenericFactory>
#include <KIO/Job>
#include <kio/netaccess.h>
#include <QtXml/QDomDocument>
#include <mediamanager.h>
#include <passwordmanager.h>
#include <shortenmanager.h>
const char * apiKey = "ZMWLXQBOfb570310607355f90c601148a3203f0f";
K_PLUGIN_FACTORY( MyPluginFactory, registerPlugin < ImageShack > (); )
K_EXPORT_PLUGIN( MyPluginFactory( "choqok_imageshack" ) )
ImageShack::ImageShack(QObject* parent, const QList<QVariant>& )
:Choqok::Uploader(MyPluginFactory::componentData(), parent)
{
}
ImageShack::~ImageShack()
{
}
void ImageShack::upload(const KUrl& localUrl, const QByteArray& medium, const QByteArray& mediumType)
{
kDebug();
if( !mediumType.startsWith(QByteArray("image/")) ){
emit uploadingFailed(localUrl, i18n("Just supporting image uploading"));
return;
}
KUrl url("http://www.imageshack.us/upload_api.php");
QMap<QString, QByteArray> formdata;
formdata["key"] = apiKey;
formdata["rembar"] = "1";
QMap<QString, QByteArray> mediafile;
mediafile["name"] = "fileupload";
mediafile["filename"] = localUrl.fileName().toUtf8();
mediafile["mediumType"] = mediumType;
mediafile["medium"] = medium;
QList< QMap<QString, QByteArray> > listMediafiles;
listMediafiles.append(mediafile);
QByteArray data = Choqok::MediaManager::createMultipartFormData( formdata, listMediafiles );
KIO::StoredTransferJob *job = KIO::storedHttpPost( data, url, KIO::HideProgressInfo ) ;
if ( !job ) {
kError() << "Cannot create a http POST request!";
return;
}
job->addMetaData( "content-type", "Content-Type: multipart/form-data; boundary=AaB03x" );
mUrlMap[job] = localUrl;
connect( job, SIGNAL( result( KJob* ) ),
SLOT( slotUpload(KJob*)) );
job->start();
}
void ImageShack::slotUpload(KJob* job)
{
kDebug();
KUrl localUrl = mUrlMap.take( job );
if ( job->error() ) {
kError() << "Job Error: " << job->errorString();
emit uploadingFailed(localUrl, job->errorString());
return;
} else {
KIO::StoredTransferJob *stj = qobject_cast<KIO::StoredTransferJob *>(job);
QDomDocument doc;
doc.setContent(stj->data());
if(doc.firstChild().isNull()) {
kDebug()<<"Malformed response: "<< stj->data();
return;
}
QDomElement root = doc.documentElement();
if(root.tagName() == "imginfo"){
QDomNode node = root.firstChild();
while(!node.isNull()){
QDomElement elm = node.toElement();
if(elm.tagName() == "links"){
QDomNode node2 = node.firstChild();
while( !node2.isNull() ){
QDomElement elm2 = node2.toElement();
if(elm2.tagName() == "yfrog_link"){
emit mediumUploaded(localUrl, elm2.text());
return;
}
node2 = node2.nextSibling();
}
}
node = node.nextSibling();
}
} else {
if (root.tagName() == "links"){
QDomNode node = root.firstChild();
if( !node.isNull() ){
if(node.toElement().tagName() == "error" ){
emit uploadingFailed(localUrl, node.toElement().text());
return;
}
}
}
}
emit uploadingFailed(localUrl, i18n("Malformed response"));
kDebug()<<"Response not detected: "<<stj->data();
}
}
/*
* Return XML:
<?xml version="1.0" encoding="iso-8859-1"?><imginfo xmlns="http://ns.imageshack.us/imginfo/7/" version="7" timestamp="1286536790">
<rating>
<ratings>0</ratings>
<avg>0.0</avg>
</rating>
<files server="717" bucket="1094">
<image size="6913" content-type="image/jpeg">mehrdad5050.jpg</image>
</files>
<resolution>
<width>50</width>
<height>50</height>
</resolution>
<exif-info>
<exifmake>DIGITAL</exifmake>
<exifmodel>F15</exifmodel>
<exiforientation>Horizontal (normal)</exiforientation>
<exifflash>Fired</exifflash>
<exiffocallength>5.6 mm</exiffocallength>
<exifdatetime>2036-02-09 11:36:19</exifdatetime>
<exifexposuretime>1/10</exifexposuretime>
<exiflensfnum>f/3.5</exiflensfnum>
<exifaperture>f/3.5</exifaperture>
<exifiso>100</exifiso>
<exifmeteringmode>Center-weighted average</exifmeteringmode>
<exifexposureprogram>Program AE</exifexposureprogram>
<exifcompression>JPEG (old-style)</exifcompression>
</exif-info>
<class>r</class>
<visibility>no</visibility>
<uploader>
<ip>85.185.37.196</ip>
</uploader>
<links>
<image_link>http://img717.imageshack.us/img717/1094/mehrdad5050.jpg</image_link>
<image_html><a href="http://img717.imageshack.us/my.php?image=mehrdad5050.jpg" target="_blank"><img src="http://img717.imageshack.us/img717/1094/mehrdad5050.jpg" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a></image_html>
<image_bb>[URL=http://img717.imageshack.us/my.php?image=mehrdad5050.jpg][IMG]http://img717.imageshack.us/img717/1094/mehrdad5050.jpg[/IMG][/URL]</image_bb>
<image_bb2>[url=http://img717.imageshack.us/my.php?image=mehrdad5050.jpg][img=http://img717.imageshack.us/img717/1094/mehrdad5050.jpg][/url]</image_bb2>
<thumb_html><a href="http://img717.imageshack.us/my.php?image=mehrdad5050.jpg" target="_blank"><img src="http://www.imageshack.us/thumbnail.png" alt="Free Image Hosting at www.ImageShack.us" border="0"/></a></thumb_html>
<thumb_bb>[URL=http://img717.imageshack.us/my.php?image=mehrdad5050.jpg][IMG]http://www.imageshack.us/thumbnail.png[/IMG][/URL]</thumb_bb>
<thumb_bb2>[url=http://img717.imageshack.us/my.php?image=mehrdad5050.jpg][img=http://www.imageshack.us/thumbnail.png][/url]</thumb_bb2>
<yfrog_link>http://yfrog.com/jxmehrdad5050j</yfrog_link>
<yfrog_thumb>http://yfrog.com/jxmehrdad5050j.th.jpg</yfrog_thumb>
<ad_link>http://img717.imageshack.us/my.php?image=mehrdad5050.jpg</ad_link>
<done_page>http://img717.imageshack.us/content.php?page=done&l=img717/1094/mehrdad5050.jpg</done_page>
</links>
</imginfo>
ERROR response format:
<links>
<error id="wrong_file_type">Wrong file type detected for file tw:application/x-shellscript</error>
</links>
*/
|