MiNode/minode/i2p/dialer.py

61 lines
1.8 KiB
Python
Raw Normal View History

2017-06-09 18:41:33 +00:00
# -*- coding: utf-8 -*-
import logging
import socket
import threading
2017-06-09 18:41:33 +00:00
2021-03-09 14:40:59 +00:00
from .util import receive_line
2017-06-09 18:41:33 +00:00
class I2PDialer(threading.Thread):
2021-03-09 14:40:59 +00:00
def __init__(
self, state, destination, nick, sam_host='127.0.0.1', sam_port=7656
):
self.state = state
self.sam_host = sam_host
self.sam_port = sam_port
2017-06-09 18:41:33 +00:00
self.nick = nick
self.destination = destination
super().__init__(name='I2P Dial to {}'.format(self.destination))
self.s = socket.create_connection((self.sam_host, self.sam_port))
2017-06-09 18:41:33 +00:00
self.version_reply = []
self.success = True
2017-06-09 18:41:33 +00:00
def run(self):
2021-03-08 15:06:07 +00:00
logging.debug('Connecting to %s', self.destination)
2017-06-09 18:41:33 +00:00
self._connect()
2021-03-09 14:40:59 +00:00
if not self.state.shutting_down and self.success:
c = self.state.connection(
self.destination, 'i2p', self.s, 'i2p',
False, self.destination)
c.start()
2021-03-09 14:40:59 +00:00
self.state.connections.add(c)
2017-06-09 18:41:33 +00:00
def _receive_line(self):
line = receive_line(self.s)
2021-03-08 15:06:07 +00:00
# logging.debug('I2PDialer <- %s', line)
2017-06-09 18:41:33 +00:00
return line
def _send(self, command):
2021-03-08 15:06:07 +00:00
# logging.debug('I2PDialer -> %s', command)
2017-06-09 18:41:33 +00:00
self.s.sendall(command)
def _connect(self):
self._send(b'HELLO VERSION MIN=3.0 MAX=3.3\n')
self.version_reply = self._receive_line().split()
if b'RESULT=OK' not in self.version_reply:
2021-03-08 15:06:07 +00:00
logging.warning('Error while connecting to %s', self.destination)
self.success = False
2017-06-09 18:41:33 +00:00
2021-03-08 15:06:07 +00:00
self._send(
b'STREAM CONNECT ID=' + self.nick + b' DESTINATION='
+ self.destination + b'\n')
2017-06-09 18:41:33 +00:00
reply = self._receive_line().split(b' ')
if b'RESULT=OK' not in reply:
2021-03-08 15:06:07 +00:00
logging.warning(
'Error while connecting to %s', self.destination)
self.success = False