#include "imapresponse.h" static QString _previousData; static unsigned int _neededData; IMAPResponseParser::IMAPResponseParser(const QString &data) { QString _data = data, more; _data.replace((QString)"\r\n", "\n"); QStringList lines = QStringList::split('\n', _data); QStringList::Iterator it; for (it = lines.begin(); it != lines.end(); it++) { QString tag, lineData; if (!_previousData.isNull()) { qDebug(QString("IMAPResponseParser: got additional data. (%1/%2)").arg(_previousData.length()).arg(_neededData)); _previousData += *it + "\n"; if (_previousData.length() >= _neededData) { _previousData += ")"; qDebug("IMAPResponseParser: got ALL additional data."); qDebug("Data is: " + _previousData); parseResponse(_previousData); _previousData = QString(0); _neededData = 0; } } else { splitTagData(*it, tag, lineData); if (tag == "*") { int pos; if ((pos = data.find(QRegExp("\\{\\d*\\}"))) != -1) { qDebug("IMAPResponseParser: waiting for additional data..."); _previousData = lineData + "\n"; QString tmp = data.right(data.length() - pos - 1).stripWhiteSpace(); tmp.truncate(tmp.length() - 1); _neededData = tmp.toUInt(); if (_previousData.length() >= _neededData) { qDebug("IMAPResponseParser: got ALL additional data. (1st)"); parseResponse(_previousData); _previousData = QString(0); _neededData = 0; } else { break; } } else { parseResponse(lineData); } } else if (tag == "+") { emit needMoreData(_data); } else { _iresponse.setTag(tag); parseResponse(_data, true); } } } } IMAPResponse IMAPResponseParser::response() { return _iresponse; } void IMAPResponseParser::parseResponse(const QString &data, bool tagged) { QString response, line; int pos; bool isNum = false; if ((pos = data.find(' ')) != -1) { response = data.left(pos).upper(); response.toInt(&isNum); line = data.right(data.length() - pos - 1); } else { qWarning("IMAPResponseParser: parseResponse: No response found."); return; } if (response == "OK" && tagged) { IMAPResponseStatusResponse status(OK, line); status.setResponseCode(getResponseCode(status.comment())); _iresponse.setStatusResponse(status); } else if (response == "OK" && !tagged) { IMAPResponseOK ok(line, getResponseCode(line)); _iresponse.addOK(ok); } else if (response == "NO" && tagged) { IMAPResponseStatusResponse status(NO, line); status.setResponseCode(getResponseCode(status.comment())); _iresponse.setStatusResponse(status); } else if (response == "NO" && !tagged) { IMAPResponseNO no(line, getResponseCode(line)); _iresponse.addNO(no); } else if (response == "BAD" && tagged) { IMAPResponseStatusResponse status(BAD, line); status.setResponseCode(getResponseCode(status.comment())); _iresponse.setStatusResponse(status); } else if (response == "BAD" && !tagged) { IMAPResponseBAD bad(line, getResponseCode(line)); _iresponse.addBAD(bad); } else if (response == "PREAUTH" && tagged) { IMAPResponseStatusResponse status(PREAUTH, line); _iresponse.setStatusResponse(status); } else if (response == "PREAUTH" && !tagged) { qDebug("IMAPResponseParser: responseParser: got untagged PREAUTH response."); // XXX } else if (response == "BYE") { IMAPResponseStatusResponse status(BYE, line); if (!tagged) status.setExitedUnexpected(true); _iresponse.setStatusResponse(status); } else if (response == "CAPABILITY") { IMAPResponseCAPABILITY capability(QStringList::split(' ', line)); _iresponse.addCAPABILITY(capability); } else if (response == "LIST") { QStringList list = splitData(line, true); QStringList flags; parseParenthesizedList(list[0], flags); removeLimiters(list[1]); removeLimiters(list[2]); IMAPResponseLIST rlist(parseFlagList(flags), list[1], list[2]); _iresponse.addLIST(rlist); } else if (response == "LSUB") { QStringList list = splitData(line, true); QStringList flags; parseParenthesizedList(list[0], flags); removeLimiters(list[1]); removeLimiters(list[2]); IMAPResponseLSUB lsub(parseFlagList(flags), list[1], list[2]); _iresponse.addLSUB(lsub); } else if (response == "STATUS") { QStringList list = splitData(line, true); removeLimiters(list[0]); IMAPResponseSTATUS status(list[0]); QStringList flags; parseParenthesizedList(list[1], flags); QStringList::Iterator it; for (it = flags.begin(); it != flags.end(); it++) { if (*it == "MESSAGES") status.setMessages(*(++it)); else if (*it == "RECENT") status.setRecent(*(++it)); else if (*it == "UIDNEXT") status.setUidnext(*(++it)); else if (*it == "UIDVALIDITY") status.setUidvalidity(*(++it)); else if (*it == "UNSEEN") status.setUnseen(*(++it)); else qWarning("IMAPResponseParser: parseResponse: Unknown status data: " + *(it++) + "|"); } _iresponse.addSTATUS(status); } else if (response == "SEARCH") { IMAPResponseSEARCH search(QStringList::split(' ', line)); _iresponse.addSEARCH(search); } else if (response == "FLAGS") { QStringList list; parseParenthesizedList(line, list); IMAPResponseFLAGS flags(parseFlagList(list)); _iresponse.addFLAGS(flags); } else if (isNum) { QStringList list = QStringList::split(' ', line); if (list[0] == "EXISTS") { IMAPResponseEXISTS exists(response); _iresponse.addEXISTS(exists); } else if (list[0] == "RECENT") { IMAPResponseRECENT recent(response); _iresponse.addRECENT(recent); } else if (list[0] == "EXPUNGE") { IMAPResponseEXPUNGE expunge(response); _iresponse.addEXPUNGE(expunge); } else if (list[0] == "FETCH") { IMAPResponseFETCH fetch; QStringList::Iterator it; QStringList fetchList = splitData(line, true); QStringList list; parseParenthesizedList(fetchList[1], list); for (it = list.begin(); it != list.end(); it++) { if (*it == "BODY") { qDebug("IMAPResponseParser: responseParser: got FETCH::BODY"); // XXX } else if ((*it).find(QRegExp("BODY\\[\\d+\\]")) != -1) { QString bodydata = *(++it); qDebug("IMAPResponseParser: responseParser: got FETCH::BODY[x]"); QStringList blist; parseParenthesizedList(bodydata, blist); IMAPResponseBodyPart bodypart; QString tmp; for (unsigned int i = 2; i < blist.count(); i++) { if (i != 2) tmp += " " + blist[i]; else tmp += blist[i]; } bodypart.setData(tmp); tmp = list[0]; tmp.replace(0, 5, ""); tmp.truncate(blist[0].length() - 1); bodypart.setPart(tmp); fetch.addBodyPart(bodypart); } else if (*it == "BODYSTRUCTURE") { qDebug("IMAPResponseParser: responseParser: got FETCH::BODYSTRUCTURE"); /* QString bsdata = *(++it); QStringList bsList; parseParenthesizedList(bsdata, bsList); IMAPResponseBodystructure bodystructure; QStringList attachml; for (int i = 0; i < bsList.count() - 1; i++) { parseParenthesizedList(bsList[0], attachml); IMAPResponseBodypart bodypart; bodypart.setMimeTypeMain(attachml[0] == "NIL" ? QString(0) : attachml[0]); bodypart.setMimeTypeSub(attachml[1] == "NIL" ? QString(0) : attachml[1]); bodypart.setAddData(attachml[2] == "NIL" ? QString(0) : attachml[2]); // 3 (NIL) // 4 (NIL) bodypart.setEncoding(attachml[5] == "NIL" ? QString(0) : attachml[5]); bodypart.setSize(attachml[6] == "NIL" ? QString(0) : attachml[6]); bodypart.setLength(attachml[7] == "NIL" ? QString(0) : attachml[7]); bodypart.setAttachInfo(attachml[8] == "NIL" ? QString(0) : attachml[8]); // 9 (NIL) // 10 (NIL) bodystructure.addBodyPart(bodypart); } */ } else if (*it == "ENVELOPE") { QString envdata = *(++it); QStringList envList; parseParenthesizedList(envdata, envList); IMAPResponseEnvelope envelope; envelope.setMailDate(envList[0] == "NIL" ? QString(0) : removeLimiters(envList[0])); envelope.setSubject(envList[1] == "NIL" ? QString(0) : removeLimiters(envList[1])); QStringList froml, senderl, replytol, tol, ccl, bccl; QStringList froma, sendera, replytoa, toa, cca, bcca; parseParenthesizedList(envList[2], froml); parseParenthesizedList(envList[3], senderl); parseParenthesizedList(envList[4], replytol); parseParenthesizedList(envList[5], tol); parseParenthesizedList(envList[6], ccl); parseParenthesizedList(envList[7], bccl); QStringList::Iterator it; for (it = froml.begin(); it != froml.end(); it++) { parseParenthesizedList(*it, froma); if (froml[0] != "NIL") envelope.addFrom(IMAPResponseAddress( removeLimiters(froma[0]), removeLimiters(froma[1]), removeLimiters(froma[2]), removeLimiters(froma[3]))); } for (it = senderl.begin(); it != senderl.end(); it++) { parseParenthesizedList(*it, sendera); if (senderl[0] != "NIL") envelope.addSender(IMAPResponseAddress( removeLimiters(sendera[0]), removeLimiters(sendera[1]), removeLimiters(sendera[2]), removeLimiters(sendera[3]))); } for (it = replytol.begin(); it != replytol.end(); it++) { parseParenthesizedList(*it, replytoa); if (replytol[0] != "NIL") envelope.addReplyTo(IMAPResponseAddress( removeLimiters(replytoa[0]), removeLimiters(replytoa[1]), removeLimiters(replytoa[2]), removeLimiters(replytoa[3]))); } for (it = tol.begin(); it != tol.end(); it++) { parseParenthesizedList(*it, toa); if (tol[0] != "NIL") envelope.addTo(IMAPResponseAddress( removeLimiters(toa[0]), removeLimiters(toa[1]), removeLimiters(toa[2]), removeLimiters(toa[3]))); } for (it = ccl.begin(); it != ccl.end(); it++) { parseParenthesizedList(*it, cca); if (ccl[0] != "NIL") envelope.addCc(IMAPResponseAddress( removeLimiters(cca[0]), removeLimiters(cca[1]), removeLimiters(cca[2]), removeLimiters(cca[3]))); } for (it = bccl.begin(); it != bccl.end(); it++) { parseParenthesizedList(*it, bcca); if (bccl[0] != "NIL") envelope.addBcc(IMAPResponseAddress( removeLimiters(bcca[0]), removeLimiters(bcca[1]), removeLimiters(bcca[2]), removeLimiters(bcca[3]))); } envelope.setInReplyTo(envList[7] == "NIL" ? QString(0) : removeLimiters(envList[7])); envelope.setMessageId(envList[8] == "NIL" ? QString(0) : removeLimiters(envList[8])); fetch.setEnvelope(envelope); } else if (*it == "FLAGS") { QString flagdata = *(++it); QStringList flags; parseParenthesizedList(flagdata, flags); fetch.setFlags(parseFlagList(flags)); } else if (*it == "INTERNALDATE") { fetch.setInternalDate(removeLimiters(*(++it))); } else if (*it == "RFC822" || *it == "BODY[]") { qDebug("IMAPResponseParser: responseParser: got FETCH::RFC822"); // XXX } else if (*it == "RFC822.HEADER" || *it == "BODY.PEEK[HEADER]") { qDebug("IMAPResponseParser: responseParser: got FETCH::RFC822.HEADER"); // XXX } else if (*it == "RFC822.SIZE") { fetch.setRFC822Size(*(++it)); } else if (*it == "RFC822.TEXT" || *it == "BODY[TEXT]") { qDebug("IMAPResponseParser: responseParser: got FETCH::RFC822.TEXT"); // XXX } else if (*it == "UID") { fetch.setUid(*(++it)); } } _iresponse.addFETCH(fetch); } } else qWarning("IMAPResponseParser: parseResponse: Unknown response: " + response + "|"); } QStringList IMAPResponseParser::splitData(const QString &data, bool withBrackets) { int b = 0; bool a = false, noappend = false, escaped = false; QString temp; QStringList list; for (unsigned int i = 0; i <= data.length(); i++) { if (withBrackets && data[i] == '(' && !a) b++; else if (withBrackets && data[i] == ')' && !a) b--; if (data[i] == '"' && !escaped) a = !a; else escaped = false; if (data[i] == '\\' && data[i + 1] == '"') escaped = true; if ((data[i] == ' ' || i == data.length()) && b == 0 && !a) { list.append(temp); temp = QString(0); if (data[i] == ' ') noappend = true; } if (!noappend) temp += data[i]; noappend = false; } return list; } void IMAPResponseParser::parseParenthesizedList(const QString &data, QStringList &parsed) { QString data_(data); removeLimiters(data_, '(', ')'); parsed = splitData(data_, true); } void IMAPResponseParser::splitTagData(const QString &line, QString &tag, QString &data) { int pos; if ((pos = line.find(' ')) != -1) { tag = line.left(pos); data = line.right(line.length() - pos - 1); } else qWarning("IMAPResponseParser: splitTagData: tag not found. Line was " + line + "|"); } QString IMAPResponseParser::removeLimiters(QString &string, const QChar &sl, const QChar &el) { QString tmpString; if (string[0] == sl && string[string.length() - 1] == el) { string.truncate(string.length() - 1); string.replace(0, 1, ""); for (unsigned int i = 1; i <= string.length(); i++) { if (string[i - 1] == '\\' && sl == '"') ++i; tmpString += string[i - 1]; } } return tmpString; } IMAPResponseEnums::IMAPResponseCode IMAPResponseParser::getResponseCode(const QString &line) { if (line.find(QRegExp((QString) "^\\[.*\\]" + ' ' + ".*")) != -1) { int pos = line.find("] "); QString code = line.left(pos + 1).upper(); if (code.find(QRegExp("[ALERT]")) != -1) return ALERT; else if (code.find(QRegExp("[NEWNAME .* .*]")) != -1) return NEWNAME; // XXX else if (code.find(QRegExp("[PARSE]")) != -1) return PARSE; else if (code.find(QRegExp("[PERMANENTFLAGS \\d*]")) != -1) return PERMANENTFLAGS; // XXX else if (code.find(QRegExp("[READ-ONLY]")) != -1) return READONLY; else if (code.find(QRegExp("[READ-WRITE]")) != -1) return READWRITE; else if (code.find(QRegExp("[TRYCREATE]")) != -1) return TRYCREATE; else if (code.find(QRegExp("[UIDVALIDITY \\d*]")) != -1) return UIDVALIDITY; // XXX else if (code.find(QRegExp("[UNSEEN \\d*]")) != -1) return UNSEEN; // XXX else { qWarning("IMAPResponseParser: getResponseCode: Unknown code: " + code + "|"); return UnknownCode; } } return NoCode; } QValueList IMAPResponseParser::parseFlagList(const QStringList &flagList) { QValueList flags; QStringList::ConstIterator it; for (it = flagList.begin(); it != flagList.end(); it++) { QString flag = (*it).lower(); if (flag == "\\seen") flags.append(Seen); else if (flag == "\\answered") flags.append(Answered); else if (flag == "\\flagged") flags.append(Flagged); else if (flag == "\\deleted") flags.append(Deleted); else if (flag == "\\draft") flags.append(Draft); else if (flag == "\\recent") flags.append(Recent); else if (flag == "\\noinferiors") flags.append(Noinferiors); else if (flag == "\\noselect") flags.append(Noselect); else if (flag == "\\marked") flags.append(Marked); else if (flag == "\\unmarked") flags.append(Unmarked); else if (flag.isEmpty()) { } else qWarning("IMAPResponseParser: parseFlagList: Unknown flag: " + *it + "|"); } return flags; }