60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
|
'''
|
||
|
Onionr - Private P2P Communication
|
||
|
|
||
|
This processes metadata for Onionr blocks
|
||
|
'''
|
||
|
'''
|
||
|
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/>.
|
||
|
'''
|
||
|
|
||
|
# useful libraries
|
||
|
import logger, config
|
||
|
import os, sys, json, time, random, shutil, base64, getpass, datetime, re
|
||
|
import onionrusers, onionrexceptions
|
||
|
from onionrutils import stringvalidators
|
||
|
|
||
|
plugin_name = 'metadataprocessor'
|
||
|
|
||
|
# event listeners
|
||
|
|
||
|
def _processForwardKey(api, myBlock):
|
||
|
'''
|
||
|
Get the forward secrecy key specified by the user for us to use
|
||
|
'''
|
||
|
peer = onionrusers.OnionrUser(myBlock.signer)
|
||
|
key = myBlock.getMetadata('newFSKey')
|
||
|
|
||
|
# We don't need to validate here probably, but it helps
|
||
|
if stringvalidators.validate_pub_key(key):
|
||
|
peer.addForwardKey(key)
|
||
|
else:
|
||
|
raise onionrexceptions.InvalidPubkey("%s is not a valid pubkey key" % (key,))
|
||
|
|
||
|
def on_processblocks(api, data=None):
|
||
|
# Generally fired by utils.
|
||
|
myBlock = api.data['block']
|
||
|
blockType = api.data['type']
|
||
|
# Process specific block types
|
||
|
|
||
|
# forwardKey blocks, add a new forward secrecy key for a peer
|
||
|
if blockType == 'forwardKey':
|
||
|
if api.data['validSig'] == True:
|
||
|
_processForwardKey(api, myBlock)
|
||
|
|
||
|
def on_init(api, data = None):
|
||
|
|
||
|
pluginapi = api
|
||
|
|
||
|
return
|