diff options
Diffstat (limited to 'http_handle_repo_raw.go')
-rw-r--r-- | http_handle_repo_raw.go | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/http_handle_repo_raw.go b/http_handle_repo_raw.go index 24b5794..e647e32 100644 --- a/http_handle_repo_raw.go +++ b/http_handle_repo_raw.go @@ -9,11 +9,9 @@ import ( "github.com/go-git/go-git/v5/plumbing/object" ) -func handle_repo_raw(w http.ResponseWriter, r *http.Request, params map[string]string) { - data := make(map[string]any) - data["global"] = global_data - raw_path_spec := params["rest"] - group_name, repo_name, path_spec := params["group_name"], params["repo_name"], strings.TrimSuffix(raw_path_spec, "/") +func handle_repo_raw(w http.ResponseWriter, r *http.Request, params map[string]any) { + raw_path_spec := params["rest"].(string) + group_name, repo_name, path_spec := params["group_name"].(string), params["repo_name"].(string), strings.TrimSuffix(raw_path_spec, "/") ref_type, ref_name, err := get_param_ref_and_type(r) if err != nil { @@ -25,7 +23,7 @@ func handle_repo_raw(w http.ResponseWriter, r *http.Request, params map[string]s } } - data["ref_type"], data["ref"], data["group_name"], data["repo_name"], data["path_spec"] = ref_type, ref_name, group_name, repo_name, path_spec + params["ref_type"], params["ref"], params["path_spec"] = ref_type, ref_name, path_spec repo, err := open_git_repo(r.Context(), group_name, repo_name) if err != nil { @@ -80,9 +78,9 @@ func handle_repo_raw(w http.ResponseWriter, r *http.Request, params map[string]s return } - data["files"] = build_display_git_tree(target) + params["files"] = build_display_git_tree(target) - err = templates.ExecuteTemplate(w, "repo_raw_dir", data) + err = templates.ExecuteTemplate(w, "repo_raw_dir", params) if err != nil { _, _ = w.Write([]byte("Error rendering template: " + err.Error())) return |