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
use actix::prelude::*;
use anyhow::Result;
use diesel::{
delete, insert_into,
prelude::*,
r2d2::{ConnectionManager, Pool},
update,
};
use log::debug;
use webapp::{protocol::model::Session, schema::sessions::dsl::*};
pub struct DatabaseExecutor(pub Pool<ConnectionManager<PgConnection>>);
impl Actor for DatabaseExecutor {
type Context = SyncContext<Self>;
}
pub struct CreateSession(pub String);
impl Message for CreateSession {
type Result = Result<Session>;
}
impl Handler<CreateSession> for DatabaseExecutor {
type Result = Result<Session>;
fn handle(&mut self, msg: CreateSession, _: &mut Self::Context) -> Self::Result {
debug!("Creating new session: {}", msg.0);
Ok(insert_into(sessions)
.values(&Session::new(msg.0))
.get_result::<Session>(&self.0.get()?)?)
}
}
pub struct UpdateSession {
pub old_token: String,
pub new_token: String,
}
impl Message for UpdateSession {
type Result = Result<Session>;
}
impl Handler<UpdateSession> for DatabaseExecutor {
type Result = Result<Session>;
fn handle(&mut self, msg: UpdateSession, _: &mut Self::Context) -> Self::Result {
debug!("Updating session: {}", msg.old_token);
Ok(update(sessions.filter(token.eq(&msg.old_token)))
.set(token.eq(&msg.new_token))
.get_result::<Session>(&self.0.get()?)?)
}
}
pub struct DeleteSession(pub String);
impl Message for DeleteSession {
type Result = Result<()>;
}
impl Handler<DeleteSession> for DatabaseExecutor {
type Result = Result<()>;
fn handle(&mut self, msg: DeleteSession, _: &mut Self::Context) -> Self::Result {
debug!("Deleting session: {}", msg.0);
delete(sessions.filter(token.eq(&msg.0))).execute(&self.0.get()?)?;
Ok(())
}
}