aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-10-01 22:04:47 +0200
committerHarald Eilertsen <haraldei@anduin.net>2017-10-01 22:04:47 +0200
commit370790ab51a542cf9b56d21548451c84e741701e (patch)
treee0f3dc621020f6043337548ec2cf6385a366de9e
parente44bd988930babed7de59d78ad570b1b0a6e1cf0 (diff)
downloadrocket-blog-370790ab51a542cf9b56d21548451c84e741701e.tar.gz
rocket-blog-370790ab51a542cf9b56d21548451c84e741701e.tar.bz2
rocket-blog-370790ab51a542cf9b56d21548451c84e741701e.zip
Move database setup to lib.rs.
-rw-r--r--src/lib.rs27
-rw-r--r--src/main.rs30
2 files changed, 29 insertions, 28 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..5152ae5
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,27 @@
+#[macro_use]
+extern crate diesel;
+#[macro_use]
+extern crate diesel_codegen;
+extern crate dotenv;
+extern crate r2d2_diesel;
+extern crate r2d2;
+
+use diesel::pg::PgConnection;
+use r2d2_diesel::ConnectionManager;
+use dotenv::dotenv;
+use std::env;
+
+// An alias to the type for a pool of Diesel PostgreSql connections.
+type Pool = r2d2::Pool<ConnectionManager<PgConnection>>;
+
+/// Initializes a database pool.
+pub fn init_db_pool() -> Pool {
+ dotenv().ok();
+
+ let config = r2d2::Config::default();
+ let dburl = env::var("DATABASE_URL")
+ .expect("DATABASE_URL environment variable must be set");
+
+ let manager = ConnectionManager::<PgConnection>::new(dburl);
+ r2d2::Pool::new(config, manager).expect("db pool")
+}
diff --git a/src/main.rs b/src/main.rs
index 9e29a52..d9747c9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,33 +2,7 @@
#![plugin(rocket_codegen)]
extern crate rocket;
-#[macro_use]
-extern crate diesel;
-#[macro_use]
-extern crate diesel_codegen;
-extern crate dotenv;
-extern crate r2d2_diesel;
-extern crate r2d2;
-
-use diesel::pg::PgConnection;
-use r2d2_diesel::ConnectionManager;
-use dotenv::dotenv;
-use std::env;
-
-// An alias to the type for a pool of Diesel PostgreSql connections.
-type Pool = r2d2::Pool<ConnectionManager<PgConnection>>;
-
-/// Initializes a database pool.
-fn init_pool() -> Pool {
- dotenv().ok();
-
- let config = r2d2::Config::default();
- let dburl = env::var("DATABASE_URL")
- .expect("DATABASE_URL environment variable must be set");
-
- let manager = ConnectionManager::<PgConnection>::new(dburl);
- r2d2::Pool::new(config, manager).expect("db pool")
-}
+extern crate rocket_blog;
#[get("/")]
fn index() -> &'static str {
@@ -37,7 +11,7 @@ fn index() -> &'static str {
fn main() {
rocket::ignite()
- .manage(init_pool())
+ .manage(rocket_blog::init_db_pool())
.mount("/", routes![index])
.launch();
}