Plume/plume-models/src/users.rs

671 lines
28 KiB
Rust
Raw Normal View History

2018-06-10 11:13:07 +00:00
use activitypub::{
2018-07-26 20:23:53 +00:00
Activity, Actor, Object, Endpoint, CustomObject,
actor::Person,
2018-09-03 12:48:34 +00:00
collection::OrderedCollection,
object::Image,
2018-05-16 18:20:44 +00:00
};
2018-04-24 09:21:39 +00:00
use bcrypt;
use chrono::{Utc, NaiveDateTime};
2018-09-27 21:06:40 +00:00
use diesel::{self, QueryDsl, RunQueryDsl, ExpressionMethods, BelongingToDsl};
2018-05-19 07:39:59 +00:00
use openssl::{
hash::MessageDigest,
pkey::{PKey, Private},
rsa::Rsa,
sign
};
use plume_common::activity_pub::{
2018-07-18 14:58:28 +00:00
ap_accept_header, ActivityStream, Id, IntoId, ApSignature, PublicKey,
2018-09-29 16:34:43 +00:00
inbox::{Deletable, WithInbox},
sign::{Signer, gen_keypair}
};
2018-05-19 07:39:59 +00:00
use reqwest::{
Client,
header::{ACCEPT, HeaderValue}
2018-05-19 07:39:59 +00:00
};
use rocket::{
request::{self, FromRequest, Request},
outcome::IntoOutcome
};
2018-05-01 11:48:19 +00:00
use serde_json;
2018-05-01 18:02:29 +00:00
use url::Url;
2018-06-18 21:50:40 +00:00
use webfinger::*;
2018-04-24 09:21:39 +00:00
use {BASE_URL, USE_HTTPS, ap_url, Connection};
2018-04-23 09:52:44 +00:00
use db_conn::DbConn;
use blogs::Blog;
use blog_authors::BlogAuthor;
use follows::Follow;
use instance::*;
use likes::Like;
use medias::Media;
use post_authors::PostAuthor;
use posts::Post;
use reshares::Reshare;
2018-06-11 14:05:18 +00:00
use safe_string::SafeString;
use schema::users;
2018-04-23 09:52:44 +00:00
pub const AUTH_COOKIE: &'static str = "user_id";
2018-04-22 18:13:12 +00:00
pub type CustomPerson = CustomObject<ApSignature, Person>;
#[derive(Queryable, Identifiable, Serialize, Deserialize, Clone, Debug)]
2018-04-22 18:13:12 +00:00
pub struct User {
pub id: i32,
pub username: String,
pub display_name: String,
pub outbox_url: String,
pub inbox_url: String,
pub is_admin: bool,
2018-06-11 14:05:18 +00:00
pub summary: SafeString,
2018-04-22 18:13:12 +00:00
pub email: Option<String>,
pub hashed_password: Option<String>,
2018-04-30 17:46:27 +00:00
pub instance_id: i32,
2018-05-01 18:02:29 +00:00
pub creation_date: NaiveDateTime,
pub ap_url: String,
pub private_key: Option<String>,
pub public_key: String,
2018-07-27 10:53:21 +00:00
pub shared_inbox_url: Option<String>,
pub followers_endpoint: String,
pub avatar_id: Option<i32>,
pub last_fetched_date: NaiveDateTime
2018-04-22 18:13:12 +00:00
}
#[derive(Insertable)]
#[table_name = "users"]
pub struct NewUser {
pub username: String,
pub display_name: String,
pub outbox_url: String,
pub inbox_url: String,
pub is_admin: bool,
2018-06-11 14:05:18 +00:00
pub summary: SafeString,
2018-04-22 18:13:12 +00:00
pub email: Option<String>,
pub hashed_password: Option<String>,
2018-05-01 18:02:29 +00:00
pub instance_id: i32,
pub ap_url: String,
pub private_key: Option<String>,
pub public_key: String,
2018-07-27 10:53:21 +00:00
pub shared_inbox_url: Option<String>,
pub followers_endpoint: String,
pub avatar_id: Option<i32>,
2018-04-22 18:13:12 +00:00
}
const USER_PREFIX: &'static str = "@";
2018-04-22 18:13:12 +00:00
impl User {
insert!(users, NewUser);
get!(users);
find_by!(users, find_by_email, email as String);
find_by!(users, find_by_name, username as String, instance_id as i32);
find_by!(users, find_by_ap_url, ap_url as String);
pub fn one_by_instance(conn: &Connection) -> Vec<User> {
2018-09-27 21:06:40 +00:00
users::table.filter(users::instance_id.eq_any(users::table.select(users::instance_id).distinct()))
.load::<User>(conn)
.expect("User::one_by_instance: loading error")
}
pub fn delete(&self, conn: &Connection) {
2018-09-29 16:34:43 +00:00
use schema::post_authors;
// delete the posts if they is the only author
let all_their_posts_ids: Vec<i32> = post_authors::table
.filter(post_authors::author_id.eq(self.id))
.select(post_authors::post_id)
.load(conn)
.expect("User::delete: post loading error");
2018-09-29 16:34:43 +00:00
for post_id in all_their_posts_ids {
let has_other_authors = post_authors::table
.filter(post_authors::post_id.eq(post_id))
.filter(post_authors::author_id.ne(self.id))
.count()
.load(conn)
.expect("User::delete: count author error").iter().next().unwrap_or(&0) > &0;
2018-09-29 16:34:43 +00:00
if !has_other_authors {
Post::get(conn, post_id).expect("User::delete: post not found error").delete(conn);
2018-09-29 16:34:43 +00:00
}
}
diesel::delete(self).execute(conn).expect("User::delete: user deletion error");
2018-09-09 10:25:55 +00:00
}
pub fn get_instance(&self, conn: &Connection) -> Instance {
Instance::get(conn, self.instance_id).expect("User::get_instance: instance not found error")
}
pub fn grant_admin_rights(&self, conn: &Connection) {
diesel::update(self)
.set(users::is_admin.eq(true))
2018-09-27 21:06:40 +00:00
.execute(conn)
.expect("User::grand_admin_rights: update error");
}
2018-04-22 18:13:12 +00:00
pub fn update(&self, conn: &Connection, name: String, email: String, summary: String) -> User {
2018-05-12 15:30:14 +00:00
diesel::update(self)
.set((
users::display_name.eq(name),
users::email.eq(email),
users::summary.eq(summary),
2018-09-27 21:06:40 +00:00
)).execute(conn)
.expect("User::update: update error");
User::get(conn, self.id).expect("User::update: get error")
2018-05-12 15:30:14 +00:00
}
pub fn count_local(conn: &Connection) -> usize {
2018-06-10 19:33:42 +00:00
users::table.filter(users::instance_id.eq(Instance::local_id(conn)))
.load::<User>(conn)
.expect("User::count_local: loading error")
.len()// TODO count in database?
2018-06-10 19:33:42 +00:00
}
pub fn find_local(conn: &Connection, username: String) -> Option<User> {
2018-05-01 11:48:19 +00:00
User::find_by_name(conn, username, Instance::local_id(conn))
}
pub fn find_by_fqn(conn: &Connection, fqn: String) -> Option<User> {
2018-05-01 11:48:19 +00:00
if fqn.contains("@") { // remote user
match Instance::find_by_domain(conn, String::from(fqn.split("@").last().expect("User::find_by_fqn: host error"))) {
2018-05-01 11:48:19 +00:00
Some(instance) => {
match User::find_by_name(conn, String::from(fqn.split("@").nth(0).expect("User::find_by_fqn: name error")), instance.id) {
2018-05-01 11:48:19 +00:00
Some(u) => Some(u),
None => User::fetch_from_webfinger(conn, fqn)
}
},
None => User::fetch_from_webfinger(conn, fqn)
}
} else { // local user
User::find_local(conn, fqn)
}
}
fn fetch_from_webfinger(conn: &Connection, acct: String) -> Option<User> {
match resolve(acct.clone(), *USE_HTTPS) {
Ok(wf) => wf.links.into_iter().find(|l| l.mime_type == Some(String::from("application/activity+json"))).and_then(|l| User::fetch_from_url(conn, l.href.expect("User::fetch_from_webginfer: href not found error"))),
2018-05-01 11:48:19 +00:00
Err(details) => {
println!("WF Error: {:?}", details);
2018-05-01 11:48:19 +00:00
None
}
}
}
fn fetch(url: String) -> Option<CustomPerson> {
2018-05-01 18:02:29 +00:00
let req = Client::new()
.get(&url[..])
.header(ACCEPT, HeaderValue::from_str(&ap_accept_header().into_iter().collect::<Vec<_>>().join(", ")).expect("User::fetch: accept header error"))
2018-05-01 18:02:29 +00:00
.send();
match req {
Ok(mut res) => {
if let Ok(text) = &res.text() {
if let Ok(ap_sign) = serde_json::from_str::<ApSignature>(text) {
if let Ok(mut json) = serde_json::from_str::<CustomPerson>(text) {
json.custom_props = ap_sign; // without this workaround, publicKey is not correctly deserialized
Some(json)
} else { None }
} else { None }
} else { None }
2018-05-01 18:02:29 +00:00
},
Err(e) => {
println!("User fetch error: {:?}", e);
None
}
2018-05-01 18:02:29 +00:00
}
}
pub fn fetch_from_url(conn: &Connection, url: String) -> Option<User> {
User::fetch(url.clone()).map(|json| (User::from_activity(conn, json, Url::parse(url.as_ref())
.expect("User::fetch_from_url: url error").host_str()
.expect("User::fetch_from_url: host error").to_string())))
}
fn from_activity(conn: &Connection, acct: CustomPerson, inst: String) -> User {
let instance = match Instance::find_by_domain(conn, inst.clone()) {
2018-05-01 11:48:19 +00:00
Some(instance) => instance,
None => {
Instance::insert(conn, NewInstance {
name: inst.clone(),
public_domain: inst.clone(),
local: false,
// We don't really care about all the following for remote instances
long_description: SafeString::new(""),
short_description: SafeString::new(""),
default_license: String::new(),
open_registrations: true,
short_description_html: String::new(),
long_description_html: String::new()
})
2018-05-01 11:48:19 +00:00
}
};
let avatar = Media::save_remote(conn, acct.object.object_props.icon_image().expect("User::from_activity: icon error")
.object_props.url_string().expect("User::from_activity: icon.url error"));
let user = User::insert(conn, NewUser {
username: acct.object.ap_actor_props.preferred_username_string().expect("User::from_activity: preferredUsername error"),
display_name: acct.object.object_props.name_string().expect("User::from_activity: name error"),
outbox_url: acct.object.ap_actor_props.outbox_string().expect("User::from_activity: outbox error"),
inbox_url: acct.object.ap_actor_props.inbox_string().expect("User::from_activity: inbox error"),
2018-05-01 11:48:19 +00:00
is_admin: false,
summary: SafeString::new(&acct.object.object_props.summary_string().unwrap_or(String::new())),
2018-05-01 11:48:19 +00:00
email: None,
hashed_password: None,
2018-05-01 18:02:29 +00:00
instance_id: instance.id,
ap_url: acct.object.object_props.id_string().expect("User::from_activity: id error"),
public_key: acct.custom_props.public_key_publickey().expect("User::from_activity: publicKey error")
.public_key_pem_string().expect("User::from_activity: publicKey.publicKeyPem error"),
private_key: None,
shared_inbox_url: acct.object.ap_actor_props.endpoints_endpoint()
2018-07-27 10:53:21 +00:00
.and_then(|e| e.shared_inbox_string()).ok(),
followers_endpoint: acct.object.ap_actor_props.followers_string().expect("User::from_activity: followers error"),
avatar_id: Some(avatar.id)
});
avatar.set_owner(conn, user.id);
user
2018-05-01 11:48:19 +00:00
}
pub fn refetch(&self, conn: &Connection) {
User::fetch(self.ap_url.clone()).map(|json| {
let avatar = Media::save_remote(conn, json.object.object_props.icon_image().expect("User::refetch: icon error")
.object_props.url_string().expect("User::refetch: icon.url error"));
diesel::update(self)
.set((
users::username.eq(json.object.ap_actor_props.preferred_username_string().expect("User::refetch: preferredUsername error")),
users::display_name.eq(json.object.object_props.name_string().expect("User::refetch: name error")),
users::outbox_url.eq(json.object.ap_actor_props.outbox_string().expect("User::refetch: outbox error")),
users::inbox_url.eq(json.object.ap_actor_props.inbox_string().expect("User::refetch: inbox error")),
users::summary.eq(SafeString::new(&json.object.object_props.summary_string().unwrap_or(String::new()))),
users::followers_endpoint.eq(json.object.ap_actor_props.followers_string().expect("User::refetch: followers error")),
users::avatar_id.eq(Some(avatar.id)),
users::last_fetched_date.eq(Utc::now().naive_utc())
)).execute(conn)
.expect("User::refetch: update error")
});
}
2018-04-23 09:52:44 +00:00
pub fn hash_pass(pass: String) -> String {
bcrypt::hash(pass.as_str(), 10).expect("User::hash_pass: hashing error")
2018-04-23 09:52:44 +00:00
}
pub fn auth(&self, pass: String) -> bool {
if let Ok(valid) = bcrypt::verify(pass.as_str(), self.hashed_password.clone().expect("User::auth: no password error").as_str()) {
2018-06-25 13:38:39 +00:00
valid
} else {
false
}
2018-04-23 09:52:44 +00:00
}
pub fn update_boxes(&self, conn: &Connection) {
let instance = self.get_instance(conn);
if self.outbox_url.len() == 0 {
diesel::update(self)
.set(users::outbox_url.eq(instance.compute_box(USER_PREFIX, self.username.clone(), "outbox")))
.execute(conn).expect("User::update_boxes: outbox update error");
}
if self.inbox_url.len() == 0 {
diesel::update(self)
.set(users::inbox_url.eq(instance.compute_box(USER_PREFIX, self.username.clone(), "inbox")))
.execute(conn).expect("User::update_boxes: inbox update error");
2018-05-01 18:02:29 +00:00
}
if self.ap_url.len() == 0 {
diesel::update(self)
.set(users::ap_url.eq(instance.compute_box(USER_PREFIX, self.username.clone(), "")))
.execute(conn).expect("User::update_boxes: ap_url update error");
}
if self.shared_inbox_url.is_none() {
diesel::update(self)
.set(users::shared_inbox_url.eq(ap_url(format!("{}/inbox", Instance::get_local(conn).expect("User::update_boxes: local instance not found error").public_domain))))
.execute(conn).expect("User::update_boxes: shared inbox update error");
}
2018-07-27 10:53:21 +00:00
if self.followers_endpoint.len() == 0 {
diesel::update(self)
.set(users::followers_endpoint.eq(instance.compute_box(USER_PREFIX, self.username.clone(), "followers")))
.execute(conn).expect("User::update_boxes: follower update error");
2018-07-27 10:53:21 +00:00
}
}
2018-04-29 18:01:42 +00:00
pub fn get_local_page(conn: &Connection, (min, max): (i32, i32)) -> Vec<User> {
2018-09-09 10:25:55 +00:00
users::table.filter(users::instance_id.eq(1))
.order(users::username.asc())
.offset(min.into())
.limit((max - min).into())
.load::<User>(conn)
.expect("User::get_local_page: loading error")
2018-09-09 10:25:55 +00:00
}
pub fn outbox(&self, conn: &Connection) -> ActivityStream<OrderedCollection> {
2018-05-18 22:04:30 +00:00
let acts = self.get_activities(conn);
let n_acts = acts.len();
let mut coll = OrderedCollection::default();
coll.collection_props.items = serde_json::to_value(acts).expect("User::outbox: activity error");
coll.collection_props.set_total_items_u64(n_acts as u64).expect("User::outbox: count error");
2018-05-16 18:20:44 +00:00
ActivityStream::new(coll)
2018-04-29 18:01:42 +00:00
}
2018-07-26 20:23:53 +00:00
pub fn fetch_outbox<T: Activity>(&self) -> Vec<T> {
let req = Client::new()
.get(&self.outbox_url[..])
.header(ACCEPT, HeaderValue::from_str(&ap_accept_header().into_iter().collect::<Vec<_>>().join(", ")).expect("User::fetch_outbox: accept header error"))
2018-07-26 20:23:53 +00:00
.send();
match req {
Ok(mut res) => {
let text = &res.text().expect("User::fetch_outbox: body error");
let json: serde_json::Value = serde_json::from_str(text).expect("User::fetch_outbox: parsing error");
2018-07-26 20:23:53 +00:00
json["items"].as_array()
.expect("Outbox.items is not an array")
.into_iter()
.filter_map(|j| serde_json::from_value(j.clone()).ok())
.collect::<Vec<T>>()
},
Err(e) => {
println!("User outbox fetch error: {:?}", e);
vec![]
}
}
}
2018-07-27 10:53:21 +00:00
pub fn fetch_followers_ids(&self) -> Vec<String> {
let req = Client::new()
.get(&self.followers_endpoint[..])
.header(ACCEPT, HeaderValue::from_str(&ap_accept_header().into_iter().collect::<Vec<_>>().join(", ")).expect("User::fetch_followers_ids: accept header error"))
2018-07-27 10:53:21 +00:00
.send();
match req {
Ok(mut res) => {
let text = &res.text().expect("User::fetch_followers_ids: body error");
let json: serde_json::Value = serde_json::from_str(text).expect("User::fetch_followers_ids: parsing error");
2018-07-27 10:53:21 +00:00
json["items"].as_array()
.expect("User::fetch_followers_ids: not an array error")
2018-07-27 10:53:21 +00:00
.into_iter()
.filter_map(|j| serde_json::from_value(j.clone()).ok())
.collect::<Vec<String>>()
},
Err(e) => {
println!("User followers fetch error: {:?}", e);
vec![]
}
}
}
fn get_activities(&self, conn: &Connection) -> Vec<serde_json::Value> {
2018-04-29 20:23:44 +00:00
use schema::posts;
use schema::post_authors;
let posts_by_self = PostAuthor::belonging_to(self).select(post_authors::post_id);
let posts = posts::table
.filter(posts::published.eq(true))
2018-09-27 21:06:40 +00:00
.filter(posts::id.eq_any(posts_by_self))
.load::<Post>(conn).expect("User::get_activities: loading error");
2018-05-18 22:04:30 +00:00
posts.into_iter().map(|p| {
serde_json::to_value(p.create_activity(conn)).expect("User::get_activities: creation error")
2018-05-16 18:20:44 +00:00
}).collect::<Vec<serde_json::Value>>()
2018-04-29 18:01:42 +00:00
}
pub fn get_fqn(&self, conn: &Connection) -> String {
if self.instance_id == Instance::local_id(conn) {
self.username.clone()
} else {
format!("{}@{}", self.username, self.get_instance(conn).public_domain)
}
}
pub fn get_followers(&self, conn: &Connection) -> Vec<User> {
use schema::follows;
let follows = Follow::belonging_to(self).select(follows::follower_id);
users::table.filter(users::id.eq_any(follows)).load::<User>(conn).expect("User::get_followers: loading error")
}
pub fn get_followers_page(&self, conn: &Connection, (min, max): (i32, i32)) -> Vec<User> {
2018-07-25 13:50:29 +00:00
use schema::follows;
let follows = Follow::belonging_to(self).select(follows::follower_id);
2018-09-27 21:06:40 +00:00
users::table.filter(users::id.eq_any(follows))
2018-07-25 13:50:29 +00:00
.offset(min.into())
.limit((max - min).into())
.load::<User>(conn).expect("User::get_followers_page: loading error")
2018-07-25 13:50:29 +00:00
}
pub fn get_following(&self, conn: &Connection) -> Vec<User> {
2018-09-27 21:06:40 +00:00
use schema::follows::dsl::*;
let f = follows.filter(follower_id.eq(self.id)).select(following_id);
users::table.filter(users::id.eq_any(f)).load::<User>(conn).expect("User::get_following: loading error")
}
pub fn is_followed_by(&self, conn: &Connection, other_id: i32) -> bool {
2018-06-13 18:06:14 +00:00
use schema::follows;
follows::table
.filter(follows::follower_id.eq(other_id))
.filter(follows::following_id.eq(self.id))
.load::<Follow>(conn)
.expect("User::is_followed_by: loading error")
.len() > 0// TODO count in database?
2018-06-13 18:06:14 +00:00
}
pub fn is_following(&self, conn: &Connection, other_id: i32) -> bool {
use schema::follows;
follows::table
.filter(follows::follower_id.eq(self.id))
.filter(follows::following_id.eq(other_id))
.load::<Follow>(conn)
.expect("User::is_following: loading error")
.len() > 0// TODO count in database?
}
pub fn has_liked(&self, conn: &Connection, post: &Post) -> bool {
2018-05-12 20:56:57 +00:00
use schema::likes;
likes::table
.filter(likes::post_id.eq(post.id))
.filter(likes::user_id.eq(self.id))
.load::<Like>(conn)
.expect("User::has_liked: loading error")
.len() > 0// TODO count in database?
2018-05-12 20:56:57 +00:00
}
pub fn has_reshared(&self, conn: &Connection, post: &Post) -> bool {
2018-05-19 09:51:10 +00:00
use schema::reshares;
reshares::table
.filter(reshares::post_id.eq(post.id))
.filter(reshares::user_id.eq(self.id))
.load::<Reshare>(conn)
.expect("User::has_reshared: loading error")
.len() > 0// TODO count in database?
2018-05-19 09:51:10 +00:00
}
pub fn is_author_in(&self, conn: &Connection, blog: Blog) -> bool {
2018-06-10 18:16:25 +00:00
use schema::blog_authors;
blog_authors::table.filter(blog_authors::author_id.eq(self.id))
.filter(blog_authors::blog_id.eq(blog.id))
.load::<BlogAuthor>(conn)
.expect("User::is_author_in: loading error")
.len() > 0// TODO count in database?
2018-06-10 18:16:25 +00:00
}
pub fn get_keypair(&self) -> PKey<Private> {
PKey::from_rsa(Rsa::private_key_from_pem(self.private_key.clone().expect("User::get_keypair: private key not found error").as_ref())
.expect("User::get_keypair: pem parsing error"))
.expect("User::get_keypair: private key deserialization error")
}
2018-05-18 22:04:30 +00:00
pub fn into_activity(&self, conn: &Connection) -> CustomPerson {
2018-05-18 22:04:30 +00:00
let mut actor = Person::default();
actor.object_props.set_id_string(self.ap_url.clone()).expect("User::into_activity: id error");
actor.object_props.set_name_string(self.display_name.clone()).expect("User::into_activity: name error");
actor.object_props.set_summary_string(self.summary.get().clone()).expect("User::into_activity: summary error");
actor.object_props.set_url_string(self.ap_url.clone()).expect("User::into_activity: url error");
actor.ap_actor_props.set_inbox_string(self.inbox_url.clone()).expect("User::into_activity: inbox error");
actor.ap_actor_props.set_outbox_string(self.outbox_url.clone()).expect("User::into_activity: outbox error");
actor.ap_actor_props.set_preferred_username_string(self.username.clone()).expect("User::into_activity: preferredUsername error");
2018-07-27 10:53:21 +00:00
actor.ap_actor_props.set_followers_string(self.followers_endpoint.clone()).expect("User::into_activity: followers error");
let mut endpoints = Endpoint::default();
endpoints.set_shared_inbox_string(ap_url(format!("{}/inbox/", BASE_URL.as_str()))).expect("User::into_activity: endpoints.sharedInbox error");
actor.ap_actor_props.set_endpoints_endpoint(endpoints).expect("User::into_activity: endpoints error");
let mut public_key = PublicKey::default();
2018-06-22 15:17:53 +00:00
public_key.set_id_string(format!("{}#main-key", self.ap_url)).expect("User::into_activity: publicKey.id error");
public_key.set_owner_string(self.ap_url.clone()).expect("User::into_activity: publicKey.owner error");
public_key.set_public_key_pem_string(self.public_key.clone()).expect("User::into_activity: publicKey.publicKeyPem error");
let mut ap_signature = ApSignature::default();
2018-06-22 15:17:53 +00:00
ap_signature.set_public_key_publickey(public_key).expect("User::into_activity: publicKey error");
2018-09-03 12:48:34 +00:00
let mut avatar = Image::default();
avatar.object_props.set_url_string(self.avatar_id.and_then(|id| Media::get(conn, id).map(|m| m.url(conn))).unwrap_or(String::new()))
.expect("User::into_activity: icon.url error");
actor.object_props.set_icon_object(avatar).expect("User::into_activity: icon error");
CustomPerson::new(actor, ap_signature)
2018-05-18 22:04:30 +00:00
}
pub fn to_json(&self, conn: &Connection) -> serde_json::Value {
let mut json = serde_json::to_value(self).expect("User::to_json: serializing error");
json["fqn"] = serde_json::Value::String(self.get_fqn(conn));
json["name"] = if self.display_name.len() > 0 {
json!(self.display_name)
} else {
json!(self.get_fqn(conn))
};
json["avatar"] = json!(self.avatar_id.and_then(|id| Media::get(conn, id).map(|m| m.url(conn))).unwrap_or("/static/default-avatar.png".to_string()));
json
}
2018-06-18 21:50:40 +00:00
pub fn webfinger(&self, conn: &Connection) -> Webfinger {
2018-06-18 21:50:40 +00:00
Webfinger {
subject: format!("acct:{}@{}", self.username, self.get_instance(conn).public_domain),
aliases: vec![self.ap_url.clone()],
2018-06-18 21:50:40 +00:00
links: vec![
Link {
rel: String::from("http://webfinger.net/rel/profile-page"),
mime_type: None,
href: Some(self.ap_url.clone()),
template: None
2018-06-18 21:50:40 +00:00
},
Link {
rel: String::from("http://schemas.google.com/g/2010#updates-from"),
mime_type: Some(String::from("application/atom+xml")),
href: Some(self.get_instance(conn).compute_box(USER_PREFIX, self.username.clone(), "feed.atom")),
template: None
2018-06-18 21:50:40 +00:00
},
Link {
rel: String::from("self"),
mime_type: Some(String::from("application/activity+json")),
href: Some(self.ap_url.clone()),
template: None
2018-06-18 21:50:40 +00:00
}
]
}
}
pub fn from_url(conn: &Connection, url: String) -> Option<User> {
User::find_by_ap_url(conn, url.clone()).or_else(|| {
// The requested user was not in the DB
// We try to fetch it if it is remote
if Url::parse(url.as_ref()).expect("User::from_url: url error").host_str().expect("User::from_url: host error") != BASE_URL.as_str() {
User::fetch_from_url(conn, url)
} else {
None
}
})
}
2018-09-03 12:04:17 +00:00
pub fn set_avatar(&self, conn: &Connection, id: i32) {
2018-09-03 12:04:17 +00:00
diesel::update(self)
.set(users::avatar_id.eq(id))
.execute(conn)
.expect("User::set_avatar: update error");
2018-09-03 12:04:17 +00:00
}
pub fn needs_update(&self) -> bool {
(Utc::now().naive_utc() - self.last_fetched_date).num_days() > 1
}
2018-05-18 22:04:30 +00:00
}
2018-04-23 09:52:44 +00:00
impl<'a, 'r> FromRequest<'a, 'r> for User {
type Error = ();
fn from_request(request: &'a Request<'r>) -> request::Outcome<User, ()> {
let conn = request.guard::<DbConn>()?;
request.cookies()
.get_private(AUTH_COOKIE)
.and_then(|cookie| cookie.value().parse().ok())
.map(|id| User::get(&*conn, id).expect("User::from_request: user not found error"))
2018-04-23 09:52:44 +00:00
.or_forward(())
}
2018-04-22 18:13:12 +00:00
}
2018-05-18 08:04:40 +00:00
impl IntoId for User {
2018-05-18 22:04:30 +00:00
fn into_id(self) -> Id {
2018-05-18 08:04:40 +00:00
Id::new(self.ap_url.clone())
}
}
impl Object for User {}
impl Actor for User {}
impl WithInbox for User {
fn get_inbox_url(&self) -> String {
self.inbox_url.clone()
}
fn get_shared_inbox_url(&self) -> Option<String> {
self.shared_inbox_url.clone()
}
fn is_local(&self) -> bool {
self.instance_id == 1
}
2018-05-18 08:04:40 +00:00
}
impl Signer for User {
fn get_key_id(&self) -> String {
format!("{}#main-key", self.ap_url)
}
fn sign(&self, to_sign: String) -> Vec<u8> {
let key = self.get_keypair();
let mut signer = sign::Signer::new(MessageDigest::sha256(), &key).expect("User::sign: initialization error");
signer.update(to_sign.as_bytes()).expect("User::sign: content insertion error");
signer.sign_to_vec().expect("User::sign: finalization error")
}
fn verify(&self, data: String, signature: Vec<u8>) -> bool {
let key = PKey::from_rsa(Rsa::public_key_from_pem(self.public_key.as_ref()).expect("User::verify: pem parsing error"))
.expect("User::verify: deserialization error");
let mut verifier = sign::Verifier::new(MessageDigest::sha256(), &key).expect("User::verify: initialization error");
verifier.update(data.as_bytes()).expect("User::verify: content insertion error");
verifier.verify(&signature).expect("User::verify: finalization error")
}
}
impl NewUser {
/// Creates a new local user
pub fn new_local(
conn: &Connection,
username: String,
display_name: String,
is_admin: bool,
summary: String,
email: String,
2018-06-19 17:29:34 +00:00
password: String
) -> User {
let (pub_key, priv_key) = gen_keypair();
2018-06-19 17:29:34 +00:00
User::insert(conn, NewUser {
username: username,
display_name: display_name,
outbox_url: String::from(""),
inbox_url: String::from(""),
is_admin: is_admin,
2018-06-11 14:05:18 +00:00
summary: SafeString::new(&summary),
email: Some(email),
hashed_password: Some(password),
2018-06-19 17:29:34 +00:00
instance_id: Instance::local_id(conn),
ap_url: String::from(""),
public_key: String::from_utf8(pub_key).expect("NewUser::new_local: public key error"),
private_key: Some(String::from_utf8(priv_key).expect("NewUser::new_local: private key error")),
2018-07-27 10:53:21 +00:00
shared_inbox_url: None,
followers_endpoint: String::from(""),
avatar_id: None
2018-06-19 17:29:34 +00:00
})
}
}