From 9c8fea86564712aca4363bb1ebe5fd227eff188f Mon Sep 17 00:00:00 2001 From: Linus Jahn Date: Sat, 19 Jan 2019 18:06:56 +0100 Subject: Implement XEP-0363: HTTP File Upload: Request/Slot IQs This implements the IQs for requesting and receiving upload slots as defined by XEP-0363: HTTP File Upload in version 0.9.0. --- src/base/QXmppHttpUploadIq.h | 100 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/base/QXmppHttpUploadIq.h (limited to 'src/base/QXmppHttpUploadIq.h') diff --git a/src/base/QXmppHttpUploadIq.h b/src/base/QXmppHttpUploadIq.h new file mode 100644 index 00000000..47cd7595 --- /dev/null +++ b/src/base/QXmppHttpUploadIq.h @@ -0,0 +1,100 @@ +/* + * Copyright (C) 2008-2019 The QXmpp developers + * + * Authors: + * Linus Jahn + * + * Source: + * https://github.com/qxmpp-project/qxmpp + * + * This file is a part of QXmpp library. + * + * 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. + * + */ + +#ifndef QXMPPHTTPUPLOADIQ_H +#define QXMPPHTTPUPLOADIQ_H + +#include +#include +#include + +#include "QXmppIq.h" + +class QXmppHttpUploadRequestIqPrivate; +class QXmppHttpUploadSlotIqPrivate; + +/// \brief Represents an HTTP File Upload IQ for requesting an upload slot as +/// defined by XEP-0363: HTTP File Upload [v0.9.0]. +/// +/// \ingroup Stanzas + +class QXMPP_EXPORT QXmppHttpUploadRequestIq : public QXmppIq +{ +public: + QXmppHttpUploadRequestIq(); + ~QXmppHttpUploadRequestIq(); + + QString fileName() const; + void setFileName(const QString &filename); + + qint64 size() const; + void setSize(qint64 size); + + QMimeType contentType() const; + void setContentType(const QMimeType &type); + + static bool isHttpUploadRequestIq(const QDomElement &element); + +protected: + /// \cond + void parseElementFromChild(const QDomElement &element); + void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond + +private: + QXmppHttpUploadRequestIqPrivate* const d; +}; + +/// \brief Represents an HTTP File Upload IQ result for receiving an upload slot as +/// defined by XEP-0363: HTTP File Upload [v0.9.0]. +/// +/// \ingroup Stanzas + +class QXMPP_EXPORT QXmppHttpUploadSlotIq : public QXmppIq +{ +public: + QXmppHttpUploadSlotIq(); + ~QXmppHttpUploadSlotIq(); + + QUrl putUrl() const; + void setPutUrl(const QUrl &putUrl); + + QUrl getUrl() const; + void setGetUrl(const QUrl &getUrl); + + QMap putHeaders() const; + void setPutHeaders(const QMap &putHeaders); + + static bool isHttpUploadSlotIq(const QDomElement &element); + +protected: + /// \cond + void parseElementFromChild(const QDomElement &element); + void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond + +private: + QXmppHttpUploadSlotIqPrivate* const d; +}; + +#endif // QXMPPHTTPUPLOADIQ_H -- cgit v1.2.3