2018-05-19 09:39:59 +02:00
|
|
|
use diesel::{
|
|
|
|
pg::PgConnection,
|
2018-06-23 18:36:11 +02:00
|
|
|
r2d2::{ConnectionManager, Pool, PooledConnection}
|
2018-05-19 09:39:59 +02:00
|
|
|
};
|
|
|
|
use rocket::{Request, State, Outcome, http::Status, request::{self, FromRequest}};
|
2018-04-24 11:21:39 +02:00
|
|
|
use std::ops::Deref;
|
2018-04-22 15:35:37 +02:00
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
pub type PgPool = Pool<ConnectionManager<PgConnection>>;
|
2018-06-20 20:22:34 +02:00
|
|
|
|
2018-04-22 15:35:37 +02:00
|
|
|
// From rocket documentation
|
|
|
|
|
|
|
|
// Connection request guard type: a wrapper around an r2d2 pooled connection.
|
|
|
|
pub struct DbConn(pub PooledConnection<ConnectionManager<PgConnection>>);
|
|
|
|
|
|
|
|
/// Attempts to retrieve a single connection from the managed database pool. If
|
|
|
|
/// no pool is currently managed, fails with an `InternalServerError` status. If
|
|
|
|
/// no connections are available, fails with a `ServiceUnavailable` status.
|
|
|
|
impl<'a, 'r> FromRequest<'a, 'r> for DbConn {
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn from_request(request: &'a Request<'r>) -> request::Outcome<Self, Self::Error> {
|
2018-06-20 20:22:34 +02:00
|
|
|
let pool = request.guard::<State<PgPool>>()?;
|
2018-04-22 15:35:37 +02:00
|
|
|
match pool.get() {
|
|
|
|
Ok(conn) => Outcome::Success(DbConn(conn)),
|
|
|
|
Err(_) => Outcome::Failure((Status::ServiceUnavailable, ()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
// For the convenience of using an &DbConn as an &Connection.
|
2018-04-22 15:35:37 +02:00
|
|
|
impl Deref for DbConn {
|
|
|
|
type Target = PgConnection;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|