2017-04-11 09:48:16 -04:00
|
|
|
/*
|
|
|
|
* RetroShare Android QML App
|
2018-02-01 08:22:33 -05:00
|
|
|
* Copyright (C) 2017-2018 Gioacchino Mazzurco <gio@eigenlab.org>
|
2017-04-11 09:48:16 -04:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQml 2.2
|
|
|
|
import org.retroshare.qml_components.LibresapiLocalClient 1.0
|
|
|
|
|
|
|
|
QtObject
|
|
|
|
{
|
|
|
|
id: tokensManager
|
|
|
|
|
|
|
|
property var tokens: ({})
|
|
|
|
function registerToken(token, callback)
|
|
|
|
{
|
2017-10-21 07:00:36 -04:00
|
|
|
if(!maybeToken(token))
|
|
|
|
{
|
2018-02-01 08:22:33 -05:00
|
|
|
console.error("TokensManager attempt to register a non int token: ", token)
|
2017-10-21 07:00:36 -04:00
|
|
|
console.trace()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-01 08:59:08 -05:00
|
|
|
if (Array.isArray(tokens[token])) tokens[token].push(callback)
|
2017-04-11 09:48:16 -04:00
|
|
|
else tokens[token] = [callback]
|
|
|
|
}
|
2018-02-01 08:22:33 -05:00
|
|
|
function unRegisterToken(token, callback)
|
|
|
|
{
|
|
|
|
if(!maybeToken(token))
|
|
|
|
{
|
|
|
|
console.error("TokensManager attempt to unregister a non int token: ", token)
|
|
|
|
console.trace()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var remCount = 0;
|
|
|
|
var arrLen = tokens[token].length
|
|
|
|
for(var i=0; i<arrLen; ++i)
|
|
|
|
{
|
|
|
|
if(callback === tokens[token][i])
|
|
|
|
{
|
|
|
|
tokens[token].splice(i,1)
|
|
|
|
++remCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(remCount === 0)
|
|
|
|
{
|
|
|
|
console.warn("TokensManager attempt to unregister unregistered callback", token, callback.name)
|
|
|
|
console.trace()
|
|
|
|
}
|
|
|
|
}
|
2017-04-11 09:48:16 -04:00
|
|
|
function tokenExpire(token)
|
|
|
|
{
|
2018-02-01 08:22:33 -05:00
|
|
|
if(!maybeToken(token))
|
|
|
|
{
|
|
|
|
console.error("TokensManager attempt to expire a non int token: ", token)
|
|
|
|
console.trace()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:48:16 -04:00
|
|
|
if(Array.isArray(tokens[token]))
|
|
|
|
{
|
|
|
|
var arrLen = tokens[token].length
|
|
|
|
for(var i=0; i<arrLen; ++i)
|
|
|
|
{
|
|
|
|
var tokCallback = tokens[token][i]
|
|
|
|
if (typeof tokCallback == 'function')
|
|
|
|
{
|
2017-05-17 09:34:29 -04:00
|
|
|
console.log("event token", token, tokCallback.name)
|
2017-04-11 09:48:16 -04:00
|
|
|
tokCallback()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete tokens[token]
|
|
|
|
}
|
|
|
|
function isTokenValid(token) { return Array.isArray(tokens[token]) }
|
2017-10-21 07:00:36 -04:00
|
|
|
function maybeToken(value) { return Number(value) === parseInt(value) }
|
2017-04-11 09:48:16 -04:00
|
|
|
|
|
|
|
property alias refreshInterval: refreshTokensTimer.interval
|
|
|
|
|
|
|
|
property LibresapiLocalClient refreshTokensApi: LibresapiLocalClient
|
|
|
|
{
|
|
|
|
id: refreshTokensApi
|
|
|
|
|
|
|
|
onResponseReceived:
|
|
|
|
{
|
2017-10-21 07:00:36 -04:00
|
|
|
/* TODO: This is vital enough and if some fails appens can create
|
|
|
|
* difficult to debug unexpected behaviours in any place of the app.
|
|
|
|
* We should do some more checking on the data received here
|
|
|
|
*/
|
2017-04-11 09:48:16 -04:00
|
|
|
var jsonData = JSON.parse(msg).data
|
2017-10-21 07:00:36 -04:00
|
|
|
// console.log("refreshTokensApi got expired tokens:", msg)
|
2017-04-11 09:48:16 -04:00
|
|
|
var arrayLength = jsonData.length
|
2017-10-21 07:00:36 -04:00
|
|
|
for (var i = 0; i < arrayLength; ++i)
|
2017-04-11 09:48:16 -04:00
|
|
|
tokensManager.tokenExpire(jsonData[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted:
|
|
|
|
{
|
2017-10-21 07:00:36 -04:00
|
|
|
/* Disable debugging only for this instance of LibresapiLocalClient
|
|
|
|
* as it is particularly noisy and repetitive, and not useful in
|
|
|
|
* most of the cases */
|
2017-04-11 09:48:16 -04:00
|
|
|
if(QT_DEBUG) debug = false
|
|
|
|
|
|
|
|
openConnection(apiSocketPath)
|
|
|
|
refreshTokensTimer.start()
|
|
|
|
}
|
|
|
|
|
|
|
|
function refreshTokens()
|
|
|
|
{
|
2017-10-21 07:00:36 -04:00
|
|
|
var tokensArr = Object.keys(tokensManager.tokens)
|
|
|
|
|
|
|
|
// Filter to avoid "undefined" being sent toghether with tokens
|
|
|
|
var tokensStr = '['+ tokensArr.filter(maybeToken) +']'
|
|
|
|
|
|
|
|
// console.log("refreshTokensApi checking tokens:", tokensStr)
|
|
|
|
request("/statetokenservice/*", tokensStr)
|
2017-04-11 09:48:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property Timer refreshTokensTimer: Timer
|
|
|
|
{
|
|
|
|
id: refreshTokensTimer
|
|
|
|
interval: 1500
|
|
|
|
repeat: true
|
|
|
|
triggeredOnStart: true
|
|
|
|
onTriggered: refreshTokensApi.refreshTokens()
|
|
|
|
}
|
|
|
|
}
|