-
Notifications
You must be signed in to change notification settings - Fork 1
/
harvest.go
396 lines (389 loc) · 12 KB
/
harvest.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// irdmtools is a package for working with institutional repositories and
// data management systems. Current implementation targets Invenio-RDM.
//
// @author R. S. Doiel, <[email protected]>
// @author Tom Morrell, <[email protected]>
//
// Copyright (c) 2023, Caltech
// All rights not granted herein are expressly reserved by Caltech.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors
// may be used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package irdmtools
import (
"database/sql"
"fmt"
"log"
"os"
"strconv"
"strings"
"time"
// Caltech Library packages
"github.com/caltechlibrary/dataset/v2"
)
func Harvest(cfg *Config, fName string, debug bool) error {
cName := cfg.CName
if cName == "" {
return fmt.Errorf("dataset collection not configured")
}
if fName == "" {
return fmt.Errorf("JSON ids file not set")
}
c, err := dataset.Open(cName)
if err != nil {
return err
}
defer c.Close()
src, err := os.ReadFile(fName)
if err != nil {
return err
}
recordIds := []string{}
if err := JSONUnmarshal(src, &recordIds); err != nil {
return err
}
l := log.New(os.Stderr, "", 1)
const maxErrors = 100
eCnt, hCnt, tot := 0, 0, len(recordIds)
if debug {
l.Printf("%d record ids", tot)
}
t0 := time.Now()
iTime, reportProgress := time.Now(), false
//fmt.Printf("DEBUG are we using the RDM REST API? %t\n", (cfg.InvenioDbHost == ""))
connStr := cfg.MakeDSN()
if connStr == "" {
return fmt.Errorf("ERROR: harvesting through JSON API, not supported")
}
cfg.rl = nil
// Need to open our Postgres connection and defer the closing of it.
db, err := sql.Open("postgres", connStr)
if err != nil {
return err
}
defer db.Close()
cfg.pgDB = db
//fmt.Printf("DEBUG is cfg.rl nil? %t, is cfg.pgDB nil? %t\n", (cfg.rl == nil), (cfg.pgDB == nil))
for i, id := range recordIds {
rec, err := GetRecord(cfg, id, false)
if err != nil {
msg := fmt.Sprintf("%s", err)
if strings.HasPrefix(msg, "429 ") {
cfg.rl.Fprintf(os.Stderr)
}
log.Printf("failed to get (%d) %q, %s", i, id, err)
eCnt++
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, rec); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, rec); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
}
}
if eCnt > maxErrors {
return fmt.Errorf("Stopped, %d errors encountered", eCnt)
}
// The rest API seems to have two rate limits, 5000 requests per hour and 500 requests per minute
if iTime, reportProgress = CheckWaitInterval(iTime, time.Minute); reportProgress || i == 0 {
log.Printf("%s last id %q (%d/%d) %s: %s", cName, id, i, tot, time.Since(t0).Round(time.Second), ProgressETA(t0, i, tot))
}
}
log.Printf("%d harvested, %d errors, running time %s", hCnt, eCnt, time.Since(t0).Round(time.Second))
cfg.pgDB = nil
return nil
}
func harvestEPrintRecordsFromMySQL(cfg *Config, recordIds []int, asCitation bool, debug bool) error {
cName := cfg.CName
c, err := dataset.Open(cName)
if err != nil {
return err
}
defer c.Close()
var dsn string
if cfg.EPrintDbHost == "localhost" {
dsn = fmt.Sprintf("%s:%s@/%s", cfg.EPrintDbUser, cfg.EPrintDbPassword, cfg.RepoID)
} else {
dsn = fmt.Sprintf("%s:%s@%s/%s", cfg.EPrintDbUser, cfg.EPrintDbPassword, cfg.EPrintDbHost, cfg.RepoID)
}
db, err := sql.Open("mysql", dsn)
if err != nil {
return err
}
defer db.Close()
l := log.New(os.Stderr, "", 1)
const maxErrors = 100
eCnt, hCnt, tot := 0, 0, len(recordIds)
if debug {
l.Printf("%d record ids", tot)
}
t0 := time.Now()
iTime, reportProgress := time.Now(), false
for i, eprintid := range recordIds {
id := fmt.Sprintf("%d", eprintid)
if err != nil {
l.Printf("failed to convert %d to string, %s", eprintid, err)
continue
}
eprint, err := SQLReadEPrint(db, cfg.EPrintHost, eprintid)
if err != nil {
l.Printf("failed to get (%d) %d, %s", i, eprintid, err)
eCnt++
} else if asCitation {
// NOTE: I need to convert eprint to citation record
citation := new(Citation)
if err := citation.CrosswalkEPrint(cName, id, cfg.EPrintBaseURL, eprint); err != nil {
l.Printf("failed to convert eprint %s to citation, %s", id, err)
eCnt++
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, citation); err != nil {
l.Printf("failed to write %d to %s, %s", eprintid, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, citation); err != nil {
l.Printf("failed to write %d to %s, %s", eprintid, cName, err)
eCnt++
} else {
hCnt++
}
}
}
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, eprint); err != nil {
l.Printf("failed to write %d to %s, %s", eprintid, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, eprint); err != nil {
l.Printf("failed to write %d to %s, %s", eprintid, cName, err)
eCnt++
} else {
hCnt++
}
}
}
if eCnt > maxErrors {
return fmt.Errorf("Stopped, %d errors encountered", eCnt)
}
// The rest API seems to have two rate limits, 5000 requests per hour and 500 requests per minute
if iTime, reportProgress = CheckWaitInterval(iTime, time.Minute); reportProgress || i == 0 {
l.Printf("%s last id %d (%d/%d) %s: %s", cName, eprintid, i, tot, time.Since(t0).Round(time.Second), ProgressETA(t0, i, tot))
}
}
l.Printf("%d harvested, %d errors, running time %s", hCnt, eCnt, time.Since(t0).Round(time.Second))
return nil
}
func HarvestEPrintRecords(cfg *Config, recordIds []int, asCitation bool, debug bool) error {
// Check if we can harvest directly from EPrnits MySQL database.
if cfg.EPrintDbHost != "" && cfg.EPrintDbUser != "" && cfg.EPrintDbPassword != "" {
return harvestEPrintRecordsFromMySQL(cfg, recordIds, asCitation, debug)
}
cName := cfg.CName
if cName == "" {
return fmt.Errorf("dataset collection not configured")
}
if len(recordIds) == 0 {
return fmt.Errorf("no record ids to harvest")
}
c, err := dataset.Open(cName)
if err != nil {
return err
}
defer c.Close()
l := log.New(os.Stderr, "", 1)
const maxErrors = 100
eCnt, hCnt, tot := 0, 0, len(recordIds)
if debug {
l.Printf("%d record ids", tot)
}
t0 := time.Now()
iTime, reportProgress := time.Now(), false
cfg.rl = new(RateLimit)
timeout := time.Duration(timeoutSeconds)
for i, eprintid := range recordIds {
id := strconv.Itoa(eprintid)
rec, err := GetEPrint(cfg, eprintid, timeout, 3)
if err != nil {
msg := fmt.Sprintf("%s", err)
if strings.HasPrefix(msg, "429 ") {
cfg.rl.Fprintf(os.Stderr)
}
l.Printf("failed to get (%d) %q, %s", i, id, err)
eCnt++
} else if asCitation {
// NOTE: I need to convert rec to citation format
citation := new(Citation)
if err := citation.CrosswalkEPrint(cName, id, cfg.EPrintBaseURL, rec.EPrint[0]); err != nil {
l.Printf("failed to convert EPrint %s to citation, %s", id, err)
eCnt++
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, citation); err != nil {
l.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, citation); err != nil {
l.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
}
}
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, rec); err != nil {
l.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, rec); err != nil {
l.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
}
}
if eCnt > maxErrors {
return fmt.Errorf("Stopped, %d errors encountered", eCnt)
}
// The rest API seems to have two rate limits, 5000 requests per hour and 500 requests per minute
if iTime, reportProgress = CheckWaitInterval(iTime, time.Minute); reportProgress || i == 0 {
l.Printf("%s last id %q (%d/%d) %s: %s", cName, id, i, tot, time.Since(t0).Round(time.Second).String(), ProgressETA(t0, i, tot))
}
}
l.Printf("%d harvested, %d errors, running time %s", hCnt, eCnt, time.Since(t0).Round(time.Second).String())
return nil
}
func HarvestEPrints(cfg *Config, fName string, asCitation bool, debug bool) error {
cName := cfg.CName
if cName == "" {
return fmt.Errorf("dataset collection not configured")
}
if fName == "" {
return fmt.Errorf("JSON ids file not set")
}
c, err := dataset.Open(cName)
if err != nil {
return err
}
defer c.Close()
src, err := os.ReadFile(fName)
if err != nil {
return err
}
recordIds := []int{}
if err := JSONUnmarshal(src, &recordIds); err != nil {
return err
}
l := log.New(os.Stderr, "", 1)
const maxErrors = 100
eCnt, hCnt, tot := 0, 0, len(recordIds)
if debug {
l.Printf("%d record ids", tot)
}
t0 := time.Now()
iTime, reportProgress := time.Now(), false
cfg.rl = new(RateLimit)
timeout := time.Duration(timeoutSeconds)
for i, eprintid := range recordIds {
id := strconv.Itoa(eprintid)
rec, err := GetEPrint(cfg, eprintid, timeout, 3)
if err != nil {
msg := fmt.Sprintf("%s", err)
if strings.HasPrefix(msg, "429 ") {
cfg.rl.Fprintf(os.Stderr)
}
log.Printf("failed to get (%d) %q, %s", i, id, err)
eCnt++
} else if asCitation {
// FIXME: convert rec to citation record.
citation := rec
if c.HasKey(id) {
if err := c.UpdateObject(id, citation); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, citation); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
}
} else {
if c.HasKey(id) {
if err := c.UpdateObject(id, rec); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
} else {
if err := c.CreateObject(id, rec); err != nil {
log.Printf("failed to write %q to %s, %s", id, cName, err)
eCnt++
} else {
hCnt++
}
}
}
if eCnt > maxErrors {
return fmt.Errorf("Stopped, %d errors encountered", eCnt)
}
// The rest API seems to have two rate limits, 5000 requests per hour and 500 requests per minute
if iTime, reportProgress = CheckWaitInterval(iTime, time.Minute); reportProgress || i == 0 {
log.Printf("%s last id %q (%d/%d) %s: %s", cName, id, i, tot, time.Since(t0).Round(time.Second), ProgressETA(t0, i, tot))
}
}
log.Printf("%d harvested, %d errors, running time %s", hCnt, eCnt, time.Since(t0).Round(time.Second))
return nil
}