1
|
<RESOURCE_PROFILE>
|
2
|
<HEADER>
|
3
|
<RESOURCE_IDENTIFIER value="a8258f53-3cc0-4353-879f-699883fd1d0c_VHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZXMvVHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZVR5cGU=" />
|
4
|
<RESOURCE_TYPE value="TransformationRuleDSResourceType" />
|
5
|
<RESOURCE_KIND value="TransformationRuleDSResources" />
|
6
|
<RESOURCE_URI value="" />
|
7
|
<DATE_OF_CREATION value="2015-02-27T17:15:30+00:00"/>
|
8
|
</HEADER>
|
9
|
<BODY>
|
10
|
<CONFIGURATION>
|
11
|
<SOURCE_METADATA_FORMAT name="odf" layout="store" interpretation="cleaned" />
|
12
|
<SINK_METADATA_FORMAT name="odf_hbase" />
|
13
|
<IMPORTED/>
|
14
|
<SCRIPT>
|
15
|
<TITLE>xslt_mapping_odf2hbase</TITLE>
|
16
|
<CODE>
|
17
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
18
|
xmlns:oaf="http://namespace.openaire.eu/oaf"
|
19
|
xmlns:dnet="eu.dnetlib.data.transform.xml.OdfToHbaseXsltFunctions"
|
20
|
xmlns:dri="http://www.driver-repository.eu/namespace/dri"
|
21
|
xmlns:dr="http://www.driver-repository.eu/namespace/dr" xmlns:exslt="http://exslt.org/common"
|
22
|
version="1.0" extension-element-prefixes="exslt"
|
23
|
exclude-result-prefixes="xsl oaf dr dri dnet exslt">
|
24
|
|
25
|
<xsl:output omit-xml-declaration="yes" indent="yes"/>
|
26
|
|
27
|
<xsl:param name="invisible" select="false()"/>
|
28
|
<xsl:param name="trust" select="string('0.9')"/>
|
29
|
<xsl:param name="provenance" select="string('sysimport:crosswalk:datasetarchive')"/>
|
30
|
<xsl:template match="/*">
|
31
|
<xsl:variable name="about" select="/*[local-name() = 'record']/*[local-name() = 'about']"/>
|
32
|
<xsl:variable name="dateOfCollection" select="concat('', //dri:dateOfCollection)"/>
|
33
|
<xsl:variable name="dateoftransformation" select="concat('', //dr:dateOfTransformation)"/>
|
34
|
<xsl:variable name="metadata" select="exslt:node-set(//*[local-name()='metadata']/*)"/>
|
35
|
<xsl:variable name="namespaceprefix">
|
36
|
<xsl:choose>
|
37
|
<!-- TODO check namespaceprefix length is 12 -->
|
38
|
<xsl:when test="string-length(//oaf:datasourceprefix) > 0">
|
39
|
<xsl:value-of select="//oaf:datasourceprefix"/>
|
40
|
</xsl:when>
|
41
|
<xsl:otherwise>
|
42
|
<xsl:value-of select="unknown_____"/>
|
43
|
</xsl:otherwise>
|
44
|
</xsl:choose>
|
45
|
</xsl:variable>
|
46
|
|
47
|
<xsl:choose>
|
48
|
<xsl:when
|
49
|
test="count($metadata) = 0 or normalize-space(//oaf:skipRecord)= 'true'">
|
50
|
<ROWS/>
|
51
|
</xsl:when>
|
52
|
<xsl:otherwise>
|
53
|
|
54
|
<xsl:variable name="resultId"
|
55
|
select="dnet:oafSimpleId('result', //dri:objIdentifier)"/>
|
56
|
|
57
|
<xsl:if test="string-length($resultId) > 0">
|
58
|
<xsl:variable name="originalids"
|
59
|
select="//*[local-name() = 'resource']/*[local-name()='identifier'] | //*[local-name() = 'resource']//*[local-name()='alternateIdentifier']"/>
|
60
|
<xsl:variable name="creators" select="//*[local-name() = 'creators']/*[local-name() = 'creator']"/>
|
61
|
<xsl:variable name="titles" select="//*[local-name() = 'title']"/>
|
62
|
<xsl:variable name="subjects" select="//*[local-name() = 'subject']"/>
|
63
|
<xsl:variable name="publisher" select="//*[local-name() = 'publisher']"/>
|
64
|
<xsl:variable name="descriptions" select="//*[local-name() = 'description']"/>
|
65
|
<xsl:variable name="dates" select="//*[local-name() = 'date']"/>
|
66
|
<xsl:variable name="dateaccepted" select="//oaf:dateAccepted"/>
|
67
|
<xsl:variable name="resourceType" select="//*[local-name() = 'resourceType']"/>
|
68
|
<xsl:variable name="formats" select="//*[local-name() = 'format']"/>
|
69
|
<xsl:variable name="sizes" select="//*[local-name() = 'size']"/>
|
70
|
<xsl:variable name="rights" select="//oaf:accessrights"/>
|
71
|
<xsl:variable name="license" select="//oaf:license"/>
|
72
|
<xsl:variable name="version" select="//*[local-name() = 'version']"/>
|
73
|
<xsl:variable name="language" select="//oaf:language"/>
|
74
|
<xsl:variable name="cobjcategory" select="//dr:CobjCategory"/>
|
75
|
<xsl:variable name="contributor" select="//*[local-name() = 'contributor']"/>
|
76
|
<xsl:variable name="distributionlocation" select="//*[local-name() = 'alternateIdentifier' and @alternateIdentifierType='DistributionLocation']"/>
|
77
|
<xsl:variable name="documentationUrl" select="//*[local-name() = 'relatedIdentifier' and @relatedIdentifierType='URL' and @relationType='IsDocumentedBy']"/>
|
78
|
|
79
|
<xsl:variable name="instanceURI">
|
80
|
<xsl:choose>
|
81
|
<xsl:when
|
82
|
test="string-length( //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='DOI']) > 0">
|
83
|
<xsl:value-of
|
84
|
select="concat('http://dx.doi.org','/', //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='DOI']/text())"/>
|
85
|
</xsl:when>
|
86
|
<xsl:when test="string-length( //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='URL']) > 0">
|
87
|
<xsl:value-of select="concat('', //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='URL'])"/>
|
88
|
</xsl:when>
|
89
|
<xsl:otherwise>
|
90
|
<xsl:value-of select="concat('', //*[local-name() = 'resource']//*[local-name()='alternateIdentifier' and ./@alternateIdentifierType='URL'])"/>
|
91
|
</xsl:otherwise>
|
92
|
</xsl:choose>
|
93
|
</xsl:variable>
|
94
|
|
95
|
<xsl:variable name="hostedby" select="//oaf:hostedBy"/>
|
96
|
<xsl:variable name="collectedfrom" select="//oaf:collectedFrom"/>
|
97
|
|
98
|
<xsl:variable name="pids"
|
99
|
select="//*[local-name() = 'resource']//*[local-name()='identifier'or local-name()='alternateIdentifier']"/>
|
100
|
|
101
|
<xsl:variable name="result"
|
102
|
select="dnet:odfResult($resultId, $invisible, $about, $metadata, $titles, $creators, $subjects, $publisher, $descriptions,
|
103
|
$dates, $dateaccepted, $resourceType, $formats, $sizes, $language, $cobjcategory, $contributor, $rights, $license,
|
104
|
$version, $pids, $provenance, $trust, $hostedby, $collectedfrom, $originalids, $instanceURI, $distributionlocation,
|
105
|
$documentationUrl, $dateOfCollection, $dateoftransformation)"/>
|
106
|
|
107
|
<ROWS>
|
108
|
<ROW key="{$resultId}" columnFamily="result">
|
109
|
<QUALIFIER name="body" type="base64">
|
110
|
<xsl:value-of select="$result"/>
|
111
|
</QUALIFIER>
|
112
|
</ROW>
|
113
|
|
114
|
<xsl:for-each select="//*[local-name()='projectid']">
|
115
|
|
116
|
<xsl:variable name="projectId"
|
117
|
select="dnet:oafSplitId('project', normalize-space(.))"/>
|
118
|
|
119
|
<xsl:variable name="resultproject"
|
120
|
select="dnet:rel($resultId, $projectId, 'resultProject', 'outcome', 'isProducedBy',
|
121
|
$collectedfrom, $provenance, $trust, $about)"/>
|
122
|
<xsl:variable name="projectresult"
|
123
|
select="dnet:rel($projectId, $resultId, 'resultProject', 'outcome', 'produces',
|
124
|
$collectedfrom, $provenance, $trust, $about)"/>
|
125
|
|
126
|
<xsl:if test="string-length($projectId) > 0">
|
127
|
<ROW key="{$resultId}" columnFamily="resultProject_outcome_isProducedBy">
|
128
|
<QUALIFIER name="{$projectId}" type="base64">
|
129
|
<xsl:value-of select="$resultproject"/>
|
130
|
</QUALIFIER>
|
131
|
</ROW>
|
132
|
<ROW key="{$projectId}" columnFamily="resultProject_outcome_produces">
|
133
|
<QUALIFIER name="{$resultId}" type="base64">
|
134
|
<xsl:value-of select="$projectresult"/>
|
135
|
</QUALIFIER>
|
136
|
</ROW>
|
137
|
</xsl:if>
|
138
|
</xsl:for-each>
|
139
|
|
140
|
<xsl:for-each
|
141
|
select="//*[local-name()='relatedIdentifier' and ./@relatedIdentifierType='OPENAIRE' and ./@relationType='IsSupplementTo']">
|
142
|
|
143
|
<!-- relatedDataset ids must be in the openaire format -->
|
144
|
<xsl:variable name="targetId" select="dnet:oafSimpleId('result', normalize-space(.))"/>
|
145
|
|
146
|
<xsl:if test="string-length($targetId) > 0">
|
147
|
|
148
|
<xsl:variable name="resultDataset"
|
149
|
select="dnet:rel($resultId, $targetId, 'resultResult', 'supplement', 'isSupplementTo',
|
150
|
$collectedfrom, $provenance, $trust, $about)"/>
|
151
|
<xsl:variable name="datasetResult"
|
152
|
select="dnet:rel($targetId, $resultId, 'resultResult', 'supplement', 'isSupplementedBy',
|
153
|
$collectedfrom, $provenance, $trust, $about)"/>
|
154
|
|
155
|
<ROW key="{$resultId}" columnFamily="resultResult_supplement_isSupplementTo">
|
156
|
<QUALIFIER name="{$targetId}" type="base64">
|
157
|
<xsl:value-of select="$resultDataset"/>
|
158
|
</QUALIFIER>
|
159
|
</ROW>
|
160
|
<ROW key="{$targetId}" columnFamily="resultResult_supplement_isSupplementedBy">
|
161
|
<QUALIFIER name="{$resultId}" type="base64">
|
162
|
<xsl:value-of select="$datasetResult"/>
|
163
|
</QUALIFIER>
|
164
|
</ROW>
|
165
|
</xsl:if>
|
166
|
</xsl:for-each>
|
167
|
|
168
|
<xsl:for-each
|
169
|
select="//*[local-name()='relatedIdentifier' and ./@relatedIdentifierType='OPENAIRE' and ./@relationType='IsPartOf']">
|
170
|
|
171
|
<!-- relatedDataset ids must be in the openaire format -->
|
172
|
<xsl:variable name="datasetId" select="dnet:oafSimpleId('result', normalize-space(.))"/>
|
173
|
|
174
|
<xsl:if test="string-length($datasetId) > 0">
|
175
|
|
176
|
<xsl:variable name="childParent"
|
177
|
select="dnet:rel($resultId, $datasetId, 'resultResult', 'part', 'isPartOf',
|
178
|
$collectedfrom, $provenance, $trust, $about)"/>
|
179
|
<xsl:variable name="parentChild"
|
180
|
select="dnet:rel($datasetId, $resultId, 'resultResult', 'part', 'hasPart',
|
181
|
$collectedfrom, $provenance, $trust, $about)"/>
|
182
|
|
183
|
<ROW key="{$resultId}" columnFamily="resultResult_part_isPartOf">
|
184
|
<QUALIFIER name="{$datasetId}" type="base64">
|
185
|
<xsl:value-of select="$childParent"/>
|
186
|
</QUALIFIER>
|
187
|
</ROW>
|
188
|
<ROW key="{$datasetId}" columnFamily="resultResult_part_hasPart">
|
189
|
<QUALIFIER name="{$resultId}" type="base64">
|
190
|
<xsl:value-of select="$parentChild"/>
|
191
|
</QUALIFIER>
|
192
|
</ROW>
|
193
|
</xsl:if>
|
194
|
</xsl:for-each>
|
195
|
|
196
|
</ROWS>
|
197
|
</xsl:if>
|
198
|
</xsl:otherwise>
|
199
|
</xsl:choose>
|
200
|
</xsl:template>
|
201
|
</xsl:stylesheet>
|
202
|
</CODE>
|
203
|
</SCRIPT>
|
204
|
</CONFIGURATION>
|
205
|
<STATUS />
|
206
|
<SECURITY_PARAMETERS>SECURITY_PARAMETERS</SECURITY_PARAMETERS>
|
207
|
</BODY>
|
208
|
</RESOURCE_PROFILE>
|