2019-05-11 18:32:56 +00:00
|
|
|
'''
|
2019-05-12 14:21:17 +00:00
|
|
|
Onionr - P2P Anonymous Storage Network
|
2019-05-11 18:32:56 +00:00
|
|
|
|
|
|
|
Handle daemon queue commands in the communicator
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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 logger
|
2019-09-21 22:45:46 +00:00
|
|
|
from onionrplugins import onionrevents as events
|
2019-06-23 17:41:07 +00:00
|
|
|
from onionrutils import localcommand
|
2019-07-17 22:41:33 +00:00
|
|
|
from coredb import daemonqueue
|
2019-07-18 17:40:48 +00:00
|
|
|
import filepaths
|
2019-08-10 01:04:56 +00:00
|
|
|
from . import restarttor
|
2019-05-11 18:32:56 +00:00
|
|
|
def handle_daemon_commands(comm_inst):
|
2019-07-17 22:41:33 +00:00
|
|
|
cmd = daemonqueue.daemon_queue()
|
2019-05-11 18:32:56 +00:00
|
|
|
response = ''
|
|
|
|
if cmd is not False:
|
2019-08-04 04:52:57 +00:00
|
|
|
events.event('daemon_command', data = {'cmd' : cmd})
|
2019-05-11 18:32:56 +00:00
|
|
|
if cmd[0] == 'shutdown':
|
|
|
|
comm_inst.shutdown = True
|
2019-09-26 07:43:03 +00:00
|
|
|
elif cmd[0] == 'runtimeTest':
|
|
|
|
comm_inst.shared_state.get_by_string("OnionrRunTestManager").run_tests()
|
2019-08-13 22:28:53 +00:00
|
|
|
elif cmd[0] == 'remove_from_insert_list':
|
2019-08-14 06:40:03 +00:00
|
|
|
try:
|
|
|
|
comm_inst.generating_blocks.remove(cmd[1])
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2019-05-11 18:32:56 +00:00
|
|
|
elif cmd[0] == 'announceNode':
|
|
|
|
if len(comm_inst.onlinePeers) > 0:
|
|
|
|
comm_inst.announce(cmd[1])
|
|
|
|
else:
|
|
|
|
logger.debug("No nodes connected. Will not introduce node.")
|
|
|
|
elif cmd[0] == 'runCheck': # deprecated
|
|
|
|
logger.debug('Status check; looks good.')
|
2019-07-18 17:40:48 +00:00
|
|
|
open(filepaths.run_check_file + '.runcheck', 'w+').close()
|
2019-05-11 18:32:56 +00:00
|
|
|
elif cmd[0] == 'connectedPeers':
|
|
|
|
response = '\n'.join(list(comm_inst.onlinePeers)).strip()
|
|
|
|
if response == '':
|
|
|
|
response = 'none'
|
|
|
|
elif cmd[0] == 'localCommand':
|
2019-07-18 17:40:48 +00:00
|
|
|
response = localcommand.local_command(cmd[1])
|
2019-08-10 01:04:56 +00:00
|
|
|
elif cmd[0] == 'clearOffline':
|
|
|
|
comm_inst.offlinePeers = []
|
|
|
|
elif cmd[0] == 'restartTor':
|
|
|
|
restarttor.restart(comm_inst)
|
|
|
|
comm_inst.offlinePeers = []
|
2019-05-11 18:32:56 +00:00
|
|
|
elif cmd[0] == 'pex':
|
|
|
|
for i in comm_inst.timers:
|
|
|
|
if i.timerFunction.__name__ == 'lookupAdders':
|
|
|
|
i.count = (i.frequency - 1)
|
|
|
|
elif cmd[0] == 'uploadBlock':
|
|
|
|
comm_inst.blocksToUpload.append(cmd[1])
|
2019-08-28 02:14:18 +00:00
|
|
|
else:
|
|
|
|
logger.debug('Received daemon queue command unable to be handled: %s' % (cmd[0],))
|
2019-05-11 18:32:56 +00:00
|
|
|
|
|
|
|
if cmd[0] not in ('', None):
|
|
|
|
if response != '':
|
2019-07-18 17:40:48 +00:00
|
|
|
localcommand.local_command('queueResponseAdd/' + cmd[4], post=True, postData={'data': response})
|
2019-05-11 18:32:56 +00:00
|
|
|
response = ''
|
|
|
|
|
2019-08-11 18:53:38 +00:00
|
|
|
comm_inst.decrementThreadCount('handle_daemon_commands')
|