2018-12-06 17:54:16 +00:00
|
|
|
#![feature(custom_derive, plugin, decl_macro, proc_macro_hygiene)]
|
2018-09-02 20:55:42 +00:00
|
|
|
|
2018-06-10 11:13:07 +00:00
|
|
|
extern crate activitypub;
|
2018-12-06 17:54:16 +00:00
|
|
|
extern crate askama_escape;
|
2018-09-01 20:08:26 +00:00
|
|
|
extern crate atom_syndication;
|
2018-09-25 19:45:32 +00:00
|
|
|
extern crate canapi;
|
2018-09-10 18:38:19 +00:00
|
|
|
extern crate chrono;
|
2018-06-19 13:08:44 +00:00
|
|
|
extern crate colored;
|
2018-12-02 16:37:51 +00:00
|
|
|
extern crate ctrlc;
|
2018-06-23 16:36:11 +00:00
|
|
|
extern crate diesel;
|
|
|
|
extern crate dotenv;
|
2018-05-16 18:20:44 +00:00
|
|
|
extern crate failure;
|
2018-09-02 20:55:42 +00:00
|
|
|
extern crate guid_create;
|
2018-04-24 09:21:39 +00:00
|
|
|
extern crate heck;
|
2018-09-02 20:55:42 +00:00
|
|
|
extern crate multipart;
|
2018-12-02 16:37:51 +00:00
|
|
|
extern crate num_cpus;
|
2018-09-25 19:45:32 +00:00
|
|
|
extern crate plume_api;
|
2018-06-23 16:36:11 +00:00
|
|
|
extern crate plume_common;
|
|
|
|
extern crate plume_models;
|
2018-09-07 23:11:27 +00:00
|
|
|
#[macro_use]
|
2018-04-22 13:35:37 +00:00
|
|
|
extern crate rocket;
|
|
|
|
extern crate rocket_contrib;
|
2018-06-24 16:58:57 +00:00
|
|
|
extern crate rocket_csrf;
|
2018-12-06 17:54:16 +00:00
|
|
|
#[macro_use]
|
2018-06-17 14:28:44 +00:00
|
|
|
extern crate rocket_i18n;
|
2018-12-02 16:37:51 +00:00
|
|
|
extern crate scheduled_thread_pool;
|
2018-07-06 17:29:36 +00:00
|
|
|
extern crate serde;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2018-05-01 11:48:19 +00:00
|
|
|
#[macro_use]
|
2018-04-23 15:09:05 +00:00
|
|
|
extern crate serde_json;
|
2018-09-29 14:45:27 +00:00
|
|
|
extern crate serde_qs;
|
2018-06-29 12:22:43 +00:00
|
|
|
extern crate validator;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate validator_derive;
|
2018-06-18 21:50:40 +00:00
|
|
|
extern crate webfinger;
|
2018-04-22 13:35:37 +00:00
|
|
|
|
2018-10-06 11:06:02 +00:00
|
|
|
use diesel::r2d2::ConnectionManager;
|
2019-01-27 09:55:22 +00:00
|
|
|
use rocket::{
|
|
|
|
Config, State,
|
|
|
|
config::Limits
|
|
|
|
};
|
2018-06-24 16:58:57 +00:00
|
|
|
use rocket_csrf::CsrfFairingBuilder;
|
2018-12-29 08:36:07 +00:00
|
|
|
use plume_models::{
|
|
|
|
DATABASE_URL, Connection, Error,
|
|
|
|
db_conn::{DbPool, PragmaForeignKey},
|
|
|
|
search::{Searcher as UnmanagedSearcher, SearcherError},
|
|
|
|
};
|
2018-12-02 16:37:51 +00:00
|
|
|
use scheduled_thread_pool::ScheduledThreadPool;
|
2019-01-27 09:55:22 +00:00
|
|
|
use std::env;
|
2018-12-02 16:37:51 +00:00
|
|
|
use std::process::exit;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::time::Duration;
|
2018-04-22 13:35:37 +00:00
|
|
|
|
2018-09-19 14:49:34 +00:00
|
|
|
mod api;
|
2018-06-23 16:36:11 +00:00
|
|
|
mod inbox;
|
2018-12-06 17:54:16 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod template_utils;
|
2018-04-22 13:35:37 +00:00
|
|
|
mod routes;
|
2018-05-02 11:53:42 +00:00
|
|
|
|
2018-12-02 16:37:51 +00:00
|
|
|
type Worker<'a> = State<'a, ScheduledThreadPool>;
|
|
|
|
type Searcher<'a> = State<'a, Arc<UnmanagedSearcher>>;
|
2018-09-03 18:53:20 +00:00
|
|
|
|
2018-10-06 11:06:02 +00:00
|
|
|
/// Initializes a database pool.
|
2018-10-06 11:35:58 +00:00
|
|
|
fn init_pool() -> Option<DbPool> {
|
2018-10-06 11:06:02 +00:00
|
|
|
dotenv::dotenv().ok();
|
|
|
|
|
2018-10-06 18:17:36 +00:00
|
|
|
let manager = ConnectionManager::<Connection>::new(DATABASE_URL.as_str());
|
2018-12-14 22:16:18 +00:00
|
|
|
DbPool::builder()
|
|
|
|
.connection_customizer(Box::new(PragmaForeignKey))
|
|
|
|
.build(manager).ok()
|
2018-10-06 11:06:02 +00:00
|
|
|
}
|
|
|
|
|
2018-04-22 13:35:37 +00:00
|
|
|
fn main() {
|
2018-12-02 16:37:51 +00:00
|
|
|
let dbpool = init_pool().expect("main: database pool initialization error");
|
|
|
|
let workpool = ScheduledThreadPool::with_name("worker {}", num_cpus::get());
|
2018-12-29 08:36:07 +00:00
|
|
|
let searcher = match UnmanagedSearcher::open(&"search_index") {
|
|
|
|
Err(Error::Search(e)) => match e {
|
|
|
|
SearcherError::WriteLockAcquisitionError => panic!(
|
|
|
|
r#"Your search index is locked. Plume can't start. To fix this issue
|
|
|
|
make sure no other Plume instance is started, and run:
|
|
|
|
|
|
|
|
plm search unlock
|
|
|
|
|
|
|
|
Then try to restart Plume.
|
|
|
|
"#),
|
|
|
|
e => Err(e).unwrap()
|
|
|
|
},
|
|
|
|
Err(_) => panic!("Unexpected error while opening search index"),
|
|
|
|
Ok(s) => Arc::new(s)
|
|
|
|
};
|
2018-12-02 16:37:51 +00:00
|
|
|
|
|
|
|
let commiter = searcher.clone();
|
|
|
|
workpool.execute_with_fixed_delay(Duration::from_secs(5), Duration::from_secs(60*30), move || commiter.commit());
|
|
|
|
|
|
|
|
let search_unlocker = searcher.clone();
|
|
|
|
ctrlc::set_handler(move || {
|
|
|
|
search_unlocker.drop_writer();
|
|
|
|
exit(0);
|
|
|
|
}).expect("Error setting Ctrl-c handler");
|
|
|
|
|
2019-01-27 09:55:22 +00:00
|
|
|
let mut config = Config::active().unwrap();
|
|
|
|
config.set_address(env::var("ROCKET_ADDRESS").unwrap_or_else(|_| "localhost".to_owned())).unwrap();
|
|
|
|
config.set_port(env::var("ROCKET_PORT").ok().map(|s| s.parse::<u16>().unwrap()).unwrap_or(7878));
|
|
|
|
let _ = env::var("ROCKET_SECRET_KEY").map(|k| config.set_secret_key(k).unwrap());
|
|
|
|
let form_size = &env::var("FORM_SIZE").unwrap_or_else(|_| "32".to_owned()).parse::<u64>().unwrap();
|
|
|
|
let activity_size = &env::var("ACTIVITY_SIZE").unwrap_or_else(|_| "1024".to_owned()).parse::<u64>().unwrap();
|
|
|
|
config.set_limits(Limits::new()
|
|
|
|
.limit("forms", form_size * 1024)
|
|
|
|
.limit("json", activity_size * 1024));
|
|
|
|
|
|
|
|
rocket::custom(config)
|
2018-04-22 13:35:37 +00:00
|
|
|
.mount("/", routes![
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::blogs::details,
|
2018-06-17 15:26:15 +00:00
|
|
|
routes::blogs::activity_details,
|
|
|
|
routes::blogs::outbox,
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::blogs::new,
|
2018-06-04 19:57:03 +00:00
|
|
|
routes::blogs::new_auth,
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::blogs::create,
|
2018-10-20 13:03:59 +00:00
|
|
|
routes::blogs::delete,
|
2018-09-01 20:08:26 +00:00
|
|
|
routes::blogs::atom_feed,
|
2018-05-10 18:01:16 +00:00
|
|
|
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::comments::create,
|
2018-12-23 10:13:36 +00:00
|
|
|
routes::comments::delete,
|
2018-09-09 15:08:53 +00:00
|
|
|
routes::comments::activity_pub,
|
2018-04-24 08:35:45 +00:00
|
|
|
|
2018-04-29 17:50:46 +00:00
|
|
|
routes::instance::index,
|
2018-09-04 19:56:27 +00:00
|
|
|
routes::instance::local,
|
2018-09-05 14:21:50 +00:00
|
|
|
routes::instance::feed,
|
2018-09-05 14:37:49 +00:00
|
|
|
routes::instance::federated,
|
2018-07-27 17:05:36 +00:00
|
|
|
routes::instance::admin,
|
2018-09-08 18:54:09 +00:00
|
|
|
routes::instance::admin_instances,
|
2018-09-09 10:25:55 +00:00
|
|
|
routes::instance::admin_users,
|
|
|
|
routes::instance::ban,
|
2018-09-08 19:07:55 +00:00
|
|
|
routes::instance::toggle_block,
|
2018-07-27 17:05:36 +00:00
|
|
|
routes::instance::update_settings,
|
2018-05-13 17:39:18 +00:00
|
|
|
routes::instance::shared_inbox,
|
2018-06-10 19:33:42 +00:00
|
|
|
routes::instance::nodeinfo,
|
2018-09-01 16:39:40 +00:00
|
|
|
routes::instance::about,
|
2018-09-10 14:08:22 +00:00
|
|
|
routes::instance::web_manifest,
|
2018-04-22 18:13:12 +00:00
|
|
|
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::likes::create,
|
2018-06-04 19:57:03 +00:00
|
|
|
routes::likes::create_auth,
|
2018-05-13 17:41:49 +00:00
|
|
|
|
2018-09-02 20:55:42 +00:00
|
|
|
routes::medias::list,
|
|
|
|
routes::medias::new,
|
|
|
|
routes::medias::upload,
|
|
|
|
routes::medias::details,
|
2018-09-02 21:10:15 +00:00
|
|
|
routes::medias::delete,
|
2018-09-03 12:04:17 +00:00
|
|
|
routes::medias::set_avatar,
|
2018-09-02 20:55:42 +00:00
|
|
|
|
2018-05-13 13:35:55 +00:00
|
|
|
routes::notifications::notifications,
|
2018-06-04 19:57:03 +00:00
|
|
|
routes::notifications::notifications_auth,
|
2018-05-13 13:35:55 +00:00
|
|
|
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::posts::details,
|
|
|
|
routes::posts::activity_details,
|
2018-09-07 17:51:53 +00:00
|
|
|
routes::posts::edit,
|
|
|
|
routes::posts::update,
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::posts::new,
|
|
|
|
routes::posts::new_auth,
|
|
|
|
routes::posts::create,
|
2018-09-01 15:28:47 +00:00
|
|
|
routes::posts::delete,
|
2018-05-13 17:41:49 +00:00
|
|
|
|
2018-05-19 09:51:10 +00:00
|
|
|
routes::reshares::create,
|
2018-06-04 19:57:03 +00:00
|
|
|
routes::reshares::create_auth,
|
2018-05-19 09:51:10 +00:00
|
|
|
|
2018-12-06 17:54:16 +00:00
|
|
|
routes::search::search,
|
2018-12-02 16:37:51 +00:00
|
|
|
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::session::new,
|
|
|
|
routes::session::create,
|
|
|
|
routes::session::delete,
|
|
|
|
|
|
|
|
routes::static_files,
|
|
|
|
|
2018-09-06 12:06:04 +00:00
|
|
|
routes::tags::tag,
|
|
|
|
|
2018-04-23 09:52:44 +00:00
|
|
|
routes::user::me,
|
2018-04-22 18:13:12 +00:00
|
|
|
routes::user::details,
|
2018-06-10 17:55:08 +00:00
|
|
|
routes::user::dashboard,
|
|
|
|
routes::user::dashboard_auth,
|
2018-06-17 15:26:15 +00:00
|
|
|
routes::user::followers,
|
2018-05-12 15:30:14 +00:00
|
|
|
routes::user::edit,
|
2018-06-07 08:39:22 +00:00
|
|
|
routes::user::edit_auth,
|
2018-05-12 15:30:14 +00:00
|
|
|
routes::user::update,
|
2018-09-09 19:49:24 +00:00
|
|
|
routes::user::delete,
|
2018-05-01 19:57:30 +00:00
|
|
|
routes::user::follow,
|
2018-06-07 08:39:22 +00:00
|
|
|
routes::user::follow_auth,
|
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-09-01 20:08:26 +00:00
|
|
|
routes::user::atom_feed,
|
2018-04-23 09:52:44 +00:00
|
|
|
|
2018-05-13 17:41:49 +00:00
|
|
|
routes::well_known::host_meta,
|
2018-06-10 19:33:42 +00:00
|
|
|
routes::well_known::nodeinfo,
|
2018-06-24 16:58:57 +00:00
|
|
|
routes::well_known::webfinger,
|
|
|
|
|
|
|
|
routes::errors::csrf_violation
|
2018-04-22 13:35:37 +00:00
|
|
|
])
|
2018-09-19 14:49:34 +00:00
|
|
|
.mount("/api/v1", routes![
|
2018-10-22 13:30:04 +00:00
|
|
|
api::oauth,
|
|
|
|
|
2018-10-21 16:22:27 +00:00
|
|
|
api::apps::create,
|
|
|
|
|
2018-09-25 19:45:32 +00:00
|
|
|
api::posts::get,
|
2018-09-29 14:45:27 +00:00
|
|
|
api::posts::list,
|
2018-12-24 15:42:40 +00:00
|
|
|
api::posts::create,
|
2018-09-19 14:49:34 +00:00
|
|
|
])
|
2018-12-06 17:54:16 +00:00
|
|
|
.register(catchers![
|
2018-06-18 15:59:49 +00:00
|
|
|
routes::errors::not_found,
|
2019-01-27 09:55:22 +00:00
|
|
|
routes::errors::unprocessable_entity,
|
2018-06-18 15:59:49 +00:00
|
|
|
routes::errors::server_error
|
|
|
|
])
|
2018-12-02 16:37:51 +00:00
|
|
|
.manage(dbpool)
|
|
|
|
.manage(workpool)
|
|
|
|
.manage(searcher)
|
2018-12-06 17:54:16 +00:00
|
|
|
.manage(include_i18n!("plume", [ "de", "en", "fr", "gl", "it", "ja", "nb", "pl", "ru" ]))
|
2018-09-09 09:27:03 +00: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 09:56:12 +00:00
|
|
|
("/login".to_owned(), "/login".to_owned(), rocket::http::Method::Post),
|
2018-10-02 09:49:11 +00:00
|
|
|
("/users/new".to_owned(), "/users/new".to_owned(), rocket::http::Method::Post),
|
2018-10-22 13:36:44 +00:00
|
|
|
("/api/<path..>".to_owned(), "/api/<path..>".to_owned(), rocket::http::Method::Post)
|
2018-09-09 09:27:03 +00:00
|
|
|
])
|
2018-10-20 09:04:20 +00:00
|
|
|
.finalize().expect("main: csrf fairing creation error"))
|
2018-04-22 13:35:37 +00:00
|
|
|
.launch();
|
|
|
|
}
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/templates.rs"));
|