2018-06-11 14:30:14 +02:00
|
|
|
use activitypub::{
|
2018-12-09 18:43:34 +01:00
|
|
|
CustomObject,
|
2018-09-06 23:39:22 +02:00
|
|
|
activity::{Create, Delete, Update},
|
2018-06-20 21:42:16 +02:00
|
|
|
link,
|
2018-11-24 12:44:17 +01:00
|
|
|
object::{Article, Image, Tombstone},
|
2018-06-11 14:30:14 +02:00
|
|
|
};
|
2018-09-19 16:49:34 +02:00
|
|
|
use canapi::{Error, Provider};
|
2018-06-22 22:45:37 +02:00
|
|
|
use chrono::{NaiveDateTime, TimeZone, Utc};
|
2018-11-24 12:44:17 +01:00
|
|
|
use diesel::{self, BelongingToDsl, ExpressionMethods, QueryDsl, RunQueryDsl};
|
2018-10-27 23:51:26 +02:00
|
|
|
use heck::{CamelCase, KebabCase};
|
2018-04-29 22:23:44 +02:00
|
|
|
use serde_json;
|
2018-04-24 11:21:39 +02:00
|
|
|
|
2018-06-23 18:36:11 +02:00
|
|
|
use blogs::Blog;
|
|
|
|
use instance::Instance;
|
|
|
|
use likes::Like;
|
2018-10-31 10:40:20 +01:00
|
|
|
use medias::Media;
|
2018-06-23 18:36:11 +02:00
|
|
|
use mentions::Mention;
|
2018-11-24 12:44:17 +01:00
|
|
|
use plume_api::posts::PostEndpoint;
|
|
|
|
use plume_common::{
|
|
|
|
activity_pub::{
|
|
|
|
inbox::{Deletable, FromActivity},
|
2018-12-09 18:43:34 +01:00
|
|
|
Hashtag, Id, IntoId, Licensed, Source, PUBLIC_VISIBILTY,
|
2018-11-24 12:44:17 +01:00
|
|
|
},
|
|
|
|
utils::md_to_html,
|
|
|
|
};
|
2018-06-23 18:36:11 +02:00
|
|
|
use post_authors::*;
|
|
|
|
use reshares::Reshare;
|
2018-06-11 12:21:34 +02:00
|
|
|
use safe_string::SafeString;
|
2018-12-02 17:37:51 +01:00
|
|
|
use search::Searcher;
|
2018-11-24 12:44:17 +01:00
|
|
|
use schema::posts;
|
2018-10-27 23:51:26 +02:00
|
|
|
use std::collections::HashSet;
|
2018-11-24 12:44:17 +01:00
|
|
|
use tags::Tag;
|
|
|
|
use users::User;
|
|
|
|
use {ap_url, Connection, BASE_URL};
|
2018-04-23 15:41:43 +02:00
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
pub type LicensedArticle = CustomObject<Licensed, Article>;
|
|
|
|
|
2018-09-06 23:39:22 +02:00
|
|
|
#[derive(Queryable, Identifiable, Serialize, Clone, AsChangeset)]
|
2018-10-30 21:04:59 +01:00
|
|
|
#[changeset_options(treat_none_as_null = "true")]
|
2018-04-23 15:41:43 +02:00
|
|
|
pub struct Post {
|
|
|
|
pub id: i32,
|
|
|
|
pub blog_id: i32,
|
|
|
|
pub slug: String,
|
|
|
|
pub title: String,
|
2018-06-11 12:21:34 +02:00
|
|
|
pub content: SafeString,
|
2018-04-23 15:41:43 +02:00
|
|
|
pub published: bool,
|
2018-04-30 19:46:27 +02:00
|
|
|
pub license: String,
|
2018-09-27 23:06:40 +02:00
|
|
|
pub creation_date: NaiveDateTime,
|
2018-09-04 13:26:13 +02:00
|
|
|
pub ap_url: String,
|
|
|
|
pub subtitle: String,
|
2018-09-06 21:00:55 +02:00
|
|
|
pub source: String,
|
2018-10-30 19:13:25 +01:00
|
|
|
pub cover_id: Option<i32>,
|
2018-04-23 15:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "posts"]
|
|
|
|
pub struct NewPost {
|
2018-09-04 13:26:13 +02:00
|
|
|
pub blog_id: i32,
|
2018-04-23 15:41:43 +02:00
|
|
|
pub slug: String,
|
|
|
|
pub title: String,
|
2018-06-11 12:21:34 +02:00
|
|
|
pub content: SafeString,
|
2018-04-23 15:41:43 +02:00
|
|
|
pub published: bool,
|
2018-05-10 12:52:56 +02:00
|
|
|
pub license: String,
|
2018-07-27 00:29:21 +02:00
|
|
|
pub creation_date: Option<NaiveDateTime>,
|
2018-09-04 13:26:13 +02:00
|
|
|
pub ap_url: String,
|
|
|
|
pub subtitle: String,
|
2018-09-06 21:00:55 +02:00
|
|
|
pub source: String,
|
2018-10-30 19:13:25 +01:00
|
|
|
pub cover_id: Option<i32>,
|
2018-04-23 15:41:43 +02:00
|
|
|
}
|
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
impl<'a> Provider<(&'a Connection, &'a Searcher, Option<i32>)> for Post {
|
2018-09-19 16:49:34 +02:00
|
|
|
type Data = PostEndpoint;
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
fn get(
|
2018-12-02 17:37:51 +01:00
|
|
|
(conn, _search, user_id): &(&'a Connection, &Searcher, Option<i32>),
|
2018-11-24 12:44:17 +01:00
|
|
|
id: i32,
|
|
|
|
) -> Result<PostEndpoint, Error> {
|
2018-10-30 10:11:53 +01:00
|
|
|
if let Some(post) = Post::get(conn, id) {
|
|
|
|
if !post.published && !user_id.map(|u| post.is_author(conn, u)).unwrap_or(false) {
|
2018-11-24 12:44:17 +01:00
|
|
|
return Err(Error::Authorization(
|
|
|
|
"You are not authorized to access this post yet.".to_string(),
|
|
|
|
));
|
2018-10-30 10:11:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(PostEndpoint {
|
|
|
|
id: Some(post.id),
|
|
|
|
title: Some(post.title.clone()),
|
|
|
|
subtitle: Some(post.subtitle.clone()),
|
2018-11-24 12:44:17 +01:00
|
|
|
content: Some(post.content.get().clone()),
|
2018-10-30 10:11:53 +01:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
Err(Error::NotFound("Request post was not found".to_string()))
|
|
|
|
}
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
fn list(
|
2018-12-02 17:37:51 +01:00
|
|
|
(conn, _searcher, user_id): &(&'a Connection, &Searcher, Option<i32>),
|
2018-11-24 12:44:17 +01:00
|
|
|
filter: PostEndpoint,
|
|
|
|
) -> Vec<PostEndpoint> {
|
2018-09-25 21:10:18 +02:00
|
|
|
let mut query = posts::table.into_boxed();
|
2018-09-19 16:49:34 +02:00
|
|
|
if let Some(title) = filter.title {
|
2018-09-25 21:10:18 +02:00
|
|
|
query = query.filter(posts::title.eq(title));
|
|
|
|
}
|
|
|
|
if let Some(subtitle) = filter.subtitle {
|
|
|
|
query = query.filter(posts::subtitle.eq(subtitle));
|
|
|
|
}
|
|
|
|
if let Some(content) = filter.content {
|
|
|
|
query = query.filter(posts::content.eq(content));
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
query
|
|
|
|
.get_results::<Post>(*conn)
|
|
|
|
.map(|ps| {
|
|
|
|
ps.into_iter()
|
|
|
|
.filter(|p| {
|
|
|
|
p.published || user_id.map(|u| p.is_author(conn, u)).unwrap_or(false)
|
|
|
|
})
|
|
|
|
.map(|p| PostEndpoint {
|
|
|
|
id: Some(p.id),
|
|
|
|
title: Some(p.title.clone()),
|
|
|
|
subtitle: Some(p.subtitle.clone()),
|
|
|
|
content: Some(p.content.get().clone()),
|
|
|
|
})
|
|
|
|
.collect()
|
2018-09-19 16:49:34 +02:00
|
|
|
})
|
2018-11-26 10:21:52 +01:00
|
|
|
.unwrap_or_default()
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
fn create(
|
2018-12-02 17:37:51 +01:00
|
|
|
(_conn, _searcher, _user_id): &(&'a Connection, &Searcher, Option<i32>),
|
2018-11-24 12:44:17 +01:00
|
|
|
_query: PostEndpoint,
|
|
|
|
) -> Result<PostEndpoint, Error> {
|
2018-09-25 21:10:18 +02:00
|
|
|
unimplemented!()
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
fn update(
|
2018-12-02 17:37:51 +01:00
|
|
|
(_conn, _searcher, _user_id): &(&'a Connection, &Searcher, Option<i32>),
|
2018-11-24 12:44:17 +01:00
|
|
|
_id: i32,
|
|
|
|
_new_data: PostEndpoint,
|
|
|
|
) -> Result<PostEndpoint, Error> {
|
2018-09-25 21:10:18 +02:00
|
|
|
unimplemented!()
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
fn delete((conn, searcher, user_id): &(&'a Connection, &Searcher, Option<i32>), id: i32) {
|
2018-10-30 10:11:53 +01:00
|
|
|
let user_id = user_id.expect("Post as Provider::delete: not authenticated");
|
|
|
|
if let Some(post) = Post::get(conn, id) {
|
|
|
|
if post.is_author(conn, user_id) {
|
2018-12-02 17:37:51 +01:00
|
|
|
post.delete(&(conn, searcher));
|
2018-10-30 10:11:53 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 16:49:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 15:41:43 +02:00
|
|
|
impl Post {
|
2018-06-18 15:44:23 +02:00
|
|
|
get!(posts);
|
2018-11-26 10:21:52 +01:00
|
|
|
find_by!(posts, find_by_slug, slug as &str, blog_id as i32);
|
|
|
|
find_by!(posts, find_by_ap_url, ap_url as &str);
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
last!(posts);
|
|
|
|
pub fn insert(conn: &Connection, new: NewPost, searcher: &Searcher) -> Self {
|
|
|
|
diesel::insert_into(posts::table)
|
|
|
|
.values(new)
|
|
|
|
.execute(conn)
|
|
|
|
.expect("Post::insert: Error saving in posts");
|
|
|
|
let post = Self::last(conn);
|
|
|
|
searcher.add_document(conn, &post);
|
|
|
|
post
|
|
|
|
}
|
|
|
|
pub fn update(&self, conn: &Connection, searcher: &Searcher) -> Self {
|
|
|
|
diesel::update(self)
|
|
|
|
.set(self)
|
|
|
|
.execute(conn)
|
|
|
|
.expect("Post::update: Error updating posts");
|
|
|
|
let post = Self::get(conn, self.id)
|
|
|
|
.expect("macro::update: posts we just updated doesn't exist anymore???");
|
|
|
|
searcher.update_document(conn, &post);
|
|
|
|
post
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn list_by_tag(conn: &Connection, tag: String, (min, max): (i32, i32)) -> Vec<Post> {
|
2018-09-06 14:06:04 +02:00
|
|
|
use schema::tags;
|
|
|
|
|
|
|
|
let ids = tags::table.filter(tags::tag.eq(tag)).select(tags::post_id);
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.filter(posts::id.eq_any(ids))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-09-06 14:06:04 +02:00
|
|
|
.order(posts::creation_date.desc())
|
|
|
|
.offset(min.into())
|
|
|
|
.limit((max - min).into())
|
2018-09-27 23:06:40 +02:00
|
|
|
.load(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::list_by_tag: loading error")
|
2018-09-06 14:06:04 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn count_for_tag(conn: &Connection, tag: String) -> i64 {
|
2018-09-06 14:06:04 +02:00
|
|
|
use schema::tags;
|
|
|
|
let ids = tags::table.filter(tags::tag.eq(tag)).select(tags::post_id);
|
2018-11-24 12:44:17 +01:00
|
|
|
*posts::table
|
|
|
|
.filter(posts::id.eq_any(ids))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-09-06 14:06:04 +02:00
|
|
|
.count()
|
2018-09-27 23:06:40 +02:00
|
|
|
.load(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::count_for_tag: counting error")
|
2018-11-24 12:44:17 +01:00
|
|
|
.iter()
|
|
|
|
.next()
|
|
|
|
.expect("Post::count_for_tag: no result error")
|
2018-09-06 14:06:04 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn count_local(conn: &Connection) -> usize {
|
2018-06-10 21:33:42 +02:00
|
|
|
use schema::post_authors;
|
|
|
|
use schema::users;
|
2018-11-24 12:44:17 +01:00
|
|
|
let local_authors = users::table
|
|
|
|
.filter(users::instance_id.eq(Instance::local_id(conn)))
|
|
|
|
.select(users::id);
|
|
|
|
let local_posts_id = post_authors::table
|
|
|
|
.filter(post_authors::author_id.eq_any(local_authors))
|
|
|
|
.select(post_authors::post_id);
|
|
|
|
posts::table
|
|
|
|
.filter(posts::id.eq_any(local_posts_id))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-06-10 21:33:42 +02:00
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::count_local: loading error")
|
2018-11-24 12:44:17 +01:00
|
|
|
.len() // TODO count in database?
|
2018-06-10 21:33:42 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn count(conn: &Connection) -> i64 {
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.filter(posts::published.eq(true))
|
2018-10-20 08:44:33 +02:00
|
|
|
.count()
|
|
|
|
.get_result(conn)
|
|
|
|
.expect("Post::count: counting error")
|
2018-07-25 15:20:09 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_recents(conn: &Connection, limit: i64) -> Vec<Post> {
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.order(posts::creation_date.desc())
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-05-12 14:56:38 +02:00
|
|
|
.limit(limit)
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_recents: loading error")
|
2018-05-12 14:56:38 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_recents_for_author(conn: &Connection, author: &User, limit: i64) -> Vec<Post> {
|
2018-05-12 15:31:09 +02:00
|
|
|
use schema::post_authors;
|
|
|
|
|
|
|
|
let posts = PostAuthor::belonging_to(author).select(post_authors::post_id);
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.filter(posts::id.eq_any(posts))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-05-12 15:31:09 +02:00
|
|
|
.order(posts::creation_date.desc())
|
|
|
|
.limit(limit)
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_recents_for_author: loading error")
|
2018-05-12 15:31:09 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_recents_for_blog(conn: &Connection, blog: &Blog, limit: i64) -> Vec<Post> {
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.filter(posts::blog_id.eq(blog.id))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-05-12 15:31:09 +02:00
|
|
|
.order(posts::creation_date.desc())
|
|
|
|
.limit(limit)
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_recents_for_blog: loading error")
|
2018-05-12 15:31:09 +02:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
pub fn get_for_blog(conn: &Connection, blog: &Blog) -> Vec<Post> {
|
|
|
|
posts::table
|
|
|
|
.filter(posts::blog_id.eq(blog.id))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-07-21 16:58:30 +02:00
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_for_blog:: loading error")
|
2018-07-21 16:58:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn blog_page(conn: &Connection, blog: &Blog, (min, max): (i32, i32)) -> Vec<Post> {
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.filter(posts::blog_id.eq(blog.id))
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-07-20 18:42:35 +02:00
|
|
|
.order(posts::creation_date.desc())
|
|
|
|
.offset(min.into())
|
|
|
|
.limit((max - min).into())
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::blog_page: loading error")
|
2018-07-20 18:42:35 +02:00
|
|
|
}
|
|
|
|
|
2018-09-04 21:56:27 +02:00
|
|
|
/// Give a page of all the recent posts known to this instance (= federated timeline)
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_recents_page(conn: &Connection, (min, max): (i32, i32)) -> Vec<Post> {
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.order(posts::creation_date.desc())
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-07-25 15:20:09 +02:00
|
|
|
.offset(min.into())
|
|
|
|
.limit((max - min).into())
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_recents_page: loading error")
|
2018-07-25 15:20:09 +02:00
|
|
|
}
|
|
|
|
|
2018-09-04 21:56:27 +02:00
|
|
|
/// Give a page of posts from a specific instance
|
2018-11-24 12:44:17 +01:00
|
|
|
pub fn get_instance_page(
|
|
|
|
conn: &Connection,
|
|
|
|
instance_id: i32,
|
|
|
|
(min, max): (i32, i32),
|
|
|
|
) -> Vec<Post> {
|
2018-09-04 21:56:27 +02:00
|
|
|
use schema::blogs;
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let blog_ids = blogs::table
|
|
|
|
.filter(blogs::instance_id.eq(instance_id))
|
|
|
|
.select(blogs::id);
|
2018-09-04 21:56:27 +02:00
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.order(posts::creation_date.desc())
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-09-27 23:06:40 +02:00
|
|
|
.filter(posts::blog_id.eq_any(blog_ids))
|
2018-09-04 21:56:27 +02:00
|
|
|
.offset(min.into())
|
|
|
|
.limit((max - min).into())
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_instance_page: loading error")
|
2018-09-04 21:56:27 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:21:50 +02:00
|
|
|
/// Give a page of customized user feed, based on a list of followed users
|
2018-11-24 12:44:17 +01:00
|
|
|
pub fn user_feed_page(
|
|
|
|
conn: &Connection,
|
|
|
|
followed: Vec<i32>,
|
|
|
|
(min, max): (i32, i32),
|
|
|
|
) -> Vec<Post> {
|
2018-09-05 16:21:50 +02:00
|
|
|
use schema::post_authors;
|
2018-09-27 23:06:40 +02:00
|
|
|
let post_ids = post_authors::table
|
|
|
|
.filter(post_authors::author_id.eq_any(followed))
|
2018-09-05 16:21:50 +02:00
|
|
|
.select(post_authors::post_id);
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.order(posts::creation_date.desc())
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(true))
|
2018-09-27 23:06:40 +02:00
|
|
|
.filter(posts::id.eq_any(post_ids))
|
2018-09-05 16:21:50 +02:00
|
|
|
.offset(min.into())
|
|
|
|
.limit((max - min).into())
|
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::user_feed_page: loading error")
|
2018-09-05 16:21:50 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn drafts_by_author(conn: &Connection, author: &User) -> Vec<Post> {
|
2018-09-10 21:06:00 +02:00
|
|
|
use schema::post_authors;
|
|
|
|
|
|
|
|
let posts = PostAuthor::belonging_to(author).select(post_authors::post_id);
|
2018-11-24 12:44:17 +01:00
|
|
|
posts::table
|
|
|
|
.order(posts::creation_date.desc())
|
2018-09-10 21:06:00 +02:00
|
|
|
.filter(posts::published.eq(false))
|
2018-09-27 23:06:40 +02:00
|
|
|
.filter(posts::id.eq_any(posts))
|
2018-09-10 21:06:00 +02:00
|
|
|
.load::<Post>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::drafts_by_author: loading error")
|
2018-09-10 21:06:00 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_authors(&self, conn: &Connection) -> Vec<User> {
|
2018-04-30 18:50:35 +02:00
|
|
|
use schema::post_authors;
|
2018-11-24 12:44:17 +01:00
|
|
|
use schema::users;
|
2018-04-30 18:50:35 +02:00
|
|
|
let author_list = PostAuthor::belonging_to(self).select(post_authors::author_id);
|
2018-11-24 12:44:17 +01:00
|
|
|
users::table
|
|
|
|
.filter(users::id.eq_any(author_list))
|
|
|
|
.load::<User>(conn)
|
|
|
|
.expect("Post::get_authors: loading error")
|
2018-04-30 18:50:35 +02:00
|
|
|
}
|
2018-05-03 17:22:40 +02:00
|
|
|
|
2018-10-30 10:11:53 +01:00
|
|
|
pub fn is_author(&self, conn: &Connection, author_id: i32) -> bool {
|
|
|
|
use schema::post_authors;
|
|
|
|
PostAuthor::belonging_to(self)
|
|
|
|
.filter(post_authors::author_id.eq(author_id))
|
|
|
|
.count()
|
|
|
|
.get_result::<i64>(conn)
|
|
|
|
.expect("Post::is_author: loading error") > 0
|
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_blog(&self, conn: &Connection) -> Blog {
|
2018-05-03 17:22:40 +02:00
|
|
|
use schema::blogs;
|
2018-11-24 12:44:17 +01:00
|
|
|
blogs::table
|
|
|
|
.filter(blogs::id.eq(self.blog_id))
|
2018-05-03 17:22:40 +02:00
|
|
|
.limit(1)
|
|
|
|
.load::<Blog>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_blog: loading error")
|
2018-11-24 12:44:17 +01:00
|
|
|
.into_iter()
|
|
|
|
.nth(0)
|
|
|
|
.expect("Post::get_blog: no result error")
|
2018-05-03 17:22:40 +02:00
|
|
|
}
|
2018-05-10 12:52:56 +02:00
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_likes(&self, conn: &Connection) -> Vec<Like> {
|
2018-05-10 18:38:03 +02:00
|
|
|
use schema::likes;
|
2018-11-24 12:44:17 +01:00
|
|
|
likes::table
|
|
|
|
.filter(likes::post_id.eq(self.id))
|
2018-05-10 18:38:03 +02:00
|
|
|
.load::<Like>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_likes: loading error")
|
2018-05-10 18:38:03 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_reshares(&self, conn: &Connection) -> Vec<Reshare> {
|
2018-05-19 11:57:39 +02:00
|
|
|
use schema::reshares;
|
2018-11-24 12:44:17 +01:00
|
|
|
reshares::table
|
|
|
|
.filter(reshares::post_id.eq(self.id))
|
2018-05-19 11:57:39 +02:00
|
|
|
.load::<Reshare>(conn)
|
2018-10-20 08:44:33 +02:00
|
|
|
.expect("Post::get_reshares: loading error")
|
2018-05-19 11:57:39 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn update_ap_url(&self, conn: &Connection) -> Post {
|
2018-11-26 10:21:52 +01:00
|
|
|
if self.ap_url.is_empty() {
|
2018-05-10 12:52:56 +02:00
|
|
|
diesel::update(self)
|
|
|
|
.set(posts::ap_url.eq(self.compute_id(conn)))
|
2018-11-24 12:44:17 +01:00
|
|
|
.execute(conn)
|
|
|
|
.expect("Post::update_ap_url: update error");
|
2018-10-20 08:44:33 +02:00
|
|
|
Post::get(conn, self.id).expect("Post::update_ap_url: get error")
|
2018-06-22 17:17:53 +02:00
|
|
|
} else {
|
|
|
|
self.clone()
|
2018-05-10 12:52:56 +02:00
|
|
|
}
|
|
|
|
}
|
2018-05-10 17:36:32 +02:00
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn get_receivers_urls(&self, conn: &Connection) -> Vec<String> {
|
2018-11-24 12:44:17 +01:00
|
|
|
let followers = self
|
|
|
|
.get_authors(conn)
|
|
|
|
.into_iter()
|
|
|
|
.map(|a| a.get_followers(conn))
|
|
|
|
.collect::<Vec<Vec<User>>>();
|
2018-11-26 10:21:52 +01:00
|
|
|
followers.into_iter().fold(vec![], |mut acc, f| {
|
2018-05-10 17:36:32 +02:00
|
|
|
for x in f {
|
|
|
|
acc.push(x.ap_url);
|
|
|
|
}
|
|
|
|
acc
|
2018-11-26 10:21:52 +01:00
|
|
|
})
|
2018-05-10 17:36:32 +02:00
|
|
|
}
|
2018-05-19 00:04:30 +02:00
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
pub fn to_activity(&self, conn: &Connection) -> LicensedArticle {
|
2018-05-19 00:04:30 +02:00
|
|
|
let mut to = self.get_receivers_urls(conn);
|
|
|
|
to.push(PUBLIC_VISIBILTY.to_string());
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let mut mentions_json = Mention::list_for_post(conn, self.id)
|
|
|
|
.into_iter()
|
|
|
|
.map(|m| json!(m.to_activity(conn)))
|
|
|
|
.collect::<Vec<serde_json::Value>>();
|
|
|
|
let mut tags_json = Tag::for_post(conn, self.id)
|
|
|
|
.into_iter()
|
2018-11-26 10:21:52 +01:00
|
|
|
.map(|t| json!(t.to_activity(conn)))
|
2018-11-24 12:44:17 +01:00
|
|
|
.collect::<Vec<serde_json::Value>>();
|
2018-09-07 22:38:22 +02:00
|
|
|
mentions_json.append(&mut tags_json);
|
2018-06-20 22:58:11 +02:00
|
|
|
|
2018-05-19 00:04:30 +02:00
|
|
|
let mut article = Article::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_name_string(self.title.clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: name error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_id_string(self.ap_url.clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: id error");
|
2018-11-24 12:44:17 +01:00
|
|
|
|
|
|
|
let mut authors = self
|
|
|
|
.get_authors(conn)
|
|
|
|
.into_iter()
|
|
|
|
.map(|x| Id::new(x.ap_url))
|
|
|
|
.collect::<Vec<Id>>();
|
2018-07-26 22:23:53 +02:00
|
|
|
authors.push(self.get_blog(conn).into_id()); // add the blog URL here too
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_attributed_to_link_vec::<Id>(authors)
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: attributedTo error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_content_string(self.content.get().clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: content error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.ap_object_props
|
|
|
|
.set_source_object(Source {
|
|
|
|
content: self.source.clone(),
|
|
|
|
media_type: String::from("text/markdown"),
|
|
|
|
})
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: source error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_published_utctime(Utc.from_utc_datetime(&self.creation_date))
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: published error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_summary_string(self.subtitle.clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: summary error");
|
2018-09-07 22:38:22 +02:00
|
|
|
article.object_props.tag = Some(json!(mentions_json));
|
2018-10-31 10:40:20 +01:00
|
|
|
|
|
|
|
if let Some(media_id) = self.cover_id {
|
2018-11-26 10:21:52 +01:00
|
|
|
let media = Media::get(conn, media_id).expect("Post::to_activity: get cover error");
|
2018-10-31 10:40:20 +01:00
|
|
|
let mut cover = Image::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
cover
|
|
|
|
.object_props
|
|
|
|
.set_url_string(media.url(conn))
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: icon.url error");
|
2018-10-31 10:40:20 +01:00
|
|
|
if media.sensitive {
|
2018-11-24 12:44:17 +01:00
|
|
|
cover
|
|
|
|
.object_props
|
2018-11-26 10:21:52 +01:00
|
|
|
.set_summary_string(media.content_warning.unwrap_or_default())
|
|
|
|
.expect("Post::to_activity: icon.summary error");
|
2018-10-31 10:40:20 +01:00
|
|
|
}
|
2018-11-24 12:44:17 +01:00
|
|
|
cover
|
|
|
|
.object_props
|
|
|
|
.set_content_string(media.alt_text)
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: icon.content error");
|
2018-11-24 12:44:17 +01:00
|
|
|
cover
|
|
|
|
.object_props
|
|
|
|
.set_attributed_to_link_vec(vec![
|
|
|
|
User::get(conn, media.owner_id)
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: media owner not found")
|
2018-11-24 12:44:17 +01:00
|
|
|
.into_id(),
|
|
|
|
])
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: icon.attributedTo error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_icon_object(cover)
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: icon error");
|
2018-10-31 10:40:20 +01:00
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_url_string(self.ap_url.clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: url error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_to_link_vec::<Id>(to.into_iter().map(Id::new).collect())
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: to error");
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.set_cc_link_vec::<Id>(vec![])
|
2018-11-26 10:21:52 +01:00
|
|
|
.expect("Post::to_activity: cc error");
|
2018-12-09 18:43:34 +01:00
|
|
|
let mut license = Licensed::default();
|
|
|
|
license.set_license_string(self.license.clone()).expect("Post::to_activity: license error");
|
|
|
|
LicensedArticle::new(article, license)
|
2018-05-19 00:04:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn create_activity(&self, conn: &Connection) -> Create {
|
2018-11-26 10:21:52 +01:00
|
|
|
let article = self.to_activity(conn);
|
2018-05-19 00:04:30 +02:00
|
|
|
let mut act = Create::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
|
|
|
.set_id_string(format!("{}activity", self.ap_url))
|
|
|
|
.expect("Post::create_activity: id error");
|
|
|
|
act.object_props
|
|
|
|
.set_to_link_vec::<Id>(
|
2018-12-09 18:43:34 +01:00
|
|
|
article.object
|
2018-11-24 12:44:17 +01:00
|
|
|
.object_props
|
|
|
|
.to_link_vec()
|
|
|
|
.expect("Post::create_activity: Couldn't copy 'to'"),
|
|
|
|
)
|
2018-09-06 23:39:22 +02:00
|
|
|
.expect("Post::create_activity: to error");
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
|
|
|
.set_cc_link_vec::<Id>(
|
2018-12-09 18:43:34 +01:00
|
|
|
article.object
|
2018-11-24 12:44:17 +01:00
|
|
|
.object_props
|
|
|
|
.cc_link_vec()
|
|
|
|
.expect("Post::create_activity: Couldn't copy 'cc'"),
|
|
|
|
)
|
2018-09-06 23:39:22 +02:00
|
|
|
.expect("Post::create_activity: cc error");
|
2018-11-24 12:44:17 +01:00
|
|
|
act.create_props
|
|
|
|
.set_actor_link(Id::new(self.get_authors(conn)[0].clone().ap_url))
|
|
|
|
.expect("Post::create_activity: actor error");
|
|
|
|
act.create_props
|
|
|
|
.set_object_object(article)
|
|
|
|
.expect("Post::create_activity: object error");
|
2018-05-19 00:04:30 +02:00
|
|
|
act
|
|
|
|
}
|
2018-06-18 18:34:29 +02:00
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn update_activity(&self, conn: &Connection) -> Update {
|
2018-11-26 10:21:52 +01:00
|
|
|
let article = self.to_activity(conn);
|
2018-09-06 23:39:22 +02:00
|
|
|
let mut act = Update::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
|
|
|
.set_id_string(format!("{}/update-{}", self.ap_url, Utc::now().timestamp()))
|
|
|
|
.expect("Post::update_activity: id error");
|
|
|
|
act.object_props
|
|
|
|
.set_to_link_vec::<Id>(
|
2018-12-09 18:43:34 +01:00
|
|
|
article.object
|
2018-11-24 12:44:17 +01:00
|
|
|
.object_props
|
|
|
|
.to_link_vec()
|
|
|
|
.expect("Post::update_activity: Couldn't copy 'to'"),
|
|
|
|
)
|
2018-09-06 23:39:22 +02:00
|
|
|
.expect("Post::update_activity: to error");
|
2018-11-24 12:44:17 +01:00
|
|
|
act.object_props
|
|
|
|
.set_cc_link_vec::<Id>(
|
2018-12-09 18:43:34 +01:00
|
|
|
article.object
|
2018-11-24 12:44:17 +01:00
|
|
|
.object_props
|
|
|
|
.cc_link_vec()
|
|
|
|
.expect("Post::update_activity: Couldn't copy 'cc'"),
|
|
|
|
)
|
2018-09-06 23:39:22 +02:00
|
|
|
.expect("Post::update_activity: cc error");
|
2018-11-24 12:44:17 +01:00
|
|
|
act.update_props
|
|
|
|
.set_actor_link(Id::new(self.get_authors(conn)[0].clone().ap_url))
|
|
|
|
.expect("Post::update_activity: actor error");
|
|
|
|
act.update_props
|
|
|
|
.set_object_object(article)
|
2018-12-09 18:43:34 +01:00
|
|
|
.expect("Post::update_activity: object error");
|
2018-09-06 23:39:22 +02:00
|
|
|
act
|
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
pub fn handle_update(conn: &Connection, updated: &LicensedArticle, searcher: &Searcher) {
|
|
|
|
let id = updated.object
|
2018-11-24 12:44:17 +01:00
|
|
|
.object_props
|
|
|
|
.id_string()
|
|
|
|
.expect("Post::handle_update: id error");
|
2018-11-26 10:21:52 +01:00
|
|
|
let mut post = Post::find_by_ap_url(conn, &id).expect("Post::handle_update: finding error");
|
2018-09-07 19:51:53 +02:00
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(title) = updated.object.object_props.name_string() {
|
2018-09-07 19:51:53 +02:00
|
|
|
post.slug = title.to_kebab_case();
|
|
|
|
post.title = title;
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(content) = updated.object.object_props.content_string() {
|
2018-09-07 19:51:53 +02:00
|
|
|
post.content = SafeString::new(&content);
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(subtitle) = updated.object.object_props.summary_string() {
|
2018-09-07 19:51:53 +02:00
|
|
|
post.subtitle = subtitle;
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(ap_url) = updated.object.object_props.url_string() {
|
2018-09-07 19:51:53 +02:00
|
|
|
post.ap_url = ap_url;
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(source) = updated.object.ap_object_props.source_object::<Source>() {
|
2018-09-07 19:51:53 +02:00
|
|
|
post.source = source.content;
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Ok(license) = updated.custom_props.license_string() {
|
|
|
|
post.license = license;
|
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let mut txt_hashtags = md_to_html(&post.source)
|
|
|
|
.2
|
|
|
|
.into_iter()
|
|
|
|
.map(|s| s.to_camel_case())
|
|
|
|
.collect::<HashSet<_>>();
|
2018-12-09 18:43:34 +01:00
|
|
|
if let Some(serde_json::Value::Array(mention_tags)) = updated.object.object_props.tag.clone() {
|
2018-10-28 10:05:02 +01:00
|
|
|
let mut mentions = vec![];
|
|
|
|
let mut tags = vec![];
|
2018-10-28 10:57:10 +01:00
|
|
|
let mut hashtags = vec![];
|
2018-11-26 10:21:52 +01:00
|
|
|
for tag in mention_tags {
|
2018-10-28 10:05:02 +01:00
|
|
|
serde_json::from_value::<link::Mention>(tag.clone())
|
|
|
|
.map(|m| mentions.push(m))
|
|
|
|
.ok();
|
|
|
|
|
|
|
|
serde_json::from_value::<Hashtag>(tag.clone())
|
|
|
|
.map(|t| {
|
2018-11-24 12:44:17 +01:00
|
|
|
let tag_name = t
|
|
|
|
.name_string()
|
|
|
|
.expect("Post::from_activity: tag name error");
|
2018-10-28 10:57:10 +01:00
|
|
|
if txt_hashtags.remove(&tag_name) {
|
|
|
|
hashtags.push(t);
|
|
|
|
} else {
|
|
|
|
tags.push(t);
|
|
|
|
}
|
2018-11-24 12:44:17 +01:00
|
|
|
})
|
|
|
|
.ok();
|
2018-10-28 10:05:02 +01:00
|
|
|
}
|
|
|
|
post.update_mentions(conn, mentions);
|
2018-10-28 10:57:10 +01:00
|
|
|
post.update_tags(conn, tags);
|
|
|
|
post.update_hashtags(conn, hashtags);
|
2018-10-28 10:05:02 +01:00
|
|
|
}
|
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
post.update(conn, searcher);
|
2018-09-06 23:39:22 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 10:05:02 +01:00
|
|
|
pub fn update_mentions(&self, conn: &Connection, mentions: Vec<link::Mention>) {
|
2018-11-24 12:44:17 +01:00
|
|
|
let mentions = mentions
|
|
|
|
.into_iter()
|
|
|
|
.map(|m| {
|
|
|
|
(
|
|
|
|
m.link_props
|
|
|
|
.href_string()
|
|
|
|
.ok()
|
2018-11-26 10:21:52 +01:00
|
|
|
.and_then(|ap_url| User::find_by_ap_url(conn, &ap_url))
|
2018-11-24 12:44:17 +01:00
|
|
|
.map(|u| u.id),
|
|
|
|
m,
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.filter_map(|(id, m)| {
|
|
|
|
if let Some(id) = id {
|
|
|
|
Some((m, id))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
2018-10-28 10:05:02 +01:00
|
|
|
|
|
|
|
let old_mentions = Mention::list_for_post(&conn, self.id);
|
2018-11-24 12:44:17 +01:00
|
|
|
let old_user_mentioned = old_mentions
|
|
|
|
.iter()
|
|
|
|
.map(|m| m.mentioned_id)
|
|
|
|
.collect::<HashSet<_>>();
|
2018-11-26 10:21:52 +01:00
|
|
|
for (m, id) in &mentions {
|
2018-11-24 12:44:17 +01:00
|
|
|
if !old_user_mentioned.contains(&id) {
|
2018-11-26 10:21:52 +01:00
|
|
|
Mention::from_activity(&*conn, &m, self.id, true, true);
|
2018-10-28 10:05:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let new_mentions = mentions
|
|
|
|
.into_iter()
|
|
|
|
.map(|(_m, id)| id)
|
|
|
|
.collect::<HashSet<_>>();
|
|
|
|
for m in old_mentions
|
|
|
|
.iter()
|
|
|
|
.filter(|m| !new_mentions.contains(&m.mentioned_id))
|
|
|
|
{
|
2018-10-28 10:05:02 +01:00
|
|
|
m.delete(&conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-28 10:57:10 +01:00
|
|
|
pub fn update_tags(&self, conn: &Connection, tags: Vec<Hashtag>) {
|
2018-11-24 12:44:17 +01:00
|
|
|
let tags_name = tags
|
|
|
|
.iter()
|
|
|
|
.filter_map(|t| t.name_string().ok())
|
|
|
|
.collect::<HashSet<_>>();
|
|
|
|
|
|
|
|
let old_tags = Tag::for_post(&*conn, self.id)
|
|
|
|
.into_iter()
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let old_tags_name = old_tags
|
|
|
|
.iter()
|
|
|
|
.filter_map(|tag| {
|
|
|
|
if !tag.is_hashtag {
|
|
|
|
Some(tag.tag.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<HashSet<_>>();
|
2018-10-28 10:57:10 +01:00
|
|
|
|
2018-11-26 10:21:52 +01:00
|
|
|
for t in tags {
|
2018-11-24 12:44:17 +01:00
|
|
|
if !t
|
|
|
|
.name_string()
|
|
|
|
.map(|n| old_tags_name.contains(&n))
|
|
|
|
.unwrap_or(true)
|
|
|
|
{
|
2018-11-26 10:21:52 +01:00
|
|
|
Tag::from_activity(conn, &t, self.id, false);
|
2018-10-28 10:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 15:10:07 +01:00
|
|
|
for ot in old_tags.iter().filter(|t| !t.is_hashtag) {
|
2018-10-28 10:57:10 +01:00
|
|
|
if !tags_name.contains(&ot.tag) {
|
|
|
|
ot.delete(conn);
|
|
|
|
}
|
|
|
|
}
|
2018-10-28 10:05:02 +01:00
|
|
|
}
|
|
|
|
|
2018-10-28 10:57:10 +01:00
|
|
|
pub fn update_hashtags(&self, conn: &Connection, tags: Vec<Hashtag>) {
|
2018-11-24 12:44:17 +01:00
|
|
|
let tags_name = tags
|
|
|
|
.iter()
|
|
|
|
.filter_map(|t| t.name_string().ok())
|
|
|
|
.collect::<HashSet<_>>();
|
|
|
|
|
|
|
|
let old_tags = Tag::for_post(&*conn, self.id)
|
|
|
|
.into_iter()
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let old_tags_name = old_tags
|
|
|
|
.iter()
|
|
|
|
.filter_map(|tag| {
|
|
|
|
if tag.is_hashtag {
|
|
|
|
Some(tag.tag.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<HashSet<_>>();
|
2018-10-28 10:57:10 +01:00
|
|
|
|
2018-11-26 10:21:52 +01:00
|
|
|
for t in tags {
|
2018-11-24 12:44:17 +01:00
|
|
|
if !t
|
|
|
|
.name_string()
|
|
|
|
.map(|n| old_tags_name.contains(&n))
|
|
|
|
.unwrap_or(true)
|
|
|
|
{
|
2018-11-26 10:21:52 +01:00
|
|
|
Tag::from_activity(conn, &t, self.id, true);
|
2018-10-28 10:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 15:10:07 +01:00
|
|
|
for ot in old_tags.into_iter().filter(|t| t.is_hashtag) {
|
2018-10-28 10:57:10 +01:00
|
|
|
if !tags_name.contains(&ot.tag) {
|
|
|
|
ot.delete(conn);
|
|
|
|
}
|
|
|
|
}
|
2018-10-28 10:05:02 +01:00
|
|
|
}
|
2018-10-28 10:57:10 +01:00
|
|
|
|
2018-12-06 18:54:16 +01:00
|
|
|
pub fn url(&self, conn: &Connection) -> String {
|
2018-07-22 01:42:27 +02:00
|
|
|
let blog = self.get_blog(conn);
|
2018-12-06 18:54:16 +01:00
|
|
|
format!("/~/{}/{}", blog.get_fqn(conn), self.slug)
|
2018-06-18 18:34:29 +02:00
|
|
|
}
|
2018-06-20 11:01:25 +02:00
|
|
|
|
2018-09-26 17:22:42 +02:00
|
|
|
pub fn compute_id(&self, conn: &Connection) -> String {
|
2018-11-26 10:21:52 +01:00
|
|
|
ap_url(&format!(
|
2018-11-24 12:44:17 +01:00
|
|
|
"{}/~/{}/{}/",
|
|
|
|
BASE_URL.as_str(),
|
|
|
|
self.get_blog(conn).get_fqn(conn),
|
|
|
|
self.slug
|
|
|
|
))
|
2018-06-20 11:01:25 +02:00
|
|
|
}
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
pub fn cover_url(&self, conn: &Connection) -> Option<String> {
|
|
|
|
self.cover_id.and_then(|i| Media::get(conn, i)).map(|c| c.url(conn))
|
|
|
|
}
|
2018-05-19 00:04:30 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 18:43:34 +01:00
|
|
|
impl<'a> FromActivity<LicensedArticle, (&'a Connection, &'a Searcher)> for Post {
|
|
|
|
fn from_activity((conn, searcher): &(&'a Connection, &'a Searcher), article: LicensedArticle, _actor: Id) -> Post {
|
|
|
|
let license = article.custom_props.license_string().unwrap_or_default();
|
|
|
|
let article = article.object;
|
2018-11-24 12:44:17 +01:00
|
|
|
if let Some(post) = Post::find_by_ap_url(
|
|
|
|
conn,
|
2018-11-26 10:21:52 +01:00
|
|
|
&article.object_props.id_string().unwrap_or_default(),
|
2018-11-24 12:44:17 +01:00
|
|
|
) {
|
2018-07-26 22:59:41 +02:00
|
|
|
post
|
|
|
|
} else {
|
2018-11-24 12:44:17 +01:00
|
|
|
let (blog, authors) = article
|
|
|
|
.object_props
|
|
|
|
.attributed_to_link_vec::<Id>()
|
2018-07-26 22:59:41 +02:00
|
|
|
.expect("Post::from_activity: attributedTo error")
|
|
|
|
.into_iter()
|
|
|
|
.fold((None, vec![]), |(blog, mut authors), link| {
|
|
|
|
let url: String = link.into();
|
2018-11-26 10:21:52 +01:00
|
|
|
match User::from_url(conn, &url) {
|
2018-07-26 22:59:41 +02:00
|
|
|
Some(user) => {
|
|
|
|
authors.push(user);
|
|
|
|
(blog, authors)
|
2018-11-24 12:44:17 +01:00
|
|
|
}
|
2018-11-26 10:21:52 +01:00
|
|
|
None => (blog.or_else(|| Blog::from_url(conn, &url)), authors),
|
2018-07-26 22:59:41 +02:00
|
|
|
}
|
|
|
|
});
|
2018-06-21 15:05:35 +02:00
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let cover = article
|
|
|
|
.object_props
|
|
|
|
.icon_object::<Image>()
|
|
|
|
.ok()
|
2018-11-26 10:21:52 +01:00
|
|
|
.and_then(|img| Media::from_activity(conn, &img).map(|m| m.id));
|
2018-10-31 10:40:20 +01:00
|
|
|
|
2018-11-24 12:44:17 +01:00
|
|
|
let title = article
|
|
|
|
.object_props
|
|
|
|
.name_string()
|
|
|
|
.expect("Post::from_activity: title error");
|
|
|
|
let post = Post::insert(
|
|
|
|
conn,
|
|
|
|
NewPost {
|
|
|
|
blog_id: blog.expect("Post::from_activity: blog not found error").id,
|
|
|
|
slug: title.to_kebab_case(),
|
2018-11-26 10:21:52 +01:00
|
|
|
title,
|
2018-11-24 12:44:17 +01:00
|
|
|
content: SafeString::new(
|
|
|
|
&article
|
|
|
|
.object_props
|
|
|
|
.content_string()
|
|
|
|
.expect("Post::from_activity: content error"),
|
|
|
|
),
|
|
|
|
published: true,
|
2018-12-09 18:43:34 +01:00
|
|
|
license: license,
|
2018-11-24 12:44:17 +01:00
|
|
|
// FIXME: This is wrong: with this logic, we may use the display URL as the AP ID. We need two different fields
|
2018-11-26 10:21:52 +01:00
|
|
|
ap_url: article.object_props.url_string().unwrap_or_else(|_|
|
2018-11-24 12:44:17 +01:00
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.id_string()
|
|
|
|
.expect("Post::from_activity: url + id error"),
|
|
|
|
),
|
|
|
|
creation_date: Some(
|
|
|
|
article
|
|
|
|
.object_props
|
|
|
|
.published_utctime()
|
|
|
|
.expect("Post::from_activity: published error")
|
|
|
|
.naive_utc(),
|
|
|
|
),
|
|
|
|
subtitle: article
|
|
|
|
.object_props
|
|
|
|
.summary_string()
|
|
|
|
.expect("Post::from_activity: summary error"),
|
|
|
|
source: article
|
|
|
|
.ap_object_props
|
|
|
|
.source_object::<Source>()
|
|
|
|
.expect("Post::from_activity: source error")
|
|
|
|
.content,
|
|
|
|
cover_id: cover,
|
|
|
|
},
|
2018-12-02 17:37:51 +01:00
|
|
|
searcher,
|
2018-11-24 12:44:17 +01:00
|
|
|
);
|
2018-06-23 13:14:03 +02:00
|
|
|
|
2018-11-26 10:21:52 +01:00
|
|
|
for author in authors {
|
2018-11-24 12:44:17 +01:00
|
|
|
PostAuthor::insert(
|
|
|
|
conn,
|
|
|
|
NewPostAuthor {
|
|
|
|
post_id: post.id,
|
|
|
|
author_id: author.id,
|
|
|
|
},
|
|
|
|
);
|
2018-07-26 22:59:41 +02:00
|
|
|
}
|
|
|
|
|
2018-09-06 10:21:08 +02:00
|
|
|
// save mentions and tags
|
2018-11-24 12:44:17 +01:00
|
|
|
let mut hashtags = md_to_html(&post.source)
|
|
|
|
.2
|
|
|
|
.into_iter()
|
|
|
|
.map(|s| s.to_camel_case())
|
|
|
|
.collect::<HashSet<_>>();
|
2018-07-26 22:59:41 +02:00
|
|
|
if let Some(serde_json::Value::Array(tags)) = article.object_props.tag.clone() {
|
2018-11-26 10:21:52 +01:00
|
|
|
for tag in tags {
|
2018-09-06 14:06:04 +02:00
|
|
|
serde_json::from_value::<link::Mention>(tag.clone())
|
2018-11-26 10:21:52 +01:00
|
|
|
.map(|m| Mention::from_activity(conn, &m, post.id, true, true))
|
2018-07-26 22:59:41 +02:00
|
|
|
.ok();
|
2018-09-06 10:21:08 +02:00
|
|
|
|
2018-09-06 14:06:04 +02:00
|
|
|
serde_json::from_value::<Hashtag>(tag.clone())
|
2018-10-27 23:51:26 +02:00
|
|
|
.map(|t| {
|
2018-11-24 12:44:17 +01:00
|
|
|
let tag_name = t
|
|
|
|
.name_string()
|
|
|
|
.expect("Post::from_activity: tag name error");
|
2018-11-26 10:21:52 +01:00
|
|
|
Tag::from_activity(conn, &t, post.id, hashtags.remove(&tag_name));
|
2018-10-27 23:51:26 +02:00
|
|
|
})
|
2018-09-06 10:21:08 +02:00
|
|
|
.ok();
|
2018-07-26 22:59:41 +02:00
|
|
|
}
|
2018-06-21 15:05:35 +02:00
|
|
|
}
|
2018-07-26 22:59:41 +02:00
|
|
|
post
|
2018-06-21 15:05:35 +02:00
|
|
|
}
|
2018-06-12 21:10:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
impl<'a> Deletable<(&'a Connection, &'a Searcher), Delete> for Post {
|
|
|
|
fn delete(&self, (conn, searcher): &(&Connection, &Searcher)) -> Delete {
|
2018-09-01 17:28:47 +02:00
|
|
|
let mut act = Delete::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
act.delete_props
|
|
|
|
.set_actor_link(self.get_authors(conn)[0].clone().into_id())
|
|
|
|
.expect("Post::delete: actor error");
|
2018-09-01 17:28:47 +02:00
|
|
|
|
|
|
|
let mut tombstone = Tombstone::default();
|
2018-11-24 12:44:17 +01:00
|
|
|
tombstone
|
|
|
|
.object_props
|
|
|
|
.set_id_string(self.ap_url.clone())
|
|
|
|
.expect("Post::delete: object.id error");
|
|
|
|
act.delete_props
|
|
|
|
.set_object_object(tombstone)
|
|
|
|
.expect("Post::delete: object error");
|
|
|
|
|
|
|
|
act.object_props
|
|
|
|
.set_id_string(format!("{}#delete", self.ap_url))
|
|
|
|
.expect("Post::delete: id error");
|
|
|
|
act.object_props
|
|
|
|
.set_to_link_vec(vec![Id::new(PUBLIC_VISIBILTY)])
|
|
|
|
.expect("Post::delete: to error");
|
2018-09-01 17:28:47 +02:00
|
|
|
|
2018-10-27 22:17:06 +02:00
|
|
|
for m in Mention::list_for_post(&conn, self.id) {
|
|
|
|
m.delete(conn);
|
|
|
|
}
|
2018-11-24 12:44:17 +01:00
|
|
|
diesel::delete(self)
|
2018-12-02 17:37:51 +01:00
|
|
|
.execute(*conn)
|
2018-11-24 12:44:17 +01:00
|
|
|
.expect("Post::delete: DB error");
|
2018-12-02 17:37:51 +01:00
|
|
|
searcher.delete_document(self);
|
2018-09-01 17:28:47 +02:00
|
|
|
act
|
|
|
|
}
|
|
|
|
|
2018-12-02 17:37:51 +01:00
|
|
|
fn delete_id(id: &str, actor_id: &str, (conn, searcher): &(&Connection, &Searcher)) {
|
2018-10-22 17:29:25 +02:00
|
|
|
let actor = User::find_by_ap_url(conn, actor_id);
|
|
|
|
let post = Post::find_by_ap_url(conn, id);
|
2018-11-24 12:44:17 +01:00
|
|
|
let can_delete = actor
|
|
|
|
.and_then(|act| {
|
|
|
|
post.clone()
|
|
|
|
.map(|p| p.get_authors(conn).into_iter().any(|a| act.id == a.id))
|
|
|
|
})
|
|
|
|
.unwrap_or(false);
|
2018-10-22 17:29:25 +02:00
|
|
|
if can_delete {
|
2018-12-02 17:37:51 +01:00
|
|
|
post.map(|p| p.delete(&(conn, searcher)));
|
2018-10-22 17:29:25 +02:00
|
|
|
}
|
2018-09-01 17:28:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-19 00:04:30 +02:00
|
|
|
impl IntoId for Post {
|
|
|
|
fn into_id(self) -> Id {
|
|
|
|
Id::new(self.ap_url.clone())
|
|
|
|
}
|
2018-04-23 15:41:43 +02:00
|
|
|
}
|