2019-06-14 18:02:02 +00:00
'''
Onionr - Private P2P Communication
Command to delete the Tor data directory if its safe to do so
'''
'''
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 / > .
'''
import os , shutil
2019-07-19 04:59:44 +00:00
import logger
2019-06-23 17:41:07 +00:00
from onionrutils import localcommand
2019-09-01 09:13:46 +00:00
from utils import identifyhome
2019-06-23 17:41:07 +00:00
2019-09-01 09:13:46 +00:00
def __delete ( directory ) :
tor_dir = ' %s / %s / ' % ( identifyhome . identify_home ( ) , directory )
2019-06-14 18:02:02 +00:00
if os . path . exists ( tor_dir ) :
2019-07-19 04:59:44 +00:00
if localcommand . local_command ( ' /ping ' ) == ' pong! ' :
2019-06-20 00:59:05 +00:00
logger . warn ( ' Cannot delete Tor data while Onionr is running ' , terminal = True )
2019-06-14 18:02:02 +00:00
else :
2019-09-01 09:13:46 +00:00
shutil . rmtree ( tor_dir )
logger . info ( ' Tor reset ' , terminal = True )
def reset_tor ( ) :
__delete ( ' tordata ' )
2019-09-21 05:06:49 +00:00
reset_tor . onionr_help = " Deletes Onionr ' s Tor data directory. Only do this as a last resort if you have serious Tor issues. "
2019-09-01 09:13:46 +00:00
def reset_tor_key_pair ( ) :
__delete ( ' hs ' )
2019-09-21 05:06:49 +00:00
2019-10-10 03:31:40 +00:00
reset_tor_key_pair . onionr_help = " Delete ' s your Tor node address permanently. Note that through fingerprinting attackers may be able to know that your new generated node address belongs to the same node as the deleted one. "