-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
302 lines (237 loc) · 5.84 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package main
import (
"bufio"
"errors"
"flag"
"fmt"
"log"
"os"
"regexp"
"sync"
"net/http"
"github.com/cheggaaa/pb"
)
const (
path string = "./images/"
)
// image represents a Pexels image
type image struct {
URL string
Filename string
downloaded bool
downloading bool
}
func (i *image) Downloading() bool {
return i.downloading
}
func (i *image) SetDownloading() {
i.downloading = true
}
func (i *image) DownloadToDir(dirPath string) (err error) {
// download the image
resp, err := http.Get(i.URL)
if err != nil {
return
}
// open the file
file, err := os.Create(path + i.Filename)
if err != nil {
return
}
defer file.Close()
// create the reader and writters we'll connect
respReader := bufio.NewReader(resp.Body)
fileWriter := bufio.NewWriter(file)
// write the content of the resp to the file
_, err = respReader.WriteTo(fileWriter)
if err != nil {
return
}
// flag the image as downloaded
i.downloaded = true
return
}
func (i *image) Downloaded() bool {
return i.downloaded
}
func newImage(url string, filename string) *image {
return &image{
URL: url,
Filename: filename,
}
}
// Page contains a number of images
type Page struct {
Number int
Images []image
}
// AddImage adds an image to a page
func (p *Page) AddImage(i image) {
p.Images = append(p.Images, i)
}
func makeResultDir() (err error) {
if _, rrr := os.Stat(path); os.IsNotExist(rrr) {
err = os.Mkdir(path, os.ModePerm)
}
return
}
// Query query pexels for pages matching a provided query string
// and return them
// BUG(@jesuiscamille): It may worth it to implement a way to select the number of
// pages to query and return
func Query(queryString string, amount int) (pages []Page, err error) {
// check if the search term exist on pexels
var scanner *bufio.Scanner
noMatch := regexp.MustCompile("/innerHTML = '';")
// get the page for the search term
resp, err := http.Get(fmt.Sprintf("https://www.pexels.com/search/%s/?page=9999&format=js", queryString))
if err != nil {
err = errors.New("Error while downloading the pages list: " + err.Error())
return
}
scanner = bufio.NewScanner(resp.Body)
var tmpPage1 string
for {
continu := scanner.Scan()
tmpPage1 += scanner.Text()
if !continu {
break
}
}
// the search term does not exist on pexels
if noMatch.MatchString(tmpPage1) {
err = errors.New("the search term did not return anything on pexels")
return
}
imageRegex := regexp.MustCompile(`photos/[0-9]{1,10}/pexels-photo-[0-9]{1,10}\.jpeg`)
filenameRegex := regexp.MustCompile(`pexels-photo-[0-9]{0,9}\.jpeg`)
pageNb := 0
var tmpPage2 string
log.Println("Getting results pages for the query...")
for {
if pageNb > amount {
break
}
resp, err = http.Get(fmt.Sprintf("https://www.pexels.com/search/%s/?page=%d?format=js", queryString, pageNb))
scanner = bufio.NewScanner(resp.Body)
for {
continu := scanner.Scan()
tmpPage2 += scanner.Text()
if !continu {
break
}
}
//photoURLs := imageRegex.FindAllString(scanner.Text(), -1)
photoURLs := imageRegex.FindAllString(tmpPage2, -1)
// if there are no photos left, stop
if len(photoURLs) == 0 {
break
}
tmpPage := Page{
Number: pageNb,
}
for _, partImageURL := range photoURLs {
tmpPage.AddImage(image{
URL: "https://images.pexels.com/" + partImageURL,
Filename: filenameRegex.FindString(partImageURL),
})
}
pages = append(pages, tmpPage)
tmpPage2 = ""
pageNb++
}
log.Printf("Search results pages downloaded: %d.\n", pageNb-1)
return
}
func main() {
var query string
var amount int
var threads int
var pageAmount int
flag.StringVar(&query, "query", "", "The pexels search term to be used")
flag.IntVar(&amount, "amount", 100, "The amount of images to download")
flag.IntVar(&threads, "threads", 3, "The amount of threads to use to download the images")
flag.IntVar(&pageAmount, "pageAmount", 10, "The amount of pages to fetch")
flag.Parse()
if query == "" {
log.Fatal("Please select a query using -query")
}
if err := makeResultDir(); err != nil {
log.Fatal("Error while making the result dir: " + err.Error())
}
// get the pages for the query
var pages []Page
pages, err := Query(query, pageAmount)
if err != nil {
log.Fatal("Error while fectching pages: " + err.Error())
}
// download all the images of all the pages
log.Printf("Starting the downloads... Threads: %d\n", threads)
downloadChan := make(chan image)
stopChan := make(chan int)
// get the total number of images
total := 0
for _, page := range pages {
total += len(page.Images)
}
// if the total exceeds our number of images, cut the total to it
if total > amount {
total = amount
}
// create the progress bar
var bar *pb.ProgressBar = pb.StartNew(total)
var wg sync.WaitGroup
for i := 0; i != threads; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for {
select {
case img := <-downloadChan:
if err := img.DownloadToDir(path); err != nil {
log.Printf("Error while downloading image: %s\n", err.Error())
}
bar.Increment()
case <-stopChan:
return
}
}
}()
}
// send all the images to the download chans
downloaded := 0
var sent []string
for _, page := range pages {
for _, image := range page.Images {
if !image.Downloaded() && !image.Downloading() {
var okcontinue bool = true
for _, sentURL := range sent {
if image.URL == sentURL {
okcontinue = false
break
}
}
if okcontinue {
sent = append(sent, image.URL)
downloaded++
image.SetDownloading()
downloadChan <- image
if downloaded >= amount {
break
}
}
}
}
if downloaded >= amount {
break
}
}
// quit all the goroutines
for i := 0; i != threads; i++ {
stopChan <- 0
}
bar.Finish()
log.Println("all images downloaded")
log.Println("Waiting for the goroutines to exit...")
wg.Wait()
}