aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm-web/src/model.rs
blob: 8a88660007a7d2fe60bd54c6fcbef9d670cab90d (plain) (blame)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
use crate::prelude::*;

struct WatchConn {
    ws: WebSocket,
    term: vt100::Parser,
    received_data: bool,
}

impl WatchConn {
    fn new(ws: WebSocket) -> Self {
        Self {
            ws,
            term: vt100::Parser::default(),
            received_data: false,
        }
    }
}

impl Drop for WatchConn {
    fn drop(&mut self) {
        self.ws.close().unwrap();
    }
}

#[allow(clippy::large_enum_variant)]
enum State {
    Login,
    List(Vec<crate::protocol::Session>),
    Watch(WatchConn),
}

pub(crate) struct Model {
    config: crate::config::Config,
    state: State,
}

impl Model {
    pub(crate) fn new(
        config: crate::config::Config,
        orders: &mut impl Orders<crate::Msg>,
    ) -> Self {
        let logged_in = config.username.is_some();
        let self_ = Self {
            config,
            state: State::Login,
        };
        if logged_in {
            self_.list(orders);
        }
        self_
    }

    pub(crate) fn update(
        &mut self,
        msg: crate::Msg,
        orders: &mut impl Orders<crate::Msg>,
    ) {
        match msg {
            crate::Msg::Login(username) => {
                log::debug!("login for username {}", username);
                self.login(&username, orders);
            }
            crate::Msg::LoggedIn(response) => match response {
                Ok(response) => {
                    log::debug!("logged in as {}", response.username);
                    self.config.username = Some(response.username);
                    orders.send_msg(crate::Msg::Refresh);
                }
                Err(e) => {
                    log::error!("error logging in: {:?}", e);
                }
            },
            crate::Msg::Refresh => {
                log::debug!("refreshing");
                self.list(orders);
            }
            crate::Msg::List(sessions) => match sessions {
                Ok(sessions) => {
                    log::debug!("got sessions");
                    self.state = State::List(sessions);
                }
                Err(e) => {
                    log::error!("error getting sessions: {:?}", e);
                }
            },
            crate::Msg::StartWatching(id) => {
                log::debug!("watching {}", id);
                self.watch(&id, orders);
            }
            crate::Msg::Watch(id, event) => match event {
                crate::ws::WebSocketEvent::Connected(_) => {
                    log::info!("{}: connected", id);
                }
                crate::ws::WebSocketEvent::Disconnected(_) => {
                    log::info!("{}: disconnected", id);
                }
                crate::ws::WebSocketEvent::Message(msg) => {
                    log::info!("{}: message: {:?}", id, msg);
                    let json = msg.data().as_string().unwrap();
                    let msg: crate::protocol::Message =
                        serde_json::from_str(&json).unwrap();
                    match msg {
                        crate::protocol::Message::TerminalOutput { data } => {
                            self.process(&data);
                        }
                        crate::protocol::Message::Disconnected => {
                            self.list(orders);
                        }
                        crate::protocol::Message::Resize { size } => {
                            self.set_size(size.rows, size.cols);
                        }
                    }
                }
                crate::ws::WebSocketEvent::Error(e) => {
                    log::error!("{}: error: {:?}", id, e);
                }
            },
            crate::Msg::StopWatching => {
                log::debug!("stop watching");
                self.list(orders);
            }
            crate::Msg::Logout => {
                log::debug!("logout");
                self.logout(orders);
            }
            crate::Msg::LoggedOut(..) => {
                log::debug!("logged out");
                self.config.username = None;
                self.state = State::Login;
            }
        }
    }

    pub(crate) fn logging_in(&self) -> bool {
        if let State::Login = self.state {
            true
        } else {
            false
        }
    }

    pub(crate) fn choosing(&self) -> bool {
        if let State::List(..) = self.state {
            true
        } else {
            false
        }
    }

    pub(crate) fn watching(&self) -> bool {
        if let State::Watch(..) = self.state {
            true
        } else {
            false
        }
    }

    pub(crate) fn username(&self) -> Option<&str> {
        self.config.username.as_ref().map(|s| s.as_str())
    }

    pub(crate) fn sessions(&self) -> &[crate::protocol::Session] {
        if let State::List(sessions) = &self.state {
            sessions
        } else {
            &[]
        }
    }

    pub(crate) fn screen(&self) -> Option<&vt100::Screen> {
        if let State::Watch(conn) = &self.state {
            Some(conn.term.screen())
        } else {
            None
        }
    }

    pub(crate) fn received_data(&self) -> bool {
        if let State::Watch(conn) = &self.state {
            conn.received_data
        } else {
            false
        }
    }

    pub(crate) fn allowed_login_method(
        &self,
        ty: crate::protocol::AuthType,
    ) -> bool {
        self.config.allowed_login_methods.contains(&ty)
    }

    pub(crate) fn oauth_login_url(
        &self,
        ty: crate::protocol::AuthType,
    ) -> Option<&str> {
        self.config.oauth_login_urls.get(&ty).map(|s| s.as_str())
    }

    fn login(&self, username: &str, orders: &mut impl Orders<crate::Msg>) {
        let url = format!(
            "http://{}/login?username={}",
            self.config.public_address, username
        );
        orders.perform_cmd(
            seed::Request::new(url).fetch_json_data(crate::Msg::LoggedIn),
        );
    }

    fn list(&self, orders: &mut impl Orders<crate::Msg>) {
        let url = format!("http://{}/list", self.config.public_address);
        orders.perform_cmd(
            seed::Request::new(url).fetch_json_data(crate::Msg::List),
        );
    }

    fn watch(&mut self, id: &str, orders: &mut impl Orders<crate::Msg>) {
        let url =
            format!("ws://{}/watch?id={}", self.config.public_address, id);
        let ws = crate::ws::connect(&url, id, crate::Msg::Watch, orders);
        self.state = State::Watch(WatchConn::new(ws));
    }

    fn logout(&self, orders: &mut impl Orders<crate::Msg>) {
        let url = format!("http://{}/logout", self.config.public_address);
        orders.perform_cmd(
            seed::Request::new(url).fetch(crate::Msg::LoggedOut),
        );
    }

    fn process(&mut self, bytes: &[u8]) {
        if let State::Watch(conn) = &mut self.state {
            conn.term.process(bytes);
            conn.received_data = true;
        }
    }

    fn set_size(&mut self, rows: u16, cols: u16) {
        if let State::Watch(conn) = &mut self.state {
            conn.term.set_size(rows, cols);
        }
    }
}