aboutsummaryrefslogtreecommitdiff
path: root/http_handle_group_index.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-02-14 08:56:07 +0800
committerRunxi Yu <me@runxiyu.org>2025-02-14 08:56:07 +0800
commit1660282ccc8c2ef8949c0416e206dc175a977722 (patch)
tree1e7e29a8efb0032b4d1b7c74ca99cb4265879482 /http_handle_group_index.go
parenthttp_*: Refactor to reduce duplication (diff)
downloadforge-1660282ccc8c2ef8949c0416e206dc175a977722.tar.gz
forge-1660282ccc8c2ef8949c0416e206dc175a977722.tar.zst
forge-1660282ccc8c2ef8949c0416e206dc175a977722.zip
{database,http_handle_*index}.go: Reduce query_name_desc_list duplication
Diffstat (limited to 'http_handle_group_index.go')
-rw-r--r--http_handle_group_index.go14
1 files changed, 1 insertions, 13 deletions
diff --git a/http_handle_group_index.go b/http_handle_group_index.go
index 3098076..670c128 100644
--- a/http_handle_group_index.go
+++ b/http_handle_group_index.go
@@ -6,23 +6,11 @@ import (
func handle_group_repos(w http.ResponseWriter, r *http.Request, params map[string]any) {
group_name := params["group_name"]
-
- rows, err := database.Query(r.Context(), "SELECT r.name, COALESCE(r.description, '') FROM repos r JOIN groups g ON r.group_id = g.id WHERE g.name = $1;", group_name)
+ repos, err := query_name_desc_list(r.Context(), "SELECT r.name, COALESCE(r.description, '') FROM repos r JOIN groups g ON r.group_id = g.id WHERE g.name = $1;", group_name)
if err != nil {
http.Error(w, "Error getting groups: "+err.Error(), http.StatusInternalServerError)
return
}
- defer rows.Close()
-
- repos := []name_desc_t{}
- for rows.Next() {
- var repoName, repoDescription string
- if err := rows.Scan(&repoName, &repoDescription); err != nil {
- http.Error(w, "Error scanning repo: "+err.Error(), http.StatusInternalServerError)
- return
- }
- repos = append(repos, name_desc_t{repoName, repoDescription})
- }
params["repos"] = repos
err = templates.ExecuteTemplate(w, "group_repos", params)