From 1477729aa0590a6f5041164f56d8c7e8e8249d2e Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 17 Jun 2013 12:00:17 +0200 Subject: Fix broken list requests in CodePaster. Pastebin.com-support: Remove header from list data. KDE Paste: Add trailing slash to prevent redirection. Task-number: QTCREATORBUG-9547 Change-Id: If47c4bc64767efb6f1a17db22ff9e0dbee3841bc Reviewed-by: Michael Bruning Reviewed-by: Robert Loehning Reviewed-by: Eike Ziller --- src/plugins/cpaster/kdepasteprotocol.cpp | 3 ++- src/plugins/cpaster/pastebindotcomprotocol.cpp | 20 +++++++++++++++++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/plugins/cpaster/kdepasteprotocol.cpp b/src/plugins/cpaster/kdepasteprotocol.cpp index 468146de2d..0fc08232d1 100644 --- a/src/plugins/cpaster/kdepasteprotocol.cpp +++ b/src/plugins/cpaster/kdepasteprotocol.cpp @@ -199,7 +199,8 @@ void KdePasteProtocol::list() { QTC_ASSERT(!m_listReply, return); - QString url = QLatin1String(hostUrlC) + QLatin1String("api/xml/all"); + // Trailing slash is important to prevent redirection. + QString url = QLatin1String(hostUrlC) + QLatin1String("api/xml/all/"); m_listReply = httpGet(url); connect(m_listReply, SIGNAL(finished()), this, SLOT(listFinished())); if (debug) diff --git a/src/plugins/cpaster/pastebindotcomprotocol.cpp b/src/plugins/cpaster/pastebindotcomprotocol.cpp index 32462ea60c..04a0c0c88b 100644 --- a/src/plugins/cpaster/pastebindotcomprotocol.cpp +++ b/src/plugins/cpaster/pastebindotcomprotocol.cpp @@ -308,12 +308,21 @@ static inline ParseState nextClosingState(ParseState current, const QStringRef & return ParseError; } -static inline QStringList parseLists(QIODevice *io) +static inline QStringList parseLists(QIODevice *io, QString *errorMessage) { enum { maxEntries = 200 }; // Limit the archive, which can grow quite large. QStringList rc; - QXmlStreamReader reader(io); + // Read answer and delete part up to the main table since the input form has + // parts that can no longer be parsed using XML parsers () + QByteArray data = io->readAll(); + const int tablePos = data.indexOf(""); + if (tablePos < 0) { + *errorMessage = QLatin1String("Could not locate beginning of table."); + return rc; + } + data.remove(0, tablePos); + QXmlStreamReader reader(data); ParseState state = OutSideTable; int tableRow = 0; int tableColumn = 0; @@ -401,6 +410,8 @@ static inline QStringList parseLists(QIODevice *io) break; } // switch reader state } + if (reader.hasError()) + *errorMessage = QString::fromLatin1("Error at line %1:%2").arg(reader.lineNumber()).arg(reader.errorString()); return rc; } @@ -411,7 +422,10 @@ void PasteBinDotComProtocol::listFinished() if (debug) qDebug() << "listFinished: error" << m_listReply->errorString(); } else { - QStringList list = parseLists(m_listReply); + QString errorMessage; + const QStringList list = parseLists(m_listReply, &errorMessage); + if (list.isEmpty()) + qWarning().nospace() << "Failed to read list from " << PASTEBIN_BASE << ':' << errorMessage; emit listDone(name(), list); if (debug) qDebug() << list; -- cgit v1.2.3