Page MenuHomeDevCentral

D1874.diff
No OneTemporary

D1874.diff

diff --git a/src/app.rs b/src/app.rs
--- a/src/app.rs
+++ b/src/app.rs
@@ -10,6 +10,7 @@
favicon,
get_registry_stats,
get_repository_info,
+ get_all_repositories,
];
MinimalApplication::start_application(routes);
diff --git a/src/registry.rs b/src/registry.rs
--- a/src/registry.rs
+++ b/src/registry.rs
@@ -90,6 +90,16 @@
Some(repository)
}
+
+ pub fn get_all_repositories (&self) -> Vec<Repository> {
+ let path = self.get_repositories_path();
+ let path = Path::new(&path);
+
+ get_subdirectories_names(path)
+ .iter()
+ .filter_map(|name| self.get_repository(&name))
+ .collect()
+ }
}
/* -------------------------------------------------------------
diff --git a/src/requests.rs b/src/requests.rs
--- a/src/requests.rs
+++ b/src/requests.rs
@@ -46,3 +46,10 @@
}
}
}
+
+#[get("/repository/getAll")]
+pub fn get_all_repositories() -> ApiJsonResponse<Vec<Repository>> {
+ Registry::with_default_location()
+ .get_all_repositories()
+ .into_json_response()
+}

File Metadata

Mime Type
text/plain
Expires
Sat, Apr 5, 14:40 (6 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2545369
Default Alt Text
D1874.diff (1 KB)

Event Timeline