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
use crate::types::{
AuthorizationStateWaitCode, AuthorizationStateWaitEncryptionKey,
AuthorizationStateWaitOtherDeviceConfirmation, AuthorizationStateWaitPassword,
AuthorizationStateWaitPhoneNumber, AuthorizationStateWaitRegistration,
};
use async_trait::async_trait;
use std::io;
use std::sync::Arc;
use tokio::sync::Mutex;
#[async_trait]
pub trait AuthStateHandler {
async fn handle_other_device_confirmation(
&self,
wait_device_confirmation: &AuthorizationStateWaitOtherDeviceConfirmation,
) {
println!(
"other device confirmation link: {}",
wait_device_confirmation.link()
);
}
async fn handle_wait_code(&self, wait_code: &AuthorizationStateWaitCode) -> String;
async fn handle_encryption_key(
&self,
wait_encryption_key: &AuthorizationStateWaitEncryptionKey,
) -> String;
async fn handle_wait_password(&self, wait_password: &AuthorizationStateWaitPassword) -> String;
async fn handle_wait_phone_number(
&self,
wait_phone_number: &AuthorizationStateWaitPhoneNumber,
) -> String;
async fn handle_wait_registration(
&self,
wait_registration: &AuthorizationStateWaitRegistration,
) -> (String, String);
}
#[derive(Debug, Clone)]
pub struct ConsoleAuthStateHandler;
impl Default for ConsoleAuthStateHandler {
fn default() -> Self {
Self::new()
}
}
impl ConsoleAuthStateHandler {
pub fn new() -> Self {
Self
}
fn wait_input() -> String {
let mut input = String::new();
match io::stdin().read_line(&mut input) {
Ok(_) => input.trim().to_string(),
Err(e) => panic!("Can not get input value: {:?}", e),
}
}
}
#[async_trait]
impl AuthStateHandler for ConsoleAuthStateHandler {
async fn handle_wait_code(&self, _wait_code: &AuthorizationStateWaitCode) -> String {
println!("waiting for auth code");
ConsoleAuthStateHandler::wait_input()
}
async fn handle_encryption_key(
&self,
_wait_encryption_key: &AuthorizationStateWaitEncryptionKey,
) -> String {
println!("waiting for encryption key");
ConsoleAuthStateHandler::wait_input()
}
async fn handle_wait_password(
&self,
_wait_password: &AuthorizationStateWaitPassword,
) -> String {
println!("waiting for password");
ConsoleAuthStateHandler::wait_input()
}
async fn handle_wait_phone_number(
&self,
_wait_phone_number: &AuthorizationStateWaitPhoneNumber,
) -> String {
println!("waiting for phone number");
ConsoleAuthStateHandler::wait_input()
}
async fn handle_wait_registration(
&self,
_wait_registration: &AuthorizationStateWaitRegistration,
) -> (String, String) {
loop {
println!("waiting for first_name and second_name separated by comma");
let inp: String = ConsoleAuthStateHandler::wait_input();
if let Some((f, l)) = split_string(inp, ',') {
return (f, l);
}
}
}
}
#[derive(Debug, Clone)]
pub struct SignalAuthStateHandler {
rec: Arc<Mutex<tokio::sync::mpsc::Receiver<String>>>,
}
impl SignalAuthStateHandler {
pub fn new(receiver: tokio::sync::mpsc::Receiver<String>) -> Self {
Self {
rec: Arc::new(Mutex::new(receiver)),
}
}
async fn wait_signal(&self) -> String {
let mut guard = self.rec.lock().await;
guard.recv().await.expect("no signals received")
}
}
#[async_trait]
impl AuthStateHandler for SignalAuthStateHandler {
async fn handle_wait_code(&self, _: &AuthorizationStateWaitCode) -> String {
log::info!("waiting for auth code");
self.wait_signal().await
}
async fn handle_encryption_key(&self, _: &AuthorizationStateWaitEncryptionKey) -> String {
log::info!("waiting for encryption key");
let f = self.wait_signal().await;
log::info!("get encryption key");
f
}
async fn handle_wait_password(&self, _: &AuthorizationStateWaitPassword) -> String {
log::info!("waiting for password");
self.wait_signal().await
}
async fn handle_wait_phone_number(&self, _: &AuthorizationStateWaitPhoneNumber) -> String {
log::info!("waiting for phone number");
self.wait_signal().await
}
async fn handle_wait_registration(
&self,
_: &AuthorizationStateWaitRegistration,
) -> (String, String) {
loop {
log::info!("waiting for first name and last name separated by comma");
let inp = self.wait_signal().await;
if let Some((f, l)) = split_string(inp, ',') {
return (f, l);
}
}
}
}
fn split_string(input: String, sep: char) -> Option<(String, String)> {
let found: Vec<&str> = input.splitn(2, |c| c == sep).collect();
if let 2 = found.len() {
let f = found.get(0).unwrap().trim();
let s = found.get(1).unwrap().trim();
if !f.is_empty() && !s.is_empty() {
return Some((f.to_string(), s.to_string()));
}
}
None
}