2019-03-09 06:37:57 +00:00
|
|
|
'''
|
2019-06-12 20:12:56 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-03-09 01:57:44 +00:00
|
|
|
|
2019-03-09 06:37:57 +00:00
|
|
|
add keys (transport and pubkey)
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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-03-09 18:01:57 +00:00
|
|
|
import sys
|
|
|
|
import logger
|
2019-07-19 04:59:44 +00:00
|
|
|
from coredb import keydb
|
2019-03-09 01:57:44 +00:00
|
|
|
|
2019-08-04 04:52:57 +00:00
|
|
|
def add_address():
|
2019-03-09 01:57:44 +00:00
|
|
|
try:
|
|
|
|
newAddress = sys.argv[2]
|
|
|
|
newAddress = newAddress.replace('http:', '').replace('/', '')
|
2019-03-09 18:01:57 +00:00
|
|
|
except IndexError:
|
2019-03-09 01:57:44 +00:00
|
|
|
pass
|
|
|
|
else:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info("Adding address: " + logger.colors.underline + newAddress, terminal=True)
|
2019-07-19 04:59:44 +00:00
|
|
|
if keydb.addkeys.add_address(newAddress):
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info("Successfully added address.", terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
else:
|
2019-09-21 05:06:49 +00:00
|
|
|
logger.warn("Unable to add address.", terminal=True)
|
|
|
|
|
|
|
|
add_address.onionr_help = "Adds a node transport address to the local node list"
|