Project

General

Profile

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="oaf_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="trust" select="string('0.9')"/>
28
<xsl:param name="provenance" select="string('sysimport:crosswalk:datasetarchive')"/>
29
<xsl:template match="/*">
30
    <xsl:variable name="about" select="/*[local-name() = 'record']/*[local-name() = 'about']"/>
31
    <xsl:variable name="dateOfCollection" select="concat('', //dri:dateOfCollection)"/>
32
    <xsl:variable name="dateoftransformation" select="concat('', //dr:dateOfTransformation)"/>
33
    <xsl:variable name="metadata" select="exslt:node-set(//*[local-name()='metadata']/*)"/>
34
    <xsl:variable name="namespaceprefix">
35
        <xsl:choose>
36
            <!-- TODO check namespaceprefix length is 12 -->
37
            <xsl:when test="string-length(//oaf:datasourceprefix) &gt; 0">
38
                <xsl:value-of select="//oaf:datasourceprefix"/>
39
            </xsl:when>
40
            <xsl:otherwise>
41
                <xsl:value-of select="unknown_____"/>
42
            </xsl:otherwise>
43
        </xsl:choose>
44
    </xsl:variable>
45

    
46
    <xsl:choose>
47
        <xsl:when
48
                test="count($metadata) = 0 or normalize-space(//oaf:skipRecord)= 'true'">
49
            <ROWS/>
50
        </xsl:when>
51
        <xsl:otherwise>
52

    
53
            <xsl:variable name="resultId"
54
                          select="dnet:oafSimpleId('result', //dri:objIdentifier)"/>
55

    
56
            <xsl:if test="string-length($resultId) &gt; 0">
57
                <xsl:variable name="originalids"
58
                              select="//*[local-name() = 'resource']/*[local-name()='identifier'] | //*[local-name() = 'resource']//*[local-name()='alternateIdentifier']"/>
59
                <xsl:variable name="creators" select="//*[local-name() = 'creator']"/>
60
                <xsl:variable name="titles" select="//*[local-name() = 'title']"/>
61
                <xsl:variable name="subjects" select="//*[local-name() = 'subject']"/>
62
                <xsl:variable name="publisher" select="//*[local-name() = 'publisher']"/>
63
                <xsl:variable name="descriptions" select="//*[local-name() = 'description']"/>
64
                <xsl:variable name="dates" select="//*[local-name() = 'date']"/>
65
                <xsl:variable name="dateaccepted" select="//oaf:dateAccepted"/>
66
                <xsl:variable name="resourceType" select="//*[local-name() = 'resourceType']"/>
67
                <xsl:variable name="formats" select="//*[local-name() = 'format']"/>
68
                <xsl:variable name="sizes" select="//*[local-name() = 'size']"/>
69
                <xsl:variable name="rights" select="//oaf:accessrights"/>
70
                <xsl:variable name="version" select="//*[local-name() = 'version']"/>
71
                <xsl:variable name="language" select="//oaf:language"/>
72
                <xsl:variable name="cobjcategory" select="//dr:CobjCategory"/>
73
                <xsl:variable name="contributor" select="//*[local-name() = 'contributor']/*[local-name() = 'contributorName']"/>
74

    
75
                <xsl:variable name="instanceURI">
76
	                <xsl:choose>
77
		                <xsl:when
78
				                test="string-length( //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='DOI']) &gt; 0">
79
			                <xsl:value-of
80
					                select="concat('http://dx.doi.org','/', //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='DOI']/text())"/>
81
		                </xsl:when>
82
		                <xsl:when test="string-length( //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='URL']) &gt; 0">
83
			                <xsl:value-of select="concat('', //*[local-name() = 'resource']/*[local-name()='identifier' and ./@identifierType='URL'])"/>
84
		                </xsl:when>
85
		                <xsl:otherwise>
86
			                <xsl:value-of select="concat('', //*[local-name() = 'resource']//*[local-name()='alternateIdentifier' and ./@alternateIdentifierType='URL'])"/>
87
		                </xsl:otherwise>
88
	                </xsl:choose>
89
                </xsl:variable>
90

    
91
                <xsl:variable name="hostedbyid"
92
                              select="dnet:oafSplitId('datasource', //oaf:hostedBy/@id)"/>
93
                <xsl:variable name="hostedbyname" select="concat('', //oaf:hostedBy/@name)"/>
94
                <xsl:variable name="collectedfromid"
