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
|
/*
* Copyright (C) 2014 Ahmed I. Khalil <ahmedibrahimkhali@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "imagebinsharer.h"
ImageBinSharer::ImageBinSharer(const QString& contentPath) : AbstractSharer(contentPath)
{
}
QUrl ImageBinSharer::url() const
{
return QUrl("http://imagebin.ca/upload.php");
}
void ImageBinSharer::parseResponse(const QByteArray& responseData)
{
//Sample Response String that contains the url
// "status:1I0zzt2xu949
// url:http://ibin.co/1I0zzt2xu949
QString responseString = QString(QLatin1String(responseData));
QString urlPrefix = QLatin1String("url:");
int urlPrefixIndex = responseString.indexOf(urlPrefix);
if (urlPrefixIndex != -1) {
QString imageUrl = responseString.mid(urlPrefixIndex + urlPrefix.length()).trimmed();
m_imageUrl = QUrl(imageUrl);
} else {
m_hasError = true;
m_errorMessage = responseString.replace(QLatin1String("status:error:"), QLatin1String(""));
}
}
QByteArray ImageBinSharer::postBody(const QByteArray& imageData)
{
m_form.addFile(QLatin1String("file"), QUrl::fromLocalFile(m_contentPath), imageData);
m_form.finish();
return m_form.formData();
}
|