2018-09-08 01:11:27 +02:00
|
|
|
#![feature(custom_derive, plugin, decl_macro)]
|
2018-04-22 15:35:37 +02:00
|
|
|
#![plugin(rocket_codegen)]
|
2018-09-02 22:55:42 +02:00
|
|
|
|
2018-06-10 13:13:07 +02:00
|
|
|
extern crate activitypub;
|
2018-09-01 22:08:26 +02:00
|
|
|
extern crate atom_syndication;
|
2018-09-25 21:45:32 +02:00
|
|
|
extern crate canapi;
|
2018-09-10 20:38:19 +02:00
|
|
|
extern crate chrono;
|
2018-06-19 15:08:44 +02:00
|
|
|
extern crate colored;
|
2018-06-23 18:36:11 +02:00
|
|
|
extern crate diesel;
|
|
|
|
extern crate dotenv;
|
2018-05-16 20:20:44 +02:00
|
|
|
extern crate failure;
|
2018-06-15 15:08:38 +02:00
|
|
|
extern crate gettextrs;
|
2018-09-02 22:55:42 +02:00
|
|
|
extern crate guid_create;
|
2018-04-24 11:21:39 +02:00
|
|
|
extern crate heck;
|
2018-09-02 22:55:42 +02:00
|
|
|
extern crate multipart;
|
2018-09-25 21:45:32 +02:00
|
|
|
extern crate plume_api;
|
2018-06-23 18:36:11 +02:00
|
|
|
extern crate plume_common;
|
|
|
|
extern crate plume_models;
|
2018-09-08 01:11:27 +02:00
|
|
|
#[macro_use]
|
2018-04-22 15:35:37 +02:00
|
|
|
extern crate rocket;
|
|
|
|
extern crate rocket_contrib;
|
2018-06-24 18:58:57 +02:00
|
|
|
extern crate rocket_csrf;
|
2018-06-17 16:28:44 +02:00
|
|
|
extern crate rocket_i18n;
|
2018-06-19 17:14:52 +02:00
|
|
|
extern crate rpassword;
|
2018-07-06 19:29:36 +02:00
|
|
|
extern crate serde;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2018-05-01 13:48:19 +02:00
|
|
|
#[macro_use]
|
2018-04-23 17:09:05 +02:00
|
|
|
extern crate serde_json;
|
2018-09-29 16:45:27 +02:00
|
|
|
extern crate serde_qs;
|
2018-06-29 14:22:43 +02:00
|
|
|
extern crate validator;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate validator_derive;
|
2018-06-18 23:50:40 +02:00
|
|
|
extern crate webfinger;
|
2018-07-26 17:32:52 +02:00
|
|
|
extern crate workerpool;
|
2018-04-22 15:35:37 +02:00
|
|
|
|
2018-10-06 13:06:02 +02:00
|
|
|
use diesel::r2d2::ConnectionManager;
|
2018-09-03 20:53:20 +02:00
|
|
|
use rocket::State;
|
2018-04-22 15:35:37 +02:00
|
|
|
use rocket_contrib::Template;
|
2018-06-24 18:58:57 +02:00
|
|
|
use rocket_csrf::CsrfFairingBuilder;
|
2018-10-06 13:06:02 +02:00
|
|
|
use plume_models::{DB_URL, Connection, db_conn::PgPool};
|
2018-07-26 17:32:52 +02:00
|
|
|
use workerpool::{Pool, thunk::ThunkWorker};
|
2018-04-22 15:35:37 +02:00
|
|
|
|
2018-09-19 16:49:34 +02:00
|
|
|
mod api;
|
2018-06-23 18:36:11 +02:00
|
|
|
mod inbox;
|
2018-04-22 15:35:37 +02:00
|
|
|
mod routes;
|
2018-05-02 13:53:42 +02:00
|
|
|
|
2018-09-03 20:53:20 +02:00
|
|
|
type Worker<'a> = State<'a, Pool<ThunkWorker<()>>>;
|
|
|
|
|
2018-10-06 13:06:02 +02:00
|
|
|
/// Initializes a database pool.
|
|
|
|
fn init_pool() -> Option<PgPool> {
|
|
|
|
dotenv::dotenv().ok();
|
|
|
|
|
|
|
|
let manager = ConnectionManager::<Connection>::new(DB_URL.as_str());
|
|
|
|
PgPool::new(manager).ok()
|
|
|
|
}
|
|
|
|
|
2018-04-22 15:35:37 +02:00
|
|
|
fn main() {
|
2018-10-06 13:06:02 +02:00
|
|
|
let pool = init_pool();
|
2018-04-22 15:35:37 +02:00
|
|
|
rocket::ignite()
|
|
|
|
.mount("/", routes![
|
2018-07-20 18:42:35 +02:00
|
|
|
routes::blogs::paginated_details,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::blogs::details,
|
2018-06-17 17:26:15 +02:00
|
|
|
routes::blogs::activity_details,
|
|
|
|
routes::blogs::outbox,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::blogs::new,
|
2018-06-04 21:57:03 +02:00
|
|
|
routes::blogs::new_auth,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::blogs::create,
|
2018-09-01 22:08:26 +02:00
|
|
|
routes::blogs::atom_feed,
|
2018-05-10 20:01:16 +02:00
|
|
|
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::comments::create,
|
2018-09-09 17:08:53 +02:00
|
|
|
routes::comments::activity_pub,
|
2018-04-24 10:35:45 +02:00
|
|
|
|
2018-04-29 19:50:46 +02:00
|
|
|
routes::instance::index,
|
2018-09-04 21:56:27 +02:00
|
|
|
routes::instance::paginated_local,
|
|
|
|
routes::instance::local,
|
2018-09-05 16:21:50 +02:00
|
|
|
routes::instance::paginated_feed,
|
|
|
|
routes::instance::feed,
|
2018-09-05 16:37:49 +02:00
|
|
|
routes::instance::paginated_federated,
|
|
|
|
routes::instance::federated,
|
2018-07-27 19:05:36 +02:00
|
|
|
routes::instance::admin,
|
2018-09-08 20:54:09 +02:00
|
|
|
routes::instance::admin_instances,
|
|
|
|
routes::instance::admin_instances_paginated,
|
2018-09-09 12:25:55 +02:00
|
|
|
routes::instance::admin_users,
|
|
|
|
routes::instance::admin_users_paginated,
|
|
|
|
routes::instance::ban,
|
2018-09-08 21:07:55 +02:00
|
|
|
routes::instance::toggle_block,
|
2018-07-27 19:05:36 +02:00
|
|
|
routes::instance::update_settings,
|
2018-05-13 19:39:18 +02:00
|
|
|
routes::instance::shared_inbox,
|
2018-06-10 21:33:42 +02:00
|
|
|
routes::instance::nodeinfo,
|
2018-09-01 18:39:40 +02:00
|
|
|
routes::instance::about,
|
2018-09-10 16:08:22 +02:00
|
|
|
routes::instance::web_manifest,
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::likes::create,
|
2018-06-04 21:57:03 +02:00
|
|
|
routes::likes::create_auth,
|
2018-05-13 19:41:49 +02:00
|
|
|
|
2018-09-02 22:55:42 +02:00
|
|
|
routes::medias::list,
|
|
|
|
routes::medias::new,
|
|
|
|
routes::medias::upload,
|
|
|
|
routes::medias::details,
|
2018-09-02 23:10:15 +02:00
|
|
|
routes::medias::delete,
|
2018-09-03 14:04:17 +02:00
|
|
|
routes::medias::set_avatar,
|
2018-09-02 22:55:42 +02:00
|
|
|
routes::medias::static_files,
|
|
|
|
|
2018-07-25 15:33:54 +02:00
|
|
|
routes::notifications::paginated_notifications,
|
2018-05-13 15:35:55 +02:00
|
|
|
routes::notifications::notifications,
|
2018-06-04 21:57:03 +02:00
|
|
|
routes::notifications::notifications_auth,
|
2018-05-13 15:35:55 +02:00
|
|
|
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::posts::details,
|
2018-06-21 16:00:25 +02:00
|
|
|
routes::posts::details_response,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::posts::activity_details,
|
2018-09-07 19:51:53 +02:00
|
|
|
routes::posts::edit,
|
|
|
|
routes::posts::update,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::posts::new,
|
|
|
|
routes::posts::new_auth,
|
|
|
|
routes::posts::create,
|
2018-09-01 17:28:47 +02:00
|
|
|
routes::posts::delete,
|
2018-05-13 19:41:49 +02:00
|
|
|
|
2018-05-19 11:51:10 +02:00
|
|
|
routes::reshares::create,
|
2018-06-04 21:57:03 +02:00
|
|
|
routes::reshares::create_auth,
|
2018-05-19 11:51:10 +02:00
|
|
|
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::session::new,
|
2018-06-04 20:21:43 +02:00
|
|
|
routes::session::new_message,
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::session::create,
|
|
|
|
routes::session::delete,
|
|
|
|
|
|
|
|
routes::static_files,
|
|
|
|
|
2018-09-06 14:06:04 +02:00
|
|
|
routes::tags::tag,
|
|
|
|
routes::tags::paginated_tag,
|
|
|
|
|
2018-04-23 11:52:44 +02:00
|
|
|
routes::user::me,
|
2018-04-22 20:13:12 +02:00
|
|
|
routes::user::details,
|
2018-06-10 19:55:08 +02:00
|
|
|
routes::user::dashboard,
|
|
|
|
routes::user::dashboard_auth,
|
2018-07-25 15:50:29 +02:00
|
|
|
routes::user::followers_paginated,
|
2018-06-17 17:26:15 +02:00
|
|
|
routes::user::followers,
|
2018-05-12 17:30:14 +02:00
|
|
|
routes::user::edit,
|
2018-06-07 10:39:22 +02:00
|
|
|
routes::user::edit_auth,
|
2018-05-12 17:30:14 +02:00
|
|
|
routes::user::update,
|
2018-09-09 21:49:24 +02:00
|
|
|
routes::user::delete,
|
2018-05-01 21:57:30 +02:00
|
|
|
routes::user::follow,
|
2018-06-07 10:39:22 +02:00
|
|
|
routes::user::follow_auth,
|
2018-04-24 14:31:02 +02:00
|
|
|
routes::user::activity_details,
|
2018-04-29 20:01:42 +02:00
|
|
|
routes::user::outbox,
|
2018-05-01 16:00:29 +02:00
|
|
|
routes::user::inbox,
|
2018-05-13 13:53:58 +02:00
|
|
|
routes::user::ap_followers,
|
2018-04-22 20:13:12 +02:00
|
|
|
routes::user::new,
|
|
|
|
routes::user::create,
|
2018-09-01 22:08:26 +02:00
|
|
|
routes::user::atom_feed,
|
2018-04-23 11:52:44 +02:00
|
|
|
|
2018-05-13 19:41:49 +02:00
|
|
|
routes::well_known::host_meta,
|
2018-06-10 21:33:42 +02:00
|
|
|
routes::well_known::nodeinfo,
|
2018-06-24 18:58:57 +02:00
|
|
|
routes::well_known::webfinger,
|
|
|
|
|
|
|
|
routes::errors::csrf_violation
|
2018-04-22 15:35:37 +02:00
|
|
|
])
|
2018-09-19 16:49:34 +02:00
|
|
|
.mount("/api/v1", routes![
|
2018-09-25 21:45:32 +02:00
|
|
|
api::posts::get,
|
2018-09-29 16:45:27 +02:00
|
|
|
api::posts::list,
|
2018-09-19 16:49:34 +02:00
|
|
|
])
|
2018-06-18 17:59:49 +02:00
|
|
|
.catch(catchers![
|
|
|
|
routes::errors::not_found,
|
|
|
|
routes::errors::server_error
|
|
|
|
])
|
2018-06-19 15:08:44 +02:00
|
|
|
.manage(pool)
|
2018-07-26 17:32:52 +02:00
|
|
|
.manage(Pool::<ThunkWorker<()>>::new(4))
|
2018-06-16 19:39:22 +02:00
|
|
|
.attach(Template::custom(|engines| {
|
2018-06-17 16:28:44 +02:00
|
|
|
rocket_i18n::tera(&mut engines.tera);
|
2018-06-16 19:39:22 +02:00
|
|
|
}))
|
2018-06-17 16:28:44 +02:00
|
|
|
.attach(rocket_i18n::I18n::new("plume"))
|
2018-09-09 11:27:03 +02:00
|
|
|
.attach(CsrfFairingBuilder::new()
|
|
|
|
.set_default_target("/csrf-violation?target=<uri>".to_owned(), rocket::http::Method::Post)
|
|
|
|
.add_exceptions(vec![
|
|
|
|
("/inbox".to_owned(), "/inbox".to_owned(), rocket::http::Method::Post),
|
|
|
|
("/@/<name>/inbox".to_owned(), "/@/<name>/inbox".to_owned(), rocket::http::Method::Post),
|
2018-09-30 11:56:12 +02:00
|
|
|
("/login".to_owned(), "/login".to_owned(), rocket::http::Method::Post),
|
2018-10-02 11:49:11 +02:00
|
|
|
("/users/new".to_owned(), "/users/new".to_owned(), rocket::http::Method::Post),
|
2018-09-09 11:27:03 +02:00
|
|
|
])
|
|
|
|
.finalize().unwrap())
|
2018-04-22 15:35:37 +02:00
|
|
|
.launch();
|
|
|
|
}
|