-
Notifications
You must be signed in to change notification settings - Fork 0
/
validator.rb
executable file
·667 lines (644 loc) · 21.8 KB
/
validator.rb
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
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
# $Id$
require "date"
require "net/http"
require "net/https"
require "optparse"
require "pp"
require "rubygems"
require "libxml"
class URI::HTTP
def merge_request_uri( query_s )
if self.query
request_uri + "&#{ query_s }"
else
path + "?#{ query_s }"
end
end
end
class JuNii2Validator
#JUNII2_XSD = "http://irdb.nii.ac.jp/oai/junii2.xsd"
#JUNII2_XSD = "http://irdb.nii.ac.jp/oai/junii2-3_0.xsd"
JUNII2_XSD = "https://irdb.nii.ac.jp/oai/junii2-3-1.xsd"
JUNII2_NAMESPACE = "http://irdb.nii.ac.jp/oai"
NIIsubject = %w[
全般
人文科学
哲学・倫理学
宗教
心理学
美学・芸術学
歴史学
考古学
民族学
文化人類学・民俗学
地理学・地誌
言語学
文学
社会科学
政治・行政
法律・法律学
経済学
ビジネス・経営・産業
社会・文化
教育・教育学
軍事
運輸・交通
環境学
メディア・コミュニケーション
厚生・福祉
芸術
美学・芸術学
文学
建築学
美術
音楽
演劇
映画・テレビ
諸芸
漫画
自然科学
数学
物理学
化学
天文学
地球惑星科学
生物学
地理学・地誌
自然人類学
環境学
生命科学
医学
基礎医学
社会医学
内科系臨床医学
外科系臨床医学
歯学
薬学
看護学
心理学
獣医学
生物学
ゲノム科学
農学
農学
農芸化学
林学
水産学
農業工学
畜産学
獣医学
環境学
生物学
工学
基礎工学・応用物理学
機械工学
電気電子工学
土木工学
建築学
材料工学
プロセス工学・化学工学
航空工学
船舶・海洋工学
エネルギー工学
ナノテクノロジー
情報学
環境学
情報・メディア・コミュニケーション
情報学
メディア・コミュニケーション
厚生・福祉
家政学・生活科学
習俗
趣味・娯楽
生活・家庭
健康・スポーツ科学
]
NIIspatial = %w[
日本
北海道
東北
青森 岩手 宮城 秋田 山形 福島
関東
茨城 栃木 群馬 埼玉 千葉 東京 神奈川
北陸
新潟 富山 石川 福井
中部
山梨 長野 岐阜 静岡 愛知
三重
近畿
滋賀 京都 大阪 兵庫 奈良 和歌山
中国
鳥取 島根 岡山 広島 山口
四国
徳島 香川 愛媛 高知
九州
福岡 佐賀 長崎 熊本 大分 宮崎 鹿児島
沖縄
海外
アジア
東アジア
東南アジア
南アジア
中東地域
朝鮮半島
環太平洋地域
中華人民共和国
韓国
タイ
インド
インドネシア
ベトナム
モンゴル
ネパール
フィリピン
台湾
バングラデシュ
ミャンマー
マレーシア
シンガポール
イラン
シリア
ヨーロッパ
西欧
東欧
イギリス
ドイツ
フランス
ロシア
ギリシャ
イタリア
スウェーデン
スペイン
ポーランド
アフリカ
エジプト
環太平洋地域
北米
アメリカ合衆国
環太平洋地域
ブラジル
中南米
メキシコ
オセアニア
環太平洋地域
オーストラリア
南極・北極
海洋・宇宙
]
IDENTIFIER_URI_TYPE_REGEXP = {
:doi => /\Ainfo:doi\/10\./o,
:selfDOI => /\Ainfo:doi\/10\./o,
:pmid => /\Ainfo:pmid\/[0-9]+\Z/o,
:NAID => %r|\Ahttp://ci\.nii\.ac\.jp/naid/[0-9]+\Z|o,
:ichushi => %r|\Ahttp://search\.jamas\.or\.jp/link/ui/[0-9]+\Z|o,
}
IDENTIFIER_TYPE_REGEXP = {
:isbn => /\A[0-9]+[0-9\-]*[0-9X]\Z/oi,
:NCID => /\A(AA|AN|BN|BA|BB)[0-9]{7,8}[0-9X]?/o,
}
attr_reader :baseurl
def initialize( url )
@baseurl = URI.parse( url )
schema = http(URI.parse JUNII2_XSD).start do |con|
con.get(JUNII2_XSD)
end
schema_doc = LibXML::XML::Document.string(schema.body)
@xml_schema = LibXML::XML::Schema.document(schema_doc)
end
def validate( options = {} )
result = {
:warn => [],
:error=> [],
:info => [],
}
http( @baseurl ).start do |con|
STDERR.puts @baseurl
# Identify
res, = con.get( @baseurl.merge_request_uri( "verb=Identify" ) )
#res.value
xml = res.body
parser = LibXML::XML::Parser.string( xml )
doc = parser.parse
# p doc
%w[ repositoryName baseURL protocolVersion ].each do |e|
element = doc.find( "//oai:#{ e }",
"oai:http://www.openarchives.org/OAI/2.0/" )
if element.size == 1 and not element.first.content.empty?
result[ :info ] << "#{ e }: #{ element.first.content }"
else
result[ :warn ] << "#{ e } is empty."
end
end
#STDERR.puts "Identify verified."
# ListMetadataFormats
junii2_ns = nil
res, = con.get( @baseurl.merge_request_uri( "verb=ListMetadataFormats" ) )
xml = res.body
parser = LibXML::XML::Parser.string( xml )
doc = parser.parse
element = doc.find( "//oai:metadataFormat",
"oai:http://www.openarchives.org/OAI/2.0/" )
if element.empty?
result[ :error ] << {
:message => "No metadataFormat supported.",
:error_id => :no_metadataFormat,
}
else
supported_formats = []
element.each do |e|
prefix = e.find( "./oai:metadataPrefix",
"oai:http://www.openarchives.org/OAI/2.0/" )[0].content
supported_formats << prefix
if prefix == "junii2"
junii2_ns = e.find( "./oai:metadataNamespace",
"oai:http://www.openarchives.org/OAI/2.0/" )
if junii2_ns.nil? or junii2_ns.empty?
result[ :error ] << {
:message => "junii2 metadataPrefix does not have metadataNamespace.",
:error_id => :no_metadataNamespace,
:link => :ListMetadataFormats,
}
junii2_ns = JUNII2_NAMESPACE
else
junii2_ns = junii2_ns[0].content
end
if not junii2_ns == JUNII2_NAMESPACE
result[ :error ] << {
:message => "This JuNii2 namespace ('#{ junii2_ns }') is different with the latest one ('#{ JUNII2_NAMESPACE }').",
:error_id => :junii2_namespace,
:link => :ListMetadataFormats,
}
end
end
end
result[ :info ] << "Supported metadataFormat: " + supported_formats.join( ", " )
if not supported_formats.include?( "junii2" )
result[ :error ] << {
:message => "junii2 metadata format is not supported.",
:error_id => :junii2_unsupported,
}
end
end
# ListRecords
params = "&metadataPrefix=junii2"
options.each do |k, v|
case k
when :from, :until, :set
params << "&#{ k }=#{ URI.encode_www_form_component( v ) }"
end
end
if options[ :resumptionToken ]
params = "&resumptionToken=#{ URI.encode_www_form_component( options[ :resumptionToken ] ) }"
end
res, = con.get( @baseurl.merge_request_uri( "verb=ListRecords&#{ params }" ) )
if not res.code == "200"
result[ :error ] << {
:error_id => :not_success_http,
:message => "The server does not return success code: #{ res.code }",
:link => :ListRecords,
}
return result
end
xml = res.body
doc = nil
begin
parser = LibXML::XML::Parser.string( xml )
doc = parser.parse
rescue LibXML::XML::Error => err
result[ :error ] << {
:error_id => :parse_error,
:message => "ListRecords returned malformed XML data.",
:link => :ListRecords,
}
return result
end
resumption_token = doc.find( "//oai:resumptionToken",
"oai:http://www.openarchives.org/OAI/2.0/" )
if not resumption_token.nil? and not resumption_token.empty?
result[ :next_token ] = resumption_token.first.content
end
element = doc.find( "//oai:metadata",
"oai:http://www.openarchives.org/OAI/2.0/" )
result[ :info ] << "The size of ListRecords: #{ element.size }"
if element.empty?
result[ :warn ] << {
:message => "ListRecords returned zero records.",
:link => :ListRecords,
:error_id => :zero_listrecords,
}
end
element.each do |e|
# metadata = e.inner_xml.strip
# metadata = LibXML::XML::Document.string( metadata )
metadata = LibXML::XML::Document.new
metadata.root = e.child.copy( true )
if metadata.root.nil? or e.child.empty? # adhoc for XooNips.
metadata.root = e.child.next.copy( true )
end
identifier = e.parent.find( "./oai:header/oai:identifier",
"oai:http://www.openarchives.org/OAI/2.0/" )[0].content
validate_junii2( metadata, identifier ).each do |k, v|
result[k] += v
end
end
end
result
end
def validate_junii2( metadata, identifier = nil )
result = {
:warn => [],
:error=> [],
:info => [],
}
if metadata.root.namespaces.namespace.nil?
result[ :error ] << {
:message => "junii2 namespace is not specified.",
:error_id => :no_junii2_namespace,
:link => :ListRecords,
}
junii2_ns_obj = LibXML::XML::Namespace.new( metadata.root, nil, JUNII2_NAMESPACE )
metadata.root.namespaces.namespace =junii2_ns_obj
metadata = LibXML::XML::Document.string( metadata.to_s )
junii2_ns = JUNII2_NAMESPACE
end
begin
metadata.validate_schema( @xml_schema )
rescue LibXML::XML::Error => err
# err.message
error_id =
case err.message
when /No matching global declaration available for the validation root/
:wrong_root_element
when /This element is not expected. Expected is (one of )?\( .* \)/
:sequence
when /is not a valid value of the atomic type \'\{.*\}issnType\'/
:issnType
when /is not a valid value of the atomic type \'\{.*\}numberType\'/
:numberType
when /is not a valid value of the (union|atomic) type \'\{.*\}languageType\'/
:languageType
when /is not a valid value of the atomic type \'xs:anyURI\'/
:anyURI
when /is not a valid value of the atomic type \'\{.*?\}versionType\'/
:versionType
else
nil
end
error = {
:message => "XML Schema error: #{ err.message }",
:error_id => error_id,
:identifier => identifier,
}
result[ :error ] << error
if error_id == :wrong_root_element
#STDERR.puts metadata.root.namespaces.default
if metadata.root.name != 'junii2'
metadata.root.name = 'junii2'
end
new_node = LibXML::XML::Node.new('junii2')
namespace_prefix = metadata.root.namespaces.namespace&.prefix
junii2_ns = LibXML::XML::Namespace.new(new_node, 'junii2', JUNII2_NAMESPACE)
new_node.namespaces.namespace = junii2_ns
metadata.root.each do |junii2_element|
new_node_child = LibXML::XML::Node.new(junii2_element.name)
new_node_child.content = junii2_element.content
new_node << new_node_child
end
metadata.root = new_node
retry
end
end
# junii2 guideline version 1.0: creator (& contributor)
%w( creator contributor ).each do |creator_elem|
creators = metadata.find( "//junii2:#{ creator_elem }", "junii2:#{ junii2_ns }" )
creators.each_with_index do |creator, idx|
if creators.size > 1 and idx > 0 and creator.content =~ /\A[ア-ン ,,\s]+\Z/
result[ :warn ] << {
:error_id => :katakana_creator,
:message => "Creator '#{ creator.content }' contains only Katakana characters.",
:identifier => identifier
}
end
if not creator.content =~ /, / and creator.content.size < 50
result[ :warn ] << {
:error_id => :no_comma_creator,
:message => "#{ creator_elem.capitalize } '#{ creator.content }' does not contain any separators between family and given name.",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: NIIsubject
elem = metadata.find( "//junii2:NIIsubject", "junii2:#{ junii2_ns }" )
elem.each do |s|
if not NIIsubject.include?( s.content )
result[ :error ] << {
:error_id => :NIIsubject,
:message => "Element 'NIIsubject' contains values not defined in the vocabrary: '#{ s.content }'",
:identifier => identifier
}
end
end
# junii2 guideline version 1.0: subjectType
%w( NDC NDLC DDC LCC UDC ).each do |subject|
elem = metadata.find( "//junii2:#{ subject }", "junii2:#{ junii2_ns }" )
elem.each do |s|
if not s.content =~ /\A[\w\.]+\Z/o
result[ :warn ] << {
:error_id => :subjectType,
:message => "Element '#{ subject }' contains characters other than numerics: '#{ s.content }'",
:identifier => identifier
}
elsif subject == 'NDC' and not s.content =~ /\A[0-9\.]+\Z/o
result[ :warn ] << {
:error_id => :subjectType,
:message => "Element '#{ subject }' contains characters other than numerics: '#{ s.content }'",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: format
elem = metadata.find( "//junii2:format", "junii2:#{ junii2_ns }" )
elem.each do |s|
format = s.content
if not s.content =~ /\A(application|audio|image|message|text|model|multipart|text|video|example|chemical)\/[\w\.\+\-]+\Z/
result[ :warn ] << {
:error_id => :formatType,
:message => "Element 'format' ('#{ format }') must be internet media type.",
:identifier => identifier
}
end
end
# junii2 guideline version 1.0: doi, 3.0: selfDOI
IDENTIFIER_URI_TYPE_REGEXP.each do |identifier_elem, regexp|
elem = metadata.find( "//junii2:#{ identifier_elem }", "junii2:#{ junii2_ns }" )
elem.each do |s|
val = s.content
if not regexp.match val
result[ :warn ] << {
:error_id => :identifierType,
:message => "Element '#{ identifier_elem }' ('#{ val }') should be encoded with URI format.",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: isbn
IDENTIFIER_TYPE_REGEXP.each do |identifier_elem, regexp|
elem = metadata.find( "//junii2:#{ identifier_elem }", "junii2:#{ junii2_ns }" )
elem.each do |s|
val = s.content
if not regexp.match val
result[ :warn ] << {
:error_id => :identifierType,
:message => "Element '#{ identifier_elem }' ('#{ val }') should be encoded with #{ identifier_elem.to_s.upcase } format.",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: volume & issue
%w( volume issue ).each do |volnum_elem|
elem = metadata.find( "//junii2:#{ volnum_elem }", "junii2:#{ junii2_ns }" )
elem.each do |s|
volume = s.content
if not volume =~ /\A\w?[\d\-\/\.]+\Z/o
result[ :warn ] << {
:error_id => :volumeType,
:message => "Element '#{ volnum_elem }' ('#{ volume }') must be encoded with numeric format.",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: spage & epage
%w( spage epage ).each do |page_elem|
elem = metadata.find( "//junii2:#{ page_elem }", "junii2:#{ junii2_ns }" )
elem.each do |s|
page = s.content
if not page =~ /\A[\w\-\.]+\Z/o
result[ :warn ] << {
:error_id => :pageType,
:message => "Element '#{ page_elem }' ('#{ page }') must be encoded with numeric format.",
:identifier => identifier
}
end
end
end
# junii2 guideline version 1.0: NIIspatial
elem = metadata.find( "//junii2:NIIspatial", "junii2:#{ junii2_ns }" )
elem.each do |s|
val = s.content
if not NIIspatial.include? val
result[ :warn ] << {
:error_id => :NIIspatialType,
:message => "Element 'NIIspatial' ('#{ val }') must be selected from the pre-defined list.",
:identifier => identifier
}
end
end
# junii2 guideline version 1.0: NIItemporal
elem = metadata.find( "//junii2:NIItemporal", "junii2:#{ junii2_ns }" )
elem.each do |s|
val = s.content
if not NIItemporal.include? val
result[ :warn ] << {
:error_id => :NIItemporalType,
:message => "Element 'NIItemporal' ('#{ val }') must be selected from the pre-defined list.",
:identifier => identifier
}
end
end
# junii2 guideline version 3.0: grantid
#STDERR.puts metadata.to_s
#STDERR.puts junii2_ns
niitype_e = metadata.find( "//junii2:NIItype", "junii2:#{ junii2_ns }" )
niitype = niitype_e.first.content if niitype_e.first.respond_to? :content
textversion_e = metadata.find( "//junii2:textversion", "junii2:#{ junii2_ns }" )
textversion = textversion_e.first.content if textversion_e.first.respond_to? :content
fulltexturl = metadata.find( "//junii2:fullTextURL", "junii2:#{ junii2_ns }" )
%w( grantid dateofgranted degreename grantor ).each do |grant_elem|
elem = metadata.find( "//junii2:#{ grant_elem }", "junii2:#{ junii2_ns }" )
if niitype and niitype == "Thesis or Dissertation"
if textversion == "ETD"
if elem.empty?
result[ :error ] << {
:error_id => :niitypeThesis,
:message => "Element '#{ grant_elem }' is empty. It must be included when ETD is deposited.",
:identifier => e.parent.find( "./oai:header/oai:identifier",
"oai:http://www.openarchives.org/OAI/2.0/" )[0].content,
}
end
end
else
if not elem.empty?
result[ :error ] << {
:error_id => :niitypeThesis,
:message => "Element 'NIItype' ('#{ niitype }') should be 'Thesis or Dissertation' when ETD is deposited.",
:identifier => e.parent.find( "./oai:header/oai:identifier",
"oai:http://www.openarchives.org/OAI/2.0/" )[0].content,
}
end
end
end
result
end
private
def http( uri )
http_proxy = ENV[ "http_proxy" ]
proxy, proxy_port = nil
if http_proxy
proxy_uri = URI.parse( http_proxy )
proxy = proxy_uri.host
proxy_port = proxy_uri.port
end
http = Net::HTTP.Proxy( proxy, proxy_port ).new( uri.host, uri.port )
http.use_ssl = true if uri.scheme == "https"
http.open_timeout = 30
http.read_timeout = 30
http
end
end
class JuNii2ValidatorFromString < JuNii2Validator
def initialize( xml )
@xml = xml
@xml_schema = LibXML::XML::Schema.new( JUNII2_XSD )
end
def validate
parser = LibXML::XML::Parser.string( @xml )
begin
doc = parser.parse
validate_junii2( doc )
rescue LibXML::XML::Error => err
{ :error => [
:error_id => :parse_error,
:message => "XML parse error: #{ err.message }",
]
}
end
end
end
if $0 == __FILE__
options = {
:max => 20
}
opt = OptionParser.new
opt.on( '--max VAL' ){|v| options[ :max ] = v }
opt.on( '--from VAL' ){|v| options[ :from ] = v }
opt.on( '--until VAL' ){|v| options[ :until ] = v }
opt.parse!( ARGV )
ARGV.each do |url|
validator = JuNii2Validator.new( url )
result = validator.validate( options )
[ :info, :error, :warn ].each do |k|
puts "Total #{ result[ k ].size } #{ k }:"
pp result[ k ]
end
if result[ :next_token ]
puts "resumptionToken: #{ result[ :next_token ].inspect }"
end
end
end