summaryrefslogtreecommitdiff
path: root/files.go
blob: da66cec42163af5eac03fd07cbaa4235fe13b50b (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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
package main

import (
	"bufio"
	"crypto/tls"
	"encoding/pem"
	"errors"
	"fmt"
	"net/url"
	"os"
	"path/filepath"
	"strings"
	"syscall"
	"time"

	"github.com/BurntSushi/toml"
)

type ConfigMain struct {
	DefaultScheme     string   `toml:"default_scheme"`
	SoftWrap          int      `toml:"soft_wrap"`
	DownloadFolder    string   `toml:"download_folder"`
	VimKeys           bool     `toml:"vim_keys"`
	Quiet             bool     `toml:"quiet"`
	Pager             string   `toml:"pager"`
	Timeout           duration `toml:"timeout"`
	SavedHistoryDepth int      `toml:"saved_history_depth"`
}

type Config struct {
	ConfigMain `toml:"main"`

	Handlers map[string]string `toml:"handlers"`
}

type duration struct{ time.Duration }

func (d *duration) UnmarshalText(text []byte) error {
	var err error
	d.Duration, err = time.ParseDuration(string(text))
	return err
}

func getConfig() (*Config, error) {
	home := os.Getenv("HOME")
	path := os.Getenv("XDG_CONFIG_HOME")
	if path == "" {
		path = filepath.Join(home, ".config")
	}
	path = filepath.Join(path, "x-1", "config.toml")

	if err := ensurePath(path); err != nil {
		return nil, err
	}

	c := Config{
		ConfigMain: ConfigMain{
			VimKeys:        true,
			DefaultScheme:  "gemini",
			SoftWrap:       100,
			DownloadFolder: home,
			Quiet:          false,
			Pager:          "auto",
			Timeout: duration{
				time.Duration(10 * time.Second),
			},
			SavedHistoryDepth: 30,
		},
		Handlers: map[string]string{},
	}
	if _, err := toml.DecodeFile(path, &c); err != nil {
		return nil, err
	}
	if strings.HasPrefix(c.DownloadFolder, "~") {
		c.DownloadFolder = home + c.DownloadFolder[1:]
	}
	return &c, nil
}

func getMarks() (map[string]string, error) {
	path, err := marksFilePath()
	if err != nil {
		return nil, err
	}

	marks := make(map[string]string)

	f, err := os.Open(path)
	if err != nil {
		return nil, err
	}
	defer func() { _ = f.Close() }()

	rdr := bufio.NewScanner(f)
	for rdr.Scan() {
		line := rdr.Text()
		name, target, _ := strings.Cut(line, ":")
		marks[name] = target
	}
	if err := rdr.Err(); err != nil {
		return nil, err
	}

	return marks, nil
}

func saveMarks(marks map[string]string) error {
	path, err := marksFilePath()
	if err != nil {
		return err
	}

	f, err := os.OpenFile(path, os.O_WRONLY|os.O_TRUNC, 0o600)
	if err != nil {
		return err
	}
	defer func() { _ = f.Close() }()

	for name, target := range marks {
		_, err := fmt.Fprintf(f, "%s:%s\n", name, target)
		if err != nil {
			return err
		}
	}

	return nil
}

func marksFilePath() (string, error) {
	return dataFilePath("marks")
}

func getTours() (map[string]*Tour, error) {
	path, err := toursFilePath()
	if err != nil {
		return nil, err
	}

	tours := make(map[string]*Tour)
	var current *Tour
	var currentName string

	f, err := os.Open(path)
	if err != nil {
		return nil, err
	}
	defer func() { _ = f.Close() }()

	rdr := bufio.NewScanner(f)
	for rdr.Scan() {
		line := rdr.Text()
		if strings.HasSuffix(line, ":") {
			if currentName != "" {
				tours[currentName] = current
			}
			currentName = strings.TrimSuffix(line, ":")
			current = &Tour{}
		} else {
			u, err := url.Parse(line)
			if err != nil {
				return nil, err
			}
			current.Links = append(current.Links, u)
		}
	}
	if err := rdr.Err(); err != nil {
		return nil, err
	}

	if currentName != "" {
		tours[currentName] = current
	}

	return tours, nil
}

func saveTours(tours map[string]*Tour) error {
	path, err := toursFilePath()
	if err != nil {
		return err
	}

	f, err := os.OpenFile(path, os.O_WRONLY|os.O_TRUNC, 0o600)
	if err != nil {
		return err
	}
	defer func() { _ = f.Close() }()

	for name, tour := range tours {
		if len(tour.Links) == 0 {
			continue
		}

		if _, err := fmt.Fprintf(f, "%s:\n", name); err != nil {
			return err
		}

		for _, link := range tour.Links {
			if _, err := fmt.Fprintf(f, "%s\n", link.String()); err != nil {
				return err
			}
		}
	}

	return nil
}

func toursFilePath() (string, error) {
	return dataFilePath("tours")
}

func getTofuStore() error {
	tofuFilePath, err := dataFilePath("tofu")
	if err != nil {
		return err
	}

	tofuStore = map[string]string{}

	f, err := os.Open(tofuFilePath)
	if err != nil {
		return err
	}
	defer func() { _ = f.Close() }()

	rdr := bufio.NewScanner(f)
	for rdr.Scan() {
		domain, certhash, _ := strings.Cut(rdr.Text(), ":")
		tofuStore[domain] = certhash
	}
	if err := rdr.Err(); err != nil {
		return err
	}

	return nil
}

func saveTofuStore(store map[string]string) error {
	tofuFilePath, err := dataFilePath("tofu")
	if err != nil {
		return err
	}

	f, err := os.OpenFile(tofuFilePath, os.O_WRONLY|os.O_TRUNC, 0o600)
	if err != nil {
		return err
	}
	defer func() { _ = f.Close() }()

	for domain, certhash := range store {
		if _, err := fmt.Fprintf(f, "%s:%s\n", domain, certhash); err != nil {
			return err
		}
	}

	return nil
}

func dataFilePath(filename string) (string, error) {
	home := os.Getenv("HOME")
	path := os.Getenv("XDG_DATA_HOME")
	if path == "" {
		path = filepath.Join(home, ".local", "share")
	}
	path = filepath.Join(path, "x-1", filename)

	if err := ensurePath(path); err != nil {
		return "", err
	}

	return path, nil
}

func ensurePath(fpath string) error {
	if _, err := os.Stat(fpath); errors.Is(err, syscall.ENOENT) {
		if err := os.MkdirAll(filepath.Dir(fpath), 0o700); err != nil {
			return err
		}
		f, err := os.OpenFile(fpath, os.O_RDWR|os.O_CREATE, 0o600)
		if err != nil {
			return err
		}
		_ = f.Close()
	}
	return nil
}

func getIdentities() (Identities, error) {
	idents := Identities{
		ByName:   map[string]*tls.Config{},
		ByDomain: map[string]*tls.Config{},
		ByFolder: map[string]*tls.Config{},
		ByPage:   map[string]*tls.Config{},
	}

	manifest, err := dataFilePath("identities")
	if err != nil {
		return idents, err
	}

	f, err := os.Open(manifest)
	if err != nil {
		return idents, err
	}
	defer func() { _ = f.Close() }()

	var curident *tls.Config
	rdr := bufio.NewScanner(f)
	for rdr.Scan() {
		line := rdr.Text()
		if strings.HasPrefix(line, ":") {
			kind, location, _ := strings.Cut(line[1:], " ")
			switch kind {
			case "domain":
				idents.ByDomain[location] = curident
			case "folder":
				idents.ByFolder[location] = curident
			case "page":
				idents.ByPage[location] = curident
			}
		} else {
			name := strings.TrimSuffix(line, ":")
			curident, err = getIdentity(name)
			if err != nil {
				return idents, err
			}
			idents.ByName[name] = curident
		}
	}
	if err := rdr.Err(); err != nil {
		return idents, err
	}

	return idents, nil
}

func saveIdentities(idents Identities) error {
	manifest, err := dataFilePath("identities")
	if err != nil {
		return err
	}

	f, err := os.OpenFile(manifest, os.O_WRONLY|os.O_TRUNC, 0o600)
	if err != nil {
		return err
	}
	defer func() { _ = f.Close() }()

	for name, ident := range idents.ByName {
		if _, err := fmt.Fprintf(f, "%s:\n", name); err != nil {
			return err
		}

		for domain, id := range idents.ByDomain {
			if id != ident {
				continue
			}
			if _, err := fmt.Fprintf(f, ":domain %s\n", domain); err != nil {
				return err
			}
		}
		for folder, id := range idents.ByFolder {
			if id != ident {
				continue
			}
			if _, err := fmt.Fprintf(f, ":folder %s\n", folder); err != nil {
				return err
			}
		}
		for page, id := range idents.ByPage {
			if id != ident {
				continue
			}
			if _, err := fmt.Fprintf(f, ":page %s\n", page); err != nil {
				return err
			}
		}
	}

	return nil
}

func getIdentity(name string) (*tls.Config, error) {
	fpath, err := dataFilePath("ident/" + name)
	if err != nil {
		return nil, err
	}

	cert, err := tls.LoadX509KeyPair(fpath, fpath)
	if err != nil {
		return nil, err
	}

	return identityForCert(cert), nil
}

func saveIdentity(name string, privkeyDER, certDER []byte) (string, error) {
	fpath, err := dataFilePath("ident/" + name)
	if err != nil {
		return "", err
	}

	f, err := os.OpenFile(fpath, os.O_WRONLY|os.O_TRUNC, 0o600)
	if err != nil {
		return "", err
	}
	defer func() { _ = f.Close() }()

	if err := pem.Encode(f, &pem.Block{Type: "PRIVATE KEY", Bytes: privkeyDER}); err != nil {
		return "", err
	}
	if err := pem.Encode(f, &pem.Block{Type: "CERTIFICATE", Bytes: certDER}); err != nil {
		return "", err
	}

	return fpath, nil
}

func removeIdentity(name string) error {
	fpath, err := dataFilePath("ident/" + name)
	if err != nil {
		return err
	}
	return os.Remove(fpath)
}