-
Notifications
You must be signed in to change notification settings - Fork 104
/
nip19.go
242 lines (201 loc) · 5.69 KB
/
nip19.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
package nip19
import (
"bytes"
"encoding/binary"
"encoding/hex"
"fmt"
"github.com/btcsuite/btcd/btcutil/bech32"
"github.com/nbd-wtf/go-nostr"
)
func Decode(bech32string string) (prefix string, value any, err error) {
prefix, bits5, err := bech32.DecodeNoLimit(bech32string)
if err != nil {
return "", nil, err
}
data, err := bech32.ConvertBits(bits5, 5, 8, false)
if err != nil {
return prefix, nil, fmt.Errorf("failed translating data into 8 bits: %s", err.Error())
}
switch prefix {
case "npub", "nsec", "note":
if len(data) < 32 {
return prefix, nil, fmt.Errorf("data is less than 32 bytes (%d)", len(data))
}
return prefix, hex.EncodeToString(data[0:32]), nil
case "nprofile":
var result nostr.ProfilePointer
curr := 0
for {
t, v := readTLVEntry(data[curr:])
if v == nil {
// end here
if result.PublicKey == "" {
return prefix, result, fmt.Errorf("no pubkey found for nprofile")
}
return prefix, result, nil
}
switch t {
case TLVDefault:
if len(v) < 32 {
return prefix, nil, fmt.Errorf("pubkey is less than 32 bytes (%d)", len(v))
}
result.PublicKey = hex.EncodeToString(v)
case TLVRelay:
result.Relays = append(result.Relays, string(v))
default:
// ignore
}
curr = curr + 2 + len(v)
}
case "nevent":
var result nostr.EventPointer
curr := 0
for {
t, v := readTLVEntry(data[curr:])
if v == nil {
// end here
if result.ID == "" {
return prefix, result, fmt.Errorf("no id found for nevent")
}
return prefix, result, nil
}
switch t {
case TLVDefault:
if len(v) < 32 {
return prefix, nil, fmt.Errorf("id is less than 32 bytes (%d)", len(v))
}
result.ID = hex.EncodeToString(v)
case TLVRelay:
result.Relays = append(result.Relays, string(v))
case TLVAuthor:
if len(v) < 32 {
return prefix, nil, fmt.Errorf("author is less than 32 bytes (%d)", len(v))
}
result.Author = hex.EncodeToString(v)
case TLVKind:
result.Kind = int(binary.BigEndian.Uint32(v))
default:
// ignore
}
curr = curr + 2 + len(v)
}
case "naddr":
var result nostr.EntityPointer
curr := 0
for {
t, v := readTLVEntry(data[curr:])
if v == nil {
// end here
if result.Kind == 0 || result.Identifier == "" || result.PublicKey == "" {
return prefix, result, fmt.Errorf("incomplete naddr")
}
return prefix, result, nil
}
switch t {
case TLVDefault:
result.Identifier = string(v)
case TLVRelay:
result.Relays = append(result.Relays, string(v))
case TLVAuthor:
if len(v) < 32 {
return prefix, nil, fmt.Errorf("author is less than 32 bytes (%d)", len(v))
}
result.PublicKey = hex.EncodeToString(v)
case TLVKind:
result.Kind = int(binary.BigEndian.Uint32(v))
default:
// ignore
}
curr = curr + 2 + len(v)
}
}
return prefix, data, fmt.Errorf("unknown tag %s", prefix)
}
func EncodePrivateKey(privateKeyHex string) (string, error) {
b, err := hex.DecodeString(privateKeyHex)
if err != nil {
return "", fmt.Errorf("failed to decode private key hex: %w", err)
}
bits5, err := bech32.ConvertBits(b, 8, 5, true)
if err != nil {
return "", err
}
return bech32.Encode("nsec", bits5)
}
func EncodePublicKey(publicKeyHex string) (string, error) {
b, err := hex.DecodeString(publicKeyHex)
if err != nil {
return "", fmt.Errorf("failed to decode public key hex: %w", err)
}
bits5, err := bech32.ConvertBits(b, 8, 5, true)
if err != nil {
return "", err
}
return bech32.Encode("npub", bits5)
}
func EncodeNote(eventIDHex string) (string, error) {
b, err := hex.DecodeString(eventIDHex)
if err != nil {
return "", fmt.Errorf("failed to decode event id hex: %w", err)
}
bits5, err := bech32.ConvertBits(b, 8, 5, true)
if err != nil {
return "", err
}
return bech32.Encode("note", bits5)
}
func EncodeProfile(publicKeyHex string, relays []string) (string, error) {
buf := &bytes.Buffer{}
pubkey, err := hex.DecodeString(publicKeyHex)
if err != nil {
return "", fmt.Errorf("invalid pubkey '%s': %w", publicKeyHex, err)
}
writeTLVEntry(buf, TLVDefault, pubkey)
for _, url := range relays {
writeTLVEntry(buf, TLVRelay, []byte(url))
}
bits5, err := bech32.ConvertBits(buf.Bytes(), 8, 5, true)
if err != nil {
return "", fmt.Errorf("failed to convert bits: %w", err)
}
return bech32.Encode("nprofile", bits5)
}
func EncodeEvent(eventIDHex string, relays []string, author string) (string, error) {
buf := &bytes.Buffer{}
id, err := hex.DecodeString(eventIDHex)
if err != nil || len(id) != 32 {
return "", fmt.Errorf("invalid id '%s': %w", eventIDHex, err)
}
writeTLVEntry(buf, TLVDefault, id)
for _, url := range relays {
writeTLVEntry(buf, TLVRelay, []byte(url))
}
if pubkey, _ := hex.DecodeString(author); len(pubkey) == 32 {
writeTLVEntry(buf, TLVAuthor, pubkey)
}
bits5, err := bech32.ConvertBits(buf.Bytes(), 8, 5, true)
if err != nil {
return "", fmt.Errorf("failed to convert bits: %w", err)
}
return bech32.Encode("nevent", bits5)
}
func EncodeEntity(publicKey string, kind int, identifier string, relays []string) (string, error) {
buf := &bytes.Buffer{}
writeTLVEntry(buf, TLVDefault, []byte(identifier))
for _, url := range relays {
writeTLVEntry(buf, TLVRelay, []byte(url))
}
pubkey, err := hex.DecodeString(publicKey)
if err != nil {
return "", fmt.Errorf("invalid pubkey '%s': %w", pubkey, err)
}
writeTLVEntry(buf, TLVAuthor, pubkey)
kindBytes := make([]byte, 4)
binary.BigEndian.PutUint32(kindBytes, uint32(kind))
writeTLVEntry(buf, TLVKind, kindBytes)
bits5, err := bech32.ConvertBits(buf.Bytes(), 8, 5, true)
if err != nil {
return "", fmt.Errorf("failed to convert bits: %w", err)
}
return bech32.Encode("naddr", bits5)
}