aboutsummaryrefslogtreecommitdiffstats
path: root/src/cloudmessaging/qcloudmessaging.cpp
blob: 3ecce6c4c37e929ecd41cad845b59edee865b930 (plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtCloudMessaging module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3-COMM$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qcloudmessaging.h"
#include "qcloudmessaging_p.h"
#include <QString>


/*!
    \class QCloudMessaging
    \inmodule QtCloudMessaging
    \since 5.11

    \brief The QtCloudMessaging module implements Qt wrapper API for multiple
    cloud messaging and cloud service providers. The QtCloudMessaging module
    can be easily extended to support private clouds or existing cloud
    providers.

    The QtCloudMessaging module currently has Google
    Firebase Cloud Messaging and Kaltiot IoT push messaging backends to
    get started with IoT or mobile cloud development.

    QCloudMessaging class enables registering of cloud messaging
    provider backends and backend clients.

    Cloud messaging providers and clients implement virtual functions which
    subscribe or unsubscribe to cloud messaging channels and receive or send
    messages to servers and to other clients.

    \list
    \li To create new cloud messaging service provider and client:
        \list
        \li Inherit the QCloudMessagingProvider class and implement the virtual
        functions.
        \li Inherit the QCloudMessagingClient class and implement the virtual
        functions.
        \endlist
    \endlist

*/

QT_BEGIN_NAMESPACE

/*!
 * \brief QCloudMessaging::QCloudMessaging
 *  QCloudMessaging constructor
 *
 * \param parent
 * Parent is QObject
 */
QCloudMessaging::QCloudMessaging(QObject *parent) :
    QObject(parent), d(new QCloudMessagingPrivate)
{
}
/*!
 * \brief QCloudMessaging::~QCloudMessaging
 */
QCloudMessaging::~QCloudMessaging()
{
}

/*!
 * \brief registerProvider
 * Registers the service provider that handles service clients and can be used
 * for server side development.
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API.
 *
 * \param provider
 * Use case specific provider object that can handle the communication as a
 * server and can have multiple internal and external clients.
 *
 * \param parameters
 * Provider specific parameters in a variant map.
 *
 * \return
 * true if register succeeds, false if fails.
 */
bool QCloudMessaging::registerProvider(const QString &providerId,
                                       QCloudMessagingProvider *provider,
                                       const QVariantMap &parameters)
{
    bool return_value = false;
    // If this is duplicate service name
    if (!d->m_cloudProviders.contains(providerId)) {
        d->m_cloudProviders.insert(providerId, provider);

        connect(provider, &QCloudMessagingProvider::messageReceived,
                this, &QCloudMessaging::messageReceived);

        connect(provider, &QCloudMessagingProvider::serviceStateUpdated,
                this, &QCloudMessaging::serviceStateUpdated);

        connect(provider, &QCloudMessagingProvider::remoteClientsReceived,
                this, &QCloudMessaging::remoteClientsReceived);

        connect(provider, &QCloudMessagingProvider::clientTokenReceived,
                this, &QCloudMessaging::clientTokenReceived);

        return_value = d->m_cloudProviders[providerId]->
                registerProvider(providerId,parameters);
    } else {
        return_value = d->m_cloudProviders[providerId]->getServiceState();
    }

    return return_value;
}

/*!
 * \brief connectClient
 * Attaches the client into the provider
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for the
 * provider
 *
 * \param parameters
 * Client specific parameters in a variant map.
 *
 * \return
 * return given ClientId when succeeds, empty string if not.
 *
 */
QString QCloudMessaging::connectClient(const QString &providerId,
                                       const QString &clientId,
                                       const QVariantMap &parameters)
{
    if (d->m_cloudProviders.contains(providerId))
        return d->m_cloudProviders[providerId]->connectClient(clientId,
                                                              parameters);

    return QString();
}

/*!
 * \brief sendMessage
 * Sends a message to one single client or or to a subscribed channel
 *
 * \param msg
 * Service specific message. Usually JSON string.
 *
 * \param providerId
 * Provider identification string that is defined by the user when using
 * the API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for
 * the provider
 *
 * \param clientToken
 * By providing client token, message is targeted straight to client
 *
 * \param channel
 * Channel name if broadcasting the message to channel
 *
 * \return
 * return true when succeeds, false otherwise.
 */
bool QCloudMessaging::sendMessage(const QByteArray &msg,
                                  const QString &providerId,
                                  const QString &clientId,
                                  const QString &clientToken,
                                  const QString &channel)
{

    if (d->m_cloudProviders.contains(providerId))
        return d->m_cloudProviders[providerId]->sendMessage(msg,
                                                            clientId,
                                                            clientToken,
                                                            channel);

    return false;
}


/*!
 * \brief disconnectClient
 * Disconnects the client from the provider
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for the
 * provider
 *
 * \param parameters
 * Client specific parameters in a variant map.
 */
void QCloudMessaging::disconnectClient(const QString &providerId,
                                       const QString &clientId,
                                       const QVariantMap &parameters)
{
    if (d->m_cloudProviders.contains(providerId))
        d->m_cloudProviders[providerId]->disconnectClient(clientId,
                                                          parameters);
}

/*!
 * \brief removeClient
 * Removes client from the provider
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for the
 * provider
 */
void QCloudMessaging::removeClient(const QString &providerId,
                                   const QString &clientId)
{
    if (d->m_cloudProviders.contains(providerId))
        d->m_cloudProviders[providerId]->removeClient(clientId);

}

/*!
 * \brief deRegisterProvider
 * Closes down the provider and disconnects clients.
 *
 * \param providerId
 * Povider identification string that is defined by the user when using the
 * API
 */
void QCloudMessaging::deregisterProvider(const QString &providerId)
{
    if (d->m_cloudProviders.contains(providerId)) {
        disconnect(d->m_cloudProviders[providerId]);

        d->m_cloudProviders[providerId]->deregisterProvider();
        d->m_cloudProviders.remove(providerId);

    }
}

/*!
 * \brief localClients
 * If system has multiple clients connected at the same app process, one can
 * request the
 * list of available clientIds from the provider class.
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \return
 * List of ClientIds as QStringList.
 */
const QStringList QCloudMessaging::localClients(const QString &providerId)
{
    if (d->m_cloudProviders.contains(providerId))
        return d->m_cloudProviders[providerId]->clients()->keys();

    return QStringList();
}

/*!
 *  \brief requestRemoteClients
 * Uses provider rest api interface to request all the remote clients
 * connected to provider service.
 * This can be used e.g. in server implementation or if creating
 * client dashboard etc.
 *
 *  \param providerId
 * Provider identification string that is defined by the user when
 * using the API
 *
 *  \return
 * true if sending request via rest api succeeds, fail if not.
 */
bool QCloudMessaging::requestRemoteClients(const QString &providerId)
{
    if (d->m_cloudProviders.contains(providerId)) {
        return d->m_cloudProviders[providerId]->remoteClients();
    }

    return false;
}

/*!
 * \brief clientToken
 * Gets client token (uuid / rid received from the provider services)
 *
 * \param providerI
 * Provider identification string that is defined by the user when using
 * the API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for
 * the provider
 *
 * \return
 * If found returns client token as QString. Returns empty QString otherwise.
 */
QString QCloudMessaging::clientToken(const QString &providerId,
                                              const QString &clientId)
{
    if (d->m_cloudProviders.contains(providerId))
        return d->m_cloudProviders[providerId]->clientToken(clientId);

    return QString();
}

/*!
 * \brief setClientToken
 * Sets the client token for the client.
 * This can be used in case of client
 * token is received otherwise or defined by
 * API user separately.
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for the
 * provider
 *
 * \param token
 * Token value as string
 */
void QCloudMessaging::setClientToken(const QString &providerId,
                                     const QString &clientId,
                                     const QString &token)
{
    if (d->m_cloudProviders.contains(providerId))
        return d->m_cloudProviders[providerId]->
                client(clientId)->setClientToken(token);
}

/*!
 * \brief QCloudMessaging::subscribeToChannel
 *  Subscribing the client to the channel
 *
 * \param channel
 *  Channel name as string, cannot be empty
 *
 * \param providerId
 *  Provider identification string that is defined by the user when using the API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for
 * the provider
 *
 * \return
 * true if succeeds, false if not.
 */
bool QCloudMessaging::subscribeToChannel(const QString &channel,
                                         const QString &providerId,
                                         const QString &clientId)
{
    if (!d->m_cloudProviders.contains(providerId))
        return false;

    if (!clientId.isEmpty())
    {
        return d->m_cloudProviders[providerId]->client(clientId)->
                                                subscribeToChannel(channel);
    } else
    {
        return d->m_cloudProviders[providerId]->subscribeToChannel(channel,
                                                                  clientId);
    }
}

/*!
 * \brief unsubscribeFromChannel
 * Unsubscribing the client from the channel
 *
 * \param channel
 * Channel name as string, cannot be empty
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 *  API
 *
 * \param clientId
 * Mobile or IoT client identification string (defined by user) added for the
 *  provider
 *
 * \return
 * true if succeeds, false if not.
 */
bool QCloudMessaging::unsubscribeFromChannel(const QString &channel,
                                             const QString &providerId,
                                             const QString &clientId)
{
    if (!d->m_cloudProviders.contains(providerId))
        return false;

    if (!clientId.isEmpty())
    {
        return d->m_cloudProviders[providerId]->client(clientId)->
                                                unsubscribeFromChannel(channel);
    } else
    {
        return d->m_cloudProviders[providerId]->unsubscribeFromChannel(channel,
                                                                      clientId);
    }
}

/*!
 * \brief flushMessageQueue
 * When receiving push messages they can be stored by clients internally.
 * This function gives developers possibility to do flush commnand for them .
 *
 * \param providerId
 * Provider identification string that is defined by the user when using the
 * API
 *
 * \return
 * true if succeeds, false if not
 */
void QCloudMessaging::flushMessageQueue(const QString &providerId)
{
    if (d->m_cloudProviders.contains(providerId))
        d->m_cloudProviders[providerId]->flushMessageQueue();
}

// Signals documentation
/*!
    \fn QCloudMessaging::clientTokenReceived(const QString &token)
    This signal is triggered when connected gets the client
    token from the service provider.

    \param token
    Received token as a QString.
    Token is unique identification value used for straight communication
    and identification with the client.
*/

/*!
    \fn QCloudMessaging::messageReceived(const QString &providerId,
                        const QString &clientId,
                        const QByteArray &message)
    This signal is triggered when a message is received from the network to client.

    \param providerId
    Receiving Provider identification string

    \param clientId
    Receiving clientId string

    \param message
    Received message as QByteArray. Message is service specific.
*/

/*!
    \fn QCloudMessaging::remoteClientsReceived(const QString &clients)
    This signal is triggered when the return value for requestRemoteClients
    function is is received.
    \param response
    Response data is based on the service and can be e.g. a list
    of client tokens in QString format.
*/

/*!
    \fn QCloudMessaging::serviceStateUpdated(int state)
    This signal is triggered when the service provider registered
    state has changed.

    \param state
    State can be one of the enums from the QCloudMessagingProvider

*/

QT_END_NAMESPACE