2018-04-30 19:37:19 +00:00
|
|
|
#![feature(plugin, custom_derive, iterator_find_map)]
|
2018-04-22 13:35:37 +00:00
|
|
|
#![plugin(rocket_codegen)]
|
|
|
|
|
2018-05-13 14:39:55 +00:00
|
|
|
extern crate array_tool;
|
2018-04-29 15:40:10 +00:00
|
|
|
extern crate base64;
|
2018-04-24 09:21:39 +00:00
|
|
|
extern crate bcrypt;
|
2018-04-29 15:40:10 +00:00
|
|
|
extern crate chrono;
|
2018-04-24 09:21:39 +00:00
|
|
|
extern crate heck;
|
2018-04-29 15:40:10 +00:00
|
|
|
extern crate hex;
|
2018-04-22 13:35:37 +00:00
|
|
|
#[macro_use]
|
2018-05-04 15:18:00 +00:00
|
|
|
extern crate hyper;
|
|
|
|
#[macro_use]
|
2018-04-22 13:35:37 +00:00
|
|
|
extern crate diesel;
|
|
|
|
extern crate dotenv;
|
2018-05-02 11:53:42 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2018-04-29 15:40:10 +00:00
|
|
|
extern crate openssl;
|
2018-04-30 18:08:44 +00:00
|
|
|
extern crate reqwest;
|
2018-04-22 13:35:37 +00:00
|
|
|
extern crate rocket;
|
|
|
|
extern crate rocket_contrib;
|
2018-04-24 14:52:47 +00:00
|
|
|
extern crate serde;
|
|
|
|
#[macro_use]
|
2018-05-01 11:48:19 +00:00
|
|
|
extern crate serde_derive;
|
|
|
|
#[macro_use]
|
2018-04-23 15:09:05 +00:00
|
|
|
extern crate serde_json;
|
2018-05-01 18:02:29 +00:00
|
|
|
extern crate url;
|
2018-04-22 13:35:37 +00:00
|
|
|
|
|
|
|
use diesel::pg::PgConnection;
|
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use dotenv::dotenv;
|
|
|
|
use rocket_contrib::Template;
|
2018-04-24 09:21:39 +00:00
|
|
|
use std::env;
|
2018-04-22 13:35:37 +00:00
|
|
|
|
2018-04-23 11:57:14 +00:00
|
|
|
mod activity_pub;
|
2018-04-22 13:35:37 +00:00
|
|
|
mod db_conn;
|
|
|
|
mod models;
|
|
|
|
mod schema;
|
|
|
|
mod routes;
|
2018-04-23 10:54:37 +00:00
|
|
|
mod utils;
|
2018-04-22 13:35:37 +00:00
|
|
|
|
2018-05-02 11:53:42 +00:00
|
|
|
lazy_static! {
|
|
|
|
pub static ref BASE_URL: String = env::var("BASE_URL")
|
|
|
|
.unwrap_or(format!("127.0.0.1:{}", env::var("ROCKET_PORT").unwrap_or(String::from("8000"))));
|
|
|
|
|
|
|
|
pub static ref DB_URL: String = env::var("DB_URL")
|
2018-05-02 12:47:46 +00:00
|
|
|
.unwrap_or(format!("postgres://plume:plume@localhost/{}", env::var("DB_NAME").unwrap_or(String::from("plume"))));
|
2018-05-02 11:53:42 +00:00
|
|
|
}
|
|
|
|
|
2018-04-22 13:35:37 +00:00
|
|
|
type PgPool = Pool<ConnectionManager<PgConnection>>;
|
|
|
|
|
|
|
|
/// Initializes a database pool.
|
|
|
|
fn init_pool() -> PgPool {
|
|
|
|
dotenv().ok();
|
|
|
|
|
2018-05-02 11:53:42 +00:00
|
|
|
let manager = ConnectionManager::<PgConnection>::new(DB_URL.as_str());
|
|
|
|
Pool::new(manager).expect("DB pool error")
|
2018-04-22 13:35:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
rocket::ignite()
|
|
|
|
.mount("/", routes![
|
2018-05-10 18:01:16 +00:00
|
|
|
routes::static_files,
|
|
|
|
|
2018-04-24 08:35:45 +00:00
|
|
|
routes::well_known::host_meta,
|
2018-04-24 11:38:43 +00:00
|
|
|
routes::well_known::webfinger,
|
2018-04-24 08:35:45 +00:00
|
|
|
|
2018-04-29 17:50:46 +00:00
|
|
|
routes::instance::index,
|
2018-04-22 13:35:37 +00:00
|
|
|
routes::instance::configure,
|
2018-04-22 18:13:12 +00:00
|
|
|
routes::instance::post_config,
|
|
|
|
|
2018-05-13 13:35:55 +00:00
|
|
|
routes::notifications::notifications,
|
|
|
|
|
2018-04-23 09:52:44 +00:00
|
|
|
routes::user::me,
|
2018-04-22 18:13:12 +00:00
|
|
|
routes::user::details,
|
2018-05-13 11:53:58 +00:00
|
|
|
routes::user::followers,
|
2018-05-12 15:30:14 +00:00
|
|
|
routes::user::edit,
|
|
|
|
routes::user::update,
|
2018-05-01 19:57:30 +00:00
|
|
|
routes::user::follow,
|
2018-04-24 12:31:02 +00:00
|
|
|
routes::user::activity_details,
|
2018-04-29 18:01:42 +00:00
|
|
|
routes::user::outbox,
|
2018-05-01 14:00:29 +00:00
|
|
|
routes::user::inbox,
|
2018-05-13 11:53:58 +00:00
|
|
|
routes::user::ap_followers,
|
2018-04-22 18:13:12 +00:00
|
|
|
routes::user::new,
|
|
|
|
routes::user::create,
|
2018-04-23 09:52:44 +00:00
|
|
|
|
|
|
|
routes::session::new,
|
2018-04-23 10:54:37 +00:00
|
|
|
routes::session::create,
|
2018-04-23 11:13:49 +00:00
|
|
|
routes::session::delete,
|
2018-04-23 10:54:37 +00:00
|
|
|
|
|
|
|
routes::blogs::details,
|
2018-04-24 12:31:02 +00:00
|
|
|
routes::blogs::activity_details,
|
2018-04-29 17:49:56 +00:00
|
|
|
routes::blogs::outbox,
|
2018-04-23 10:54:37 +00:00
|
|
|
routes::blogs::new,
|
|
|
|
routes::blogs::create,
|
2018-04-23 14:25:39 +00:00
|
|
|
|
|
|
|
routes::posts::details,
|
2018-05-04 11:09:08 +00:00
|
|
|
routes::posts::activity_details,
|
2018-04-23 14:25:39 +00:00
|
|
|
routes::posts::new,
|
|
|
|
routes::posts::new_auth,
|
2018-05-10 09:44:57 +00:00
|
|
|
routes::posts::create,
|
|
|
|
|
|
|
|
routes::comments::new,
|
2018-05-10 16:38:03 +00:00
|
|
|
routes::comments::create,
|
|
|
|
|
|
|
|
routes::likes::create
|
2018-04-22 13:35:37 +00:00
|
|
|
])
|
|
|
|
.manage(init_pool())
|
|
|
|
.attach(Template::fairing())
|
|
|
|
.launch();
|
|
|
|
}
|