From 792de59c64b4a018206e316b6b70db65274c2737 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 16 Apr 2022 22:04:09 +0200 Subject: feat(tazjin/tgsa): add "web interface" for this Change-Id: I1619f0ceec2f83f4728d7de006a08b2ce6148e59 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5468 Tested-by: BuildkiteCI Reviewed-by: tazjin --- users/tazjin/tgsa/src/main.rs | 74 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 65 insertions(+), 9 deletions(-) (limited to 'users/tazjin/tgsa/src') diff --git a/users/tazjin/tgsa/src/main.rs b/users/tazjin/tgsa/src/main.rs index cfb1c7223f79..d23430d7ee2e 100644 --- a/users/tazjin/tgsa/src/main.rs +++ b/users/tazjin/tgsa/src/main.rs @@ -10,6 +10,27 @@ impl TgLink { fn to_url(&self) -> String { format!("https://t.me/{}/{}?embed=1", self.username, self.message_id) } + + fn parse(url: &str) -> Option { + let url = url.strip_prefix("/")?; + let parsed = url::Url::parse(url).ok()?; + + if parsed.host()? != url::Host::Domain("t.me") { + // only t.me links are supported + return None; + } + + let parts = parsed.path_segments()?.collect::>(); + if parts.len() != 2 { + // only message links are supported + return None; + } + + Some(TgLink { + username: parts[0].into(), + message_id: parts[1].parse().ok()?, + }) + } } fn fetch_embed(link: &TgLink) -> Result { @@ -138,18 +159,53 @@ fn to_bbcode(link: &TgLink, msg: &TgMessage) -> Result { Ok(out) } +fn handle_tg_link(link: &TgLink) -> Result { + let embed = fetch_embed(&link)?; + let msg = parse_tgmessage(&embed)?; + to_bbcode(&link, &msg).context("failed to make bbcode") +} + fn main() { crimp::init(); - let link = TgLink { - // username: "RWApodcast".into(), - // message_id: 113, - username: "intelslava".into(), - message_id: 25483, - }; + rouille::start_server("0.0.0.0:8472", move |request| { + match TgLink::parse(request.raw_url()) { + None => rouille::Response::text( + r#"tgsa +---- - let embed = fetch_embed(&link).unwrap(); - let msg = parse_tgmessage(&embed).unwrap(); +this is a stupid program that lets you turn telegram message links +into BBcode suitable for pasting on somethingawful dot com - println!("{}", to_bbcode(&link, &msg).unwrap()); +you can use it by putting a valid telegram message link in the url and +waiting a few seconds (yes it's currently slow, yes it's SA's fault, +yes I could work around but can't be bothered atm) + +for example: + + https://tgsa.tazj.in/https://t.me/RWApodcast/113 + +yes, that looks stupid, but it works + +if you see this message and think you did the above correctly, you +didn't. try again. idiot. + +pm me on the forums if this makes you mad or something. +"#, + ), + Some(link) => { + let result = handle_tg_link(&link); + match result { + Ok(bbcode) => rouille::Response::text(bbcode), + Err(err) => rouille::Response::text(format!( + r#"something broke: {} + +nobody has been alerted about this and it has probably not been +logged. pm me on the forums if you think it's important enough."#, + err + )), + } + } + } + }); } -- cgit 1.4.1