]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-newnode/main.go
Initial
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-newnode / main.go
1 /*
2 NNCP -- Node-to-Node CoPy
3 Copyright (C) 2016-2017 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, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // Generate new NNCP node keys
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "os"
26
27         "cypherpunks.ru/nncp"
28         "gopkg.in/yaml.v2"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintln(os.Stderr, "nncp-newnode -- generate new node keys\nOptions:")
34         flag.PrintDefaults()
35 }
36
37 func main() {
38         var (
39                 version  = flag.Bool("version", false, "Print version information")
40                 warranty = flag.Bool("warranty", false, "Print warranty information")
41         )
42         flag.Usage = usage
43         flag.Parse()
44         if *warranty {
45                 fmt.Println(nncp.Warranty)
46                 return
47         }
48         if *version {
49                 fmt.Println(nncp.VersionGet())
50                 return
51         }
52         nodeOur, err := nncp.NewNodeGenerate()
53         if err != nil {
54                 panic(err)
55         }
56         incoming := "/path/to/upload/dir, omit it to forbid uploading"
57         freq := "/path/to/freq/able/dir, omit to forbid freqing"
58         cfg := nncp.CfgYAML{
59                 Self: nncp.NodeOurYAML{
60                         Id:       nodeOur.Id.String(),
61                         ExchPub:  nncp.ToBase32(nodeOur.ExchPub[:]),
62                         ExchPrv:  nncp.ToBase32(nodeOur.ExchPrv[:]),
63                         SignPub:  nncp.ToBase32(nodeOur.SignPub[:]),
64                         SignPrv:  nncp.ToBase32(nodeOur.SignPrv[:]),
65                         NoisePub: nncp.ToBase32(nodeOur.NoisePub[:]),
66                         NoisePrv: nncp.ToBase32(nodeOur.NoisePrv[:]),
67                 },
68                 Neigh: map[string]nncp.NodeYAML{
69                         "myself": nncp.NodeYAML{
70                                 Id:       nodeOur.Id.String(),
71                                 ExchPub:  nncp.ToBase32(nodeOur.ExchPub[:]),
72                                 SignPub:  nncp.ToBase32(nodeOur.SignPub[:]),
73                                 NoisePub: nncp.ToBase32(nodeOur.NoisePub[:]),
74                                 Incoming: &incoming,
75                                 Freq:     &freq,
76                         },
77                 },
78                 Spool:    "/path/to/spool",
79                 Log:      "/path/to/log.file",
80                 Sendmail: []string{nncp.DefaultSendmailPath},
81                 Notify: &nncp.NotifyYAML{
82                         File: &nncp.FromToYAML{
83                                 From: "nncp@localhost",
84                                 To:   "root@localhost, delete section to disable notifies",
85                         },
86                         Freq: &nncp.FromToYAML{
87                                 From: "nncp@localhost",
88                                 To:   "root@localhost, delete section to disable notifies",
89                         },
90                 },
91         }
92         raw, err := yaml.Marshal(&cfg)
93         if err != nil {
94                 panic(err)
95         }
96         fmt.Print(string(raw))
97 }