aboutsummaryrefslogtreecommitdiff
path: root/pkg/handler/git/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/handler/git/handler.go')
-rw-r--r--pkg/handler/git/handler.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkg/handler/git/handler.go b/pkg/handler/git/handler.go
new file mode 100644
index 0000000..236ac41
--- /dev/null
+++ b/pkg/handler/git/handler.go
@@ -0,0 +1,36 @@
+package git
+
+import (
+ "log/slog"
+ "net/http"
+
+ "git.gabrielgio.me/cerrado/pkg/service"
+ "git.gabrielgio.me/cerrado/templates"
+)
+
+type (
+ GitHandler struct {
+ gitService gitService
+ }
+
+ gitService interface {
+ ListRepositories() ([]*service.Repository, error)
+ }
+)
+
+func NewGitHandler(gitService gitService) *GitHandler {
+ return &GitHandler{
+ gitService: gitService,
+ }
+}
+
+func (g *GitHandler) List(w http.ResponseWriter, _ *http.Request) {
+ repos, err := g.gitService.ListRepositories()
+ if err != nil {
+ slog.Error("Error listing repo", "error", err)
+ return
+ }
+
+ gitList := &templates.GitListPage{repos}
+ templates.WritePageTemplate(w, gitList)
+}