2020-03-28 18:16:14 +00:00
|
|
|
import asyncio
|
|
|
|
import websockets
|
|
|
|
import json
|
|
|
|
import uuid
|
2020-04-11 13:53:50 +00:00
|
|
|
import av # type: ignore
|
2020-03-28 18:16:14 +00:00
|
|
|
import struct
|
2020-04-11 13:53:50 +00:00
|
|
|
from aiortc import MediaStreamTrack, RTCPeerConnection, RTCSessionDescription # type: ignore
|
2020-04-12 22:51:12 +00:00
|
|
|
from aiortc.mediastreams import MediaStreamError # type: ignore
|
2020-04-11 13:53:50 +00:00
|
|
|
from aiortc.contrib.media import MediaBlackhole, MediaPlayer # type: ignore
|
|
|
|
import jack as Jack # type: ignore
|
2020-04-05 09:53:03 +00:00
|
|
|
import os
|
|
|
|
import re
|
2020-04-06 12:13:18 +00:00
|
|
|
from datetime import datetime
|
2020-04-11 13:53:50 +00:00
|
|
|
from typing import Optional, Any, Type, Dict
|
2020-04-10 11:03:08 +00:00
|
|
|
from types import TracebackType
|
|
|
|
import sys
|
2020-04-11 13:53:50 +00:00
|
|
|
import aiohttp
|
|
|
|
from raygun4py import raygunprovider # type: ignore
|
2020-04-12 20:32:56 +00:00
|
|
|
import struct
|
2020-04-10 11:03:08 +00:00
|
|
|
|
|
|
|
import configparser
|
|
|
|
|
|
|
|
config = configparser.ConfigParser()
|
|
|
|
config.read("shittyserver.ini")
|
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
ENABLE_EXCEPTION_LOGGING = False
|
2020-04-10 11:03:08 +00:00
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
if config.get("raygun", "enable") == "True":
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
def handle_exception(
|
|
|
|
exc_type: Type[BaseException],
|
|
|
|
exc_value: BaseException,
|
|
|
|
exc_traceback: TracebackType,
|
|
|
|
) -> None:
|
2020-04-12 14:49:50 +00:00
|
|
|
cl = raygunprovider.RaygunSender(config.get("raygun", "key"))
|
2020-04-11 13:53:50 +00:00
|
|
|
cl.send_exception(exc_info=(exc_type, exc_value, exc_traceback))
|
|
|
|
|
|
|
|
sys.excepthook = handle_exception
|
2020-04-05 09:53:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
file_contents_ex = re.compile(r"^ws=\d$")
|
|
|
|
|
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
def write_ob_status(status: bool) -> None:
|
2020-04-05 09:53:03 +00:00
|
|
|
if not os.path.exists("/music/ob_state.conf"):
|
|
|
|
print("OB State file does not exist. Bailing.")
|
|
|
|
return
|
2020-04-07 11:23:10 +00:00
|
|
|
with open("/music/ob_state.conf", "r+") as fd:
|
2020-04-05 09:53:03 +00:00
|
|
|
content = fd.read()
|
|
|
|
if "ws" in content:
|
|
|
|
content = re.sub(file_contents_ex, "ws=" + str(1 if status else 0), content)
|
|
|
|
else:
|
2020-04-07 11:32:46 +00:00
|
|
|
if len(content) > 0 and content[len(content) - 1] != "\n":
|
2020-04-05 09:53:03 +00:00
|
|
|
content += "\n"
|
2020-04-07 10:19:28 +00:00
|
|
|
content += "ws=" + str(1 if status else 0) + "\n"
|
2020-04-05 09:53:03 +00:00
|
|
|
fd.seek(0)
|
|
|
|
fd.write(content)
|
|
|
|
fd.truncate()
|
|
|
|
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@Jack.set_error_function # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
def error(msg: str) -> None:
|
2020-04-06 12:13:18 +00:00
|
|
|
print("Error:", msg)
|
2020-03-28 18:16:14 +00:00
|
|
|
|
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@Jack.set_info_function # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
def info(msg: str) -> None:
|
2020-04-06 12:13:18 +00:00
|
|
|
print("Info:", msg)
|
|
|
|
|
|
|
|
|
|
|
|
jack = Jack.Client("webstudio")
|
|
|
|
out1 = jack.outports.register("out_0")
|
|
|
|
out2 = jack.outports.register("out_1")
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
transfer_buffer1: Any = None
|
|
|
|
transfer_buffer2: Any = None
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
def init_buffers() -> None:
|
2020-04-02 18:23:49 +00:00
|
|
|
global transfer_buffer1, transfer_buffer2
|
|
|
|
transfer_buffer1 = Jack.RingBuffer(jack.samplerate * 10)
|
|
|
|
transfer_buffer2 = Jack.RingBuffer(jack.samplerate * 10)
|
2020-04-06 12:13:18 +00:00
|
|
|
|
|
|
|
|
2020-04-02 18:23:49 +00:00
|
|
|
init_buffers()
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-06 12:13:18 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@jack.set_process_callback # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
def process(frames: int) -> None:
|
2020-03-28 18:16:14 +00:00
|
|
|
buf1 = out1.get_buffer()
|
2020-04-12 20:45:29 +00:00
|
|
|
if transfer_buffer1.read_space == 0:
|
|
|
|
for i in range(len(buf1)):
|
|
|
|
buf1[i] = b'\x00'
|
|
|
|
else:
|
|
|
|
piece1 = transfer_buffer1.read(len(buf1))
|
|
|
|
buf1[: len(piece1)] = piece1
|
2020-03-28 18:16:14 +00:00
|
|
|
buf2 = out2.get_buffer()
|
2020-04-12 20:45:29 +00:00
|
|
|
if transfer_buffer2.read_space == 0:
|
|
|
|
for i in range(len(buf2)):
|
|
|
|
buf2[i] = b'\x00'
|
|
|
|
else:
|
|
|
|
piece2 = transfer_buffer2.read(len(buf2))
|
|
|
|
buf2[: len(piece2)] = piece2
|
2020-04-06 12:13:18 +00:00
|
|
|
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
active_sessions: Dict[str, "Session"] = {}
|
2020-04-12 14:49:50 +00:00
|
|
|
live_session: Optional["Session"] = None
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def notify_mattserver_about_sessions() -> None:
|
|
|
|
async with aiohttp.ClientSession() as session:
|
|
|
|
data: Dict[str, Dict[str, str]] = {}
|
|
|
|
for sid, sess in active_sessions.items():
|
|
|
|
data[sid] = sess.to_dict()
|
2020-04-12 20:07:37 +00:00
|
|
|
async with session.post(config.get("mattserver", "notify_url"), json=data) as response:
|
|
|
|
print("Mattserver response", response)
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NotReadyException(BaseException):
|
|
|
|
pass
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-06 12:13:18 +00:00
|
|
|
|
2020-03-28 18:16:14 +00:00
|
|
|
class Session(object):
|
2020-04-07 10:19:28 +00:00
|
|
|
websocket: Optional[websockets.WebSocketServerProtocol]
|
|
|
|
connection_state: Optional[str]
|
|
|
|
pc: Optional[Any]
|
2020-04-11 13:53:50 +00:00
|
|
|
connection_id: str
|
2020-04-11 13:59:54 +00:00
|
|
|
lock: asyncio.Lock
|
2020-04-12 20:13:33 +00:00
|
|
|
running: bool
|
|
|
|
ended: bool
|
|
|
|
resampler: Optional[Any]
|
2020-04-07 10:19:28 +00:00
|
|
|
|
|
|
|
def __init__(self) -> None:
|
2020-04-02 18:26:58 +00:00
|
|
|
self.websocket = None
|
|
|
|
self.sender = None
|
|
|
|
self.pc = None
|
2020-04-12 20:19:13 +00:00
|
|
|
self.resampler = None
|
2020-04-06 12:13:18 +00:00
|
|
|
self.connection_state = None
|
2020-04-11 13:53:50 +00:00
|
|
|
self.connection_id = str(uuid.uuid4())
|
|
|
|
self.ended = False
|
2020-04-11 13:59:54 +00:00
|
|
|
self.lock = asyncio.Lock()
|
2020-04-12 20:13:33 +00:00
|
|
|
self.running = False
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
def to_dict(self) -> Dict[str, str]:
|
|
|
|
return {"connection_id": self.connection_id}
|
|
|
|
|
|
|
|
async def activate(self) -> None:
|
|
|
|
print(self.connection_id, "Activating")
|
2020-04-12 20:13:33 +00:00
|
|
|
self.running = True
|
2020-04-02 18:26:58 +00:00
|
|
|
|
2020-04-12 21:21:38 +00:00
|
|
|
async def deactivate(self) -> None:
|
2020-04-12 21:22:12 +00:00
|
|
|
print(self.connection_id, "Deactivating")
|
2020-04-12 21:21:38 +00:00
|
|
|
self.running = False
|
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
async def end(self) -> None:
|
2020-04-12 15:38:43 +00:00
|
|
|
global active_sessions, live_session
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-11 13:59:54 +00:00
|
|
|
async with self.lock:
|
|
|
|
if self.ended:
|
|
|
|
print(self.connection_id, "already over")
|
|
|
|
else:
|
|
|
|
print(self.connection_id, "going away")
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-12 20:13:33 +00:00
|
|
|
self.ended = True
|
2020-04-12 21:21:38 +00:00
|
|
|
await self.deactivate()
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-11 13:59:54 +00:00
|
|
|
if self.pc is not None:
|
|
|
|
await self.pc.close()
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
if (
|
|
|
|
self.websocket is not None
|
|
|
|
and self.websocket.state == websockets.protocol.State.OPEN
|
|
|
|
):
|
2020-04-11 13:59:54 +00:00
|
|
|
await self.websocket.send(json.dumps({"kind": "REPLACED"}))
|
|
|
|
await self.websocket.close(1008)
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-11 13:59:54 +00:00
|
|
|
if self.connection_id in active_sessions:
|
|
|
|
del active_sessions[self.connection_id]
|
|
|
|
if len(active_sessions) == 0:
|
|
|
|
write_ob_status(False)
|
|
|
|
else:
|
|
|
|
print(self.connection_id, "wasn't in active_sessions!")
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-11 13:59:54 +00:00
|
|
|
if live_session == self:
|
|
|
|
live_session = None
|
|
|
|
|
|
|
|
await notify_mattserver_about_sessions()
|
|
|
|
print(self.connection_id, "bye bye")
|
|
|
|
self.ended = True
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
def create_peerconnection(self) -> None:
|
2020-03-28 18:16:14 +00:00
|
|
|
self.pc = RTCPeerConnection()
|
2020-04-07 10:19:28 +00:00
|
|
|
assert self.pc is not None
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@self.pc.on("signalingstatechange") # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
async def on_signalingstatechange() -> None:
|
|
|
|
assert self.pc is not None
|
2020-04-06 12:13:18 +00:00
|
|
|
print(
|
|
|
|
self.connection_id,
|
|
|
|
"Signaling state is {}".format(self.pc.signalingState),
|
|
|
|
)
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@self.pc.on("iceconnectionstatechange") # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
async def on_iceconnectionstatechange() -> None:
|
2020-04-07 11:23:10 +00:00
|
|
|
if self.pc is None:
|
2020-04-11 13:53:50 +00:00
|
|
|
print(
|
|
|
|
self.connection_id,
|
|
|
|
"ICE connection state change, but the PC is None!",
|
|
|
|
)
|
2020-04-07 11:23:10 +00:00
|
|
|
else:
|
|
|
|
print(
|
|
|
|
self.connection_id,
|
|
|
|
"ICE connection state is {}".format(self.pc.iceConnectionState),
|
|
|
|
)
|
|
|
|
if self.pc.iceConnectionState == "failed":
|
2020-04-11 13:53:50 +00:00
|
|
|
await self.end()
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
@self.pc.on("track") # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
async def on_track(track: MediaStreamTrack) -> None:
|
2020-04-12 20:13:33 +00:00
|
|
|
global live_session, transfer_buffer1, transfer_buffer2
|
2020-04-03 07:56:52 +00:00
|
|
|
print(self.connection_id, "Received track")
|
2020-03-28 18:16:14 +00:00
|
|
|
if track.kind == "audio":
|
2020-04-12 20:13:33 +00:00
|
|
|
print(self.connection_id, "It's audio.")
|
2020-04-02 18:23:49 +00:00
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
await notify_mattserver_about_sessions()
|
|
|
|
|
|
|
|
@track.on("ended") # type: ignore
|
2020-04-07 10:19:28 +00:00
|
|
|
async def on_ended() -> None:
|
2020-04-03 07:56:52 +00:00
|
|
|
print(self.connection_id, "Track {} ended".format(track.kind))
|
2020-04-11 13:53:50 +00:00
|
|
|
await self.end()
|
2020-04-02 18:23:49 +00:00
|
|
|
|
2020-04-05 09:53:03 +00:00
|
|
|
write_ob_status(True)
|
2020-04-12 20:13:33 +00:00
|
|
|
while True:
|
2020-04-12 22:51:12 +00:00
|
|
|
try:
|
|
|
|
frame = await track.recv()
|
|
|
|
except MediaStreamError as e:
|
|
|
|
print(self.connection_id, e)
|
|
|
|
await self.end()
|
2020-04-12 20:13:33 +00:00
|
|
|
if self.running:
|
|
|
|
# Right, depending on the format, we may need to do some fuckery.
|
|
|
|
# Jack expects all audio to be 32 bit floating point
|
|
|
|
# while PyAV may give us audio in any format
|
|
|
|
# (my testing has shown it to be signed 16-bit)
|
|
|
|
# We use PyAV to resample it into the right format
|
|
|
|
if self.resampler is None:
|
|
|
|
self.resampler = av.audio.resampler.AudioResampler(
|
|
|
|
format="fltp", layout="stereo", rate=jack.samplerate
|
|
|
|
)
|
|
|
|
frame.pts = None # DIRTY HACK
|
|
|
|
new_frame = self.resampler.resample(frame)
|
|
|
|
transfer_buffer1.write(new_frame.planes[0])
|
|
|
|
transfer_buffer2.write(new_frame.planes[1])
|
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
async def process_ice(self, message: Any) -> None:
|
2020-04-06 12:13:18 +00:00
|
|
|
if self.connection_state == "HELLO" and message["kind"] == "OFFER":
|
|
|
|
offer = RTCSessionDescription(sdp=message["sdp"], type=message["type"])
|
|
|
|
print(self.connection_id, "Received offer")
|
2020-04-07 10:19:28 +00:00
|
|
|
|
2020-04-06 12:13:18 +00:00
|
|
|
self.create_peerconnection()
|
2020-04-07 10:19:28 +00:00
|
|
|
assert self.pc is not None
|
|
|
|
|
2020-04-06 12:13:18 +00:00
|
|
|
await self.pc.setRemoteDescription(offer)
|
|
|
|
|
|
|
|
answer = await self.pc.createAnswer()
|
|
|
|
await self.pc.setLocalDescription(answer)
|
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
assert self.websocket is not None
|
2020-04-07 09:45:00 +00:00
|
|
|
await self.websocket.send(
|
2020-04-06 12:13:18 +00:00
|
|
|
json.dumps(
|
|
|
|
{
|
|
|
|
"kind": "ANSWER",
|
|
|
|
"type": self.pc.localDescription.type,
|
|
|
|
"sdp": self.pc.localDescription.sdp,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.connection_state = "ANSWER"
|
|
|
|
print(self.connection_id, "Sent answer")
|
|
|
|
else:
|
|
|
|
print(
|
|
|
|
self.connection_state,
|
|
|
|
"Incorrect kind {} for state {}".format(
|
|
|
|
message["kind"], self.connection_state
|
|
|
|
),
|
|
|
|
)
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
async def connect(self, websocket: websockets.WebSocketServerProtocol) -> None:
|
2020-04-11 13:53:50 +00:00
|
|
|
global active_sessions
|
|
|
|
|
|
|
|
active_sessions[self.connection_id] = self
|
|
|
|
|
2020-04-06 12:13:18 +00:00
|
|
|
self.websocket = websocket
|
|
|
|
self.connection_state = "HELLO"
|
|
|
|
print(self.connection_id, "Connected")
|
2020-04-10 11:03:08 +00:00
|
|
|
# TODO Raygun user ID
|
2020-03-28 18:16:14 +00:00
|
|
|
await websocket.send(
|
2020-04-11 13:53:50 +00:00
|
|
|
json.dumps({"kind": "HELLO", "connectionId": self.connection_id})
|
2020-03-28 18:16:14 +00:00
|
|
|
)
|
|
|
|
|
2020-04-11 13:53:50 +00:00
|
|
|
try:
|
|
|
|
async for msg in websocket:
|
|
|
|
data = json.loads(msg)
|
|
|
|
if data["kind"] == "OFFER":
|
|
|
|
await self.process_ice(data)
|
|
|
|
elif data["kind"] == "TIME":
|
|
|
|
time = datetime.now().time()
|
2020-04-12 14:49:50 +00:00
|
|
|
await websocket.send(
|
|
|
|
json.dumps({"kind": "TIME", "time": str(time)})
|
|
|
|
)
|
2020-04-11 13:53:50 +00:00
|
|
|
else:
|
|
|
|
print(self.connection_id, "Unknown kind {}".format(data["kind"]))
|
|
|
|
await websocket.send(
|
|
|
|
json.dumps({"kind": "ERROR", "error": "unknown_kind"})
|
|
|
|
)
|
|
|
|
|
|
|
|
except websockets.exceptions.ConnectionClosedError:
|
|
|
|
print(self.connection_id, "WebSocket closed")
|
|
|
|
await self.end()
|
2020-03-28 18:16:14 +00:00
|
|
|
|
|
|
|
|
2020-04-07 10:19:28 +00:00
|
|
|
async def serve(websocket: websockets.WebSocketServerProtocol, path: str) -> None:
|
2020-03-28 18:16:14 +00:00
|
|
|
if path == "/stream":
|
|
|
|
session = Session()
|
|
|
|
await session.connect(websocket)
|
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
start_server = websockets.serve(
|
|
|
|
serve, "localhost", int(config.get("ports", "websocket"))
|
|
|
|
)
|
2020-04-11 13:53:50 +00:00
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
print("Shittyserver WS starting on port {}.".format(config.get("ports", "websocket")))
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def telnet_server(
|
|
|
|
reader: asyncio.StreamReader, writer: asyncio.StreamWriter
|
|
|
|
) -> None:
|
2020-04-12 20:13:33 +00:00
|
|
|
global active_sessions, live_session
|
2020-04-11 13:53:50 +00:00
|
|
|
while True:
|
2020-04-12 21:04:52 +00:00
|
|
|
data = await reader.readline()
|
2020-04-11 13:53:50 +00:00
|
|
|
if not data:
|
|
|
|
break
|
2020-04-12 20:07:37 +00:00
|
|
|
try:
|
|
|
|
data_str = data.decode("utf-8")
|
|
|
|
except UnicodeDecodeError as e:
|
|
|
|
print(e)
|
|
|
|
continue
|
2020-04-11 13:53:50 +00:00
|
|
|
parts = data_str.rstrip().split(" ")
|
|
|
|
print(parts)
|
|
|
|
|
|
|
|
if parts[0] == "Q":
|
2020-04-11 13:59:54 +00:00
|
|
|
result: Dict[str, Dict[str, str]] = {}
|
2020-04-11 13:53:50 +00:00
|
|
|
for sid, sess in active_sessions.items():
|
2020-04-11 13:59:54 +00:00
|
|
|
result[sid] = sess.to_dict()
|
2020-04-12 14:49:50 +00:00
|
|
|
writer.write(
|
|
|
|
(
|
|
|
|
json.dumps(
|
|
|
|
{
|
|
|
|
"live": live_session.to_dict()
|
|
|
|
if live_session is not None
|
|
|
|
else None,
|
|
|
|
"active": result,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
+ "\r\n"
|
|
|
|
).encode("utf-8")
|
|
|
|
)
|
2020-04-11 13:53:50 +00:00
|
|
|
|
|
|
|
elif parts[0] == "SEL":
|
|
|
|
sid = parts[1]
|
|
|
|
if sid == "NUL":
|
|
|
|
if live_session is not None:
|
2020-04-12 21:21:38 +00:00
|
|
|
await live_session.deactivate()
|
2020-04-12 21:35:58 +00:00
|
|
|
live_session = None
|
2020-04-12 21:32:44 +00:00
|
|
|
print("OKAY")
|
2020-04-11 13:53:50 +00:00
|
|
|
writer.write("OKAY\r\n".encode("utf-8"))
|
|
|
|
else:
|
2020-04-12 21:32:44 +00:00
|
|
|
print("WONT no_live_session")
|
|
|
|
writer.write("WONT no_live_session\r\n".encode("utf-8"))
|
2020-04-11 13:53:50 +00:00
|
|
|
else:
|
2020-04-12 17:48:05 +00:00
|
|
|
if sid not in active_sessions:
|
2020-04-12 21:32:44 +00:00
|
|
|
print("WONT no_such_session")
|
|
|
|
writer.write("WONT no_such_session\r\n".encode("utf-8"))
|
2020-04-11 13:53:50 +00:00
|
|
|
else:
|
2020-04-12 17:48:05 +00:00
|
|
|
session = active_sessions[sid]
|
|
|
|
if session is None:
|
2020-04-12 21:32:44 +00:00
|
|
|
print("OOPS no_such_session")
|
|
|
|
writer.write("OOPS no_such_session\r\n".encode("utf-8"))
|
2020-04-12 19:37:43 +00:00
|
|
|
elif live_session is not None and live_session.connection_id == sid:
|
2020-04-12 21:32:44 +00:00
|
|
|
print("WONT already_live")
|
2020-04-12 19:37:43 +00:00
|
|
|
writer.write("WONT already_live\r\n".encode("utf-8"))
|
2020-04-12 17:48:05 +00:00
|
|
|
else:
|
|
|
|
if live_session is not None:
|
2020-04-12 21:21:38 +00:00
|
|
|
await live_session.deactivate()
|
2020-04-12 20:13:33 +00:00
|
|
|
await session.activate()
|
2020-04-12 17:48:05 +00:00
|
|
|
live_session = session
|
2020-04-12 21:32:44 +00:00
|
|
|
print("OKAY")
|
2020-04-12 17:48:05 +00:00
|
|
|
writer.write("OKAY\r\n".encode("utf-8"))
|
2020-04-11 13:53:50 +00:00
|
|
|
else:
|
|
|
|
writer.write("WHAT\r\n".encode("utf-8"))
|
|
|
|
await writer.drain()
|
|
|
|
writer.close()
|
|
|
|
|
|
|
|
|
|
|
|
async def run_telnet_server() -> None:
|
|
|
|
server = await asyncio.start_server(
|
2020-04-12 14:49:50 +00:00
|
|
|
telnet_server, "localhost", int(config.get("ports", "telnet"))
|
2020-04-11 13:53:50 +00:00
|
|
|
)
|
|
|
|
await server.serve_forever()
|
|
|
|
|
2020-04-03 07:56:52 +00:00
|
|
|
|
2020-03-28 18:16:14 +00:00
|
|
|
jack.activate()
|
2020-04-03 07:56:52 +00:00
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
print("Shittyserver TELNET starting on port {}".format(config.get("ports", "telnet")))
|
2020-04-11 13:53:50 +00:00
|
|
|
asyncio.get_event_loop().run_until_complete(notify_mattserver_about_sessions())
|
2020-03-28 18:16:14 +00:00
|
|
|
|
2020-04-12 14:49:50 +00:00
|
|
|
asyncio.get_event_loop().run_until_complete(
|
|
|
|
asyncio.gather(start_server, run_telnet_server())
|
|
|
|
)
|
2020-03-28 18:16:14 +00:00
|
|
|
asyncio.get_event_loop().run_forever()
|