]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-freq/main.go
Raise copyright years
[nncp.git] / src / cmd / nncp-freq / 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 // Send file request via NNCP.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "path/filepath"
27         "strings"
28
29         "go.cypherpunks.ru/nncp/v8"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-freq -- send file request\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE:SRC [DST]\nOptions:\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 cfgPath      = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
42                 niceRaw      = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFreq), "Outbound packet niceness")
43                 replyNiceRaw = flag.String("replynice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Reply file packet niceness")
44                 minSize      = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
45                 viaOverride  = flag.String("via", "", "Override Via path to destination node")
46                 spoolPath    = flag.String("spool", "", "Override path to spool")
47                 logPath      = flag.String("log", "", "Override path to logfile")
48                 quiet        = flag.Bool("quiet", false, "Print only errors")
49                 showPrgrs    = flag.Bool("progress", false, "Force progress showing")
50                 omitPrgrs    = flag.Bool("noprogress", false, "Omit progress showing")
51                 debug        = flag.Bool("debug", false, "Print debug messages")
52                 version      = flag.Bool("version", false, "Print version information")
53                 warranty     = flag.Bool("warranty", false, "Print warranty information")
54         )
55         log.SetFlags(log.Lshortfile)
56         flag.Usage = usage
57         flag.Parse()
58         if *warranty {
59                 fmt.Println(nncp.Warranty)
60                 return
61         }
62         if *version {
63                 fmt.Println(nncp.VersionGet())
64                 return
65         }
66         if flag.NArg() == 0 {
67                 usage()
68                 os.Exit(1)
69         }
70         nice, err := nncp.NicenessParse(*niceRaw)
71         if err != nil {
72                 log.Fatalln(err)
73         }
74         replyNice, err := nncp.NicenessParse(*replyNiceRaw)
75         if err != nil {
76                 log.Fatalln(err)
77         }
78
79         ctx, err := nncp.CtxFromCmdline(
80                 *cfgPath,
81                 *spoolPath,
82                 *logPath,
83                 *quiet,
84                 *showPrgrs,
85                 *omitPrgrs,
86                 *debug,
87         )
88         if err != nil {
89                 log.Fatalln("Error during initialization:", err)
90         }
91         if ctx.Self == nil {
92                 log.Fatalln("Config lacks private keys")
93         }
94
95         splitted := strings.SplitN(flag.Arg(0), ":", 2)
96         if len(splitted) != 2 {
97                 usage()
98                 os.Exit(1)
99         }
100         node, err := ctx.FindNode(splitted[0])
101         if err != nil {
102                 log.Fatalln("Invalid NODE specified:", err)
103         }
104
105         nncp.ViaOverride(*viaOverride, ctx, node)
106         ctx.Umask()
107
108         var dst string
109         if flag.NArg() == 2 {
110                 dst = flag.Arg(1)
111         } else {
112                 dst = filepath.Base(splitted[1])
113         }
114
115         if err = ctx.TxFreq(
116                 node,
117                 nice,
118                 replyNice,
119                 splitted[1],
120                 dst,
121                 int64(*minSize)*1024,
122         ); err != nil {
123                 log.Fatalln(err)
124         }
125 }