aboutsummaryrefslogtreecommitdiff
path: root/session.py
blob: 3c8eeb909be64c2e2ad70d9ae92a3ce28a890276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import os
import secrets
import signal

import psutil
import requests

from vnc import run_vnc, save_password

API_SERVER = "http://127.0.0.1:8000"
REGISTER_URL = API_SERVER + "/app/rwa/api/register/"


class Session:
    def __init__(self):
        self._generate_password()
        self._start_vnc()
        self._register_session()

    @property
    def pid(self) -> int:
        return self.vnc_pid

    @property
    def port(self) -> int:
        return self.ws_port

    def _generate_password(self):
        """Generate password for x11vnc and save it."""
        self.password = secrets.token_urlsafe(20)
        self.pw_filename = save_password(self.password)

    def _start_vnc(self):
        """Start x11vnc server."""
        process_info = run_vnc(self.pw_filename)

        self.vnc_pid = process_info["vnc"]["pid"]
        self.vnc_port = process_info["vnc"]["port"]
        self.ws_pid = process_info["ws"]["pid"]
        self.ws_port = process_info["ws"]["port"]

    def _register_session(self):
        """Register session in RWA."""
        r = requests.post(
            REGISTER_URL,
            json={
                "port": self.ws_port,
                "password": self.password,
                "pid": self.vnc_pid,
            },
        )
        print(r)
        self.meta = r.json()
        self.session_id = self.meta["session_id"]
        self.web_url = self.meta["url"]
        self.api_token = self.meta["token"]
        self.pin = self.meta["pin"]

    def stop(self):
        """Stop session and clean up."""
        # Kill VNC
        if self.vnc_pid in psutil.pids():
            print("Kill VNC.")
            os.kill(self.vnc_pid, signal.SIGTERM)

        # Kill websockify
        if self.ws_pid in psutil.pids():
            print("Kill websockify.")
            os.kill(self.ws_pid, signal.SIGTERM)

        # Delete PW file
        if os.path.exists(self.pw_filename):
            print("Delete password file")
            os.remove(self.pw_filename)

        # Delete self
        del self

    @property
    def vnc_process_running(self):
        """Check if the VNC process is still running."""
        if self.vnc_pid in psutil.pids():
            p = psutil.Process(self.vnc_pid)
            if p.status() == "zombie":
                return False
            return True
        return False

    @property
    def client_meta(self):
        return {"id": self.pid, "url": self.web_url, "pin": self.pin}