From 5940e203b981c1144bbfb0ed8600e52a373faa85 Mon Sep 17 00:00:00 2001 From: emma Date: Tue, 28 Apr 2026 01:01:09 -0600 Subject: [PATCH] src/bin/backend: removes leftover files --- src/bin/backend/render.rs | 65 ------------------------ src/bin/backend/test-render.rs | 93 ---------------------------------- src/bin/backend/test.rs | 25 --------- 3 files changed, 183 deletions(-) delete mode 100644 src/bin/backend/render.rs delete mode 100644 src/bin/backend/test-render.rs delete mode 100644 src/bin/backend/test.rs diff --git a/src/bin/backend/render.rs b/src/bin/backend/render.rs deleted file mode 100644 index 58bba25..0000000 --- a/src/bin/backend/render.rs +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) 2025 Emma Tebibyte - * SPDX-License-Identifier: AGPL-3.0-or-later - * - * This file is part of Mintee. - * - * Mintee 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. - * - * Mintee 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 Mintee. If not, see https://www.gnu.org/licenses/. - */ - -use std::{ - error::Error, - fmt::{ self, Display, Formatter }, - path::Path, -}; - -use tera::{ Context, Tera }; - -#[non_exhaustive] -pub enum PageKind { - Code, - Dashboard, - Tickets, - User, -} - -impl PageKind { - pub fn render_page(&self, ctx: Context) -> Result> { - let page_dir = self.to_string(); - let template = String::from_utf8(Path::new(&page_dir) - .to_path_buf() - .as_mut_os_string() - .as_encoded_bytes() - .to_vec() - )?; - - let tera = Tera::new(&page_dir)?; - Ok(tera.render(&template, &ctx)?) - } -} - -impl Display for PageKind { - fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), fmt::Error> { - use PageKind::*; - - let path = match self { - Code => "repo/code.html", - Dashboard => "dashboard.html", - Tickets => "repo/tickets.html", - User => "user.html", - }; - - write!(f, "./assets/templates/{}", path) - } -} diff --git a/src/bin/backend/test-render.rs b/src/bin/backend/test-render.rs deleted file mode 100644 index e3c2fda..0000000 --- a/src/bin/backend/test-render.rs +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) 2025–2026 Emma Tebibyte - * SPDX-License-Identifier: AGPL-3.0-or-later - * - * This file is part of Mintee. - * - * Mintee 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. - * - * Mintee 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 Mintee. If not, see https://www.gnu.org/licenses/. - */ - -use std::{ - env::{ args, current_dir }, - error::Error, -}; - -use gix::open; -use tera::{ Context, Tera }; - -mod git; - -use git::repo_to_context; - -/* -impl From for Context { - fn from(repo: GitRepo) -> Self { - let mut ctx = Context::new(); - - let directory = format!("{}/{}", repo.owner, repo.name); - - let main_branch = repo.branches - .iter() - .find(|b| b.name == "main") - .unwrap(); - - let latest_commit = &main_branch.commits[0]; - let hash = latest_commit.hash.clone(); - - let mut entries = Vec::new(); - - for e in latest_commit.entries.iter() { - let entry = SampleEntry { - class: e.kind.to_string(), - last_commit: hash.clone(), - last_commit_message: latest_commit.message.clone().unwrap(), - last_commit_time: latest_commit.time, - path: e.path.clone(), - }; - - entries.push(entry); - } - - /* stubs til we have a real database */ - ctx.insert("user", "anon"); - ctx.insert("site", "TiB."); - ctx.insert("notif_count", ""); - ctx.insert("ticket_count", "(47)"); - - ctx.insert("readme_content", "this is a readme"); - - ctx.insert("owner", &repo.owner); - ctx.insert("branch", &main_branch.name); - ctx.insert("repo", &repo.name); - ctx.insert("directory", &directory); - ctx.insert("entries", &entries); - - ctx - } -} -*/ - -fn main() -> Result<(), Box> { - if let Some(templates) = args().collect::>().get(1) { - let tera = Tera::new(templates.as_str())?; - let ctx = repo_to_context(open(current_dir()?)?)?; - - println!("{}", tera.render("code.html", &ctx)?); - - Ok(()) - } else { - eprintln!("Usage: {} template_glob", args().collect::>()[0]); - std::process::exit(64); - } -} diff --git a/src/bin/backend/test.rs b/src/bin/backend/test.rs deleted file mode 100644 index 6cbc766..0000000 --- a/src/bin/backend/test.rs +++ /dev/null @@ -1,25 +0,0 @@ -use std::{ env::current_dir, error::Error }; - -use gix::{ traverse::tree::Recorder, prelude::* }; - -fn main() -> Result<(), Box> { - let r = gix::open(current_dir()?)?; - - let mut rec = Recorder::default(); - - let tree = r.rev_parse_single("@")?.object()?.peel_to_tree()?; - - tree.traverse().breadthfirst(&mut rec)?; - - for e in rec.records.iter() { - println!("{}", e.filepath) - } - - /* - for e in tree.iter() { - println!("{}", e?.filename()) - } - */ - - Ok(()) -}