Project

General

Profile

1
<RESOURCE_PROFILE>
2
	<HEADER>
3
		<RESOURCE_IDENTIFIER value="5bf61322-c99d-4819-9623-09fc449f48a2_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 (entities only)</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) &gt; 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) &gt; 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
	            <xsl:variable name="landingPage" select="//*[local-name() = 'alternateIdentifier' and @alternateIdentifierType='LandingPage']/text()"/>
79

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

    
96
                <xsl:variable name="hostedby" select="//oaf:hostedBy"/>
97
                <xsl:variable name="collectedfrom" select="//oaf:collectedFrom"/>
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, $invisible, $about, $metadata, $titles, $creators, $subjects, $publisher, $descriptions,
104
		                        $dates, $dateaccepted, $resourceType, $formats, $sizes, $language, $cobjcategory, $contributor, $rights, $license,
105
		                        $version, $pids, $provenance, $trust, $hostedby, $collectedfrom, $originalids, $instanceURI, $landingPage, $distributionlocation,
106
		                        $documentationUrl, $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
                </ROWS>
115

    
116
            </xsl:if>
117
        </xsl:otherwise>
118
    </xsl:choose>
119
</xsl:template>
120
</xsl:stylesheet>
121
	</CODE>
122
            </SCRIPT>
123
        </CONFIGURATION>
124
		<STATUS />
125
		<SECURITY_PARAMETERS>SECURITY_PARAMETERS</SECURITY_PARAMETERS>
126
	</BODY>
127
</RESOURCE_PROFILE>
(9-9/16)