@@ -72,40 +72,53 @@ type Remote struct {
72
72
type Bundles map [string ]* Bundle
73
73
74
74
// Get returns a Bundle by given name.
75
- func (b Bundles ) Get (name string ) * Bundle {
76
- return b [name ]
75
+ func (bs Bundles ) Get (name string ) (bundle * Bundle ) {
76
+ if b := bs [name ]; b != nil {
77
+ bundle = b
78
+ }
79
+ return
80
+ }
81
+
82
+ // Shot returns a screenshot.Screenshots from Bundle.
83
+ func (b * Bundle ) Shot () (s screenshot.Screenshots ) {
84
+ if b != nil {
85
+ return screenshot.Screenshots {
86
+ URL : b .URL ,
87
+ Title : b .Title ,
88
+ Image : b .Image ,
89
+ HTML : b .HTML ,
90
+ PDF : b .PDF ,
91
+ }
92
+ }
93
+ return
77
94
}
78
95
79
96
// Do executes secreenshot, print PDF and export html of given URLs
80
97
// Returns a set of bundle containing screenshot data and file path
81
98
// nolint:gocyclo
82
99
func Do (ctx context.Context , urls ... * url.URL ) (Bundles , error ) {
100
+ bundles := make (Bundles , len (urls ))
83
101
if ! config .Opts .EnabledReduxer () {
84
- return nil , errors .New ("Specify directory to environment `WAYBACK_STORAGE_DIR` to enable reduxer" )
102
+ return bundles , errors .New ("Specify directory to environment `WAYBACK_STORAGE_DIR` to enable reduxer" )
85
103
}
86
104
87
105
shots , err := capture (ctx , urls ... )
88
106
if err != nil {
89
- return nil , err
107
+ return bundles , err
90
108
}
91
109
92
110
dir , err := createDir (config .Opts .StorageDir ())
93
111
if err != nil {
94
- return nil , err
112
+ return bundles , err
95
113
}
96
114
97
115
var wg sync.WaitGroup
98
116
var mu sync.Mutex
99
117
var warc = & warcraft.Warcraft {BasePath : dir , UserAgent : config .Opts .WaybackUserAgent ()}
100
- var craft = func (in string ) string {
101
- u , err := url .Parse (in )
102
- if err != nil {
103
- logger .Debug ("create warc for %s failed" , u .String ())
104
- return ""
105
- }
106
- path , err := warc .Download (ctx , u )
118
+ var craft = func (in * url.URL ) string {
119
+ path , err := warc .Download (ctx , in )
107
120
if err != nil {
108
- logger .Debug ("create warc for %s failed: %v" , u .String (), err )
121
+ logger .Debug ("create warc for %s failed: %v" , in .String (), err )
109
122
return ""
110
123
}
111
124
return path
@@ -116,7 +129,6 @@ func Do(ctx context.Context, urls ...*url.URL) (Bundles, error) {
116
129
buf []byte
117
130
}
118
131
119
- bundles := make (Bundles )
120
132
for _ , shot := range shots {
121
133
wg .Add (1 )
122
134
go func (shot screenshot.Screenshots ) {
@@ -129,6 +141,7 @@ func Do(ctx context.Context, urls ...*url.URL) (Bundles, error) {
129
141
{key : & assets .Raw , buf : shot .HTML },
130
142
{key : & assets .HAR , buf : shot .HAR },
131
143
}
144
+ u , _ := url .Parse (shot .URL )
132
145
for _ , slug := range slugs {
133
146
if slug .buf == nil {
134
147
logger .Warn ("file empty, skipped" )
@@ -152,13 +165,12 @@ func Do(ctx context.Context, urls ...*url.URL) (Bundles, error) {
152
165
}
153
166
}
154
167
// Set path of WARC file directly to avoid read file as buffer
155
- if err := helper .SetField (& assets .WARC , "Local" , craft (shot . URL )); err != nil {
168
+ if err := helper .SetField (& assets .WARC , "Local" , craft (u )); err != nil {
156
169
logger .Error ("assign field WARC to path struct failed: %v" , err )
157
170
}
158
171
if err := helper .SetField (& assets .Media , "Local" , media (ctx , dir , shot .URL )); err != nil {
159
172
logger .Error ("assign field Media to path struct failed: %v" , err )
160
173
}
161
- u , _ := url .Parse (shot .URL )
162
174
article , err := readability .FromReader (bytes .NewReader (shot .HTML ), u )
163
175
if err != nil {
164
176
logger .Error ("parse html failed: %v" , err )
0 commit comments