Use base64 for encoding & Upgrade Media Handling

This commit is contained in:
spikecodes 2020-11-30 20:33:55 -08:00
parent 9a6430656d
commit 9d78266494
7 changed files with 90 additions and 76 deletions

View file

@ -21,6 +21,7 @@ pub struct Post {
pub author: String,
pub url: String,
pub score: String,
pub post_type: String,
pub media: String,
pub time: String,
pub flair: Flair,
@ -121,6 +122,7 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Pos
body: val(post, "body").await,
author: val(post, "author").await,
score: if score > 1000 { format!("{}k", score / 1000) } else { score.to_string() },
post_type: "link".to_string(),
media: img,
url: val(post, "permalink").await,
time: Utc.timestamp(unix_time, 0).format("%b %e '%y").to_string(),