aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppEntityTimeManager.cpp
blob: 08089139aeb9cab887d4ee7012a48738f8df8373 (plain) (blame)
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
// SPDX-FileCopyrightText: 2010 Manjeet Dahiya <manjeetdahiya@gmail.com>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#include "QXmppEntityTimeManager.h"

#include "QXmppClient.h"
#include "QXmppConstants_p.h"
#include "QXmppEntityTimeIq.h"
#include "QXmppFutureUtils_p.h"
#include "QXmppIqHandling.h"
#include "QXmppUtils.h"

#include <QDateTime>
#include <QDomElement>

using namespace QXmpp::Private;

///
/// \typedef QXmppEntityTimeManager::EntityTimeResult
///
/// Contains the requested entity time or the returned error in case of a
/// failure.
///
/// \since QXmpp 1.5
///

///
/// Request the time from an XMPP entity.
///
/// The result is emitted on the timeReceived() signal.
///
/// \param jid
///
QString QXmppEntityTimeManager::requestTime(const QString &jid)
{
    QXmppEntityTimeIq request;
    request.setType(QXmppIq::Get);
    request.setTo(jid);
    if (client()->sendPacket(request)) {
        return request.id();
    } else {
        return QString();
    }
}

///
/// Requests the time from an XMPP entity and reports it via a QFuture.
///
/// The timeReceived() signal is not emitted.
///
/// \param jid
///
/// \warning THIS API IS NOT FINALIZED YET!
///
/// \since QXmpp 1.5
///
auto QXmppEntityTimeManager::requestEntityTime(const QString &jid) -> QXmppTask<EntityTimeResult>
{
    QXmppEntityTimeIq iq;
    iq.setType(QXmppIq::Get);
    iq.setTo(jid);

    return chainIq<EntityTimeResult>(client()->sendIq(std::move(iq)), this);
}

/// \cond
QStringList QXmppEntityTimeManager::discoveryFeatures() const
{
    return QStringList() << ns_entity_time;
}

bool QXmppEntityTimeManager::handleStanza(const QDomElement &element)
{
    if (QXmpp::handleIqRequests<QXmppEntityTimeIq>(element, client(), this)) {
        return true;
    }

    if (element.tagName() == "iq" && QXmppEntityTimeIq::isEntityTimeIq(element)) {
        QXmppEntityTimeIq entityTime;
        entityTime.parse(element);
        Q_EMIT timeReceived(entityTime);
        return true;
    }

    return false;
}

std::variant<QXmppEntityTimeIq, QXmppStanza::Error> QXmppEntityTimeManager::handleIq(QXmppEntityTimeIq iq)
{
    using Err = QXmppStanza::Error;
    if (iq.type() != QXmppIq::Get) {
        return Err(Err::Cancel, Err::BadRequest, QStringLiteral("Only IQ requests of type 'get' allowed."));
    }

    QXmppEntityTimeIq responseIq;
    QDateTime currentTime = QDateTime::currentDateTime();
    QDateTime utc = currentTime.toUTC();
    responseIq.setUtc(utc);

    currentTime.setTimeSpec(Qt::UTC);
    responseIq.setTzo(utc.secsTo(currentTime));
    return responseIq;
}
/// \endcond