forked from nlnwa/gowarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
record.go
515 lines (466 loc) · 15 KB
/
record.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
/*
* Copyright 2021 National Library of Norway.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package gowarc
import (
"fmt"
"io"
"strconv"
"strings"
"time"
)
const (
sphtcrlf = " \t\r\n" // Space, Tab, Carriage return, Newline
cr = '\r' // Carriage return
lf = '\n' // Newline
sp = ' ' // Space
ht = '\t' // Tab
crlf = "\r\n" // Carriage return, Newline
crlfcrlf = "\r\n\r\n" // Carriage return, Newline, Carriage return, Newline
)
type WarcRecord interface {
Version() *WarcVersion
Type() RecordType
WarcHeader() *WarcFields
Block() Block
RecordId() string
ContentLength() (int64, error)
Date() (time.Time, error)
String() string
io.Closer
// ToRevisitRecord takes RevisitRef referencing the record we want to make a revisit of and returns a revisit record.
ToRevisitRecord(ref *RevisitRef) (WarcRecord, error)
// RevisitRef extracts a RevisitRef current record if it is a revisit record.
RevisitRef() (*RevisitRef, error)
// CreateRevisitRef creates a RevisitRef which references the current record.
//
// The RevisitRef might be used by another records ToRevisitRecord to create a revisit record referencing this record.
CreateRevisitRef(profile string) (*RevisitRef, error)
// Merge merges this record with its referenced record(s)
//
// It is implemented only for revisit records, but this function will be enhanced to also support segmented records.
Merge(record ...WarcRecord) (WarcRecord, error)
// ValidateDigest validates block and payload digests if present.
//
// If option FixDigest is set, an invalid or missing digest will be corrected in the header.
// Digest validation requires the whole content block to be read. As a side effect the Content-Length field is also validated
// and if option FixContentLength is set, a wrong content length will be corrected in the header.
//
// If the record is not cached, it might not be possible to read any content from this record after validation.
//
// The result is dependent on the SpecViolationPolicy option:
// ErrIgnore: only fatal errors are returned.
// ErrWarn: all errors found will be added to the Validation.
// ErrFail: the first error is returned and no more validation is done.
ValidateDigest(validation *Validation) error
}
type WarcVersion struct {
id uint8
txt string
major uint8
minor uint8
}
func (v *WarcVersion) String() string {
return "WARC/" + v.txt
}
func (v *WarcVersion) Major() uint8 {
return v.major
}
func (v *WarcVersion) Minor() uint8 {
return v.minor
}
var (
// WARC versions
V1_0 = &WarcVersion{id: 1, txt: "1.0", major: 1, minor: 0} // WARC 1.0
V1_1 = &WarcVersion{id: 2, txt: "1.1", major: 1, minor: 1} // WARC 1.1
)
type RecordType uint16
func (rt RecordType) String() string {
switch rt {
case 1:
return "warcinfo"
case 2:
return "response"
case 4:
return "resource"
case 8:
return "request"
case 16:
return "metadata"
case 32:
return "revisit"
case 64:
return "conversion"
case 128:
return "continuation"
default:
return "unknown"
}
}
func stringToRecordType(rt string) RecordType {
switch rt {
case "warcinfo":
return 1
case "response":
return 2
case "resource":
return 4
case "request":
return 8
case "metadata":
return 16
case "revisit":
return 32
case "conversion":
return 64
case "continuation":
return 128
default:
return 0
}
}
type RevisitRef struct {
Profile string
TargetRecordId string
TargetUri string
TargetDate string
}
const (
// WARC record types
Warcinfo RecordType = 1
Response RecordType = 2
Resource RecordType = 4
Request RecordType = 8
Metadata RecordType = 16
Revisit RecordType = 32
Conversion RecordType = 64
Continuation RecordType = 128
)
const (
// Well known content types
ApplicationWarcFields = "application/warc-fields"
ApplicationHttp = "application/http"
)
const (
// Well known revisit profiles
ProfileIdenticalPayloadDigestV1_1 = "http://netpreserve.org/warc/1.1/revisit/identical-payload-digest"
ProfileServerNotModifiedV1_1 = "http://netpreserve.org/warc/1.1/revisit/server-not-modified"
ProfileIdenticalPayloadDigestV1_0 = "http://netpreserve.org/warc/1.0/revisit/identical-payload-digest"
ProfileServerNotModifiedV1_0 = "http://netpreserve.org/warc/1.0/revisit/server-not-modified"
)
type warcRecord struct {
opts *warcRecordOptions
version *WarcVersion
headers *WarcFields
recordType RecordType
block Block
closer func() error
}
func (wr *warcRecord) Version() *WarcVersion { return wr.version }
func (wr *warcRecord) Type() RecordType { return wr.recordType }
func (wr *warcRecord) WarcHeader() *WarcFields { return wr.headers }
func (wr *warcRecord) Block() Block {
return wr.block
}
func (wr *warcRecord) RecordId() string {
return wr.headers.GetId(WarcRecordID)
}
func (wr *warcRecord) ContentLength() (int64, error) {
return wr.headers.GetInt64(ContentLength)
}
func (wr *warcRecord) Date() (time.Time, error) {
return wr.headers.GetTime(WarcDate)
}
func (wr *warcRecord) String() string {
return fmt.Sprintf("WARC record: version: %s, type: %s, id: %s", wr.version, wr.Type(), wr.WarcHeader().GetId(WarcRecordID))
}
func (wr *warcRecord) Close() error {
if wr.closer != nil {
err := wr.closer()
wr.closer = nil
return err
}
return nil
}
func (wr *warcRecord) ToRevisitRecord(ref *RevisitRef) (WarcRecord, error) {
h := wr.headers.clone()
switch ref.Profile {
case ProfileIdenticalPayloadDigestV1_0:
fallthrough
case ProfileIdenticalPayloadDigestV1_1:
if !h.Has(WarcPayloadDigest) && wr.recordType == Resource && h.Has(WarcBlockDigest) {
h.Set(WarcPayloadDigest, h.Get(WarcBlockDigest))
}
if !h.Has(WarcPayloadDigest) {
return nil, fmt.Errorf("payload digest is required for Identical Payload Digest Profile")
}
case ProfileServerNotModifiedV1_0:
case ProfileServerNotModifiedV1_1:
default:
return nil, fmt.Errorf("unknown revisit profile")
}
h.Set(WarcType, Revisit.String())
h.Set(WarcProfile, ref.Profile)
if ref.TargetRecordId != "" {
h.SetId(WarcRefersTo, ref.TargetRecordId)
}
if ref.TargetUri != "" {
h.Set(WarcRefersToTargetURI, ref.TargetUri)
}
if ref.TargetDate != "" {
h.Set(WarcRefersToDate, ref.TargetDate)
}
h.Set(WarcTruncated, "length")
block, err := newRevisitBlock(wr.opts, wr.block)
if err != nil {
return nil, err
}
h.Set(WarcBlockDigest, block.BlockDigest())
h.SetInt(ContentLength, len(block.headerBytes))
revisit := &warcRecord{
opts: wr.opts,
version: wr.version,
recordType: Revisit,
headers: h,
block: block,
}
return revisit, nil
}
func (wr *warcRecord) RevisitRef() (*RevisitRef, error) {
if wr.recordType != Revisit {
return nil, fmt.Errorf("not a revisit record")
}
return &RevisitRef{
Profile: wr.headers.Get(WarcProfile),
TargetRecordId: wr.headers.GetId(WarcRefersTo),
TargetUri: wr.headers.Get(WarcRefersToTargetURI),
TargetDate: wr.headers.Get(WarcRefersToDate),
}, nil
}
func (wr *warcRecord) CreateRevisitRef(profile string) (*RevisitRef, error) {
if wr.recordType == Revisit {
return nil, fmt.Errorf("not allowed to reference a revisit record")
}
return &RevisitRef{
Profile: profile,
TargetRecordId: wr.headers.GetId(WarcRecordID),
TargetUri: wr.headers.Get(WarcTargetURI),
TargetDate: wr.headers.Get(WarcDate),
}, nil
}
func (wr *warcRecord) Merge(record ...WarcRecord) (WarcRecord, error) {
if wr.headers.Get(WarcSegmentNumber) == "1" {
return nil, fmt.Errorf("merging of segmentet records is not implemented")
}
if wr.recordType != Revisit {
return nil, fmt.Errorf("merging is only possible for revisit records or segmentet records")
}
if len(record) != 1 {
return nil, fmt.Errorf("a revisit record must be merged with only one referenced record")
}
wr.recordType = record[0].Type()
wr.headers.Set(WarcType, "response")
wr.headers.Delete(WarcRefersTo)
wr.headers.Delete(WarcRefersToTargetURI)
wr.headers.Delete(WarcRefersToDate)
wr.headers.Delete(WarcProfile)
if record[0].WarcHeader().Has(WarcTruncated) {
wr.headers.Set(WarcTruncated, record[0].WarcHeader().Get(WarcTruncated))
} else {
wr.headers.Delete(WarcTruncated)
}
b, ok := wr.block.(*revisitBlock)
if !ok {
return nil, fmt.Errorf("the revisit record's has wrong block type. Creation of record must be done with SkipParseBlock set to false")
}
switch v := record[0].Block().(type) {
case *httpRequestBlock:
refLen, err := record[0].WarcHeader().GetInt64(ContentLength)
if err != nil {
return nil, fmt.Errorf("could not parse %s", ContentLength)
}
size := int64(len(b.headerBytes)) + refLen - int64(len(v.httpHeaderBytes))
wr.headers.SetInt64(ContentLength, size)
v.httpHeaderBytes = b.headerBytes
wr.block = v
if err := v.parseHeaders(v.httpHeaderBytes); err != nil {
if wr.opts.errSyntax > ErrWarn {
return wr, err
}
v.httpHeaderBytes = append(v.httpHeaderBytes, cr, lf)
if err := v.parseHeaders(v.httpHeaderBytes); err != nil {
return wr, err
}
}
case *httpResponseBlock:
refLen, err := record[0].WarcHeader().GetInt64(ContentLength)
if err != nil {
return nil, fmt.Errorf("could not parse %s", ContentLength)
}
size := int64(len(b.headerBytes)) + refLen - int64(len(v.httpHeaderBytes))
wr.headers.SetInt64(ContentLength, size)
v.httpHeaderBytes = b.headerBytes
wr.block = v
if err := v.parseHeaders(v.httpHeaderBytes); err != nil {
if wr.opts.errSyntax > ErrWarn {
return wr, err
}
v.httpHeaderBytes = append(v.httpHeaderBytes, cr, lf)
if err := v.parseHeaders(v.httpHeaderBytes); err != nil {
return wr, err
}
}
default:
return nil, fmt.Errorf("merging of revisits is only implemented for http requests and responses")
}
if record[0].Block().IsCached() {
wr.headers.Set(WarcBlockDigest, record[0].Block().BlockDigest())
} else {
wr.headers.Delete(WarcBlockDigest)
}
return wr, nil
}
func (wr *warcRecord) parseBlock(reader io.Reader, validation *Validation) (err error) {
blockDigest, err := newDigestFromField(wr, WarcBlockDigest)
if err != nil {
return err
}
payloadDigest, err := newDigestFromField(wr, WarcPayloadDigest)
if err != nil {
return err
}
if !wr.opts.skipParseBlock {
contentType := strings.ToLower(wr.headers.Get(ContentType))
if wr.recordType&(Response|Resource|Request|Conversion|Continuation) != 0 {
if strings.HasPrefix(contentType, ApplicationHttp) {
wr.block, err = newHttpBlock(wr.opts, wr.headers, reader, blockDigest, payloadDigest, validation)
return
}
}
if wr.recordType == Revisit {
wr.block, err = parseRevisitBlock(wr.opts, reader, blockDigest, wr.headers.Get(WarcPayloadDigest))
return
}
if strings.HasPrefix(contentType, ApplicationWarcFields) {
wr.block, err = newWarcFieldsBlock(wr.opts, wr.headers, reader, blockDigest, validation)
return
}
}
wr.block = newGenericBlock(wr.opts, reader, blockDigest)
return
}
// ValidateDigest validates block and payload digests if present.
//
// If option FixDigest is set, an invalid or missing digest will be corrected in the header.
// Digest validation requires the whole content block to be read. As a side effect the Content-Length field is also validated
// and if option FixContentLength is set, a wrong content length will be corrected in the header.
//
// If the record is not cached, it might not be possible to read any content from this record after validation.
//
// The result is dependent on the SpecViolationPolicy option:
//
// ErrIgnore: only fatal errors are returned.
// ErrWarn: all errors found will be added to the Validation.
// ErrFail: the first error is returned and no more validation is done.
func (wr *warcRecord) ValidateDigest(validation *Validation) error {
if wr.opts.errSpec > ErrIgnore {
if err := wr.Block().Cache(); err != nil {
return err
}
wr.Block().BlockDigest()
size := strconv.FormatInt(wr.block.Size(), 10)
if wr.WarcHeader().Has(ContentLength) && size != wr.headers.Get(ContentLength) {
switch wr.opts.errSpec {
case ErrWarn:
validation.addError(fmt.Errorf("content length mismatch. header: %v, actual: %v", wr.headers.Get(ContentLength), size))
if wr.opts.fixContentLength {
wr.WarcHeader().Set(ContentLength, size)
}
case ErrFail:
return fmt.Errorf("content length mismatch. header: %v, actual: %v", wr.headers.Get(ContentLength), size)
}
}
}
var blockDigest, payloadDigest *digest
switch v := wr.Block().(type) {
case *genericBlock:
blockDigest = v.blockDigest
if wr.recordType == Resource {
payloadDigest = blockDigest
}
case *httpRequestBlock:
blockDigest = v.blockDigest
payloadDigest = v.payloadDigest
case *httpResponseBlock:
blockDigest = v.blockDigest
payloadDigest = v.payloadDigest
case *revisitBlock:
blockDigest = v.blockDigest
case *warcFieldsBlock:
blockDigest = v.blockDigest
}
if blockDigest != nil {
if blockDigest.hash == "" {
// Missing digest header is allowed, so skip validation. But if addMissingDigest option is set, a header will be added.
if wr.opts.addMissingDigest {
wr.WarcHeader().Set(WarcBlockDigest, blockDigest.format())
}
} else if wr.opts.errSpec > ErrIgnore {
if err := blockDigest.validate(); err != nil {
switch wr.opts.errSpec {
case ErrIgnore:
case ErrWarn:
validation.addError(fmt.Errorf("block: %w", err))
if wr.opts.fixDigest {
// Digest validation failed. But if fixDigest option is set, the calculated digest will be set.
blockDigest.updateDigest()
wr.WarcHeader().Set(WarcBlockDigest, blockDigest.format())
}
case ErrFail:
return fmt.Errorf("block: %w", err)
}
}
}
}
if wr.Type() == Revisit || wr.WarcHeader().Has(WarcSegmentNumber) {
// Can't check payload digest for revisit records or segmented records since the payload digest is a digest of
// the original record
return nil
}
if payloadDigest != nil {
if payloadDigest.hash == "" {
// Missing digest header is allowed, so skip validation. But if addMissingDigest option is set, a header will be added.
if wr.opts.addMissingDigest {
wr.WarcHeader().Set(WarcPayloadDigest, payloadDigest.format())
}
} else if wr.opts.errSpec > ErrIgnore {
if err := payloadDigest.validate(); err != nil {
switch wr.opts.errSpec {
case ErrIgnore:
case ErrWarn:
validation.addError(fmt.Errorf("payload: %w", err))
// Digest validation failed. But if fixDigest option is set, the calculated digest will be set.
if wr.opts.fixDigest {
payloadDigest.updateDigest()
wr.WarcHeader().Set(WarcPayloadDigest, payloadDigest.format())
}
case ErrFail:
return fmt.Errorf("payload: %w", err)
}
}
}
}
return nil
}