95
                              select="dnet:oafSplitId('datasource', //oaf:collectedFrom/@id)"/>
96
                <xsl:variable name="collectedfromname"
97
                              select="concat('', //oaf:collectedFrom/@name)"/>
98

    
99
                <xsl:variable name="pids"
100
                              select="//*[local-name() = 'resource']//*[local-name()='identifier'or local-name()='alternateIdentifier']"/>
101

    
102
                <xsl:variable name="result"
103
                              select="dnet:odfResult($resultId, $about, $metadata, $titles, $subjects, $publisher, $descriptions,
104
                        $dates, $dateaccepted, $resourceType, $formats, $sizes, $language, $cobjcategory, $contributor, $rights,
105
                        $version, $pids, $provenance, $trust, $hostedbyid, $hostedbyname, $collectedfromid,
106
                        $collectedfromname, $originalids, $instanceURI, $dateOfCollection, $dateoftransformation)"/>
107

    
108
                <ROWS>
109
	                <ROW key="{$resultId}" columnFamily="result">
110
		                <QUALIFIER name="body" type="base64">
111
			                <xsl:value-of select="$result"/>
112
		                </QUALIFIER>
113
	                </ROW>
114
	                <xsl:for-each select="//*[local-name() = 'creator']">
115

    
116
		                <xsl:variable name="personIdTemp">
117
			                <xsl:choose>
118
				                <xsl:when test="string-length(./*[local-name() = 'nameIdentifier']) &gt; 0">
119
					                <xsl:value-of
120
							                select="translate(normalize-space(./*[local-name() = 'nameIdentifier']),' .,','___')"/>
121
				                </xsl:when>
122
				                <xsl:otherwise>
123
					                <xsl:value-of select="translate(normalize-space(./*[local-name() = 'creatorName']),' .,','___')"/>
124
				                </xsl:otherwise>
125
			                </xsl:choose>
126
		                </xsl:variable>
127

    
128
		                <xsl:variable name="personId" select="dnet:oafId('person', $namespaceprefix, normalize-space($personIdTemp))"/>
129

    
130
		                <xsl:variable name="originalPersonId" select="./*[local-name() = 'nameIdentifier']"/>
131

    
132
		                <xsl:if test="string-length($personId) &gt; 0">
133
			                <xsl:variable name="position" select="position()"/>
134
			                <xsl:variable name="person"
135
			                              select="dnet:person($personId, $about, $provenance, $trust, $collectedfromid, $collectedfromname,
