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
|
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package flyscrape
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"os/signal"
"path/filepath"
"syscall"
"github.com/inancgumus/screen"
)
func Run(file string) error {
src, err := os.ReadFile(file)
if err != nil {
return fmt.Errorf("failed to read script %q: %w", file, err)
}
client := &http.Client{}
imports, wait := NewJSLibrary(client)
defer wait()
exports, err := Compile(string(src), imports)
if err != nil {
return fmt.Errorf("failed to compile script: %w", err)
}
scraper := NewScraper()
scraper.ScrapeFunc = exports.Scrape
scraper.SetupFunc = exports.Setup
scraper.Script = file
scraper.Client = client
scraper.Modules = LoadModules(exports.Config())
scraper.Run()
return nil
}
func Dev(file string) error {
cachefile, err := newCacheFile()
if err != nil {
return fmt.Errorf("failed to create cache file: %w", err)
}
trapsignal(func() {
os.RemoveAll(cachefile)
})
fn := func(s string) error {
client := &http.Client{}
imports, wait := NewJSLibrary(client)
defer wait()
exports, err := Compile(s, imports)
if err != nil {
printCompileErr(file, err)
return nil
}
cfg := exports.Config()
cfg = updateCfg(cfg, "depth", 0)
cfg = updateCfg(cfg, "cache", "file:"+cachefile)
scraper := NewScraper()
scraper.ScrapeFunc = exports.Scrape
scraper.SetupFunc = exports.Setup
scraper.Script = file
scraper.Client = client
scraper.Modules = LoadModules(cfg)
screen.Clear()
screen.MoveTopLeft()
scraper.Run()
return nil
}
if err := Watch(file, fn); err != nil && err != StopWatch {
return fmt.Errorf("failed to watch script %q: %w", file, err)
}
return nil
}
func printCompileErr(script string, err error) {
screen.Clear()
screen.MoveTopLeft()
if errs, ok := err.(interface{ Unwrap() []error }); ok {
for _, err := range errs.Unwrap() {
log.Printf("%s:%v\n", script, err)
}
} else {
log.Println(err)
}
}
func updateCfg(cfg Config, key string, value any) Config {
var m map[string]any
if err := json.Unmarshal(cfg, &m); err != nil {
return cfg
}
m[key] = value
b, err := json.Marshal(m)
if err != nil {
return cfg
}
return b
}
func newCacheFile() (string, error) {
cachedir, err := os.MkdirTemp("", "flyscrape-cache")
if err != nil {
return "", err
}
return filepath.Join(cachedir, "dev.cache"), nil
}
func trapsignal(f func()) {
sig := make(chan os.Signal, 2)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM)
go func() {
<-sig
f()
os.Exit(0)
}()
}
|