aboutsummaryrefslogtreecommitdiff
path: root/http/router.go
blob: 9730dbfafbe234b76d3fe27a4b214c355493f3ff (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package http

import (
	"io"
	"net/http"

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

type Router struct {
	registry *registry.Registry
}

func NewRouter(registry *registry.Registry) *Router {
	return &Router{registry: registry}
}

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

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

	})

	// "User" endpoint
	router.GET("/actors/:actor", func(c *gin.Context) {
		actorParam := c.Param("actor")
		resource, _ := s.registry.Profile(actorParam)
		if resource != nil {
			c.Writer.Header().Set("Content-Type", "application/activity+json")
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}

	})

	router.GET("/actors/:actor/followers", func(c *gin.Context) {
		actorParam := c.Param("actor")
		resource, _ := s.registry.Followers(actorParam)
		if resource != nil {
			c.Writer.Header().Set("Content-Type", "application/activity+json")
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}
	})

	router.GET("/actors/:actor/following", func(c *gin.Context) {
		actorParam := c.Param("actor")
		resource, _ := s.registry.Following(actorParam)
		if resource != nil {
			c.Writer.Header().Set("Content-Type", "application/activity+json")
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}
	})

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

	// })

	// Outbox
	router.GET("/actors/:actor/outbox", func(c *gin.Context) {
		actorParam := c.Param("actor")
		var resource map[string]interface{}
		if c.Query("page") == "true" {
			resource, _ = s.registry.OutboxCollection(actorParam)
		} else {
			resource, _ = s.registry.Outbox(actorParam)
		}
		if resource != nil {
			c.JSON(http.StatusOK, resource)
			c.Writer.Header().Set("Content-Type", "application/activity+json")
		} else {
			c.JSON(http.StatusNotFound, nil)
		}
	})

	// Single activity
	router.GET("/actors/:actor/activity/:id", func(c *gin.Context) {
		actorParam := c.Param("actor")
		idParam := c.Param("id")
		var resource map[string]interface{}
		resource, _ = s.registry.ActivityOrNote("activity", actorParam, idParam)

		if resource != nil {
			c.Writer.Header().Set("Content-Type", "application/activity+json")
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}
	})

	// Single note
	router.GET("/actors/:actor/activity/:id/note", func(c *gin.Context) {
		actorParam := c.Param("actor")
		idParam := c.Param("id")
		var resource map[string]interface{}
		resource, _ = s.registry.ActivityOrNote("note", actorParam, idParam)

		if resource != nil {
			c.Writer.Header().Set("Content-Type", "application/activity+json")
			c.JSON(http.StatusOK, resource)
		} else {
			c.JSON(http.StatusNotFound, nil)
		}
	})

	router.Run()
}