-
Notifications
You must be signed in to change notification settings - Fork 7
/
intermediate.go
304 lines (274 loc) · 9.4 KB
/
intermediate.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
// Copyright 2015 by Leipzig University Library, http://ub.uni-leipzig.de
// The Finc Authors, http://finc.info
// Martin Czygan, <martin.czygan@uni-leipzig.de>
//
// This file is part of some open source application.
//
// Some open source application is free software: you can redistribute
// it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either
// version 3 of the License, or (at your option) any later version.
//
// Some open source application is distributed in the hope that it will
// be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Foobar. If not, see <http://www.gnu.org/licenses/>.
//
// @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
//
package finc
import (
"bytes"
"fmt"
"regexp"
"strings"
"time"
)
const (
IntermediateSchemaRecordType = "is"
AIRecordType = "ai"
IntermediateSchemaVersion = "0.9"
)
var (
NotAssigned = "" // was "not assigned", refs #7092
NonAlphaNumeric = regexp.MustCompile("/[^A-Za-z0-9]+/")
)
// Exporter implements a basic export method that serializes an intermediate schema.
type Exporter interface {
// Export turns an intermediate schema into bytes. Lower level
// representation than ExportSchema.Convert. Allows JSON, XML, Marc,
// Formeta and other formats.
Export(is IntermediateSchema, withFullrecord bool) ([]byte, error)
}
// Author representes an author, "inspired" by OpenURL.
type Author struct {
ID string `json:"x.id,omitempty"`
Name string `json:"rft.au,omitempty"`
LastName string `json:"rft.aulast,omitempty"`
FirstName string `json:"rft.aufirst,omitempty"`
Initial string `json:"rft.auinit,omitempty"`
FirstInitial string `json:"rft.auinit1,omitempty"`
MiddleName string `json:"rft.auinitm,omitempty"`
Suffix string `json:"rft.ausuffix,omitempty"`
Corporation string `json:"rft.aucorp,omitempty"`
}
// String returns a formatted author string.
// TODO(miku): make this complete.
func (author *Author) String() string {
if author.Name != "" {
return author.Name
}
if author.LastName != "" {
if author.FirstName != "" {
return fmt.Sprintf("%s, %s", author.LastName, author.FirstName)
}
return author.LastName
}
return author.ID
}
// IntermediateSchema abstract and collects the values of various input formats.
// Goal is to simplify further processing by using a single format, from which
// the next artifacts can be derived, e.g. records for solr indices.
// This format can be viewed as a catch-all format. The dotted notation
// hints at the origin of the field, e.g. OpenURL, RIS, finc.
//
// Notes on the format:
//
// * The x namespace is experimental.
// * RawDate must be in ISO8601 (YYYY-MM-DD) format.
// * Version is mandatory.
// * Headings and Subjects are not bound to any format yet.
// * Use plural for slices, if possible.
//
// TODO(miku): Clean up naming and date parsing.
type IntermediateSchema struct {
Format string `json:"finc.format,omitempty"`
MegaCollections []string `json:"finc.mega_collection,omitempty"`
ID string `json:"finc.id,omitempty"`
RecordID string `json:"finc.record_id,omitempty"`
SourceID string `json:"finc.source_id,omitempty"`
Database string `json:"ris.db,omitempty"`
DataProvider string `json:"ris.dp,omitempty"`
RefType string `json:"ris.type,omitempty"`
ArticleNumber string `json:"rft.artnum,omitempty"`
ArticleTitle string `json:"rft.atitle,omitempty"`
BookTitle string `json:"rft.btitle,omitempty"`
Chronology string `json:"rft.chron,omitempty"`
Edition string `json:"rft.edition,omitempty"`
EISBN []string `json:"rft.eisbn,omitempty"`
EISSN []string `json:"rft.eissn,omitempty"`
EndPage string `json:"rft.epage,omitempty"`
Genre string `json:"rft.genre,omitempty"`
ISBN []string `json:"rft.isbn,omitempty"`
ISSN []string `json:"rft.issn,omitempty"`
Issue string `json:"rft.issue,omitempty"`
JournalTitle string `json:"rft.jtitle,omitempty"`
PageCount string `json:"rft.tpages,omitempty"`
Pages string `json:"rft.pages,omitempty"`
Part string `json:"rft.part,omitempty"`
Places []string `json:"rft.place,omitempty"`
Publishers []string `json:"rft.pub,omitempty"`
Quarter string `json:"rft.quarter,omitempty"`
// TODO(miku): we do not need both dates
RawDate string `json:"rft.date,omitempty"`
Date time.Time `json:"x.date,omitempty"`
Season string `json:"rft.ssn,omitempty"`
Series string `json:"rft.series,omitempty"`
ShortTitle string `json:"rft.stitle,omitempty"`
StartPage string `json:"rft.spage,omitempty"`
Volume string `json:"rft.volume,omitempty"`
Abstract string `json:"abstract,omitempty"`
Authors []Author `json:"authors,omitempty"`
DOI string `json:"doi,omitempty"`
Languages []string `json:"languages,omitempty"`
URL []string `json:"url,omitempty"`
Version string `json:"version,omitempty"`
ArticleSubtitle string `json:"x.subtitle,omitempty"`
Fulltext string `json:"x.fulltext,omitempty"`
Headings []string `json:"x.headings,omitempty"`
Subjects []string `json:"x.subjects,omitempty"`
Type string `json:"x.type,omitempty"`
// Indicator can hold update related information, e.g. in GBI the filedate
Indicator string `json:"x.indicator,omitempty"`
// Packages can hold set information, e.g. in GBI the licenced package or GBI database
Packages []string `json:"x.packages,omitempty"`
// Labels can carry a list of marks for a given records, e.g. ISILs
Labels []string `json:"x.labels,omitempty"`
// OpenAccess, refs. #8986, prototype
OpenAccess bool `json:"x.oa,omitempty"`
License []string `json:"x.license,omitempty"`
}
// NewIntermediateSchema creates a new intermediate schema document with the
// current version.
func NewIntermediateSchema() *IntermediateSchema {
return &IntermediateSchema{Version: IntermediateSchemaVersion}
}
// ISSNList returns a deduplicated list of all ISSN and EISSN.
func (is *IntermediateSchema) ISSNList() []string {
set := make(map[string]struct{})
for _, issn := range append(is.ISSN, is.EISSN...) {
set[issn] = struct{}{}
}
var issns []string
for k := range set {
issns = append(issns, k)
}
return issns
}
// ISBNList returns a deduplicated list of all ISBN and EISBN.
func (is *IntermediateSchema) ISBNList() []string {
set := make(map[string]struct{})
for _, isbn := range append(is.ISBN, is.EISBN...) {
set[isbn] = struct{}{}
}
var isbns []string
for k := range set {
isbns = append(isbns, k)
}
return isbns
}
// ParsedDate turns tries to turn a raw date string into a date.
// TODO(miku): sources need to enforce a format, maybe enforce it here, too?
func (is *IntermediateSchema) ParsedDate() time.Time {
t, _ := time.Parse("2006-01-02", is.RawDate)
return t
}
// Allfields returns a combination of various fields.
func (is *IntermediateSchema) Allfields() string {
var authors []string
for _, author := range is.Authors {
authors = append(authors, author.String())
}
fields := [][]string{
// multivalued
authors,
is.EISBN,
is.EISSN,
is.ISBN,
is.ISSN,
is.Places,
is.Publishers,
is.Subjects,
is.URL,
{
// single-valued
is.Abstract,
is.ArticleSubtitle,
is.ArticleTitle,
is.BookTitle,
is.Edition,
is.Fulltext,
is.JournalTitle,
is.Series,
is.ShortTitle,
}}
var buf bytes.Buffer
for _, f := range fields {
for _, value := range f {
for _, token := range strings.Fields(value) {
buf.WriteString(fmt.Sprintf("%s ", strings.TrimSpace(token)))
}
}
}
return strings.TrimSpace(buf.String())
}
func btoi(b bool) int {
if b {
return 1
}
return 0
}
// Imprint MARC 260 a, b, c (trad.)
func (is *IntermediateSchema) Imprint() (s string) {
var places, publisher string
year := is.Date.Year()
places = strings.Join(is.Places, " ; ")
if len(is.Publishers) > 0 {
publisher = is.Publishers[0]
}
mask := btoi(places != "") + 2*btoi(publisher != "") + 4*btoi(year != 0)
switch mask {
case 1:
s = places
case 2:
s = publisher
case 3:
s = fmt.Sprintf("%s : %s", places, publisher)
case 4:
s = fmt.Sprintf("%d", year)
case 5:
s = fmt.Sprintf("%s : %d", places, year)
case 6:
s = fmt.Sprintf("%s, %d", publisher, year)
case 7:
s = fmt.Sprintf("%s : %s, %d", places, publisher, year)
}
return
}
// SortableTitle is loosely based on getSortableTitle in SOLRMARC.
func (is *IntermediateSchema) SortableTitle() string {
switch {
case is.BookTitle != "":
return strings.ToLower(NonAlphaNumeric.ReplaceAllString(is.BookTitle, ""))
default:
return strings.ToLower(NonAlphaNumeric.ReplaceAllString(is.ArticleTitle, ""))
}
}
// SortableAuthor is loosely based on getSortableAuthor in SOLRMARC.
func (is *IntermediateSchema) SortableAuthor() string {
var buf bytes.Buffer
for _, author := range is.Authors {
buf.WriteString(strings.ToLower(NonAlphaNumeric.ReplaceAllString(author.String(), "")))
}
buf.WriteString(is.SortableTitle())
return buf.String()
}
// StrippedSchema is a snippet of an IntermediateSchema.
type StrippedSchema struct {
DOI string `json:"doi"`
Labels []string `json:"x.labels"`
SourceID string `json:"finc.source_id"`
}