2020-09-08 11:23:41 +00:00
import os , sys ; sys . path . append ( os . path . abspath ( os . path . join ( os . path . abspath ( os . path . join ( os . path . dirname ( __file__ ) , ' .. ' ) ) , ' .. ' ) ) )
from komrade import *
from komrade . backend import *
2020-09-11 14:35:47 +00:00
from komrade . backend . keymaker import *
2020-09-17 04:16:48 +00:00
from komrade . backend . messages import Message
2020-09-08 11:23:41 +00:00
2020-09-14 06:02:17 +00:00
class KomradeX ( Caller ) :
2020-09-08 11:23:41 +00:00
2020-09-14 08:25:55 +00:00
def __init__ ( self , name = None , pubkey = None ) :
super ( ) . __init__ ( name = name )
2020-09-14 06:02:17 +00:00
# self.log(f'booted komrade with {name} and {passphrase} and\n\n{dict_format(self.keychain())}')
2020-09-13 19:03:29 +00:00
# if SHOW_STATUS:
# from komrade.cli import CLI
# self.cli = CLI(name=name, komrade=self)
2020-09-13 19:26:55 +00:00
self . boot ( create = False )
2020-09-13 19:04:43 +00:00
# self.name=name
# pass
2020-09-08 12:11:13 +00:00
2020-09-13 18:55:14 +00:00
def boot ( self , create = False , ping = False ) :
2020-09-13 18:47:25 +00:00
# Do I already have my keys?
# yes? -- login
2020-09-08 12:11:13 +00:00
2020-09-13 18:47:25 +00:00
keys = self . keychain ( )
2020-09-14 09:28:56 +00:00
# self.log(f'booting {self}!',dict_format(keys))
2020-09-14 07:58:26 +00:00
2020-09-13 18:47:25 +00:00
if keys . get ( ' pubkey ' ) and keys . get ( ' privkey ' ) :
2020-09-14 06:20:02 +00:00
# self.log('already booted! @'+self.name)
2020-09-13 18:47:25 +00:00
return True
2020-09-09 14:38:37 +00:00
2020-09-13 18:55:14 +00:00
if self . exists_locally_as_account ( ) :
self . log ( f ' this account (@ { self . name } ) can be logged into ' )
return self . login ( )
elif self . exists_locally_as_contact ( ) :
self . log ( f ' this account (@ { self . name } ) is a contact ' )
return #pass #???
elif ping and self . exists_on_server ( ) :
self . log ( f ' this account exists on server. introduce? ' )
return
elif create :
self . log ( ' account is free: register? ' )
return self . register ( )
2020-09-09 14:38:37 +00:00
2020-09-14 04:43:59 +00:00
def exists_locally ( self ) :
return bool ( self . pubkey )
2020-09-09 17:34:19 +00:00
def exists_locally_as_contact ( self ) :
2020-09-14 04:43:59 +00:00
return bool ( self . pubkey ) and not bool ( self . privkey )
2020-09-09 17:34:19 +00:00
2020-09-13 18:55:14 +00:00
def exists_locally_as_account ( self ) :
2020-09-14 04:43:59 +00:00
return bool ( self . pubkey ) and bool ( self . privkey_encr )
2020-09-09 17:34:19 +00:00
def exists_on_server ( self ) :
2020-09-10 21:32:59 +00:00
answer = self . phone . ring_ring ( {
2020-09-09 18:31:36 +00:00
' _route ' : ' does_username_exist ' ,
' name ' : self . name
} )
2020-09-09 22:38:57 +00:00
self . log ( ' answer?? ' , answer )
2020-09-10 08:08:50 +00:00
return answer
2020-09-08 11:23:41 +00:00
2020-09-17 10:37:58 +00:00
## Talking with Operator
def ring_ring ( self , msg , route = None , * * y ) :
if type ( msg ) == dict and not ROUTE_KEYNAME in msg :
msg [ ROUTE_KEYNAME ] = route
return super ( ) . ring_ring ( msg , caller = self , * * y )
####################################
## (1) Logging in and registering ##
####################################
2020-09-16 14:47:51 +00:00
def register ( self , name = None , passphrase = None , is_group = None , show_intro = 0 , show_body = True , logfunc = None ) :
2020-09-14 06:02:17 +00:00
# global PHONEBOOK
2020-09-13 14:15:06 +00:00
# print('got name:',name)
2020-09-12 13:11:39 +00:00
## Defaults
2020-09-10 17:52:07 +00:00
if name and not self . name : self . name = name
if not name and self . name : name = self . name
2020-09-13 13:57:06 +00:00
# if not name and not self.name: name=''
2020-09-13 14:15:06 +00:00
# print('got name',name)
2020-09-16 14:47:51 +00:00
if not logfunc : logfunc = self . log
2020-09-14 04:43:59 +00:00
# already have it?
if self . exists_locally_as_account ( ) :
2020-09-14 06:20:02 +00:00
return { ' success ' : False , ' status ' : ' You have already created this account. ' }
2020-09-14 04:43:59 +00:00
if self . exists_locally_as_contact ( ) :
2020-09-14 06:20:02 +00:00
return { ' success ' : False , ' status ' : ' This is already a contact of yours ' }
2020-09-14 04:43:59 +00:00
2020-09-12 13:11:39 +00:00
## 1) Have name?
2020-09-16 15:10:19 +00:00
clear_screen ( )
2020-09-13 13:57:06 +00:00
tolog = ' '
2020-09-11 14:35:47 +00:00
if SHOW_STATUS and show_intro :
2020-09-13 13:57:06 +00:00
self . name = name = self . cli . status_keymaker_part1 ( name )
2020-09-12 13:17:54 +00:00
elif not name :
2020-09-13 13:57:06 +00:00
self . name = name = input ( ' \n Hello, this is Komrade @ ' )
2020-09-16 15:08:57 +00:00
logfunc ( ' I would like to sign up for the socialist network revolution. ' , flush = True , komrade_name = name , pause = True )
2020-09-16 12:44:18 +00:00
# do_pause()
2020-09-13 13:57:06 +00:00
else :
2020-09-16 15:19:38 +00:00
logfunc ( f ' Hello, this is Komrade @ { name } . \n \n I would like to sign up for the socialist network revolution. ' , pause = True , komrade_name = name )
2020-09-16 12:44:18 +00:00
# do_pause()
2020-09-13 13:57:06 +00:00
2020-09-16 12:44:18 +00:00
# clear_screen()
2020-09-16 15:19:38 +00:00
logfunc ( f ' Excellent. But to communicate with komrades securely, you must first cut your public & private encryption keys. ' , pause = True , clear = True )
2020-09-13 13:57:06 +00:00
# do_pause()
2020-09-12 13:11:39 +00:00
## 2) Make pub public/private keys
2020-09-11 14:35:47 +00:00
keypair = KomradeAsymmetricKey ( )
pubkey , privkey = keypair . pubkey_obj , keypair . privkey_obj
2020-09-16 15:56:47 +00:00
logfunc ( f ' I have cut for you a private and public asymmetric key pair, using the iron-clad Elliptic curve algorithm: \n \n (1) { pubkey } \n \n (2) { privkey } { ART_KEY_PAIR } ' , clear = True , pause = True )
2020-09-16 16:15:45 +00:00
self . _keychain [ ' pubkey ' ] = pubkey
self . _keychain [ ' privkey ' ] = privkey
self . log ( ' My keychain now looks like: ' , dict_format ( self . keychain ( ) ) )
2020-09-11 14:35:47 +00:00
2020-09-16 15:54:45 +00:00
### PUBLIC KEY
qr_str = self . qr_str ( pubkey . data_b64 )
2020-09-16 16:01:04 +00:00
logfunc ( f ' (1) You may store your public key both on your device hardware, as well as share it with anyone you wish: \n \n { pubkey . data_b64_s } \n \n It will also be stored as a QR code on your device: \n { qr_str } ' , pause = True , clear = True )
2020-09-16 16:15:45 +00:00
logfunc ( ' You must also register your username and public key with Komrade @Operator on the remote server. \n \n Shall Komrade @Telephone send them over? ' , pause = False , clear = False ) #),dict_format(data,tab=2),pause=True)
2020-09-16 16:51:31 +00:00
ok_to_send = input ( f ' \n @ { name } : [Y/n] ' )
2020-09-16 15:54:45 +00:00
if ok_to_send . strip ( ) . lower ( ) == ' n ' :
logfunc ( ' Cancelling registration. ' )
return
2020-09-16 16:51:31 +00:00
else :
print ( )
logfunc ( ' Connecting you to the @Operator... ' , komrade_name = ' Telephone ' )
2020-09-16 17:31:09 +00:00
# print()
2020-09-17 15:13:12 +00:00
# time.sleep(1)
2020-09-16 15:54:45 +00:00
## CALL OP WITH PUBKEY
resp_msg_d = self . ring_ring (
{
' name ' : name ,
' pubkey ' : pubkey . data ,
} ,
route = ' register_new_user '
)
2020-09-16 17:31:09 +00:00
# print()
clear_screen ( )
logfunc ( resp_msg_d . get ( ' status ' ) + ART_OLDPHONE4 , komrade_name = ' Operator ' , pause = True )
2020-09-16 16:15:45 +00:00
print ( )
2020-09-16 15:54:45 +00:00
if not resp_msg_d . get ( ' success ' ) :
2020-09-16 17:31:09 +00:00
logfunc ( ''' That ' s too bad. Cancelling registration for now. ''' , pause = True , clear = True )
2020-09-16 15:54:45 +00:00
return
2020-09-16 16:26:43 +00:00
# clear_screen()
2020-09-16 17:31:09 +00:00
logfunc ( ' Great. Komrade @Operator now has your name and public key on file (and nothing else!). ' , pause = True , clear = True )
2020-09-16 15:54:45 +00:00
2020-09-16 16:51:31 +00:00
logfunc ( f " (2) Your PRIVATE key, on the other hand, must be stored only on your device hardware. " , pause = True )
logfunc ( ''' Your private key is so sensitive we ' ll even encrypt it before storing it. ''' , pause = True , use_prefix = False )
2020-09-16 15:54:45 +00:00
2020-09-16 16:26:43 +00:00
2020-09-16 15:54:45 +00:00
2020-09-12 13:11:39 +00:00
## 3) Have passphrase?
2020-09-11 17:17:21 +00:00
if SHOW_STATUS and not passphrase :
2020-09-12 14:32:03 +00:00
passphrase = self . cli . status_keymaker_part2 ( name , passphrase , pubkey , privkey , hasher , self )
2020-09-11 14:35:47 +00:00
else :
2020-09-13 05:33:37 +00:00
if not passphrase : passphrase = DEBUG_DEFAULT_PASSPHRASE
2020-09-13 05:39:38 +00:00
while not passphrase :
2020-09-16 16:26:43 +00:00
# logfunc('Please type a password:',use_prefix=False)
logfunc ( ''' Please enter a memorable password to generate a (symmetric AES) encryption key with: ''' , use_prefix = True )
2020-09-16 16:51:31 +00:00
passphrase = getpass ( f ' \n @ { self . name } : ' )
# clear_screen()
2020-09-12 13:11:39 +00:00
## 4) Get hashed password
2020-09-16 15:54:45 +00:00
2020-09-12 14:32:03 +00:00
passhash = hasher ( passphrase )
2020-09-16 15:54:45 +00:00
privkey_decr = KomradeSymmetricKeyWithPassphrase ( passhash = passhash )
2020-09-16 16:51:31 +00:00
print ( )
2020-09-16 17:31:09 +00:00
logfunc ( f ''' Let ' s immediately run whatever you typed through a 1-way hashing algorithm (SHA-256), inflating it to (redacted): \n \n { make_key_discreet_str ( passhash ) } ''' , pause = True , clear = False )
2020-09-16 15:54:45 +00:00
2020-09-11 17:17:21 +00:00
privkey_encr = privkey_decr . encrypt ( privkey . data )
2020-09-12 07:55:23 +00:00
privkey_encr_obj = KomradeEncryptedAsymmetricPrivateKey ( privkey_encr )
2020-09-16 16:15:45 +00:00
self . _keychain [ ' privkey_encr ' ] = privkey_encr_obj
self . log ( ' My keychain now looks like v2: ' , dict_format ( self . keychain ( ) ) )
2020-09-16 16:51:31 +00:00
logfunc ( ' With this inflated password we can encrypt your super-sensitive private key. ' , pause = True , clear = True )
2020-09-16 17:31:09 +00:00
logfunc ( f " Your original private key looks like this (redacted): \n \n { privkey } " , pause = True , clear = False )
2020-09-12 13:17:54 +00:00
2020-09-16 17:31:09 +00:00
logfunc ( f " After we encrypt it with your passworded key, it looks like this (redacted): \n \n { privkey_encr_obj } " , pause = True , clear = False )
2020-09-16 15:54:45 +00:00
logfunc ( ' Only this encrypted version is stored. ' , pause = True , clear = True )
2020-09-16 16:15:45 +00:00
2020-09-12 13:17:54 +00:00
2020-09-14 04:43:59 +00:00
# More narration?
if SHOW_STATUS : self . cli . status_keymaker_part3 ( privkey , privkey_decr , privkey_encr , passphrase )
2020-09-10 21:32:59 +00:00
2020-09-13 10:57:06 +00:00
2020-09-13 09:42:22 +00:00
self . name = resp_msg_d . get ( ' name ' )
2020-09-13 13:04:44 +00:00
pubkey_b = resp_msg_d . get ( ' pubkey ' )
2020-09-14 04:43:59 +00:00
assert pubkey_b == pubkey . data
2020-09-14 06:35:40 +00:00
uri_id = pubkey . data_b64
2020-09-13 13:04:44 +00:00
sec_login = resp_msg_d . get ( ' secret_login ' )
2020-09-16 17:31:09 +00:00
# stop
2020-09-13 09:42:22 +00:00
2020-09-16 17:31:09 +00:00
logfunc ( f ''' Saving keys to device: ''' , pause = True )
logfunc ( f ''' (1) { pubkey } ''' , pause = True , use_prefix = False )
logfunc ( f ''' (2) { privkey_encr_obj } ''' , pause = True , use_prefix = False )
logfunc ( f ''' (3) [Shared Login Secret with @Operator] \n ( { make_key_discreet ( sec_login ) } ) ''' , pause = True , use_prefix = False )
# print()
2020-09-14 06:35:40 +00:00
self . crypt_keys . set ( name , pubkey_b , prefix = ' /pubkey/ ' )
self . crypt_keys . set ( uri_id , name , prefix = ' /name/ ' )
2020-09-14 04:43:59 +00:00
self . crypt_keys . set ( uri_id , sec_login , prefix = ' /secret_login/ ' )
2020-09-10 09:34:34 +00:00
2020-09-14 08:25:55 +00:00
# store privkey pieces
self . crypt_keys . set ( uri_id , privkey_encr_obj . data , prefix = ' /privkey_encr/ ' )
# just to show we used a passphrase -->
self . crypt_keys . set ( uri_id , KomradeSymmetricKeyWithPassphrase . __name__ , prefix = ' /privkey_decr/ ' )
2020-09-13 09:42:22 +00:00
# save qr too:
2020-09-16 17:31:09 +00:00
_fnfn = self . save_uri_as_qrcode ( uri_id )
logfunc ( f ' Also saving public key as QR code to: { _fnfn } . ' , pause = True , clear = False , use_prefix = False )
2020-09-13 09:42:22 +00:00
# done!
2020-09-16 17:31:09 +00:00
print ( )
logfunc ( f ' Congratulations. Welcome, { self } . ' , pause = True , clear = True )
2020-09-16 15:25:11 +00:00
# self.help()
2020-09-08 15:14:48 +00:00
2020-09-16 17:31:09 +00:00
return resp_msg_d
2020-09-13 11:18:04 +00:00
@property
def secret_login ( self ) :
return self . crypt_keys . get (
2020-09-13 12:31:33 +00:00
self . pubkey . data_b64 ,
prefix = ' /secret_login/ '
2020-09-13 11:18:04 +00:00
)
2020-09-13 12:27:45 +00:00
def login ( self , passphrase = None ) :
2020-09-14 07:58:26 +00:00
# what keys do I have?
keys = self . keychain ( )
# check hardware
if not ' pubkey ' in keys :
emsg = ''' Login impossible. I do not have this komrade ' s public key, much less private one. '''
# self.log()
return { ' success ' : False , ' status ' : emsg }
if not ' privkey_encr ' in keys :
emsg = ''' Login impossible. I do not have this komrade ' s private key on this hardware. '''
self . log ( emsg )
return { ' success ' : False , ' status ' : emsg }
2020-09-13 11:18:04 +00:00
2020-09-14 07:58:26 +00:00
if not ' privkey ' in keys :
emsg = ''' Login failed. Private key did not unlock from passphrase. '''
return { ' success ' : False , ' status ' : emsg }
2020-09-13 11:18:04 +00:00
# compose message
msg = {
' name ' : self . name ,
2020-09-14 07:58:26 +00:00
' pubkey ' : keys [ ' pubkey ' ] . data ,
2020-09-13 11:18:04 +00:00
' secret_login ' : self . secret_login
}
# ask operator and get response
2020-09-16 12:41:42 +00:00
resp_msg_d = self . ring_ring (
2020-09-13 11:18:04 +00:00
msg ,
route = ' login '
)
2020-09-16 13:46:54 +00:00
# print('got resp_msg_d:',resp_msg_d)
2020-09-16 10:53:55 +00:00
2020-09-13 11:18:04 +00:00
# get result
2020-09-16 12:41:42 +00:00
self . log ( ' Got resp_msg_d back from operator: ' , resp_msg_d )
2020-09-13 11:18:04 +00:00
2020-09-16 12:41:42 +00:00
# check msgs?
2020-09-17 09:26:47 +00:00
if ' inbox ' in resp_msg_d :
self . do_check_msgs ( resp_msg_d [ ' inbox ' ] )
2020-09-16 12:41:42 +00:00
resp_msg_d [ ' res_refresh ' ] = self . refresh ( check_msgs = False ) # already done in previous line
self . log ( ' --> ' , resp_msg_d )
return resp_msg_d
2020-09-13 11:18:04 +00:00
2020-09-13 18:06:41 +00:00
2020-09-17 10:37:58 +00:00
########################
## (2) MEETING PEOPLE ##
########################
2020-09-14 08:48:23 +00:00
def contacts ( self ) :
# who do I know?
return sorted ( [ fn . split ( ' .png ' ) [ 0 ] for fn in os . listdir ( PATH_QRCODES ) ] )
2020-09-13 18:06:41 +00:00
2020-09-17 10:37:58 +00:00
### MEETING PEOLPE
def meet ( self , name = None , pubkey = None , returning = False ) :
if not name and not pubkey :
return { ' success ' : False , ' status ' : ' Meet whom? ' }
# already met this person?
keystr = self . name + ' -> ' + name
if self . crypt_keys . get (
keystr ,
prefix = ' /met/ '
) :
return {
' success ' : False ,
' status ' : f ' You have already sent an introduction to @ { name } . It would be rude to send another. '
}
2020-09-13 11:18:04 +00:00
2020-09-17 10:37:58 +00:00
# send msg to op
msg_to_op = {
' name ' : self . name ,
' secret_login ' : self . secret_login ,
' pubkey ' : self . uri ,
2020-09-08 15:14:48 +00:00
2020-09-17 10:37:58 +00:00
' meet_name ' : name ,
' meet_pubkey ' : pubkey ,
' returning ' : returning
}
self . log ( ' msg_to_op ' , msg_to_op )
2020-09-17 06:19:41 +00:00
2020-09-17 10:37:58 +00:00
res = self . ring_ring (
msg_to_op ,
2020-09-17 12:23:11 +00:00
route = ' introduce '
2020-09-17 06:19:41 +00:00
)
2020-09-17 10:37:58 +00:00
self . log ( ' res from op <- ' , res )
2020-09-17 06:19:41 +00:00
2020-09-17 10:37:58 +00:00
# record that I've already tried this
self . crypt_keys . set (
keystr ,
b ' y ' ,
prefix = ' /met/ '
2020-09-17 06:19:41 +00:00
)
2020-09-17 10:37:58 +00:00
# return result
return res
2020-09-17 06:41:02 +00:00
2020-09-17 06:19:41 +00:00
2020-09-17 04:42:18 +00:00
2020-09-17 06:19:41 +00:00
2020-09-17 10:37:58 +00:00
###################
## (3) MESSAGING ##
###################
2020-09-17 04:16:48 +00:00
2020-09-13 14:48:26 +00:00
2020-09-14 07:58:26 +00:00
def msg ( self , someone , something ) :
# find or boot
someone = Komrade ( someone )
self . log ( f ' found { someone } ' )
# can we?
if not someone . pubkey :
self . log ( f ''' Don ' t know the public key of { someone } ! ''' )
2020-09-17 12:23:11 +00:00
# write them message
2020-09-13 19:42:04 +00:00
msg_obj = self . compose_msg_to (
2020-09-14 07:58:26 +00:00
something ,
someone
2020-09-13 19:42:04 +00:00
)
self . log ( ' composed msg: ' , msg_obj )
2020-09-14 07:58:26 +00:00
2020-09-17 12:23:11 +00:00
# encrypt it
2020-09-13 19:42:04 +00:00
msg_obj . encrypt ( )
2020-09-14 07:58:26 +00:00
# attaching
direct_msg_data = msg_obj . msg
self . log ( ' going to send only this to op: ' , direct_msg_data )
# enclosing
msg_to_op = {
2020-09-17 08:16:52 +00:00
' deliver_msg ' : {
' from ' : self . pubkey . data_b64 ,
' from_name ' : self . name ,
' to ' : someone . pubkey . data_b64 ,
' to_name ' : someone . name ,
' msg ' : direct_msg_data ,
}
2020-09-14 07:58:26 +00:00
}
self . log ( ' going to send msg to op? ' , msg_to_op )
2020-09-09 15:30:34 +00:00
2020-09-17 12:23:11 +00:00
# dial operator
res = self . ring_ring (
2020-09-14 07:58:26 +00:00
msg_to_op ,
route = ' deliver_msg '
)
2020-09-17 12:23:11 +00:00
self . log ( ' --> ' , res )
return res
2020-09-09 15:30:34 +00:00
2020-09-17 12:23:11 +00:00
def post ( self , something ) :
return self . msg ( WORLD_NAME , something )
2020-09-17 12:57:12 +00:00
@property
def login_details ( self ) :
return {
' name ' : self . name ,
' secret_login ' : self . secret_login ,
' pubkey ' : self . uri
}
def save_posts ( self ,
id2post ,
inbox_prefix = ' /feed/ ' ,
post_prefix = ' /post/ ' ) :
# update inbox
2020-09-17 16:06:12 +00:00
new_inbox = list ( id2post . keys ( ) )
2020-09-17 18:48:00 +00:00
self . log ( ' new_inbox -> ' , new_inbox , inbox_prefix , post_prefix )
2020-09-17 12:57:12 +00:00
inbox = self . get_inbox_crypt (
prefix = inbox_prefix
)
inbox . prepend ( new_inbox )
2020-09-17 18:18:20 +00:00
self . log ( ' new vals = ' , inbox . values )
2020-09-17 12:57:12 +00:00
# update posts
for post_id , post in id2post . items ( ) :
2020-09-17 16:37:59 +00:00
self . log ( f ' saving post! \n { post_id } \n \n { post } ' )
2020-09-17 16:33:31 +00:00
2020-09-17 12:57:12 +00:00
self . crypt_data . set (
post_id ,
post ,
2020-09-17 16:33:31 +00:00
prefix = post_prefix ,
override = True
2020-09-17 12:57:12 +00:00
)
res = {
' success ' : True ,
' status ' : f ' Saved { len ( id2post ) } posts. '
}
self . log ( ' --> ' , res )
return res
2020-09-17 08:16:52 +00:00
2020-09-17 12:57:12 +00:00
def save_msgs ( self , id2msg ) :
return self . save_posts (
id2post = id2msg ,
inbox_prefix = ' /inbox/ ' ,
2020-09-17 16:23:49 +00:00
post_prefix = ' /post/ '
2020-09-17 12:57:12 +00:00
)
2020-09-17 12:23:11 +00:00
## Getting updates
def get_updates ( self ) :
2020-09-17 12:57:12 +00:00
# get any parameters we need
post_ids_read = list ( self . inbox_read_db . values )
# compose msg
msg_to_op = {
2020-09-17 12:59:44 +00:00
* * self . login_details ,
2020-09-17 12:57:12 +00:00
* * { ' post_ids_read ' : post_ids_read }
}
2020-09-17 13:00:14 +00:00
self . log ( ' msg to op -> ' , msg_to_op )
2020-09-17 12:57:12 +00:00
2020-09-15 10:54:15 +00:00
res = self . ring_ring (
2020-09-17 12:57:12 +00:00
msg_to_op ,
2020-09-17 12:23:11 +00:00
route = ' get_updates '
2020-09-17 10:37:58 +00:00
)
2020-09-17 12:23:11 +00:00
self . log ( ' <- Op.get_updates <- ' , res )
2020-09-15 09:12:11 +00:00
2020-09-17 12:23:11 +00:00
# error?
if not res . get ( ' success ' ) : return res
2020-09-15 10:59:19 +00:00
2020-09-17 12:23:11 +00:00
# (2) save msgs
2020-09-17 13:43:25 +00:00
id2msg = res . get ( ' res_msgs ' ) . get ( ' posts ' , { } )
2020-09-17 16:23:49 +00:00
self . log ( f ' downloaded { len ( id2msg ) } messages ' )
2020-09-17 12:57:12 +00:00
self . save_msgs ( id2msg )
2020-09-16 14:34:21 +00:00
2020-09-17 12:23:11 +00:00
# (3) save posts
2020-09-17 13:43:25 +00:00
id2post = res . get ( ' res_posts ' ) . get ( ' posts ' , { } )
2020-09-17 16:23:49 +00:00
self . log ( f ' downloaded { len ( id2post ) } posts ' )
2020-09-17 12:57:12 +00:00
self . save_posts ( id2post )
2020-09-17 13:09:11 +00:00
return res
2020-09-15 06:39:11 +00:00
2020-09-17 06:19:41 +00:00
2020-09-17 12:23:11 +00:00
def messages ( self , show_read = True , show_unread = True ) :
# meta inbox
inbox = self . inbox_db . values
2020-09-17 16:37:59 +00:00
self . log ( ' <- inbox ' , inbox )
2020-09-17 12:23:11 +00:00
# filter?
2020-09-17 12:57:12 +00:00
if not show_read :
inbox = [ x for x in inbox if not x in set ( self . inbox_read_db . values ) ]
if not show_unread :
inbox = [ x for x in inbox if not x in set ( self . inbox_unread_db . values ) ]
2020-09-17 16:37:59 +00:00
self . log ( ' <- inbox 2 ' , inbox )
2020-09-17 12:57:12 +00:00
2020-09-17 12:23:11 +00:00
# decrypt and read all posts
2020-09-17 16:37:59 +00:00
msgs = [ ]
for post_id in inbox :
2020-09-17 17:42:51 +00:00
# print('???',post_id)
2020-09-17 17:01:17 +00:00
res_msg = self . read_msg ( post_id )
self . log ( ' got msg: ' , res_msg )
if res_msg . get ( ' success ' ) and res_msg . get ( ' msg ' ) :
2020-09-17 17:33:32 +00:00
msgx = res_msg . get ( ' msg ' )
msgx . post_id = post_id
msgs . append ( msgx )
2020-09-17 16:42:20 +00:00
2020-09-17 12:23:11 +00:00
return msgs
2020-09-17 17:29:18 +00:00
# def delete_msg(self,post_id):
2020-09-17 12:23:11 +00:00
def read_msg ( self , post_id = None , post_encr = None ) :
2020-09-15 06:39:11 +00:00
# get post
2020-09-15 06:40:32 +00:00
if not post_encr :
2020-09-17 16:42:20 +00:00
post_encr = self . crypt_data . get (
post_id ,
prefix = ' /post/ '
)
2020-09-15 07:04:01 +00:00
self . log ( ' found encrypted post store: ' , post_encr )
2020-09-17 12:23:11 +00:00
2020-09-17 16:42:20 +00:00
# first from op to me?
2020-09-17 17:20:50 +00:00
try :
msg_from_op_b_encr = post_encr
msg_from_op_b = SMessage (
self . privkey . data ,
self . op . pubkey . data
2020-09-17 17:29:18 +00:00
) . unwrap ( msg_from_op_b_encr )
2020-09-17 17:20:50 +00:00
self . log ( ' decrypted?? ' , msg_from_op_b )
2020-09-17 17:32:08 +00:00
except ( ThemisError , TypeError ) as e :
2020-09-17 17:20:50 +00:00
self . log ( f ' !!!!! { e } !!!!! ' )
return {
' success ' : False ,
' status ' : ' Could not decrypt from operator. '
}
2020-09-15 06:39:11 +00:00
2020-09-17 16:42:20 +00:00
# decoded?
msg_from_op = pickle . loads ( msg_from_op_b )
self . log ( ' decoded? ' , msg_from_op )
2020-09-14 22:00:13 +00:00
2020-09-17 16:42:20 +00:00
self . log ( ' msg_from_op is now ' , msg_from_op )
2020-09-15 08:27:02 +00:00
# this really to me?
2020-09-17 18:35:18 +00:00
if msg_from_op . get ( ' to_name ' ) != self . name :
if msg_from_op . get ( ' to_name ' ) == WORLD_NAME :
return {
' success ' : True ,
' msg ' : Message ( msg_from_op )
}
else :
raise KomradeException ( ' Why am I getting this msg? ' )
return
2020-09-15 08:27:02 +00:00
# now try to decrypt?
msg2me = Message (
to_whom = self ,
msg_d = {
2020-09-17 17:01:17 +00:00
' from ' : msg_from_op . get ( ' from ' ) ,
' from_name ' : msg_from_op . get ( ' from_name ' ) ,
' msg ' : msg_from_op . get ( ' msg ' )
2020-09-15 08:27:02 +00:00
}
)
2020-09-17 17:01:17 +00:00
self . log ( ' msg2me is now v1 ' , msg2me , msg2me . is_encrypted , msg2me . has_embedded_msg )
if not msg2me . is_encrypted :
return {
' success ' : True ,
' msg ' : msg2me
}
2020-09-17 16:30:26 +00:00
try :
msg2me . decrypt ( )
self . log ( ' msg2me is now v2 ' , dict_format ( msg2me . msg_d ) )
except ThemisError as e :
2020-09-17 17:01:17 +00:00
self . log ( ' decryption failuire!!! ' )
2020-09-17 16:30:26 +00:00
return {
' success ' : False ,
' status ' : f ' De/encryption failure: { e } '
}
2020-09-15 08:27:02 +00:00
2020-09-17 17:29:18 +00:00
msg2me . post_id = post_id
2020-09-15 11:45:19 +00:00
return {
' success ' : True ,
' msg ' : msg2me
}
2020-09-15 08:27:02 +00:00
2020-09-15 11:12:49 +00:00
2020-09-16 14:34:21 +00:00
2020-09-15 11:12:49 +00:00
2020-09-17 10:37:58 +00:00
2020-09-17 12:23:11 +00:00
2020-09-17 10:37:58 +00:00
2020-09-15 11:12:49 +00:00
2020-09-10 14:00:55 +00:00
def test_register ( ) :
import random
num = random . choice ( list ( range ( 0 , 1000 ) ) )
2020-09-10 21:32:59 +00:00
botname = f ' marx { str ( num ) . zfill ( 3 ) } '
2020-09-13 07:15:44 +00:00
marxbot = Komrade ( botname )
# marxbot=Komrade()
2020-09-14 06:02:17 +00:00
marxbot . register ( passphrase = ' boo ' )
2020-09-09 15:30:34 +00:00
2020-09-13 19:42:04 +00:00
2020-09-13 20:24:31 +00:00
2020-09-13 19:42:04 +00:00
def test_msg ( ) :
2020-09-15 06:10:22 +00:00
b = Komrade ( ' bez ' )
2020-09-15 07:04:01 +00:00
b . inbox ( )
# b.read_msg(b'YWY3NDUxZjNjYjdhNDFmNmIyNDI2NzU3YTI4ZTA0OWM=')
2020-09-15 06:40:03 +00:00
#b.login()
2020-09-15 06:10:22 +00:00
2020-09-15 06:40:03 +00:00
#print(b.download_msgs())
2020-09-15 06:10:22 +00:00
# z = Komrade('zuckbot')
2020-09-13 20:24:31 +00:00
2020-09-15 06:10:22 +00:00
# b.msg(z,'you ssssssuck')
2020-09-13 20:24:31 +00:00
2020-09-13 19:42:04 +00:00
2020-09-14 07:58:26 +00:00
def test_loading ( ) :
2020-09-14 19:25:24 +00:00
z1 = Komrade ( ' elon ' )
2020-09-14 11:52:56 +00:00
# z1.register()
2020-09-14 08:25:55 +00:00
print ( z1 . keychain ( ) )
2020-09-14 11:52:56 +00:00
# exit()
2020-09-14 07:58:26 +00:00
z2 = Komrade ( b ' VUVDMgAAAC08BCMVA+0dMJXc66/W7hty669+3/3S61Q1yjmgJW8I0k3lqfDi ' )
print ( z2 )
print ( z2 . keychain ( ) )
2020-09-08 15:14:48 +00:00
2020-09-14 07:58:26 +00:00
pprint ( PHONEBOOK )
return
# z1.login()
2020-09-09 15:41:33 +00:00
2020-09-15 06:10:22 +00:00
def test_sign ( ) :
from pythemis import smessage
b = Komrade ( ' bez ' )
m = Komrade ( ' marx ' )
z = Komrade ( ' zuckbot ' )
msg = b ' this is cool. --bez '
signed_msg = smessage . ssign ( b . privkey . data , msg )
print ( signed_msg )
verified_msg = smessage . sverify ( b . pubkey . data , signed_msg )
print ( verified_msg )
2020-09-15 06:18:34 +00:00
def test_send ( ) :
z = Komrade ( ' zuckbot ' )
2020-09-09 17:39:30 +00:00
2020-09-14 07:58:26 +00:00
if __name__ == ' __main__ ' :
2020-09-15 06:10:22 +00:00
test_msg ( )