aboutsummaryrefslogtreecommitdiff
path: root/http/server.go
blob: c720a6d604de7aab44df121be5d0691a561c26f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package http

import (
	"io"
	"net/http"

	"git.capotej.com/capotej/communique/registry"
	"github.com/gin-gonic/gin"
)

type Server struct {
	registry *registry.Registry
}

func NewServer(registry *registry.Registry) *Server {
	return &Server{registry: registry}
}

func (s *Server) Start(zapWriter io.Writer) {
	router := gin.Default()
	router.SetTrustedProxies(nil)
	gin.DisableConsoleColor()
	gin.DefaultWriter = zapWriter // send gin logs to zap

	router.GET("/.well-known/webfinger", func(c *gin.Context) {
		resourceParam := c.Query("resource")
		resource := s.registry.LookupResource(resourceParam)
		if resource != nil {
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}

	})

	router.GET("/actors/:actor", func(c *gin.Context) {
		actorParam := c.Param("actor")
		resource := s.registry.LookupByName(actorParam)
		if resource != nil {
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}

	})

	router.Run()
}