2018-09-10 05:02:28 +00:00
|
|
|
'''
|
|
|
|
Onionr - P2P Anonymous Storage Network
|
|
|
|
|
|
|
|
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
|
|
|
|
from onionrblockapi import Block
|
2018-09-11 19:45:06 +00:00
|
|
|
import onionrusers
|
2018-09-10 05:02:28 +00:00
|
|
|
|
|
|
|
plugin_name = 'metadataprocessor'
|
|
|
|
|
|
|
|
# event listeners
|
|
|
|
|
2018-09-11 19:45:06 +00:00
|
|
|
def _processUserInfo(api, newBlock):
|
|
|
|
'''
|
|
|
|
Set the username for a particular user, from a signed block by them
|
|
|
|
'''
|
|
|
|
myBlock = newBlock
|
|
|
|
peerName = myBlock.getMetadata('name')
|
|
|
|
try:
|
|
|
|
if len(peerName) > 20:
|
|
|
|
raise onionrexceptions.InvalidMetdata('Peer name specified is too large')
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
except onionrexceptions.InvalidMetadata:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
api.get_core().setPeerInfo(signer, 'name', peerName)
|
|
|
|
logger.info('%s is now using the name %s.' % (signer, api.get_utils().escapeAnsi(peerName)))
|
|
|
|
|
|
|
|
def _processForwardKey(api, myBlock):
|
|
|
|
'''
|
|
|
|
Get the forward secrecy key specified by the user for us to use
|
|
|
|
'''
|
|
|
|
peer = onionrusers.OnionrUser(self.api.get_core(), myBlock.signer)
|
|
|
|
|
2018-09-10 05:02:28 +00:00
|
|
|
def on_processBlocks(api):
|
|
|
|
myBlock = api.data['block']
|
|
|
|
blockType = api.data['type']
|
2018-09-12 02:58:51 +00:00
|
|
|
logger.info('blockType is ' + blockType)
|
2018-09-11 19:45:06 +00:00
|
|
|
|
|
|
|
# Process specific block types
|
|
|
|
|
|
|
|
# userInfo blocks, such as for setting username
|
2018-09-10 05:02:28 +00:00
|
|
|
if blockType == 'userInfo':
|
|
|
|
if myBlock.verifySig():
|
2018-09-11 19:45:06 +00:00
|
|
|
_processUserInfo(api, myBlock)
|
|
|
|
# forwardKey blocks
|
|
|
|
elif blockType == 'forwardKey':
|
|
|
|
if myBlock.verifySig():
|
|
|
|
_processForwardKey(api, myBlock)
|
2018-09-10 05:02:28 +00:00
|
|
|
|
|
|
|
def on_init(api, data = None):
|
|
|
|
|
|
|
|
pluginapi = api
|
|
|
|
|
|
|
|
return
|