2019-02-02 03:49:11 +00:00
|
|
|
'''
|
2019-06-12 00:05:15 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-02-02 03:49:11 +00:00
|
|
|
|
|
|
|
This module serializes various data pieces for use in other modules, in particular the web api
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
|
|
|
|
2019-06-11 06:08:44 +00:00
|
|
|
import core, json
|
2019-02-02 03:49:11 +00:00
|
|
|
|
|
|
|
class SerializedData:
|
|
|
|
def __init__(self, coreInst):
|
|
|
|
'''
|
|
|
|
Serialized data is in JSON format:
|
|
|
|
{
|
|
|
|
'success': bool,
|
|
|
|
'foo': 'bar',
|
|
|
|
etc
|
|
|
|
}
|
|
|
|
'''
|
|
|
|
assert isinstance(coreInst, core.Core)
|
|
|
|
self._core = coreInst
|
|
|
|
|
|
|
|
def getStats(self):
|
|
|
|
'''Return statistics about our node'''
|
|
|
|
stats = {}
|
|
|
|
stats['uptime'] = self._core.onionrInst.communicatorInst.getUptime()
|
|
|
|
stats['connectedNodes'] = '\n'.join(self._core.onionrInst.communicatorInst.onlinePeers)
|
|
|
|
stats['blockCount'] = len(self._core.getBlockList())
|
|
|
|
stats['blockQueueCount'] = len(self._core.onionrInst.communicatorInst.blockQueue)
|
|
|
|
return json.dumps(stats)
|