forked from tomnomnom/waybackurls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
165 lines (125 loc) · 2.77 KB
/
Copy pathmain.go
File metadata and controls
165 lines (125 loc) · 2.77 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package main
import (
"bufio"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"net/http"
"os"
"sync"
"time"
)
func main() {
var domains []string
var dates bool
flag.BoolVar(&dates, "dates", false, "show date of fetch in the first column")
flag.Parse()
if flag.NArg() > 0 {
// fetch for a single domain
domains = []string{flag.Arg(0)}
} else {
// fetch for all domains from stdin
sc := bufio.NewScanner(os.Stdin)
for sc.Scan() {
domains = append(domains, sc.Text())
}
if err := sc.Err(); err != nil {
fmt.Fprintf(os.Stderr, "failed to read input: %s\n", err)
}
}
fetchFns := []fetchFn{getWaybackURLs, getCommonCrawlURLs}
for _, domain := range domains {
var wg sync.WaitGroup
wurls := make(chan wurl)
for _, fn := range fetchFns {
wg.Add(1)
fetch := fn
go func() {
defer wg.Done()
resp, err := fetch(domain)
if err != nil {
return
}
for _, r := range resp {
wurls <- r
}
}()
}
go func() {
wg.Wait()
close(wurls)
}()
seen := make(map[string]bool)
for w := range wurls {
if _, ok := seen[w.url]; ok {
continue
}
seen[w.url] = true
if dates {
d, err := time.Parse("20060102150405", w.date)
if err != nil {
fmt.Fprintf(os.Stderr, "failed to parse date [%s] for URL [%s]\n", w.date, w.url)
}
fmt.Printf("%s %s\n", d.Format(time.RFC3339), w.url)
} else {
fmt.Println(w.url)
}
}
}
}
type wurl struct {
date string
url string
}
type fetchFn func(string) ([]wurl, error)
func getWaybackURLs(domain string) ([]wurl, error) {
res, err := http.Get(
fmt.Sprintf("http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&collapse=urlkey", domain),
)
if err != nil {
return []wurl{}, err
}
raw, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return []wurl{}, err
}
var wrapper [][]string
err = json.Unmarshal(raw, &wrapper)
out := make([]wurl, 0, len(wrapper))
skip := true
for _, urls := range wrapper {
// The first item is always just the string "original",
// so we should skip the first item
if skip {
skip = false
continue
}
out = append(out, wurl{date: urls[1], url: urls[2]})
}
return out, nil
}
func getCommonCrawlURLs(domain string) ([]wurl, error) {
res, err := http.Get(
fmt.Sprintf("http://index.commoncrawl.org/CC-MAIN-2018-22-index?url=*.%s&output=json", domain),
)
if err != nil {
return []wurl{}, err
}
defer res.Body.Close()
sc := bufio.NewScanner(res.Body)
out := make([]wurl, 0)
for sc.Scan() {
wrapper := struct {
URL string `json:"url"`
Timestamp string `json:"timestamp"`
}{}
err = json.Unmarshal([]byte(sc.Text()), &wrapper)
if err != nil {
continue
}
out = append(out, wurl{date: wrapper.Timestamp, url: wrapper.URL})
}
return out, nil
}