2017-07-29 09:54:03 +00:00
|
|
|
import logging
|
2017-07-30 08:14:26 +00:00
|
|
|
import struct
|
|
|
|
import time
|
2017-07-29 09:54:03 +00:00
|
|
|
from asyncio import get_event_loop, gather, ensure_future
|
2017-05-25 10:47:01 +00:00
|
|
|
|
2017-07-29 09:54:03 +00:00
|
|
|
from colorlog import ColoredFormatter
|
2017-06-04 22:27:44 +00:00
|
|
|
|
2018-02-04 21:18:36 +00:00
|
|
|
from secret_handshake.network import SHSClient
|
2017-07-30 12:08:18 +00:00
|
|
|
from ssb.muxrpc import MuxRPCAPI, MuxRPCAPIException
|
2018-02-04 21:18:36 +00:00
|
|
|
from ssb.packet_stream import PacketStream, PSMessageType
|
2017-08-05 10:24:46 +00:00
|
|
|
from ssb.util import load_ssb_secret
|
2017-05-25 10:47:01 +00:00
|
|
|
|
2018-05-09 19:18:44 +00:00
|
|
|
import hashlib
|
|
|
|
import base64
|
|
|
|
|
2017-06-04 22:27:44 +00:00
|
|
|
|
2017-07-29 09:54:03 +00:00
|
|
|
api = MuxRPCAPI()
|
2017-05-25 10:47:01 +00:00
|
|
|
|
|
|
|
|
2017-07-29 09:54:03 +00:00
|
|
|
@api.define('createHistoryStream')
|
|
|
|
def create_history_stream(connection, msg):
|
|
|
|
print('create_history_stream', msg)
|
|
|
|
# msg = PSMessage(PSMessageType.JSON, True, stream=True, end_err=True, req=-req)
|
|
|
|
# connection.write(msg)
|
2017-05-25 10:47:01 +00:00
|
|
|
|
2017-06-04 22:27:44 +00:00
|
|
|
|
2017-07-29 09:54:03 +00:00
|
|
|
@api.define('blobs.createWants')
|
|
|
|
def create_wants(connection, msg):
|
|
|
|
print('create_wants', msg)
|
|
|
|
|
|
|
|
|
2017-08-01 17:38:04 +00:00
|
|
|
async def test_client():
|
2017-07-30 08:14:26 +00:00
|
|
|
async for msg in api.call('createHistoryStream', [{
|
|
|
|
'id': "@1+Iwm79DKvVBqYKFkhT6fWRbAVvNNVH4F2BSxwhYmx8=.ed25519",
|
|
|
|
'seq': 1,
|
|
|
|
'live': False,
|
|
|
|
'keys': False
|
|
|
|
}], 'source'):
|
|
|
|
print('> RESPONSE:', msg)
|
|
|
|
|
2017-07-30 12:08:18 +00:00
|
|
|
try:
|
|
|
|
print('> RESPONSE:', await api.call('whoami', [], 'sync'))
|
|
|
|
except MuxRPCAPIException as e:
|
|
|
|
print(e)
|
2017-07-30 08:14:26 +00:00
|
|
|
|
|
|
|
handler = api.call('gossip.ping', [], 'duplex')
|
|
|
|
handler.send(struct.pack('l', int(time.time() * 1000)), msg_type=PSMessageType.BUFFER)
|
2017-07-29 09:54:03 +00:00
|
|
|
async for msg in handler:
|
|
|
|
print('> RESPONSE:', msg)
|
2017-07-30 08:52:04 +00:00
|
|
|
handler.send(True, end=True)
|
|
|
|
break
|
2017-07-29 09:54:03 +00:00
|
|
|
|
2018-05-06 12:55:00 +00:00
|
|
|
img_data = b''
|
2019-06-14 20:02:45 +00:00
|
|
|
async for msg in api.call('blobs.get', ['&kqZ52sDcJSHOx7m4Ww80kK1KIZ65gpGnqwZlfaIVWWM=.sha256'], 'source'):
|
2018-05-06 12:55:00 +00:00
|
|
|
if msg.type.name == 'BUFFER':
|
|
|
|
img_data += msg.data
|
|
|
|
if msg.type.name == 'JSON' and msg.data == b'true':
|
2019-06-14 20:02:45 +00:00
|
|
|
assert (base64.b64encode(hashlib.sha256(img_data).digest()) ==
|
|
|
|
b'kqZ52sDcJSHOx7m4Ww80kK1KIZ65gpGnqwZlfaIVWWM=')
|
|
|
|
with open('./ub1k.jpg', 'wb') as f:
|
2018-05-06 12:55:00 +00:00
|
|
|
f.write(img_data)
|
2017-07-29 09:54:03 +00:00
|
|
|
|
|
|
|
|
2018-02-04 21:18:36 +00:00
|
|
|
async def main():
|
|
|
|
client = SHSClient('127.0.0.1', 8008, keypair, bytes(keypair.verify_key))
|
|
|
|
packet_stream = PacketStream(client)
|
|
|
|
await client.open()
|
2017-08-01 17:38:04 +00:00
|
|
|
api.add_connection(packet_stream)
|
|
|
|
await gather(ensure_future(api), test_client())
|
|
|
|
|
|
|
|
|
2018-02-04 21:18:36 +00:00
|
|
|
if __name__ == '__main__':
|
2017-08-01 17:38:04 +00:00
|
|
|
# create console handler and set level to debug
|
|
|
|
ch = logging.StreamHandler()
|
|
|
|
ch.setLevel(logging.INFO)
|
|
|
|
|
|
|
|
# create formatter
|
|
|
|
formatter = ColoredFormatter('%(log_color)s%(levelname)s%(reset)s:%(bold_white)s%(name)s%(reset)s - '
|
|
|
|
'%(cyan)s%(message)s%(reset)s')
|
|
|
|
|
|
|
|
# add formatter to ch
|
|
|
|
ch.setFormatter(formatter)
|
|
|
|
|
|
|
|
# add ch to logger
|
|
|
|
logger = logging.getLogger('packet_stream')
|
|
|
|
logger.setLevel(logging.INFO)
|
|
|
|
logger.addHandler(ch)
|
2017-07-29 09:54:03 +00:00
|
|
|
|
2017-08-05 10:24:46 +00:00
|
|
|
keypair = load_ssb_secret()['keypair']
|
2017-07-29 09:54:03 +00:00
|
|
|
|
2017-08-01 17:38:04 +00:00
|
|
|
loop = get_event_loop()
|
2018-02-04 21:18:36 +00:00
|
|
|
loop.run_until_complete(main())
|
2017-08-01 17:38:04 +00:00
|
|
|
loop.close()
|