2020-05-16 14:04:08 +00:00
|
|
|
use actix_web::{error::ErrorBadRequest, *};
|
2020-08-01 14:04:42 +00:00
|
|
|
use anyhow::anyhow;
|
2020-05-16 14:04:08 +00:00
|
|
|
use chrono::{DateTime, NaiveDateTime, Utc};
|
2020-08-18 13:43:50 +00:00
|
|
|
use diesel::PgConnection;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::{
|
2021-03-10 22:33:55 +00:00
|
|
|
source::{community::Community_, person::Person_},
|
2021-03-15 18:02:27 +00:00
|
|
|
Crud,
|
2020-07-10 18:15:41 +00:00
|
|
|
ListingType,
|
|
|
|
SortType,
|
|
|
|
};
|
2021-03-18 20:25:21 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{community::Community, local_user::LocalUser, person::Person},
|
|
|
|
LocalUserId,
|
|
|
|
};
|
2020-12-21 16:30:34 +00:00
|
|
|
use lemmy_db_views::{
|
|
|
|
comment_view::{CommentQueryBuilder, CommentView},
|
|
|
|
post_view::{PostQueryBuilder, PostView},
|
|
|
|
site_view::SiteView,
|
|
|
|
};
|
2021-03-10 22:33:55 +00:00
|
|
|
use lemmy_db_views_actor::person_mention_view::{PersonMentionQueryBuilder, PersonMentionView};
|
2021-03-01 17:24:11 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
claims::Claims,
|
|
|
|
settings::structs::Settings,
|
|
|
|
utils::markdown_to_html,
|
|
|
|
LemmyError,
|
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2020-11-20 14:11:47 +00:00
|
|
|
use rss::{
|
|
|
|
extension::dublincore::DublinCoreExtensionBuilder,
|
|
|
|
ChannelBuilder,
|
|
|
|
GuidBuilder,
|
|
|
|
Item,
|
|
|
|
ItemBuilder,
|
|
|
|
};
|
2020-05-16 14:04:08 +00:00
|
|
|
use serde::Deserialize;
|
2020-11-20 14:11:47 +00:00
|
|
|
use std::{collections::HashMap, str::FromStr};
|
2020-05-16 14:04:08 +00:00
|
|
|
use strum::ParseError;
|
2019-11-19 17:07:10 +00:00
|
|
|
|
2019-12-01 18:09:10 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct Params {
|
2019-12-01 18:09:10 +00:00
|
|
|
sort: Option<String>,
|
|
|
|
}
|
|
|
|
|
2019-12-01 19:01:38 +00:00
|
|
|
enum RequestType {
|
|
|
|
Community,
|
|
|
|
User,
|
2019-12-08 00:39:43 +00:00
|
|
|
Front,
|
|
|
|
Inbox,
|
2019-12-01 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 12:55:33 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
|
|
|
cfg
|
2020-05-16 14:04:08 +00:00
|
|
|
.route("/feeds/{type}/{name}.xml", web::get().to(get_feed))
|
2020-11-26 17:26:31 +00:00
|
|
|
.route("/feeds/all.xml", web::get().to(get_all_feed))
|
|
|
|
.route("/feeds/local.xml", web::get().to(get_local_feed));
|
2019-12-31 12:55:33 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 14:11:47 +00:00
|
|
|
lazy_static! {
|
|
|
|
static ref RSS_NAMESPACE: HashMap<String, String> = {
|
|
|
|
let mut h = HashMap::new();
|
|
|
|
h.insert(
|
|
|
|
"dc".to_string(),
|
|
|
|
rss::extension::dublincore::NAMESPACE.to_string(),
|
|
|
|
);
|
|
|
|
h
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn get_all_feed(
|
|
|
|
info: web::Query<Params>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error> {
|
2020-07-01 12:54:29 +00:00
|
|
|
let sort_type = get_sort_type(info).map_err(ErrorBadRequest)?;
|
2020-11-26 17:26:31 +00:00
|
|
|
Ok(get_feed_data(&context, ListingType::All, sort_type).await?)
|
2019-12-01 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 17:26:31 +00:00
|
|
|
async fn get_local_feed(
|
|
|
|
info: web::Query<Params>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error> {
|
|
|
|
let sort_type = get_sort_type(info).map_err(ErrorBadRequest)?;
|
|
|
|
Ok(get_feed_data(&context, ListingType::Local, sort_type).await?)
|
|
|
|
}
|
2020-03-28 15:56:20 +00:00
|
|
|
|
2020-11-26 17:26:31 +00:00
|
|
|
async fn get_feed_data(
|
|
|
|
context: &LemmyContext,
|
|
|
|
listing_type: ListingType,
|
|
|
|
sort_type: SortType,
|
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
|
|
|
let site_view = blocking(context.pool(), move |conn| SiteView::read(&conn)).await??;
|
|
|
|
|
|
|
|
let posts = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
PostQueryBuilder::create(&conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(listing_type)
|
|
|
|
.sort(sort_type)
|
2020-11-26 17:26:31 +00:00
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
let items = create_post_items(posts)?;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2020-11-20 14:11:47 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.to_owned())
|
2020-11-26 17:26:31 +00:00
|
|
|
.title(&format!(
|
|
|
|
"{} - {}",
|
2020-12-02 19:32:47 +00:00
|
|
|
site_view.site.name,
|
2020-11-26 17:26:31 +00:00
|
|
|
listing_type.to_string()
|
|
|
|
))
|
2020-09-25 15:33:00 +00:00
|
|
|
.link(Settings::get().get_protocol_and_hostname())
|
2020-03-28 15:56:20 +00:00
|
|
|
.items(items);
|
|
|
|
|
2020-12-02 19:32:47 +00:00
|
|
|
if let Some(site_desc) = site_view.site.description {
|
2020-03-28 15:56:20 +00:00
|
|
|
channel_builder.description(&site_desc);
|
|
|
|
}
|
|
|
|
|
2020-11-26 17:26:31 +00:00
|
|
|
let rss = channel_builder.build().map_err(|e| anyhow!(e))?.to_string();
|
|
|
|
Ok(
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type("application/rss+xml")
|
|
|
|
.body(rss),
|
|
|
|
)
|
2020-03-28 15:56:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-11 12:30:45 +00:00
|
|
|
async fn get_feed(
|
2020-09-12 01:37:25 +00:00
|
|
|
web::Path((req_type, param)): web::Path<(String, String)>,
|
2020-01-11 12:30:45 +00:00
|
|
|
info: web::Query<Params>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-04-21 20:40:03 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2020-07-01 12:54:29 +00:00
|
|
|
let sort_type = get_sort_type(info).map_err(ErrorBadRequest)?;
|
|
|
|
|
2020-09-12 01:37:25 +00:00
|
|
|
let request_type = match req_type.as_str() {
|
2020-07-01 12:54:29 +00:00
|
|
|
"u" => RequestType::User,
|
|
|
|
"c" => RequestType::Community,
|
|
|
|
"front" => RequestType::Front,
|
|
|
|
"inbox" => RequestType::Inbox,
|
2020-08-01 14:04:42 +00:00
|
|
|
_ => return Err(ErrorBadRequest(LemmyError::from(anyhow!("wrong_type")))),
|
2020-07-01 12:54:29 +00:00
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let builder = blocking(context.pool(), move |conn| match request_type {
|
2020-07-01 12:54:29 +00:00
|
|
|
RequestType::User => get_feed_user(conn, &sort_type, param),
|
|
|
|
RequestType::Community => get_feed_community(conn, &sort_type, param),
|
|
|
|
RequestType::Front => get_feed_front(conn, &sort_type, param),
|
|
|
|
RequestType::Inbox => get_feed_inbox(conn, param),
|
2020-01-12 15:31:51 +00:00
|
|
|
})
|
2020-07-01 12:54:29 +00:00
|
|
|
.await?
|
|
|
|
.map_err(ErrorBadRequest)?;
|
|
|
|
|
|
|
|
let rss = builder.build().map_err(ErrorBadRequest)?.to_string();
|
|
|
|
|
|
|
|
Ok(
|
2020-01-12 15:31:51 +00:00
|
|
|
HttpResponse::Ok()
|
2019-11-19 17:07:10 +00:00
|
|
|
.content_type("application/rss+xml")
|
2020-07-01 12:54:29 +00:00
|
|
|
.body(rss),
|
|
|
|
)
|
2019-11-19 17:07:10 +00:00
|
|
|
}
|
2019-11-16 02:17:42 +00:00
|
|
|
|
2019-12-01 19:01:38 +00:00
|
|
|
fn get_sort_type(info: web::Query<Params>) -> Result<SortType, ParseError> {
|
2020-01-02 11:30:00 +00:00
|
|
|
let sort_query = info
|
|
|
|
.sort
|
|
|
|
.to_owned()
|
|
|
|
.unwrap_or_else(|| SortType::Hot.to_string());
|
2019-12-02 01:21:19 +00:00
|
|
|
SortType::from_str(&sort_query)
|
2019-12-01 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
fn get_feed_user(
|
|
|
|
conn: &PgConnection,
|
|
|
|
sort_type: &SortType,
|
|
|
|
user_name: String,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2019-12-02 01:21:19 +00:00
|
|
|
let site_view = SiteView::read(&conn)?;
|
2021-03-10 22:33:55 +00:00
|
|
|
let person = Person::find_by_name(&conn, &user_name)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
let posts = PostQueryBuilder::create(&conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(ListingType::All)
|
|
|
|
.sort(*sort_type)
|
2021-03-10 22:33:55 +00:00
|
|
|
.creator_id(person.id)
|
2019-12-08 01:57:30 +00:00
|
|
|
.list()?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
let items = create_post_items(posts)?;
|
2019-12-02 01:21:19 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
2019-12-08 00:39:43 +00:00
|
|
|
channel_builder
|
2020-11-20 14:11:47 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.to_owned())
|
2021-03-10 22:33:55 +00:00
|
|
|
.title(&format!("{} - {}", site_view.site.name, person.name))
|
|
|
|
.link(person.actor_id.to_string())
|
2019-12-08 00:39:43 +00:00
|
|
|
.items(items);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
Ok(channel_builder)
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
fn get_feed_community(
|
|
|
|
conn: &PgConnection,
|
|
|
|
sort_type: &SortType,
|
|
|
|
community_name: String,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2019-12-08 00:39:43 +00:00
|
|
|
let site_view = SiteView::read(&conn)?;
|
2020-04-24 14:04:36 +00:00
|
|
|
let community = Community::read_from_name(&conn, &community_name)?;
|
2019-11-19 17:07:10 +00:00
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
let posts = PostQueryBuilder::create(&conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(ListingType::All)
|
|
|
|
.sort(*sort_type)
|
2020-12-16 18:59:43 +00:00
|
|
|
.community_id(community.id)
|
2019-12-08 01:57:30 +00:00
|
|
|
.list()?;
|
2019-11-16 02:17:42 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
let items = create_post_items(posts)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2020-11-20 14:11:47 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.to_owned())
|
2020-12-02 19:32:47 +00:00
|
|
|
.title(&format!("{} - {}", site_view.site.name, community.name))
|
2021-01-27 16:42:23 +00:00
|
|
|
.link(community.actor_id.to_string())
|
2019-12-08 00:39:43 +00:00
|
|
|
.items(items);
|
|
|
|
|
|
|
|
if let Some(community_desc) = community.description {
|
|
|
|
channel_builder.description(&community_desc);
|
|
|
|
}
|
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
Ok(channel_builder)
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
fn get_feed_front(
|
|
|
|
conn: &PgConnection,
|
|
|
|
sort_type: &SortType,
|
|
|
|
jwt: String,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2019-12-08 00:39:43 +00:00
|
|
|
let site_view = SiteView::read(&conn)?;
|
2021-03-19 04:31:49 +00:00
|
|
|
let local_user_id = LocalUserId(Claims::decode(&jwt)?.claims.sub);
|
2021-04-21 21:41:14 +00:00
|
|
|
let local_user = LocalUser::read(&conn, local_user_id)?;
|
|
|
|
let person_id = local_user.person_id;
|
|
|
|
let show_bot_accounts = local_user.show_bot_accounts;
|
2021-04-24 22:26:50 +00:00
|
|
|
let show_read_posts = local_user.show_read_posts;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
let posts = PostQueryBuilder::create(&conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.listing_type(ListingType::Subscribed)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-24 22:26:50 +00:00
|
|
|
.show_read_posts(show_read_posts)
|
2021-04-15 03:37:51 +00:00
|
|
|
.sort(*sort_type)
|
2019-12-07 12:03:03 +00:00
|
|
|
.list()?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
let items = create_post_items(posts)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2020-11-20 14:11:47 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.to_owned())
|
2020-12-02 19:32:47 +00:00
|
|
|
.title(&format!("{} - Subscribed", site_view.site.name))
|
2020-09-25 15:33:00 +00:00
|
|
|
.link(Settings::get().get_protocol_and_hostname())
|
2019-12-08 00:39:43 +00:00
|
|
|
.items(items);
|
|
|
|
|
2020-12-02 19:32:47 +00:00
|
|
|
if let Some(site_desc) = site_view.site.description {
|
2019-12-08 00:39:43 +00:00
|
|
|
channel_builder.description(&site_desc);
|
|
|
|
}
|
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
Ok(channel_builder)
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
fn get_feed_inbox(conn: &PgConnection, jwt: String) -> Result<ChannelBuilder, LemmyError> {
|
2019-12-08 00:39:43 +00:00
|
|
|
let site_view = SiteView::read(&conn)?;
|
2021-03-19 04:31:49 +00:00
|
|
|
let local_user_id = LocalUserId(Claims::decode(&jwt)?.claims.sub);
|
2021-04-21 21:41:14 +00:00
|
|
|
let local_user = LocalUser::read(&conn, local_user_id)?;
|
|
|
|
let person_id = local_user.person_id;
|
|
|
|
let show_bot_accounts = local_user.show_bot_accounts;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let sort = SortType::New;
|
|
|
|
|
2020-12-16 18:59:43 +00:00
|
|
|
let replies = CommentQueryBuilder::create(&conn)
|
2021-03-10 22:33:55 +00:00
|
|
|
.recipient_id(person_id)
|
|
|
|
.my_person_id(person_id)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-15 03:37:51 +00:00
|
|
|
.sort(sort)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let mentions = PersonMentionQueryBuilder::create(&conn)
|
|
|
|
.recipient_id(person_id)
|
|
|
|
.my_person_id(person_id)
|
2021-04-15 03:37:51 +00:00
|
|
|
.sort(sort)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
let items = create_reply_and_mention_items(replies, mentions)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2020-11-20 14:11:47 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.to_owned())
|
2020-12-02 19:32:47 +00:00
|
|
|
.title(&format!("{} - Inbox", site_view.site.name))
|
2020-09-25 15:33:00 +00:00
|
|
|
.link(format!(
|
|
|
|
"{}/inbox",
|
|
|
|
Settings::get().get_protocol_and_hostname()
|
|
|
|
))
|
2019-12-08 00:39:43 +00:00
|
|
|
.items(items);
|
|
|
|
|
2020-12-02 19:32:47 +00:00
|
|
|
if let Some(site_desc) = site_view.site.description {
|
2019-12-08 00:39:43 +00:00
|
|
|
channel_builder.description(&site_desc);
|
|
|
|
}
|
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
Ok(channel_builder)
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn create_reply_and_mention_items(
|
2020-12-15 19:39:18 +00:00
|
|
|
replies: Vec<CommentView>,
|
2021-03-10 22:33:55 +00:00
|
|
|
mentions: Vec<PersonMentionView>,
|
2020-08-13 15:46:31 +00:00
|
|
|
) -> Result<Vec<Item>, LemmyError> {
|
2020-03-28 15:56:20 +00:00
|
|
|
let mut reply_items: Vec<Item> = replies
|
|
|
|
.iter()
|
|
|
|
.map(|r| {
|
|
|
|
let reply_url = format!(
|
2020-09-25 15:33:00 +00:00
|
|
|
"{}/post/{}/comment/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
2020-12-15 19:39:18 +00:00
|
|
|
r.post.id,
|
|
|
|
r.comment.id
|
2020-03-28 15:56:20 +00:00
|
|
|
);
|
2020-12-15 19:39:18 +00:00
|
|
|
build_item(
|
|
|
|
&r.creator.name,
|
|
|
|
&r.comment.published,
|
|
|
|
&reply_url,
|
|
|
|
&r.comment.content,
|
|
|
|
)
|
2020-03-28 15:56:20 +00:00
|
|
|
})
|
2020-08-13 15:46:31 +00:00
|
|
|
.collect::<Result<Vec<Item>, LemmyError>>()?;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
|
|
|
let mut mention_items: Vec<Item> = mentions
|
|
|
|
.iter()
|
|
|
|
.map(|m| {
|
|
|
|
let mention_url = format!(
|
2020-09-25 15:33:00 +00:00
|
|
|
"{}/post/{}/comment/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
2020-12-16 16:09:21 +00:00
|
|
|
m.post.id,
|
|
|
|
m.comment.id
|
2020-03-28 15:56:20 +00:00
|
|
|
);
|
2020-12-16 16:09:21 +00:00
|
|
|
build_item(
|
|
|
|
&m.creator.name,
|
|
|
|
&m.comment.published,
|
|
|
|
&mention_url,
|
|
|
|
&m.comment.content,
|
|
|
|
)
|
2020-03-28 15:56:20 +00:00
|
|
|
})
|
2020-08-13 15:46:31 +00:00
|
|
|
.collect::<Result<Vec<Item>, LemmyError>>()?;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
|
|
|
reply_items.append(&mut mention_items);
|
2020-08-13 15:46:31 +00:00
|
|
|
Ok(reply_items)
|
2020-03-28 15:56:20 +00:00
|
|
|
}
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
fn build_item(
|
|
|
|
creator_name: &str,
|
|
|
|
published: &NaiveDateTime,
|
|
|
|
url: &str,
|
|
|
|
content: &str,
|
|
|
|
) -> Result<Item, LemmyError> {
|
2020-03-28 15:56:20 +00:00
|
|
|
let mut i = ItemBuilder::default();
|
|
|
|
i.title(format!("Reply from {}", creator_name));
|
2020-09-25 15:33:00 +00:00
|
|
|
let author_url = format!(
|
|
|
|
"{}/u/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
|
|
|
creator_name
|
|
|
|
);
|
2020-03-28 15:56:20 +00:00
|
|
|
i.author(format!(
|
|
|
|
"/u/{} <a href=\"{}\">(link)</a>",
|
|
|
|
creator_name, author_url
|
|
|
|
));
|
|
|
|
let dt = DateTime::<Utc>::from_utc(*published, Utc);
|
|
|
|
i.pub_date(dt.to_rfc2822());
|
|
|
|
i.comments(url.to_owned());
|
2020-08-13 15:46:31 +00:00
|
|
|
let guid = GuidBuilder::default()
|
|
|
|
.permalink(true)
|
|
|
|
.value(url)
|
|
|
|
.build()
|
|
|
|
.map_err(|e| anyhow!(e))?;
|
|
|
|
i.guid(guid);
|
2020-03-28 15:56:20 +00:00
|
|
|
i.link(url.to_owned());
|
|
|
|
// TODO add images
|
2020-03-28 22:02:49 +00:00
|
|
|
let html = markdown_to_html(&content.to_string());
|
2020-03-28 15:56:20 +00:00
|
|
|
i.description(html);
|
2020-08-13 15:46:31 +00:00
|
|
|
Ok(i.build().map_err(|e| anyhow!(e))?)
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
fn create_post_items(posts: Vec<PostView>) -> Result<Vec<Item>, LemmyError> {
|
2019-11-16 02:17:42 +00:00
|
|
|
let mut items: Vec<Item> = Vec::new();
|
2019-12-02 01:21:19 +00:00
|
|
|
|
|
|
|
for p in posts {
|
2019-11-19 17:07:10 +00:00
|
|
|
let mut i = ItemBuilder::default();
|
2020-11-20 14:11:47 +00:00
|
|
|
let mut dc_extension = DublinCoreExtensionBuilder::default();
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2020-12-11 15:27:33 +00:00
|
|
|
i.title(p.post.name);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2021-01-27 16:42:23 +00:00
|
|
|
dc_extension.creators(vec![p.creator.actor_id.to_string()]);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2020-12-11 15:27:33 +00:00
|
|
|
let dt = DateTime::<Utc>::from_utc(p.post.published, Utc);
|
2019-12-08 00:39:43 +00:00
|
|
|
i.pub_date(dt.to_rfc2822());
|
2019-11-23 20:36:48 +00:00
|
|
|
|
2020-09-25 15:33:00 +00:00
|
|
|
let post_url = format!(
|
|
|
|
"{}/post/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
2020-12-11 15:27:33 +00:00
|
|
|
p.post.id
|
2020-09-25 15:33:00 +00:00
|
|
|
);
|
2021-02-10 20:43:03 +00:00
|
|
|
i.link(post_url.to_owned());
|
2019-12-02 01:21:19 +00:00
|
|
|
i.comments(post_url.to_owned());
|
|
|
|
let guid = GuidBuilder::default()
|
|
|
|
.permalink(true)
|
|
|
|
.value(&post_url)
|
2020-08-13 15:46:31 +00:00
|
|
|
.build()
|
|
|
|
.map_err(|e| anyhow!(e))?;
|
|
|
|
i.guid(guid);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
|
|
|
let community_url = format!(
|
2020-09-25 15:33:00 +00:00
|
|
|
"{}/c/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
2020-12-11 15:27:33 +00:00
|
|
|
p.community.name
|
2019-12-02 01:21:19 +00:00
|
|
|
);
|
|
|
|
|
2020-03-28 15:56:20 +00:00
|
|
|
// TODO add images
|
|
|
|
let mut description = format!("submitted by <a href=\"{}\">{}</a> to <a href=\"{}\">{}</a><br>{} points | <a href=\"{}\">{} comments</a>",
|
2020-12-11 15:27:33 +00:00
|
|
|
p.creator.actor_id,
|
|
|
|
p.creator.name,
|
2019-12-02 01:21:19 +00:00
|
|
|
community_url,
|
2020-12-11 15:27:33 +00:00
|
|
|
p.community.name,
|
|
|
|
p.counts.score,
|
2019-12-02 01:21:19 +00:00
|
|
|
post_url,
|
2020-12-11 15:27:33 +00:00
|
|
|
p.counts.comments);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2021-02-10 20:43:03 +00:00
|
|
|
// If its a url post, add it to the description
|
|
|
|
if let Some(url) = p.post.url {
|
|
|
|
let link_html = format!("<br><a href=\"{url}\">{url}</a>", url = url);
|
|
|
|
description.push_str(&link_html);
|
|
|
|
}
|
|
|
|
|
2020-12-11 15:27:33 +00:00
|
|
|
if let Some(body) = p.post.body {
|
2020-03-28 22:02:49 +00:00
|
|
|
let html = markdown_to_html(&body);
|
|
|
|
description.push_str(&html);
|
2019-11-19 17:07:10 +00:00
|
|
|
}
|
2019-12-02 01:21:19 +00:00
|
|
|
|
|
|
|
i.description(description);
|
|
|
|
|
2020-11-20 14:11:47 +00:00
|
|
|
i.dublin_core_ext(dc_extension.build().map_err(|e| anyhow!(e))?);
|
2020-08-13 15:46:31 +00:00
|
|
|
items.push(i.build().map_err(|e| anyhow!(e))?);
|
2019-11-16 02:17:42 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 15:46:31 +00:00
|
|
|
Ok(items)
|
2019-12-02 01:21:19 +00:00
|
|
|
}
|