-
Notifications
You must be signed in to change notification settings - Fork 27
/
render_relay.go
109 lines (96 loc) · 2.63 KB
/
render_relay.go
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
package main
import (
"net/http"
"net/url"
"strings"
"time"
"github.com/nbd-wtf/go-nostr/nip11"
)
func renderRelayPage(w http.ResponseWriter, r *http.Request) {
hostname := r.URL.Path[3:]
if strings.HasPrefix(hostname, "wss:/") || strings.HasPrefix(hostname, "ws:/") {
hostname = trimProtocolAndEndingSlash(hostname)
http.Redirect(w, r, "/r/"+hostname, http.StatusFound)
return
}
isSitemap := false
if strings.HasSuffix(hostname, ".xml") {
hostname = hostname[:len(hostname)-4]
isSitemap = true
}
isRSS := false
if strings.HasSuffix(hostname, ".rss") {
hostname = hostname[:len(hostname)-4]
isRSS = true
}
if len(hostname) < 3 {
http.Redirect(w, r, "/", http.StatusFound)
return
}
// relay metadata
info, _ := nip11.Fetch(r.Context(), hostname)
if info.Name == "" {
info.Name = hostname
}
// last notes
limit := 50
if isSitemap {
limit = 500
}
renderableLastNotes := make([]EnhancedEvent, 0, limit)
var lastEventAt *time.Time
for evt := range relayLastNotes(r.Context(), hostname, limit) {
ee := NewEnhancedEvent(nil, evt)
ee.relays = []string{"wss://" + hostname}
renderableLastNotes = append(renderableLastNotes, ee)
if lastEventAt == nil {
last := time.Unix(int64(evt.CreatedAt), 0)
lastEventAt = &last
}
}
if lastEventAt == nil {
now := time.Now()
lastEventAt = &now
}
if len(renderableLastNotes) != 0 {
w.Header().Set("Cache-Control", "max-age=3600")
} else {
w.Header().Set("Cache-Control", "max-age=60")
}
if isSitemap {
w.Header().Add("content-type", "text/xml")
w.Write([]byte(XML_HEADER))
SitemapTemplate.Render(w, &SitemapPage{
Host: s.Domain,
ModifiedAt: lastEventAt.Format("2006-01-02T15:04:05Z07:00"),
LastNotes: renderableLastNotes,
RelayHostname: hostname,
Info: info,
})
} else if isRSS {
w.Header().Add("content-type", "text/xml")
w.Write([]byte(XML_HEADER))
RSSTemplate.Render(w, &RSSPage{
Host: s.Domain,
ModifiedAt: lastEventAt.Format("2006-01-02T15:04:05Z07:00"),
LastNotes: renderableLastNotes,
RelayHostname: hostname,
Info: info,
})
} else {
relayTemplate(RelayPageParams{
HeadParams: HeadParams{IsProfile: false},
Info: info,
Hostname: hostname,
Proxy: "https://" + hostname + "/njump/proxy?src=",
LastNotes: renderableLastNotes,
ModifiedAt: lastEventAt.Format("2006-01-02T15:04:05Z07:00"),
Clients: generateClientList(-1, hostname, func(cr ClientReference, s string) string {
if cr == nostterRelay {
return strings.Replace(s, hostname, url.PathEscape("wss://"+hostname), 1)
}
return s
}),
}).Render(r.Context(), w)
}
}