forked from srophe/srophe-eXist-app
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontroller.xql
193 lines (180 loc) · 9.63 KB
/
controller.xql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
xquery version "3.0";
import module namespace config="http://srophe.org/srophe/config" at "modules/config.xqm";
declare variable $exist:path external;
declare variable $exist:resource external;
declare variable $exist:controller external;
declare variable $exist:prefix external;
declare variable $exist:root external;
(: Get variables for Srophe collections. :)
declare variable $exist:record-uris :=
distinct-values(for $collection in $config:get-config//repo:collection
let $short-path := replace($collection/@record-URI-pattern,$config:base-uri,'')
return $short-path)
;
(: Get variables for Srophe collections. :)
declare variable $exist:collection-uris :=
distinct-values(for $collection in $config:get-config//repo:collection
let $short-path := replace($collection/@app-root,$config:base-uri,'')
return concat('/',$short-path,'/'))
;
(: Get variables for Srophe collections. :)
declare variable $exist:collection-folders :=
distinct-values(for $collection in $config:get-config//repo:collection
let $short-path := replace($collection/@app-root,$config:base-uri,'')
return $short-path)
;
(: Send to content negotiation:)
declare function local:content-negotiation($exist:path, $exist:resource){
if(starts-with($exist:resource, ('search','browse'))) then
let $format := request:get-parameter('format', '')
return
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{$exist:controller}/modules/content-negotiation/content-negotiation.xql"/>
<add-parameter name="format" value="{$format}"/>
</dispatch>
else if(starts-with($exist:resource, 'data')) then
let $format := request:get-parameter('format', '')
let $collection := request:get-parameter('collection', '')
return
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{$exist:controller}/modules/data.xql"/>
<add-parameter name="format" value="{$format}"/>
<add-parameter name="collection" value="{$collection}"/>
</dispatch>
else
let $id := if($exist:resource = ('tei','xml','txt','pdf','json','geojson','kml','jsonld','rdf','ttl','atom')) then
tokenize(replace($exist:path,'/tei|/xml|/txt|/pdf|/json|/geojson|/kml|/jsonld|/rdf|/ttl|/atom',''),'/')[last()]
else replace(xmldb:decode($exist:resource), "^(.*)\..*$", "$1")
let $record-uri-root := substring-before($exist:path,$id)
let $id := if($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)]) then
concat($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)][1]/@record-URI-pattern,$id)
else $id
let $html-path := concat($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)][1]/@app-root,'record.html')
let $format := if($exist:resource = ('tei','xml','txt','pdf','json','geojson','kml','jsonld','rdf','ttl','atom')) then
$exist:resource
else if(request:get-parameter('format', '') != '') then request:get-parameter('format', '')
else fn:tokenize($exist:resource, '\.')[fn:last()]
return
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{$exist:controller}/modules/content-negotiation/content-negotiation.xql">
<add-parameter name="id" value="{$id}"/>
<add-parameter name="format" value="{$format}"/>
</forward>
</dispatch>
};
(:
<div>
$exist:path {$exist:path}<br/>
$exist:collection-folders {$exist:collection-folders}<br/>
$exist:collection-uris {$exist:collection-uris} <br/>
$exist:record-uris {$exist:record-uris}
</div>
:)
if ($exist:path eq '') then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="{request:get-uri()}/"/>
</dispatch>
else if ($exist:path eq "/") then
(: forward root path to index.xql :)
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="index.html"/>
</dispatch>
(: Passes any api requests to correct endpoint:)
else if (contains($exist:path,'/api/')) then
if (ends-with($exist:path,"/")) then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="/api-documentation/index.html"/>
</dispatch>
else if($exist:resource = 'index.html') then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="/api-documentation/index.html"/>
</dispatch>
else if($exist:resource = 'oai') then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{replace($exist:path,'/api/oai','/srophe/modules/oai.xql')}"/>
</dispatch>
else if($exist:resource = 'sparql') then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{replace($exist:path,'/api/sparql','/srophe/sparql/run-sparql.xql')}"/>
</dispatch>
else
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{concat('/restxq/srophe', $exist:path)}" absolute="yes"/>
</dispatch>
else if(replace($exist:path, $exist:resource,'') = $exist:record-uris) then
(: Passes data to content negotiation module:)
if(request:get-parameter('format', '') != '' and request:get-parameter('format', '') != 'html') then
local:content-negotiation($exist:path, $exist:resource)
else if(ends-with($exist:path,('/tei','/xml','/txt','/pdf','/json','/geojson','/kml','/jsonld','/rdf','/ttl','/atom'))) then
local:content-negotiation($exist:path, $exist:resource)
else if(ends-with($exist:resource,('.tei','.xml','.txt','.pdf','.json','.geojson','.kml','.jsonld','.rdf','.ttl','.atom'))) then
local:content-negotiation($exist:path, $exist:resource)
(: Checks for any record uri patterns as defined in repo.xml :)
(: else if(replace($exist:path, $exist:resource,'') = $exist:record-uris) then :)
else if($exist:resource = ('index.html','search.html','browse.html','about.html')) then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<view>
<forward url="{$exist:controller}/modules/view.xql"/>
</view>
<error-handler>
<forward url="{$exist:controller}/error-page.html" method="get"/>
<forward url="{$exist:controller}/modules/view.xql"/>
</error-handler>
</dispatch>
else
let $id := replace(xmldb:decode($exist:resource), "^(.*)\..*$", "$1")
let $record-uri-root := replace($exist:path,$exist:resource,'')
let $id := if($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)]) then
concat($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)][1]/@record-URI-pattern,$id)
else ()
let $html-path := concat($config:get-config//repo:collection[ends-with(@record-URI-pattern, $record-uri-root)][1]/@app-root,'record.html')
let $format := fn:tokenize($exist:resource, '\.')[fn:last()]
return
(:<div>HTML page for id: {$id} root: {$record-uri-root} HTML: {$html-path}</div>:)
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{$exist:controller}{$html-path}"></forward>
<view>
<forward url="{$exist:controller}/modules/view.xql">
<add-parameter name="id" value="{$id}"/>
</forward>
</view>
<error-handler>
<forward url="{$exist:controller}/error-page.html" method="get"/>
<forward url="{$exist:controller}/modules/view.xql"/>
</error-handler>
</dispatch>
else if (ends-with($exist:resource, ".html")) then
(: the html page is run through view.xql to expand templates :)
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<view>
<forward url="{$exist:controller}/modules/view.xql"/>
</view>
<error-handler>
<forward url="{$exist:controller}/error-page.html" method="get"/>
<forward url="{$exist:controller}/modules/view.xql"/>
</error-handler>
</dispatch>
(: Resource paths starting with $nav-base are resolved relative to app :)
else if (contains($exist:path, "/$nav-base/")) then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="{concat($exist:controller,'/', substring-after($exist:path, '/$nav-base/'))}">
<set-header name="Cache-Control" value="max-age=3600, must-revalidate"/>
</forward>
</dispatch>
(: Resource paths starting with $shared are loaded from the shared-resources app :)
else if (contains($exist:path, "/$shared/")) then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<forward url="/shared-resources/{substring-after($exist:path, '/$shared/')}">
<set-header name="Cache-Control" value="max-age=3600, must-revalidate"/>
</forward>
</dispatch>
(: Redirect folder roots to index.html:)
else if ($exist:resource eq '' or ends-with($exist:path,"/")) then
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<redirect url="index.html"/>
</dispatch>
else
(: everything else is passed through :)
<dispatch xmlns="http://exist.sourceforge.net/NS/exist">
<cache-control cache="yes"/>
</dispatch>