]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-rm/main.go
Forbid any later GNU GPL versions autousage
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-rm / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 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 // Remove packet from the queue.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "path/filepath"
27         "strings"
28
29         "cypherpunks.ru/nncp"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-rm -- remove packet\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [options] -tmp\n", os.Args[0])
36         fmt.Fprintf(os.Stderr, "       %s [options] -lock\n", os.Args[0])
37         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -part\n", os.Args[0])
38         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -seen\n", os.Args[0])
39         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE {-rx|-tx}\n", os.Args[0])
40         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -pkt PKT\n", os.Args[0])
41         fmt.Fprintln(os.Stderr, "Options:")
42         flag.PrintDefaults()
43 }
44
45 func main() {
46         var (
47                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
48                 doTmp     = flag.Bool("tmp", false, "Remove all temporary files")
49                 doLock    = flag.Bool("lock", false, "Remove all lock files")
50                 nodeRaw   = flag.String("node", "", "Node to remove files in")
51                 doRx      = flag.Bool("rx", false, "Process received packets")
52                 doTx      = flag.Bool("tx", false, "Process transfered packets")
53                 doPart    = flag.Bool("part", false, "Remove only .part files")
54                 doSeen    = flag.Bool("seen", false, "Remove only .seen files")
55                 pktRaw    = flag.String("pkt", "", "Packet to remove")
56                 spoolPath = flag.String("spool", "", "Override path to spool")
57                 quiet     = flag.Bool("quiet", false, "Print only errors")
58                 debug     = flag.Bool("debug", false, "Print debug messages")
59                 version   = flag.Bool("version", false, "Print version information")
60                 warranty  = flag.Bool("warranty", false, "Print warranty information")
61         )
62         flag.Usage = usage
63         flag.Parse()
64         if *warranty {
65                 fmt.Println(nncp.Warranty)
66                 return
67         }
68         if *version {
69                 fmt.Println(nncp.VersionGet())
70                 return
71         }
72
73         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, "", *quiet, *debug)
74         if err != nil {
75                 log.Fatalln("Error during initialization:", err)
76         }
77
78         if *doTmp {
79                 err = filepath.Walk(filepath.Join(ctx.Spool, "tmp"), func(path string, info os.FileInfo, err error) error {
80                         if err != nil {
81                                 return err
82                         }
83                         if info.IsDir() {
84                                 return nil
85                         }
86                         ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
87                         return os.Remove(path)
88                 })
89                 if err != nil {
90                         log.Fatalln("Error during walking:", err)
91                 }
92                 return
93         }
94         if *doLock {
95                 err = filepath.Walk(ctx.Spool, func(path string, info os.FileInfo, err error) error {
96                         if err != nil {
97                                 return err
98                         }
99                         if info.IsDir() {
100                                 return nil
101                         }
102                         if strings.HasSuffix(info.Name(), ".lock") {
103                                 ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
104                                 return os.Remove(path)
105                         }
106                         return nil
107                 })
108                 if err != nil {
109                         log.Fatalln("Error during walking:", err)
110                 }
111                 return
112         }
113         if *nodeRaw == "" {
114                 usage()
115                 os.Exit(1)
116         }
117         node, err := ctx.FindNode(*nodeRaw)
118         if err != nil {
119                 log.Fatalln("Invalid -node specified:", err)
120         }
121         remove := func(xx nncp.TRxTx) error {
122                 return filepath.Walk(filepath.Join(ctx.Spool, node.Id.String(), string(xx)), func(path string, info os.FileInfo, err error) error {
123                         if err != nil {
124                                 return err
125                         }
126                         if info.IsDir() {
127                                 return nil
128                         }
129                         if *doSeen && strings.HasSuffix(info.Name(), nncp.SeenSuffix) {
130                                 ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
131                                 return os.Remove(path)
132                         }
133                         if *doPart && strings.HasSuffix(info.Name(), nncp.PartSuffix) {
134                                 ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
135                                 return os.Remove(path)
136                         }
137                         if *pktRaw != "" && filepath.Base(info.Name()) == *pktRaw {
138                                 ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
139                                 return os.Remove(path)
140                         }
141                         if !*doSeen &&
142                                 !*doPart &&
143                                 (*doRx || *doTx) &&
144                                 ((*doRx && xx == nncp.TRx) || (*doTx && xx == nncp.TTx)) {
145                                 ctx.LogI("nncp-rm", nncp.SDS{"file": path}, "")
146                                 return os.Remove(path)
147                         }
148                         return nil
149                 })
150         }
151         if *pktRaw != "" || *doRx || *doSeen || *doPart {
152                 if err = remove(nncp.TRx); err != nil {
153                         log.Fatalln("Can not remove:", err)
154                 }
155         }
156         if *pktRaw != "" || *doTx {
157                 if err = remove(nncp.TTx); err != nil {
158                         log.Fatalln("Can not remove:", err)
159                 }
160         }
161 }