2019-11-16 02:17:42 +00:00
|
|
|
extern crate rss;
|
|
|
|
extern crate htmlescape;
|
|
|
|
|
2019-11-19 17:07:10 +00:00
|
|
|
use super::*;
|
2019-11-16 02:17:42 +00:00
|
|
|
use crate::Settings;
|
2019-11-19 17:07:10 +00:00
|
|
|
use crate::db::{establish_connection, ListingType, SortType, Crud};
|
2019-11-16 02:17:42 +00:00
|
|
|
use crate::db::community_view::SiteView;
|
|
|
|
use crate::db::post_view::PostView;
|
2019-11-19 17:07:10 +00:00
|
|
|
use crate::db::user::User_;
|
|
|
|
use crate::db::community::Community;
|
|
|
|
use actix_web::{HttpResponse, web, Result};
|
|
|
|
use actix_web::body::Body;
|
|
|
|
use rss::{ChannelBuilder, Item, ItemBuilder};
|
|
|
|
use diesel::result::Error;
|
|
|
|
|
|
|
|
pub fn get_feed(info: web::Path<(char, String)>) -> HttpResponse<Body> {
|
|
|
|
return match get_feed_internal(info) {
|
|
|
|
Ok(body) => HttpResponse::Ok()
|
|
|
|
.content_type("application/rss+xml")
|
|
|
|
.body(body),
|
|
|
|
// TODO: handle the specific type of error (403, 500, etc)
|
|
|
|
Err(e) => HttpResponse::InternalServerError().finish(),
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-11-16 02:17:42 +00:00
|
|
|
|
2019-11-19 17:07:10 +00:00
|
|
|
fn get_feed_internal(info: web::Path<(char, String)>) -> Result<String, Error> {
|
2019-11-16 02:17:42 +00:00
|
|
|
let conn = establish_connection();
|
|
|
|
|
2019-11-19 17:07:10 +00:00
|
|
|
let mut community_id: Option<i32> = None;
|
|
|
|
let mut creator_id: Option<i32> = None;
|
|
|
|
// TODO: add a feed for /type/all
|
|
|
|
match info.0 {
|
|
|
|
'c' => community_id = Some(Community::read_from_name(&conn,info.1.clone())?.id),
|
|
|
|
'u' => creator_id = Some(User_::find_by_email_or_username(&conn,&info.1)?.id),
|
|
|
|
_ => return Err(Error::NotFound),
|
|
|
|
}
|
|
|
|
|
|
|
|
let post = PostView::list(&conn,
|
2019-11-16 02:17:42 +00:00
|
|
|
ListingType::All,
|
|
|
|
&SortType::New,
|
2019-11-19 17:07:10 +00:00
|
|
|
community_id,
|
|
|
|
creator_id,
|
2019-11-16 02:17:42 +00:00
|
|
|
None,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
None,
|
2019-11-19 17:07:10 +00:00
|
|
|
None,)?;
|
2019-11-16 02:17:42 +00:00
|
|
|
|
|
|
|
let mut items: Vec<Item> = Vec::new();
|
|
|
|
for p in post {
|
2019-11-19 17:07:10 +00:00
|
|
|
// TODO: this may cause a lot of db queries
|
|
|
|
let user = User_::read(&conn, p.creator_id)?;
|
|
|
|
let dt = DateTime::<Utc>::from_utc(p.published, Utc);
|
|
|
|
let mut i = ItemBuilder::default();
|
|
|
|
i.title(htmlescape::encode_minimal(&p.name));
|
|
|
|
i.author(htmlescape::encode_minimal(&user.name));
|
|
|
|
i.pub_date(htmlescape::encode_minimal(&dt.to_rfc2822()));
|
|
|
|
if p.url.is_some() {
|
|
|
|
i.link(p.url.unwrap());
|
|
|
|
}
|
|
|
|
if p.body.is_some() {
|
|
|
|
i.content(p.body.unwrap());
|
|
|
|
}
|
|
|
|
// TODO: any other fields?
|
|
|
|
// https://rust-syndication.github.io/rss/rss/struct.ItemBuilder.html
|
|
|
|
items.push(i.build().unwrap());
|
2019-11-16 02:17:42 +00:00
|
|
|
}
|
|
|
|
|
2019-11-19 17:07:10 +00:00
|
|
|
let site_view = SiteView::read(&conn)?;
|
|
|
|
let mut channel_builder = ChannelBuilder::default();
|
|
|
|
channel_builder.title(htmlescape::encode_minimal(&site_view.name))
|
2019-11-16 02:17:42 +00:00
|
|
|
.link(format!("https://{}", Settings::get().hostname))
|
2019-11-19 17:07:10 +00:00
|
|
|
.items(items);
|
|
|
|
if site_view.description.is_some() {
|
|
|
|
channel_builder.description(htmlescape::encode_minimal(&site_view.description.unwrap()));
|
|
|
|
}
|
|
|
|
// TODO: any other fields?
|
|
|
|
// https://rust-syndication.github.io/rss/rss/struct.ChannelBuilder.html
|
|
|
|
let channel = channel_builder.build().unwrap();
|
2019-11-16 02:17:42 +00:00
|
|
|
channel.write_to(::std::io::sink()).unwrap();
|
|
|
|
|
2019-11-19 17:07:10 +00:00
|
|
|
return Ok(channel.to_string());
|
2019-11-16 02:17:42 +00:00
|
|
|
}
|