]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-cfgmin/main.go
Raise copyright years
[nncp.git] / src / cmd / nncp-cfgmin / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2022 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Stripped NNCP configuration file.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26
27         "github.com/hjson/hjson-go"
28         "go.cypherpunks.ru/nncp/v8"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintf(os.Stderr, "nncp-cfgmin -- print stripped configuration\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36 }
37
38 func main() {
39         var (
40                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
41                 version  = flag.Bool("version", false, "Print version information")
42                 warranty = flag.Bool("warranty", false, "Print warranty information")
43         )
44         log.SetFlags(log.Lshortfile)
45         flag.Usage = usage
46         flag.Parse()
47         if *warranty {
48                 fmt.Println(nncp.Warranty)
49                 return
50         }
51         if *version {
52                 fmt.Println(nncp.VersionGet())
53                 return
54         }
55
56         ctx, err := nncp.CtxFromCmdline(*cfgPath, "", "", false, false, false, false)
57         if err != nil {
58                 log.Fatalln("Error during initialization:", err)
59         }
60
61         cfg := nncp.CfgJSON{
62                 Spool: ctx.Spool,
63                 Log:   ctx.LogPath,
64                 Neigh: make(map[string]nncp.NodeJSON),
65         }
66         for _, node := range ctx.Neigh {
67                 var noisePub *string
68                 if node.NoisePub != nil {
69                         np := nncp.Base32Codec.EncodeToString(node.NoisePub[:])
70                         noisePub = &np
71                 }
72                 cfg.Neigh[node.Name] = nncp.NodeJSON{
73                         Id:       node.Id.String(),
74                         ExchPub:  nncp.Base32Codec.EncodeToString(node.ExchPub[:]),
75                         SignPub:  nncp.Base32Codec.EncodeToString(node.SignPub[:]),
76                         NoisePub: noisePub,
77                 }
78         }
79         raw, err := hjson.Marshal(&cfg)
80         if err != nil {
81                 panic(err)
82         }
83         fmt.Print(string(raw))
84 }