136
			                              $originalPersonId, $dateOfCollection, $dateoftransformation, normalize-space(./*[local-name() = 'creatorName']),
137
			                              ./*[local-name() = 'nameIdentifier'], ./*[local-name() = 'nameIdentifier']/@nameIdentifierScheme)"/>
138
			                <xsl:variable name="personresult"
139
			                              select="dnet:personResult_Authorship($personId, $resultId, $position, 'isAuthorOf',
140
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
141
			                <xsl:variable name="resultperson"
142
			                              select="dnet:personResult_Authorship($resultId, $personId, $position, 'hasAuthor',
143
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
144

    
145
			                <ROW key="{$personId}" columnFamily="person">
146
				                <QUALIFIER name="body" type="base64">
147
					                <xsl:value-of select="$person"/>
148
				                </QUALIFIER>
149
			                </ROW>
150
			                <ROW key="{$personId}" columnFamily="personResult_authorship_isAuthorOf">
151
				                <QUALIFIER name="{$resultId}" type="base64">
152
					                <xsl:value-of select="$personresult"/>
153
				                </QUALIFIER>
154
			                </ROW>
155
			                <ROW key="{$resultId}" columnFamily="personResult_authorship_hasAuthor">
156
				                <QUALIFIER name="{$personId}" type="base64">
157
					                <xsl:value-of select="$resultperson"/>
158
				                </QUALIFIER>
159
			                </ROW>
160
		                </xsl:if>
161
	                </xsl:for-each>
162

    
163
	                <xsl:for-each select="//*[local-name()='projectid']">
164

    
165
		                <xsl:variable name="projectId"
166
		                              select="dnet:oafSplitId('project', normalize-space(.))"/>
167

    
168
		                <xsl:variable name="resultproject"
169
		                              select="dnet:rel($resultId, $projectId, 'resultProject', 'outcome', 'isProducedBy',
170
		                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
171
		                <xsl:variable name="projectresult"
172
		                              select="dnet:rel($projectId, $resultId, 'resultProject', 'outcome', 'produces',
173
		                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
174

    
175
		                <xsl:if test="string-length($projectId) &gt; 0">
176
			                <ROW key="{$resultId}" columnFamily="resultProject_outcome_isProducedBy">
177
				                <QUALIFIER name="{$projectId}" type="base64">
178
					                <xsl:value-of select="$resultproject"/>
179
				                </QUALIFIER>
180
			                </ROW>
181
			                <ROW key="{$projectId}" columnFamily="resultProject_outcome_produces">
182
				                <QUALIFIER name="{$resultId}" type="base64">
183
					                <xsl:value-of select="$projectresult"/>
184
				                </QUALIFIER>
185
			                </ROW>
186
		                </xsl:if>
187
	                </xsl:for-each>
188

    
189
	                <xsl:for-each
190
			                select="//*[local-name()='relatedIdentifier' and ./@relatedIdentifierType='OPENAIRE' and ./@relationType='IsSupplementTo']">
191

    
192
		                <!-- relatedDataset ids must be in the openaire format  -->
193
		                <xsl:variable name="targetId" select="dnet:oafSimpleId('result', normalize-space(.))"/>
194

    
195
		                <xsl:if test="string-length($targetId) &gt; 0">
196

    
197
			                <xsl:variable name="resultDataset"
198
			                              select="dnet:rel($resultId, $targetId, 'resultResult', 'supplement', 'isSupplementTo',
199
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
200
			                <xsl:variable name="datasetResult"
201
			                              select="dnet:rel($targetId, $resultId, 'resultResult', 'supplement', 'isSupplementedBy',
202
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
203

    
204
			                <ROW key="{$resultId}" columnFamily="resultResult_supplement_isSupplementTo">
205
				                <QUALIFIER name="{$targetId}" type="base64">
206
					                <xsl:value-of select="$resultDataset"/>
207
				                </QUALIFIER>
208
			                </ROW>
209
			                <ROW key="{$targetId}" columnFamily="resultResult_supplement_isSupplementedBy">
210
				                <QUALIFIER name="{$resultId}" type="base64">
211
					                <xsl:value-of select="$datasetResult"/>
212
				                </QUALIFIER>
213
			                </ROW>
214
		                </xsl:if>
215
	                </xsl:for-each>
216

    
217
	                <xsl:for-each
218
			                select="//*[local-name()='relatedIdentifier' and ./@relatedIdentifierType='OPENAIRE' and ./@relationType='IsPartOf']">
219

    
220
		                <!-- relatedDataset ids must be in the openaire format  -->
221
		                <xsl:variable name="datasetId" select="dnet:oafSimpleId('result', normalize-space(.))"/>
222

    
223
		                <xsl:if test="string-length($datasetId) &gt; 0">
224

    
225
			                <xsl:variable name="childParent"
226
			                              select="dnet:rel($resultId, $datasetId, 'resultResult', 'part', 'isPartOf',
227
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
228
			                <xsl:variable name="parentChild"
229
			                              select="dnet:rel($datasetId, $resultId, 'resultResult', 'part', 'hasPart',
230
			                              $collectedfromid, $collectedfromname, $provenance, $trust, $about)"/>
231

    
232
			                <ROW key="{$resultId}" columnFamily="resultResult_part_isPartOf">
233
				                <QUALIFIER name="{$datasetId}" type="base64">
234
					                <xsl:value-of select="$childParent"/>
235
				                </QUALIFIER>
236
			                </ROW>
237
			                <ROW key="{$datasetId}" columnFamily="resultResult_part_hasPart">
238
				                <QUALIFIER name="{$resultId}" type="base64">
239
					                <xsl:value-of select="$parentChild"/>
240
				                </QUALIFIER>
241
			                </ROW>
242
		                </xsl:if>
243
	                </xsl:for-each>
244

    
245
                </ROWS>
246
            </xsl:if>
247
        </xsl:otherwise>
248
    </xsl:choose>
249
</xsl:template>
250
</xsl:stylesheet>
251
	</CODE>
252
            </SCRIPT>
253
        </CONFIGURATION>
254
		<STATUS />
255
		<SECURITY_PARAMETERS>SECURITY_PARAMETERS</SECURITY_PARAMETERS>
256
	</BODY>
257
</RESOURCE_PROFILE>
(70-70/85)