2021-10-31 22:26:22 +05:30
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-11-02 15:47:55 +05:30
|
|
|
use std::path::Path;
|
|
|
|
|
2021-10-31 22:26:22 +05:30
|
|
|
use actix_web::web;
|
2021-11-02 15:30:25 +05:30
|
|
|
use graphql_client::{reqwest::post_graphql, GraphQLQuery};
|
2021-11-04 23:43:40 +05:30
|
|
|
use reqwest::header::USER_AGENT;
|
2021-10-31 22:26:22 +05:30
|
|
|
use reqwest::Client;
|
2021-11-02 21:03:23 +05:30
|
|
|
use serde::{Deserialize, Serialize};
|
2021-11-02 15:30:25 +05:30
|
|
|
use sled::{Db, Tree};
|
2021-10-31 22:26:22 +05:30
|
|
|
|
2021-11-04 23:43:40 +05:30
|
|
|
use crate::proxy::StringUtils;
|
2022-03-18 20:45:01 +05:30
|
|
|
use crate::render_html;
|
2021-11-02 15:47:55 +05:30
|
|
|
use crate::SETTINGS;
|
|
|
|
|
2021-11-25 12:35:47 +05:30
|
|
|
const POST_CACHE_VERSION: usize = 3;
|
2021-11-04 23:43:40 +05:30
|
|
|
const GIST_CACHE_VERSION: usize = 1;
|
2021-11-02 21:03:23 +05:30
|
|
|
|
2021-10-31 22:26:22 +05:30
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Data {
|
|
|
|
pub client: Client,
|
2021-11-02 15:30:25 +05:30
|
|
|
cache: Db,
|
|
|
|
pub posts: Tree,
|
2021-11-04 23:43:40 +05:30
|
|
|
pub gists: Tree,
|
2021-10-31 22:26:22 +05:30
|
|
|
}
|
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
#[derive(GraphQLQuery)]
|
|
|
|
#[graphql(
|
|
|
|
schema_path = "schemas/schema.graphql",
|
|
|
|
query_path = "schemas/query.graphql",
|
|
|
|
response_derives = "Debug, Serialize, Deserialize, Clone"
|
|
|
|
)]
|
|
|
|
pub struct GetPost;
|
|
|
|
|
|
|
|
pub type PostResp = get_post::GetPostPost;
|
|
|
|
|
2021-10-31 22:26:22 +05:30
|
|
|
pub type AppData = web::Data<Data>;
|
|
|
|
|
2021-11-04 23:43:40 +05:30
|
|
|
impl PostResp {
|
2021-11-07 13:22:10 +05:30
|
|
|
pub fn get_subtitle(&self) -> &str {
|
|
|
|
self.preview_content.as_ref().unwrap().subtitle.as_str()
|
|
|
|
}
|
2021-11-04 23:43:40 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Serialize)]
|
|
|
|
pub struct GistContent {
|
|
|
|
pub files: Vec<GistFile>,
|
|
|
|
pub html_url: String,
|
|
|
|
}
|
|
|
|
|
2022-01-16 14:14:58 +05:30
|
|
|
#[derive(Deserialize, Clone, Serialize)]
|
2021-11-04 23:43:40 +05:30
|
|
|
pub struct GistFile {
|
|
|
|
pub file_name: String,
|
|
|
|
pub content: String,
|
|
|
|
pub language: String,
|
|
|
|
pub raw_url: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GistFile {
|
|
|
|
pub fn get_html_content(&self) -> String {
|
|
|
|
let mut content = self.content.as_str();
|
|
|
|
if self.content.starts_with('"') {
|
|
|
|
content = self.content.slice(1..);
|
|
|
|
}
|
|
|
|
|
|
|
|
if content.ends_with('"') {
|
|
|
|
content = content.slice(..content.len() - 1);
|
|
|
|
}
|
|
|
|
content.replace("\\t", " ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 12:35:47 +05:30
|
|
|
#[derive(GraphQLQuery)]
|
|
|
|
#[graphql(
|
|
|
|
schema_path = "schemas/schema.graphql",
|
|
|
|
query_path = "schemas/query.graphql",
|
|
|
|
response_derives = "Debug, Serialize, Deserialize, Clone"
|
|
|
|
)]
|
|
|
|
pub struct GetPostLight;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct PostUrl {
|
|
|
|
pub slug: String,
|
|
|
|
pub username: String,
|
|
|
|
}
|
|
|
|
|
2021-10-31 22:26:22 +05:30
|
|
|
impl Data {
|
|
|
|
pub fn new() -> AppData {
|
2021-11-02 16:03:10 +05:30
|
|
|
let path = Path::new(SETTINGS.cache.as_ref().unwrap()).join("posts_cache");
|
2021-11-02 15:47:55 +05:30
|
|
|
let cache = sled::open(path).unwrap();
|
2021-11-02 15:30:25 +05:30
|
|
|
let posts = cache.open_tree("posts").unwrap();
|
2021-11-04 23:43:40 +05:30
|
|
|
let gists = cache.open_tree("gists").unwrap();
|
2021-11-02 21:03:23 +05:30
|
|
|
let res = Self {
|
2021-10-31 22:26:22 +05:30
|
|
|
client: Client::new(),
|
2021-11-02 15:30:25 +05:30
|
|
|
cache,
|
|
|
|
posts,
|
2021-11-04 23:43:40 +05:30
|
|
|
gists,
|
2021-11-02 21:03:23 +05:30
|
|
|
};
|
|
|
|
res.migrate();
|
|
|
|
|
|
|
|
AppData::new(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn migrate(&self) {
|
2021-11-04 23:43:40 +05:30
|
|
|
const POST_KEY: &str = "POST_CACHE_VERSION";
|
|
|
|
const GIST_KEY: &str = "GIST_CACHE_VERSION";
|
|
|
|
let trees = [
|
|
|
|
(&self.posts, POST_KEY, POST_CACHE_VERSION),
|
|
|
|
(&self.gists, GIST_KEY, GIST_CACHE_VERSION),
|
|
|
|
];
|
2021-11-02 21:03:23 +05:30
|
|
|
|
2021-11-04 23:43:40 +05:30
|
|
|
for (tree, key, current_version) in trees {
|
|
|
|
if let Ok(Some(v)) = tree.get(key) {
|
|
|
|
let version = bincode::deserialize::<usize>(&v[..]).unwrap();
|
2021-11-07 13:22:10 +05:30
|
|
|
let clean = version != current_version;
|
2021-11-04 23:43:40 +05:30
|
|
|
|
|
|
|
if clean {
|
|
|
|
log::info!(
|
|
|
|
"Upgrading {} from version {} to version {}",
|
|
|
|
key,
|
|
|
|
version,
|
|
|
|
current_version
|
|
|
|
);
|
|
|
|
tree.clear().unwrap();
|
|
|
|
tree.flush().unwrap();
|
|
|
|
tree.insert(key, bincode::serialize(¤t_version).unwrap())
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
}
|
2021-11-02 21:03:23 +05:30
|
|
|
}
|
2021-10-31 22:26:22 +05:30
|
|
|
}
|
2021-11-02 15:30:25 +05:30
|
|
|
|
|
|
|
pub async fn get_post(&self, id: &str) -> PostResp {
|
|
|
|
match self.posts.get(id) {
|
|
|
|
Ok(Some(v)) => bincode::deserialize(&v[..]).unwrap(),
|
|
|
|
_ => {
|
|
|
|
let vars = get_post::Variables { id: id.to_owned() };
|
|
|
|
const URL: &str = "https://medium.com/_/graphql";
|
|
|
|
|
|
|
|
let res = post_graphql::<GetPost, _>(&self.client, URL, vars)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let res = res.data.expect("missing response data").post.unwrap();
|
|
|
|
self.posts
|
|
|
|
.insert(id, bincode::serialize(&res).unwrap())
|
|
|
|
.unwrap();
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-04 23:43:40 +05:30
|
|
|
|
2021-11-25 12:35:47 +05:30
|
|
|
pub async fn get_post_light(&self, id: &str) -> PostUrl {
|
|
|
|
match self.posts.get(id) {
|
|
|
|
Ok(Some(v)) => {
|
|
|
|
let cached: PostResp = bincode::deserialize(&v[..]).unwrap();
|
|
|
|
PostUrl {
|
|
|
|
slug: cached.unique_slug,
|
|
|
|
username: cached.creator.username,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
let vars = get_post_light::Variables { id: id.to_owned() };
|
|
|
|
const URL: &str = "https://medium.com/_/graphql";
|
|
|
|
|
|
|
|
let res = post_graphql::<GetPostLight, _>(&self.client, URL, vars)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let res = res.data.expect("missing response data").post.unwrap();
|
|
|
|
PostUrl {
|
|
|
|
slug: res.unique_slug,
|
|
|
|
username: res.creator.username,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-16 14:14:58 +05:30
|
|
|
pub fn get_gist_id(url: &str) -> &str {
|
|
|
|
url.split('/').last().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_gist(&self, gist_url: String) -> (String, GistContent) {
|
|
|
|
let id = Self::get_gist_id(&gist_url).to_owned();
|
|
|
|
let file_name = if gist_url.contains('?') {
|
|
|
|
let parsed = url::Url::parse(&gist_url).unwrap();
|
|
|
|
if let Some((_, file_name)) = parsed.query_pairs().find(|(k, _)| k == "file") {
|
|
|
|
Some(file_name.into_owned())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
let mut gist = match self.gists.get(&id) {
|
2022-01-16 14:14:58 +05:30
|
|
|
Ok(Some(v)) => bincode::deserialize(&v[..]).unwrap(),
|
2021-11-04 23:43:40 +05:30
|
|
|
_ => {
|
|
|
|
const URL: &str = "https://api.github.com/gists/";
|
|
|
|
|
|
|
|
let url = format!("{}{}", URL, id);
|
|
|
|
|
|
|
|
let resp = self
|
|
|
|
.client
|
|
|
|
.get(&url)
|
|
|
|
.header(USER_AGENT, "libmedium")
|
|
|
|
.send()
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.json::<serde_json::Value>()
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let files = resp.get("files").unwrap();
|
|
|
|
let v = files.as_object().unwrap();
|
2022-01-16 14:14:58 +05:30
|
|
|
|
|
|
|
fn to_gist_file(name: &str, file_obj: &serde_json::Value) -> GistFile {
|
|
|
|
GistFile {
|
2021-11-04 23:43:40 +05:30
|
|
|
file_name: name.to_string(),
|
|
|
|
content: file_obj
|
|
|
|
.get("content")
|
|
|
|
.unwrap()
|
|
|
|
.as_str()
|
|
|
|
.unwrap()
|
|
|
|
.to_owned(),
|
|
|
|
language: file_obj
|
|
|
|
.get("language")
|
|
|
|
.unwrap()
|
|
|
|
.as_str()
|
|
|
|
.unwrap()
|
|
|
|
.to_owned(),
|
|
|
|
raw_url: file_obj
|
|
|
|
.get("raw_url")
|
|
|
|
.unwrap()
|
|
|
|
.as_str()
|
|
|
|
.unwrap()
|
|
|
|
.to_owned(),
|
2022-01-16 14:14:58 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut files = Vec::with_capacity(v.len());
|
|
|
|
v.iter().for_each(|(name, file_obj)| {
|
|
|
|
let file = to_gist_file(name, file_obj);
|
2021-11-04 23:43:40 +05:30
|
|
|
files.push(file);
|
|
|
|
});
|
2022-01-16 14:14:58 +05:30
|
|
|
|
2021-11-04 23:43:40 +05:30
|
|
|
let gist = GistContent {
|
|
|
|
files,
|
2021-11-05 20:39:22 +05:30
|
|
|
html_url: resp.get("html_url").unwrap().as_str().unwrap().to_owned(),
|
2021-11-04 23:43:40 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
self.gists
|
|
|
|
.insert(&id, bincode::serialize(&gist).unwrap())
|
|
|
|
.unwrap();
|
2022-01-16 14:14:58 +05:30
|
|
|
gist
|
2021-11-04 23:43:40 +05:30
|
|
|
}
|
2022-01-16 14:14:58 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
let gist = if let Some(file_name) = file_name {
|
|
|
|
let mut files: Vec<GistFile> = Vec::with_capacity(1);
|
2022-03-18 20:45:01 +05:30
|
|
|
let mut file = gist
|
2022-01-16 14:14:58 +05:30
|
|
|
.files
|
|
|
|
.iter()
|
|
|
|
.find(|f| f.file_name == file_name)
|
|
|
|
.unwrap()
|
|
|
|
.to_owned();
|
2022-03-18 20:45:01 +05:30
|
|
|
let highlight = render_html::SourcegraphQuery {
|
|
|
|
filepath: &file.file_name,
|
|
|
|
code: &file.content,
|
|
|
|
};
|
|
|
|
file.content = highlight.syntax_highlight();
|
2022-01-16 14:14:58 +05:30
|
|
|
files.push(file);
|
|
|
|
GistContent {
|
|
|
|
files,
|
|
|
|
html_url: gist_url,
|
|
|
|
}
|
|
|
|
} else {
|
2022-03-18 20:45:01 +05:30
|
|
|
gist.files.iter_mut().for_each(|f| {
|
|
|
|
let highlight = render_html::SourcegraphQuery {
|
|
|
|
filepath: &f.file_name,
|
|
|
|
code: &f.content,
|
|
|
|
};
|
|
|
|
f.content = highlight.syntax_highlight();
|
|
|
|
});
|
2022-01-16 14:14:58 +05:30
|
|
|
gist
|
|
|
|
};
|
|
|
|
|
|
|
|
(id, gist)
|
2021-11-04 23:43:40 +05:30
|
|
|
}
|
2021-10-31 22:26:22 +05:30
|
|
|
}
|