-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
119 lines (111 loc) · 2.5 KB
/
main.go
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
package main
import (
"fmt"
"log"
"os"
"regexp"
"strconv"
"time"
input "github.com/tcnksm/go-input"
)
func blockRecent(r GetCallDataRecord) {
if r.Status == "no_cdr" {
// printRecents() handled it already
return
}
if r.Status != "success" || len(r.CallDataRecords) == 0 {
fmt.Printf("Status on call is %s\n", r.Status)
fmt.Println("Did not see any recents")
return
}
var blockList []string
seen := make(map[string]struct{}, len(r.CallDataRecords))
regex := regexp.MustCompile(`<(\d+)>`)
for _, cdr := range r.CallDataRecords {
loc := regex.FindStringSubmatchIndex(cdr.CallerID)
if loc == nil {
fmt.Printf("help! no number in %s: %s\n", cdr.Date, cdr.CallerID)
continue
}
if len(loc) < 4 {
fmt.Printf("help! had trouble matching %s: %v\n", cdr.CallerID, loc)
continue
}
number := cdr.CallerID[loc[2]:loc[3]]
if _, ok := seen[number]; ok {
continue
}
blockList = append(blockList, number)
seen[number] = struct{}{}
}
if len(blockList) == 0 {
fmt.Println("No numbers to block")
return
}
ui := input.DefaultUI()
number, err := ui.Select("Pick a number to block", blockList, &input.Options{Loop: true})
if err != nil {
log.Fatal(err)
}
note, err := ui.Ask("Input a note?", &input.Options{})
if err != nil {
log.Fatal(err)
}
blockNumber(&number, ¬e)
}
func usage() {
fmt.Println(`
Specify a command:
block-number number [note]
- add a caller ID filter for the provided number, with optional note
block-recent [D]
- pick a number to block from a list of recent calls. Display calls from
today to [D] days ago; D defaults to 1
show-balance
- show account balance
show-recent [D]
- show recent calls from today to [D] days ago; D defaults to 1
`)
}
func main() {
args := os.Args[1:]
if len(args) == 0 {
usage()
return
}
cmd := args[0]
rest := args[1:]
switch cmd {
case "show-balance":
printBalance()
case "block-number":
if len(rest) == 0 {
fmt.Println("block-number needs a number and an optional note")
return
}
note := ""
if len(rest) > 1 {
note = rest[1]
}
number := rest[0]
blockNumber(&number, ¬e)
case "show-recent", "block-recent":
daysAgo := 1
if len(rest) >= 1 {
parsed, err := strconv.Atoi(rest[0])
if err != nil {
log.Fatal(err)
}
daysAgo = parsed
}
dateFrom := time.Now().AddDate(0, 0, -1*daysAgo)
r := getRecent(dateFrom)
fmt.Println("Calls since", dateFrom.Format("2006-Jan-02"))
printRecent(r)
if cmd == "block-recent" {
blockRecent(r)
}
default:
usage()
}
}