From 543150f1666690351d4698421cc6ceb115c1e251 Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 4 Jul 2023 19:32:38 -0700 Subject: [ci_ctl] command to artificially create new jobs --- src/dbctx.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/dbctx.rs') diff --git a/src/dbctx.rs b/src/dbctx.rs index e224310..7378b2e 100644 --- a/src/dbctx.rs +++ b/src/dbctx.rs @@ -289,6 +289,20 @@ impl DbCtx { .map_err(|e| e.to_string()) } + pub fn remote_by_path_and_api(&self, api: &str, path: &str) -> Result, String> { + self.conn.lock() + .unwrap() + .query_row("select id, repo_id, remote_path, remote_api, remote_url, remote_git_url, notifier_config_path from remotes where remote_api=?1 and remote_path=?2", [api, path], |row| { + let (id, repo_id, remote_path, remote_api, remote_url, remote_git_url, notifier_config_path) = row.try_into().unwrap(); + + Ok(Remote { + id, repo_id, remote_path, remote_api, remote_url, remote_git_url, notifier_config_path + }) + }) + .optional() + .map_err(|e| e.to_string()) + } + pub fn remote_by_id(&self, id: u64) -> Result, String> { self.conn.lock() .unwrap() -- cgit v1.1