2022-11-19 04:33:54 +00:00
|
|
|
use actix_web::{error::ErrorBadRequest, web, Error, HttpRequest, HttpResponse, Result};
|
2020-08-01 14:04:42 +00:00
|
|
|
use anyhow::anyhow;
|
2020-05-16 14:04:08 +00:00
|
|
|
use chrono::{DateTime, NaiveDateTime, Utc};
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
2021-03-18 20:25:21 +00:00
|
|
|
use lemmy_db_schema::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::LocalUserId,
|
2021-09-22 15:57:09 +00:00
|
|
|
source::{community::Community, local_user::LocalUser, person::Person},
|
2022-01-27 16:39:22 +00:00
|
|
|
traits::{ApubActor, Crud},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::DbPool,
|
2022-07-30 03:55:59 +00:00
|
|
|
CommentSortType,
|
2022-05-06 20:55:07 +00:00
|
|
|
ListingType,
|
|
|
|
SortType,
|
2021-03-18 20:25:21 +00:00
|
|
|
};
|
2020-12-21 16:30:34 +00:00
|
|
|
use lemmy_db_views::{
|
2022-08-04 19:30:17 +00:00
|
|
|
post_view::PostQuery,
|
2022-07-30 03:55:59 +00:00
|
|
|
structs::{PostView, SiteView},
|
2022-05-03 17:44:13 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_views_actor::{
|
2022-08-04 19:30:17 +00:00
|
|
|
comment_reply_view::CommentReplyQuery,
|
|
|
|
person_mention_view::PersonMentionQuery,
|
2022-07-30 03:55:59 +00:00
|
|
|
structs::{CommentReplyView, PersonMentionView},
|
2020-12-21 16:30:34 +00:00
|
|
|
};
|
2023-02-16 04:05:14 +00:00
|
|
|
use lemmy_utils::{claims::Claims, error::LemmyError, utils::markdown::markdown_to_html};
|
2021-11-22 18:58:31 +00:00
|
|
|
use once_cell::sync::Lazy;
|
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;
|
2021-12-14 13:30:37 +00:00
|
|
|
use std::{collections::BTreeMap, str::FromStr};
|
2019-11-19 17:07:10 +00:00
|
|
|
|
2022-06-22 12:30:09 +00:00
|
|
|
const RSS_FETCH_LIMIT: i64 = 20;
|
|
|
|
|
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>,
|
2023-06-12 21:48:02 +00:00
|
|
|
limit: Option<i64>,
|
|
|
|
page: Option<i64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Params {
|
|
|
|
fn sort_type(&self) -> Result<SortType, Error> {
|
|
|
|
let sort_query = self
|
|
|
|
.sort
|
|
|
|
.clone()
|
|
|
|
.unwrap_or_else(|| SortType::Hot.to_string());
|
|
|
|
SortType::from_str(&sort_query).map_err(ErrorBadRequest)
|
|
|
|
}
|
|
|
|
fn get_limit(&self) -> i64 {
|
|
|
|
self.limit.unwrap_or(RSS_FETCH_LIMIT)
|
|
|
|
}
|
|
|
|
fn get_page(&self) -> i64 {
|
|
|
|
self.page.unwrap_or(1)
|
|
|
|
}
|
2019-12-01 18:09:10 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-12-14 13:30:37 +00:00
|
|
|
static RSS_NAMESPACE: Lazy<BTreeMap<String, String>> = Lazy::new(|| {
|
|
|
|
let mut h = BTreeMap::new();
|
2021-11-22 18:58:31 +00:00
|
|
|
h.insert(
|
|
|
|
"dc".to_string(),
|
|
|
|
rss::extension::dublincore::NAMESPACE.to_string(),
|
|
|
|
);
|
|
|
|
h
|
|
|
|
});
|
2020-11-20 14:11:47 +00:00
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn get_all_feed(
|
|
|
|
info: web::Query<Params>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error> {
|
2023-06-12 21:48:02 +00:00
|
|
|
Ok(
|
|
|
|
get_feed_data(
|
|
|
|
&context,
|
|
|
|
ListingType::All,
|
|
|
|
info.sort_type()?,
|
|
|
|
info.get_limit(),
|
|
|
|
info.get_page(),
|
|
|
|
)
|
|
|
|
.await?,
|
|
|
|
)
|
2019-12-01 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2020-11-26 17:26:31 +00:00
|
|
|
async fn get_local_feed(
|
|
|
|
info: web::Query<Params>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error> {
|
2023-06-12 21:48:02 +00:00
|
|
|
Ok(
|
|
|
|
get_feed_data(
|
|
|
|
&context,
|
|
|
|
ListingType::Local,
|
|
|
|
info.sort_type()?,
|
|
|
|
info.get_limit(),
|
|
|
|
info.get_page(),
|
|
|
|
)
|
|
|
|
.await?,
|
|
|
|
)
|
2020-11-26 17:26:31 +00:00
|
|
|
}
|
2020-03-28 15:56:20 +00:00
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2020-11-26 17:26:31 +00:00
|
|
|
async fn get_feed_data(
|
|
|
|
context: &LemmyContext,
|
|
|
|
listing_type: ListingType,
|
|
|
|
sort_type: SortType,
|
2023-06-12 21:48:02 +00:00
|
|
|
limit: i64,
|
|
|
|
page: i64,
|
2020-11-26 17:26:31 +00:00
|
|
|
) -> Result<HttpResponse, LemmyError> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(context.pool()).await?;
|
|
|
|
|
|
|
|
let posts = PostQuery::builder()
|
|
|
|
.pool(context.pool())
|
|
|
|
.listing_type(Some(listing_type))
|
|
|
|
.sort(Some(sort_type))
|
2023-06-12 21:48:02 +00:00
|
|
|
.limit(Some(limit))
|
|
|
|
.page(Some(page))
|
2022-11-09 10:05:00 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
|
|
|
.await?;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let items = create_post_items(posts, &context.settings().get_protocol_and_hostname())?;
|
2020-03-28 15:56:20 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2022-11-19 04:33:54 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.clone())
|
2022-01-19 14:17:18 +00:00
|
|
|
.title(&format!("{} - {}", site_view.site.name, listing_type))
|
2021-09-22 15:57:09 +00:00
|
|
|
.link(context.settings().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);
|
|
|
|
}
|
|
|
|
|
2021-12-14 13:30:37 +00:00
|
|
|
let rss = channel_builder.build().to_string();
|
2020-11-26 17:26:31 +00:00
|
|
|
Ok(
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type("application/rss+xml")
|
|
|
|
.body(rss),
|
|
|
|
)
|
2020-03-28 15:56:20 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2020-01-11 12:30:45 +00:00
|
|
|
async fn get_feed(
|
2021-07-06 13:26:46 +00:00
|
|
|
req: HttpRequest,
|
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> {
|
2021-07-06 13:26:46 +00:00
|
|
|
let req_type: String = req.match_info().get("type").unwrap_or("none").parse()?;
|
|
|
|
let param: String = req.match_info().get("name").unwrap_or("none").parse()?;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2022-11-19 04:33:54 +00:00
|
|
|
let jwt_secret = context.secret().jwt_secret.clone();
|
2021-09-22 15:57:09 +00:00
|
|
|
let protocol_and_hostname = context.settings().get_protocol_and_hostname();
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let builder = match request_type {
|
|
|
|
RequestType::User => {
|
2023-06-12 21:48:02 +00:00
|
|
|
get_feed_user(
|
|
|
|
context.pool(),
|
|
|
|
&info.sort_type()?,
|
|
|
|
&info.get_limit(),
|
|
|
|
&info.get_page(),
|
|
|
|
¶m,
|
|
|
|
&protocol_and_hostname,
|
|
|
|
)
|
|
|
|
.await
|
2022-11-09 10:05:00 +00:00
|
|
|
}
|
|
|
|
RequestType::Community => {
|
2023-06-12 21:48:02 +00:00
|
|
|
get_feed_community(
|
|
|
|
context.pool(),
|
|
|
|
&info.sort_type()?,
|
|
|
|
&info.get_limit(),
|
|
|
|
&info.get_page(),
|
|
|
|
¶m,
|
|
|
|
&protocol_and_hostname,
|
|
|
|
)
|
|
|
|
.await
|
2022-11-09 10:05:00 +00:00
|
|
|
}
|
|
|
|
RequestType::Front => {
|
|
|
|
get_feed_front(
|
|
|
|
context.pool(),
|
|
|
|
&jwt_secret,
|
2023-06-12 21:48:02 +00:00
|
|
|
&info.sort_type()?,
|
|
|
|
&info.get_limit(),
|
|
|
|
&info.get_page(),
|
2022-11-09 10:05:00 +00:00
|
|
|
¶m,
|
|
|
|
&protocol_and_hostname,
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
RequestType::Inbox => {
|
|
|
|
get_feed_inbox(context.pool(), &jwt_secret, ¶m, &protocol_and_hostname).await
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 12:54:29 +00:00
|
|
|
.map_err(ErrorBadRequest)?;
|
|
|
|
|
2021-12-14 13:30:37 +00:00
|
|
|
let rss = builder.build().to_string();
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn get_feed_user(
|
|
|
|
pool: &DbPool,
|
2020-01-12 15:31:51 +00:00
|
|
|
sort_type: &SortType,
|
2023-06-12 21:48:02 +00:00
|
|
|
limit: &i64,
|
|
|
|
page: &i64,
|
2021-09-22 15:57:09 +00:00
|
|
|
user_name: &str,
|
|
|
|
protocol_and_hostname: &str,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(pool).await?;
|
|
|
|
let person = Person::read_from_name(pool, user_name, false).await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
let posts = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.listing_type(Some(ListingType::All))
|
|
|
|
.sort(Some(*sort_type))
|
|
|
|
.creator_id(Some(person.id))
|
2023-06-12 21:48:02 +00:00
|
|
|
.limit(Some(*limit))
|
|
|
|
.page(Some(*page))
|
2022-08-04 19:30:17 +00:00
|
|
|
.build()
|
2022-11-09 10:05:00 +00:00
|
|
|
.list()
|
|
|
|
.await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let items = create_post_items(posts, protocol_and_hostname)?;
|
2019-12-02 01:21:19 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
2019-12-08 00:39:43 +00:00
|
|
|
channel_builder
|
2022-11-19 04:33:54 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.clone())
|
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
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn get_feed_community(
|
|
|
|
pool: &DbPool,
|
2020-01-12 15:31:51 +00:00
|
|
|
sort_type: &SortType,
|
2023-06-12 21:48:02 +00:00
|
|
|
limit: &i64,
|
|
|
|
page: &i64,
|
2021-09-22 15:57:09 +00:00
|
|
|
community_name: &str,
|
|
|
|
protocol_and_hostname: &str,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(pool).await?;
|
|
|
|
let community = Community::read_from_name(pool, community_name, false).await?;
|
2019-11-19 17:07:10 +00:00
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
let posts = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.sort(Some(*sort_type))
|
|
|
|
.community_id(Some(community.id))
|
2023-06-12 21:48:02 +00:00
|
|
|
.limit(Some(*limit))
|
|
|
|
.page(Some(*page))
|
2022-08-04 19:30:17 +00:00
|
|
|
.build()
|
2022-11-09 10:05:00 +00:00
|
|
|
.list()
|
|
|
|
.await?;
|
2019-11-16 02:17:42 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let items = create_post_items(posts, protocol_and_hostname)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2022-11-19 04:33:54 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.clone())
|
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
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn get_feed_front(
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
jwt_secret: &str,
|
2020-03-28 15:56:20 +00:00
|
|
|
sort_type: &SortType,
|
2023-06-12 21:48:02 +00:00
|
|
|
limit: &i64,
|
|
|
|
page: &i64,
|
2021-09-22 15:57:09 +00:00
|
|
|
jwt: &str,
|
|
|
|
protocol_and_hostname: &str,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(pool).await?;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_id = LocalUserId(Claims::decode(jwt, jwt_secret)?.claims.sub);
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_user = LocalUser::read(pool, local_user_id).await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
let posts = PostQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.listing_type(Some(ListingType::Subscribed))
|
2022-08-19 14:27:39 +00:00
|
|
|
.local_user(Some(&local_user))
|
2022-08-04 19:30:17 +00:00
|
|
|
.sort(Some(*sort_type))
|
2023-06-12 21:48:02 +00:00
|
|
|
.limit(Some(*limit))
|
|
|
|
.page(Some(*page))
|
2022-08-04 19:30:17 +00:00
|
|
|
.build()
|
2022-11-09 10:05:00 +00:00
|
|
|
.list()
|
|
|
|
.await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let items = create_post_items(posts, protocol_and_hostname)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2022-11-19 04:33:54 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.clone())
|
2020-12-02 19:32:47 +00:00
|
|
|
.title(&format!("{} - Subscribed", site_view.site.name))
|
2021-09-22 15:57:09 +00:00
|
|
|
.link(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
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn get_feed_inbox(
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
jwt_secret: &str,
|
|
|
|
jwt: &str,
|
|
|
|
protocol_and_hostname: &str,
|
|
|
|
) -> Result<ChannelBuilder, LemmyError> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(pool).await?;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_id = LocalUserId(Claims::decode(jwt, jwt_secret)?.claims.sub);
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_user = LocalUser::read(pool, local_user_id).await?;
|
2021-04-21 21:41:14 +00:00
|
|
|
let person_id = local_user.person_id;
|
|
|
|
let show_bot_accounts = local_user.show_bot_accounts;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
let sort = CommentSortType::New;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
let replies = CommentReplyQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.recipient_id(Some(person_id))
|
|
|
|
.my_person_id(Some(person_id))
|
|
|
|
.show_bot_accounts(Some(show_bot_accounts))
|
|
|
|
.sort(Some(sort))
|
|
|
|
.limit(Some(RSS_FETCH_LIMIT))
|
|
|
|
.build()
|
2022-11-09 10:05:00 +00:00
|
|
|
.list()
|
|
|
|
.await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2022-08-04 19:30:17 +00:00
|
|
|
let mentions = PersonMentionQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(pool)
|
2022-08-04 19:30:17 +00:00
|
|
|
.recipient_id(Some(person_id))
|
|
|
|
.my_person_id(Some(person_id))
|
|
|
|
.show_bot_accounts(Some(show_bot_accounts))
|
|
|
|
.sort(Some(sort))
|
|
|
|
.limit(Some(RSS_FETCH_LIMIT))
|
|
|
|
.build()
|
2022-11-09 10:05:00 +00:00
|
|
|
.list()
|
|
|
|
.await?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let items = create_reply_and_mention_items(replies, mentions, protocol_and_hostname)?;
|
2019-12-08 00:39:43 +00:00
|
|
|
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder
|
2022-11-19 04:33:54 +00:00
|
|
|
.namespaces(RSS_NAMESPACE.clone())
|
2020-12-02 19:32:47 +00:00
|
|
|
.title(&format!("{} - Inbox", site_view.site.name))
|
2023-01-30 19:17:24 +00:00
|
|
|
.link(format!("{protocol_and_hostname}/inbox",))
|
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
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2019-12-08 00:39:43 +00:00
|
|
|
fn create_reply_and_mention_items(
|
2022-07-30 03:55:59 +00:00
|
|
|
replies: Vec<CommentReplyView>,
|
2021-03-10 22:33:55 +00:00
|
|
|
mentions: Vec<PersonMentionView>,
|
2021-09-22 15:57:09 +00:00
|
|
|
protocol_and_hostname: &str,
|
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| {
|
2023-06-13 20:17:02 +00:00
|
|
|
let reply_url = format!("{}/comment/{}", protocol_and_hostname, r.comment.id);
|
2020-12-15 19:39:18 +00:00
|
|
|
build_item(
|
|
|
|
&r.creator.name,
|
|
|
|
&r.comment.published,
|
|
|
|
&reply_url,
|
|
|
|
&r.comment.content,
|
2021-09-22 15:57:09 +00:00
|
|
|
protocol_and_hostname,
|
2020-12-15 19:39:18 +00:00
|
|
|
)
|
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| {
|
2023-06-14 09:34:29 +00:00
|
|
|
let mention_url = format!("{}/comment/{}", protocol_and_hostname, m.comment.id);
|
2020-12-16 16:09:21 +00:00
|
|
|
build_item(
|
|
|
|
&m.creator.name,
|
|
|
|
&m.comment.published,
|
|
|
|
&mention_url,
|
|
|
|
&m.comment.content,
|
2021-09-22 15:57:09 +00:00
|
|
|
protocol_and_hostname,
|
2020-12-16 16:09:21 +00:00
|
|
|
)
|
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
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2020-08-13 15:46:31 +00:00
|
|
|
fn build_item(
|
|
|
|
creator_name: &str,
|
|
|
|
published: &NaiveDateTime,
|
|
|
|
url: &str,
|
|
|
|
content: &str,
|
2021-09-22 15:57:09 +00:00
|
|
|
protocol_and_hostname: &str,
|
2020-08-13 15:46:31 +00:00
|
|
|
) -> Result<Item, LemmyError> {
|
2020-03-28 15:56:20 +00:00
|
|
|
let mut i = ItemBuilder::default();
|
2023-01-30 19:17:24 +00:00
|
|
|
i.title(format!("Reply from {creator_name}"));
|
|
|
|
let author_url = format!("{protocol_and_hostname}/u/{creator_name}");
|
2020-03-28 15:56:20 +00:00
|
|
|
i.author(format!(
|
2023-01-30 19:17:24 +00:00
|
|
|
"/u/{creator_name} <a href=\"{author_url}\">(link)</a>"
|
2020-03-28 15:56:20 +00:00
|
|
|
));
|
|
|
|
let dt = DateTime::<Utc>::from_utc(*published, Utc);
|
|
|
|
i.pub_date(dt.to_rfc2822());
|
|
|
|
i.comments(url.to_owned());
|
2021-12-14 13:30:37 +00:00
|
|
|
let guid = GuidBuilder::default().permalink(true).value(url).build();
|
2020-08-13 15:46:31 +00:00
|
|
|
i.guid(guid);
|
2020-03-28 15:56:20 +00:00
|
|
|
i.link(url.to_owned());
|
|
|
|
// TODO add images
|
2022-03-30 14:58:03 +00:00
|
|
|
let html = markdown_to_html(content);
|
2020-03-28 15:56:20 +00:00
|
|
|
i.description(html);
|
2021-12-14 13:30:37 +00:00
|
|
|
Ok(i.build())
|
2019-12-08 00:39:43 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-09-22 15:57:09 +00:00
|
|
|
fn create_post_items(
|
|
|
|
posts: Vec<PostView>,
|
|
|
|
protocol_and_hostname: &str,
|
|
|
|
) -> 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
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let post_url = format!("{}/post/{}", protocol_and_hostname, p.post.id);
|
2022-11-19 04:33:54 +00:00
|
|
|
i.comments(post_url.clone());
|
2019-12-02 01:21:19 +00:00
|
|
|
let guid = GuidBuilder::default()
|
|
|
|
.permalink(true)
|
|
|
|
.value(&post_url)
|
2021-12-14 13:30:37 +00:00
|
|
|
.build();
|
2020-08-13 15:46:31 +00:00
|
|
|
i.guid(guid);
|
2019-12-02 01:21:19 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let community_url = format!("{}/c/{}", protocol_and_hostname, 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 {
|
2023-01-30 19:17:24 +00:00
|
|
|
let link_html = format!("<br><a href=\"{url}\">{url}</a>");
|
2021-02-10 20:43:03 +00:00
|
|
|
description.push_str(&link_html);
|
2023-06-26 13:11:16 +00:00
|
|
|
i.link(url.to_string());
|
|
|
|
} else {
|
|
|
|
i.link(post_url.clone());
|
2021-02-10 20:43:03 +00:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2021-12-14 13:30:37 +00:00
|
|
|
i.dublin_core_ext(dc_extension.build());
|
|
|
|
items.push(i.build());
|
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
|
|
|
}
|