uc3-dmp-id 0.1.9 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uc3-dmp-id/augmenter.rb +5 -1
- data/lib/uc3-dmp-id/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61f1c9dd64fdec4ec98c5e8a703bba452ba7b17ede2e477d86523fab1c99a94d
|
4
|
+
data.tar.gz: 74fefb026abdfed228bad9b4a5c37847bb46c083e125727e0a6ed37f886d4ae2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 644e193728347314563daeb6874c86128f434e29b3f9ceb160b256c4e98a3fa26f37da90f5815afde631e15e6f2898ec268aca4e28f5b15ee0efa969cd32bc34
|
7
|
+
data.tar.gz: eb046b292e018c428a4d0a332f92f9e96e7a8bc4158b163c0ec657771646bfe3368e325c3442802612fb2df19f66193ad92779cec57d5211c7a6d0ccee2457e3
|
data/lib/uc3-dmp-id/augmenter.rb
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
require 'bibtex'
|
4
4
|
require 'securerandom'
|
5
5
|
|
6
|
+
require 'uc3-dmp-citation'
|
7
|
+
|
6
8
|
module Uc3DmpId
|
7
9
|
class AugmenterError < StandardError; end
|
8
10
|
|
@@ -89,9 +91,10 @@ module Uc3DmpId
|
|
89
91
|
}
|
90
92
|
work_type = work.fetch('type', 'Text')&.downcase&.strip
|
91
93
|
ret[:work_type] = work_type == 'text' ? type : work_type
|
94
|
+
@logger&.debug(message: "Assessing Work: #{work['id']} (pre citation)", details: ret)
|
92
95
|
return JSON.parse(ret.to_json) if work['bibtex'].nil?
|
93
96
|
|
94
|
-
ret[:citation] = Uc3DmpCitation::Citer.bibtex_to_citation(bibtex_as_string: work['bibtex'])
|
97
|
+
ret[:citation] = Uc3DmpCitation::Citer.bibtex_to_citation(uri: work['id'], bibtex_as_string: work['bibtex'])
|
95
98
|
JSON.parse(ret.to_json)
|
96
99
|
end
|
97
100
|
# rubocop:enable Metrics/AbcSize
|
@@ -123,6 +126,7 @@ module Uc3DmpId
|
|
123
126
|
}
|
124
127
|
}
|
125
128
|
funder_id = funding['funderIdentifier']
|
129
|
+
@logger&.debug(message: "Assessing Work: #{work['id']} (pre funder_id)", details: ret)
|
126
130
|
return JSON.parse(ret.to_json) if funder_id.nil?
|
127
131
|
|
128
132
|
ret[:funder_id] = {
|
data/lib/uc3-dmp-id/version.rb
CHANGED