forked from hieblmi/go-host-lnaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
273 lines (231 loc) · 6.71 KB
/
main.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package main
import (
"crypto/sha256"
"encoding/base64"
"encoding/json"
"errors"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strconv"
"strings"
)
type Config struct {
RPCHost string
InvoiceMacaroonHex string
TLSCertPath string
Private bool
LightningAddresses []string
MinSendable int
MaxSendable int
CommentAllowed int
Tag string
Metadata [][]string
Thumbnail string
SuccessMessage string
InvoiceCallback string
AddressServerPort int
Nostr *NostrConfig
Notificators []notificatorConfig
}
type LNUrlPay struct {
MinSendable int `json:"minSendable"`
MaxSendable int `json:"maxSendable"`
CommentAllowed int `json:"commentAllowed"`
Tag string `json:"tag"`
Metadata string `json:"metadata"`
Callback string `json:"callback"`
DescriptionHash []byte
}
type Invoice struct {
Pr string `json:"pr"`
Routes []string `json:"routes"`
SuccessAction *SuccessAction `json:"successAction"`
}
type Error struct {
Status string `json:"status"`
Reason string `json:"reason"`
}
type SuccessAction struct {
Tag string `json:"tag"`
Message string `json:"message,omitempty"`
}
type NostrConfig struct {
Names map[string]string `json:"names"`
Relays map[string][]string `json:"relays"`
}
var (
sh SettlementHandler
backend LNDParams
metadata string
)
func main() {
c := flag.String("config", "./config.json", "Specify the configuration file")
flag.Parse()
file, err := os.Open(*c)
if err != nil {
log.Fatal("Cannot open config file: ", err)
}
defer file.Close()
config := Config{}
decoder := json.NewDecoder(file)
err = decoder.Decode(&config)
if err != nil {
log.Fatal("Cannot decode config JSON: ", err)
}
log.Printf("Printing config.json: %#v\n", config)
md, err := metadataToString(config)
if err != nil {
log.Printf("WARNING: Unable to convert metadata to string: %s\n", err)
} else {
metadata = md
}
setupHandlerPerAddress(config)
setupNostrHandlers(config.Nostr)
backend = LNDParams{
Host: config.RPCHost,
Macaroon: config.InvoiceMacaroonHex,
}
if config.TLSCertPath != "" {
tlsCert, err := ioutil.ReadFile(config.TLSCertPath)
if err != nil {
log.Fatalf("Cannot read TLS certificate file %s: %s", config.TLSCertPath, err)
}
backend.Cert = string(tlsCert)
} else {
log.Printf("WARNING: TLSCertPath isn't set, connection to lnd REST API is insecure!\n")
}
err = sh.setupSettlementHandler(backend)
if err == nil {
setupNotificators(config)
} else {
log.Printf("Settlement handler was not initialized, notifications disabled: %s\n", err)
}
http.HandleFunc("/invoice/", handleInvoiceCreation(config))
http.ListenAndServe(fmt.Sprintf(":%d", config.AddressServerPort), nil)
}
func setupHandlerPerAddress(config Config) {
for _, addr := range config.LightningAddresses {
http.HandleFunc(fmt.Sprintf("/.well-known/lnurlp/%s", strings.Split(addr, "@")[0]), handleLNUrlp(config))
}
}
func handleLNUrlp(config Config) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Printf("LNUrlp request: %#v\n", *r)
resp := LNUrlPay{
MinSendable: config.MinSendable,
MaxSendable: config.MaxSendable,
CommentAllowed: config.CommentAllowed,
Tag: config.Tag,
Metadata: metadata,
Callback: config.InvoiceCallback,
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(resp)
}
}
func setupNostrHandlers(nostr *NostrConfig) {
if nostr == nil {
return
}
http.HandleFunc(
"/.well-known/nostr.json",
func(w http.ResponseWriter, r *http.Request) {
log.Printf("Nostr request: %#v\n", *r)
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Access-Control-Allow-Origin", "*")
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(nostr)
},
)
}
func handleInvoiceCreation(config Config) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Printf("Handling invoice creation: %#v\n", *r)
w.Header().Set("Content-Type", "application/json")
keys, hasAmount := r.URL.Query()["amount"]
if !hasAmount || len(keys[0]) < 1 {
badRequestError(w, "Mandatory URL Query parameter 'amount' is missing.")
return
}
msat, isInt := strconv.Atoi(keys[0])
if isInt != nil {
badRequestError(w, "Amount needs to be a number denoting the number of milli satoshis.")
return
}
if msat < config.MinSendable || msat > config.MaxSendable {
badRequestError(w, "Wrong amount. Amount needs to be in between [%d,%d] msat", config.MinSendable, config.MaxSendable)
return
}
comment := r.URL.Query().Get("comment")
if len(comment) > config.CommentAllowed {
badRequestError(w, "Comment is too long, should be no longer than %d bytes", config.CommentAllowed)
return
}
// parameters ok, creating invoice
params := Params{
Msatoshi: int64(msat),
Backend: backend,
Description: metadata,
}
h := sha256.Sum256([]byte(params.Description))
params.DescriptionHash = h[:]
if config.Private {
params.Private = true
}
bolt11, r_hash, err := MakeInvoice(params)
if err != nil {
log.Printf("Cannot create invoice: %s\n", err)
badRequestError(w, "Invoice creation failed.")
return
}
invoice := Invoice{
Pr: bolt11,
Routes: make([]string, 0),
SuccessAction: &SuccessAction{
Tag: "message",
Message: config.SuccessMessage,
},
}
sh.subscribeToInvoice(r_hash, comment)
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(invoice)
}
}
func metadataToString(config Config) (string, error) {
thumbnailMetadata, err := thumbnailToMetadata(config.Thumbnail)
if thumbnailMetadata != nil {
config.Metadata = append(config.Metadata, thumbnailMetadata)
}
marshalledMetadata, err := json.Marshal(config.Metadata)
return string(marshalledMetadata), err
}
func thumbnailToMetadata(thumbnailPath string) ([]string, error) {
bytes, err := ioutil.ReadFile(thumbnailPath)
if err != nil {
return nil, err
}
encoding := http.DetectContentType(bytes)
switch encoding {
case "image/jpeg":
encoding = "image/jpeg;base64"
case "image/png":
encoding = "image/png;base64"
default:
return nil, errors.New(fmt.Sprintf("Could not determine encoding of thumbnail %s.\n", thumbnailPath))
}
encodedThumbnail := base64.StdEncoding.EncodeToString(bytes)
metadata := []string{encoding, encodedThumbnail}
return metadata, nil
}
func badRequestError(w http.ResponseWriter, reason string, args ...interface{}) {
w.WriteHeader(http.StatusBadRequest)
json.NewEncoder(w).Encode(Error{
Status: "Error",
Reason: fmt.Sprintf(reason, args...),
})
}