1
|
<RESOURCE_PROFILE>
|
2
|
<HEADER>
|
3
|
<RESOURCE_IDENTIFIER value="f20483e7-46c4-4cec-87a8-17a0cbe1a003_VHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZXMvVHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZVR5cGU="/>
|
4
|
<RESOURCE_TYPE value="TransformationRuleDSResourceType"/>
|
5
|
<RESOURCE_KIND value="TransformationRuleDSResources"/>
|
6
|
<RESOURCE_URI value=""/>
|
7
|
<DATE_OF_CREATION value="2016-03-11T12:07:02+00:00"/>
|
8
|
</HEADER>
|
9
|
<BODY>
|
10
|
<CONFIGURATION>
|
11
|
<IMPORTED/>
|
12
|
<SCRIPT>
|
13
|
<TITLE>xslt_nlm2oaf_pmc</TITLE>
|
14
|
<CODE><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
|
15
|
xmlns:dri="http://www.driver-repository.eu/namespace/dri"
|
16
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
17
|
xmlns:oaf="http://namespace.openaire.eu/oaf"
|
18
|
xmlns:dr="http://www.driver-repository.eu/namespace/dr"
|
19
|
xmlns:transformExt="http://namespace.openaire.eu/java/org.apache.commons.codec.digest.DigestUtils"
|
20
|
xmlns:TransformationFunction="eu.dnetlib.data.collective.transformation.core.xsl.ext.TransformationFunctionProxy"
|
21
|
extension-element-prefixes="transformExt TransformationFunction"
|
22
|
exclude-result-prefixes="transformExt TransformationFunction" >
|
23
|
<xsl:output indent="yes" omit-xml-declaration="yes"/>
|
24
|
|
25
|
<xsl:param name="varOfficialName" />
|
26
|
<xsl:param name="varDsType" />
|
27
|
<xsl:param name="varDataSourceId" />
|
28
|
<xsl:param name="varFP7" select="'corda_______::'"/>
|
29
|
<xsl:param name="varH2020" select="'corda__h2020::'"/>
|
30
|
<xsl:param name="epmcUrlPrefix" select="'http://europepmc.org/articles/'" />
|
31
|
<xsl:param name="repoCode" select="substring-before(//*[local-name() = 'header']/*[local-name()='recordIdentifier'], ':')"/>
|
32
|
|
33
|
<xsl:param name="index" select="0"/>
|
34
|
<xsl:param name="transDate" select="current-dateTime()"/>
|
35
|
<xsl:variable name="tf" select="TransformationFunction:getInstance()"/>
|
36
|
<xsl:variable name="year" select="format-number( ( //*[local-name()='article-meta']//*[local-name()='pub-date'][@pub-type='epub']/*[local-name()='year'] | //*[local-name()='article-meta']//*[local-name()='pub-date'][@date-type='pub' and @publication-format='electronic']/*[local-name()='year']), '0000')" />
|
37
|
<xsl:variable name="month" select="format-number( (//*[local-name()='article-meta']//*[local-name()='pub-date'][@pub-type='epub']/*[local-name()='month'] | //*[local-name()='article-meta']//*[local-name()='pub-date'][@date-type='pub' and @publication-format='electronic']/*[local-name()='month']), '00')" />
|
38
|
<xsl:variable name="day" select="format-number( (//*[local-name()='article-meta']//*[local-name()='pub-date'][@pub-type='epub']/*[local-name()='day'] | //*[local-name()='article-meta']//*[local-name()='pub-date'][@date-type='pub' and @publication-format='electronic']/*[local-name()='day']), '00')" />
|
39
|
|
40
|
<xsl:template name="terminate">
|
41
|
<xsl:message terminate="yes">
|
42
|
record is not compliant, transformation is interrupted.
|
43
|
</xsl:message>
|
44
|
</xsl:template>
|
45
|
|
46
|
<xsl:template match="/">
|
47
|
<record>
|
48
|
<xsl:apply-templates select="//*[local-name() = 'header']" />
|
49
|
<metadata>
|
50
|
<xsl:call-template name="allElements">
|
51
|
<xsl:with-param name="sourceElement" select="//*[local-name() = 'article-meta']//*[local-name()='article-title']"/>
|
52
|
<xsl:with-param name="targetElement" select="'dc:title'"/>
|
53
|
</xsl:call-template>
|
54
|
<xsl:call-template name="authors">
|
55
|
<xsl:with-param name="sourceElement" select="//*[local-name() = 'contrib'][@contrib-type='author']"/>
|
56
|
</xsl:call-template>
|
57
|
<!-- <xsl:call-template name="allElements">
|
58
|
<xsl:with-param name="sourceElement" select="//dc:contributor"/>
|
59
|
<xsl:with-param name="targetElement" select="'dc:contributor'"/>
|
60
|
</xsl:call-template>
|
61
|
-->
|
62
|
<xsl:call-template name="allElements">
|
63
|
<xsl:with-param name="sourceElement" select="//*[local-name()='article-meta']/*[local-name()='abstract']"/>
|
64
|
<xsl:with-param name="targetElement" select="'dc:description'"/>
|
65
|
</xsl:call-template>
|
66
|
<xsl:call-template name="allElements">
|
67
|
<xsl:with-param name="sourceElement" select="//*[local-name()='article-categories']//*[local-name()='subject']"/>
|
68
|
<xsl:with-param name="targetElement" select="'dc:subject'"/>
|
69
|
</xsl:call-template>
|
70
|
<xsl:call-template name="allElements">
|
71
|
<xsl:with-param name="sourceElement" select="//*[local-name()='kwd-group']//*[local-name()='kwd']"/>
|
72
|
<xsl:with-param name="targetElement" select="'dc:subject'"/>
|
73
|
</xsl:call-template>
|
74
|
<xsl:call-template name="allElements">
|
75
|
<xsl:with-param name="sourceElement" select="//*[local-name()='publisher']/*[local-name()='publisher-name']"/>
|
76
|
<xsl:with-param name="targetElement" select="'dc:publisher'"/>
|
77
|
</xsl:call-template>
|
78
|
<xsl:call-template name="allElements">
|
79
|
<xsl:with-param name="sourceElement" select="//*[local-name()='journal-meta']//*[local-name()='journal-title']"/>
|
80
|
<xsl:with-param name="targetElement" select="'dc:source'"/>
|
81
|
</xsl:call-template>
|
82
|
<xsl:element name="dc:language">
|
83
|
<xsl:text>eng</xsl:text>
|
84
|
</xsl:element>
|
85
|
<xsl:element name="dc:identifier">
|
86
|
<xsl:value-of select="concat($epmcUrlPrefix, //*[local-name()='article-id'][@pub-id-type='pmcid'])" />
|
87
|
</xsl:element>
|
88
|
<xsl:element name="oaf:dateAccepted">
|
89
|
<xsl:choose>
|
90
|
<xsl:when test="//*[local-name()='article-meta']//*[local-name()='pub-date'][@pub-type='epub'] or //*[local-name()='article-meta']//*[local-name()='pub-date'][@date-type='pub' and @publication-format='electronic']" >
|
91
|
|
92
|
<xsl:if test="string(number($month)) eq 'NaN'" >
|
93
|
<xsl:value-of select="concat($year, '-', '01', '-', '01')" />
|
94
|
</xsl:if>
|
95
|
<xsl:if test="string(number($month)) != 'NaN'" >
|
96
|
<xsl:value-of select="concat($year, '-', $month, '-', '01')" />
|
97
|
</xsl:if>
|
98
|
</xsl:when>
|
99
|
<xsl:otherwise>
|
100
|
<xsl:value-of select="concat(//*[local-name()='article-meta']//*[local-name()='pub-date'][@pub-type='ppub']/*[local-name()='year'], '-01-01')" />
|
101
|
</xsl:otherwise>
|
102
|
</xsl:choose>
|
103
|
</xsl:element>
|
104
|
<xsl:call-template name="allElements">
|
105
|
<xsl:with-param name="sourceElement" select="//*[local-name()='permissions']/*[local-name()='copyright-statement']"/>
|
106
|
<xsl:with-param name="targetElement" select="'dc:rights'"/>
|
107
|
</xsl:call-template>
|
108
|
<xsl:call-template name="allElements">
|
109
|
<xsl:with-param name="sourceElement" select="//*[local-name()='permissions']/*[local-name()='license']"/>
|
110
|
<xsl:with-param name="targetElement" select="'dc:rights'"/>
|
111
|
</xsl:call-template>
|
112
|
<xsl:call-template name="allElements">
|
113
|
<xsl:with-param name="sourceElement" select="//*[local-name()='fn-group']//*[local-name()='fn']"/>
|
114
|
<xsl:with-param name="targetElement" select="'dc:relation'"/>
|
115
|
</xsl:call-template>
|
116
|
<xsl:call-template name="identifiers">
|
117
|
<xsl:with-param name="sourceElement" select="//*[local-name()='article-id']"/>
|
118
|
</xsl:call-template>
|
119
|
<xsl:element name="oaf:accessrights">
|
120
|
<xsl:text>OPEN</xsl:text>
|
121
|
</xsl:element>
|
122
|
<xsl:element name="dr:CobjCategory">
|
123
|
<xsl:text>0001</xsl:text>
|
124
|
</xsl:element>
|
125
|
<xsl:call-template name="journal">
|
126
|
<xsl:with-param name="journalTitle" select="//*[local-name()='journal-meta']//*[local-name()='journal-title']"/>
|
127
|
<xsl:with-param name="issn" select="//*[local-name()='journal-meta']/*[local-name()='issn'][@pub-type='ppub']"/>
|
128
|
<xsl:with-param name="eissn" select="//*[local-name()='journal-meta']/*[local-name()='issn'][@pub-type='epub']"/>
|
129
|
<xsl:with-param name="vol" select="//*[local-name()='article-meta']/*[local-name()='volume']"/>
|
130
|
<xsl:with-param name="issue" select="//*[local-name()='article-meta']/*[local-name()='issue']"/>
|
131
|
<xsl:with-param name="sp" select="//*[local-name()='article-meta']/*[local-name()='fpage']"/>
|
132
|
<xsl:with-param name="ep" select="//*[local-name()='article-meta']/*[local-name()='lpage']"/>
|
133
|
</xsl:call-template>
|
134
|
<oaf:hostedBy>
|
135
|
<xsl:attribute name="name">
|
136
|
<xsl:value-of select="$varOfficialName"/>
|
137
|
</xsl:attribute>
|
138
|
<xsl:attribute name="id">
|
139
|
<xsl:value-of select="$varDataSourceId"/>
|
140
|
</xsl:attribute>
|
141
|
</oaf:hostedBy>
|
142
|
<oaf:collectedFrom>
|
143
|
<xsl:attribute name="name">
|
144
|
<xsl:value-of select="$varOfficialName"/>
|
145
|
</xsl:attribute>
|
146
|
<xsl:attribute name="id">
|
147
|
<xsl:value-of select="$varDataSourceId"/>
|
148
|
</xsl:attribute>
|
149
|
</oaf:collectedFrom>
|
150
|
</metadata>
|
151
|
<xsl:copy-of select="//*[local-name() = 'about']" />
|
152
|
</record>
|
153
|
|
154
|
</xsl:template>
|
155
|
|
156
|
<xsl:template name="allElements">
|
157
|
<xsl:param name="sourceElement"/>
|
158
|
<xsl:param name="targetElement"/>
|
159
|
<xsl:for-each select="$sourceElement">
|
160
|
<xsl:element name="{$targetElement}">
|
161
|
<xsl:value-of select="normalize-space(.)"/>
|
162
|
</xsl:element>
|
163
|
</xsl:for-each>
|
164
|
</xsl:template>
|
165
|
|
166
|
<xsl:template name="journal">
|
167
|
<xsl:param name="journalTitle"/>
|
168
|
<xsl:param name="issn"/>
|
169
|
<xsl:param name="eissn"/>
|
170
|
<xsl:param name="vol"/>
|
171
|
<xsl:param name="issue"/>
|
172
|
<xsl:param name="sp"/>
|
173
|
<xsl:param name="ep"/>
|
174
|
<xsl:element name="oaf:journal">
|
175
|
<xsl:attribute name="issn">
|
176
|
<xsl:value-of select="normalize-space($issn)"/>
|
177
|
</xsl:attribute>
|
178
|
<xsl:attribute name="eissn">
|
179
|
<xsl:value-of select="normalize-space($eissn)"/>
|
180
|
</xsl:attribute>
|
181
|
<xsl:attribute name="vol">
|
182
|
<xsl:value-of select="normalize-space($vol)"/>
|
183
|
</xsl:attribute>
|
184
|
<xsl:attribute name="iss">
|
185
|
<xsl:value-of select="normalize-space($issue)"/>
|
186
|
</xsl:attribute>
|
187
|
<xsl:attribute name="sp">
|
188
|
<xsl:value-of select="normalize-space($sp)"/>
|
189
|
</xsl:attribute>
|
190
|
<xsl:attribute name="ep">
|
191
|
<xsl:value-of select="normalize-space($ep)"/>
|
192
|
</xsl:attribute>
|
193
|
<xsl:value-of select="normalize-space($journalTitle)"/>
|
194
|
</xsl:element>
|
195
|
</xsl:template>
|
196
|
|
197
|
|
198
|
<xsl:template name="identifiers">
|
199
|
<xsl:param name="sourceElement"/>
|
200
|
<xsl:element name="oaf:identifier">
|
201
|
<xsl:attribute name="identifierType">
|
202
|
<xsl:text>doi</xsl:text>
|
203
|
</xsl:attribute>
|
204
|
<xsl:value-of select="$sourceElement[@pub-id-type='doi']"/>
|
205
|
</xsl:element>
|
206
|
<xsl:element name="oaf:identifier">
|
207
|
<xsl:attribute name="identifierType">
|
208
|
<xsl:text>pmc</xsl:text>
|
209
|
</xsl:attribute>
|
210
|
<xsl:value-of select="$sourceElement[@pub-id-type='pmcid']"/>
|
211
|
</xsl:element>
|
212
|
<xsl:element name="oaf:identifier">
|
213
|
<xsl:attribute name="identifierType">
|
214
|
<xsl:text>pmid</xsl:text>
|
215
|
</xsl:attribute>
|
216
|
<xsl:value-of select="$sourceElement[@pub-id-type='pmid']"/>
|
217
|
</xsl:element>
|
218
|
</xsl:template>
|
219
|
|
220
|
<xsl:template name="authors">
|
221
|
<xsl:param name="sourceElement"/>
|
222
|
<xsl:for-each select="$sourceElement">
|
223
|
<xsl:element name="dc:creator">
|
224
|
<xsl:if test="./*[local-name()='contrib-id'][@contrib-id-type='orcid']">
|
225
|
<xsl:attribute name="nameIdentifierScheme">
|
226
|
<xsl:text>ORCID</xsl:text>
|
227
|
</xsl:attribute>
|
228
|
<xsl:attribute name="schemeURI">
|
229
|
<xsl:text>http://orcid.org/</xsl:text>
|
230
|
</xsl:attribute>
|
231
|
<xsl:attribute name="nameIdentifier">
|
232
|
<xsl:value-of select="substring-after(./*[local-name()='contrib-id'][@contrib-id-type='orcid'], 'http://orcid.org/')"/>
|
233
|
</xsl:attribute>
|
234
|
</xsl:if>
|
235
|
<xsl:value-of select="concat(normalize-space(./*[local-name()='name']/*[local-name()='surname']), ', ', normalize-space(./*[local-name()='name']/*[local-name()='given-names']))"/>
|
236
|
</xsl:element>
|
237
|
</xsl:for-each>
|
238
|
</xsl:template>
|
239
|
|
240
|
|
241
|
|
242
|
<xsl:template match="//*[local-name() = 'header']">
|
243
|
<xsl:copy>
|
244
|
<xsl:apply-templates select="node()|@*"/>
|
245
|
<xsl:element name="dr:dateOfTransformation">
|
246
|
<xsl:value-of select="$transDate"/>
|
247
|
</xsl:element>
|
248
|
</xsl:copy>
|
249
|
</xsl:template>
|
250
|
|
251
|
|
252
|
<xsl:template match="node()|@*">
|
253
|
<xsl:copy>
|
254
|
<xsl:apply-templates select="node()|@*"/>
|
255
|
</xsl:copy>
|
256
|
</xsl:template>
|
257
|
</xsl:stylesheet></CODE>
|
258
|
</SCRIPT>
|
259
|
</CONFIGURATION>
|
260
|
<STATUS/>
|
261
|
<SECURITY_PARAMETERS>SECURITY_PARAMETERS</SECURITY_PARAMETERS>
|
262
|
</BODY>
|
263
|
</RESOURCE_PROFILE>
|