Project

General

Profile

1
<?php
2
require_once dirname(__FILE__)."/util.php";
3

    
4
# config
5
$alias = "j.mp/vegpath#";
6

    
7
function by_prefix($url, $main_url=null)
8
{
9
	if (!isset($main_url)) $main_url = $url;
10
	
11
	return function($path) use($url, $main_url)
12
	{
13
		return $path ? $url.$path : $main_url;
14
	};
15
}
16

    
17
$h_level = 5;
18
$path = parse_mixed_path($_SERVER["QUERY_STRING"]);
19
$ref = strtolower($path->head);
20

    
21
function add_ref($name, $suffix, $url_func)
22
{
23
	global $alias, $h_level, $path, $ref;
24
	if (is_string($url_func)) $url_func = by_prefix($url_func);
25
	
26
	print("<h".$h_level.' id="'.$name.'">'.$alias.'<big><a href="http://'.$alias
27
		.$name.'">'.$name."</a></big><i>".$suffix."</i></h".$h_level.">\n");
28
	if ($ref === strtolower($name)) # found match, so redirect
29
	{
30
		header("Location: ".strip_url($url_func($path->tail)));
31
		ob_end_flush();
32
		exit;
33
	}
34
}
35

    
36
function custom_separator($url, $sep, $main_url)
37
{
38
	if (!isset($main_url)) $main_url = $url;
39
	
40
	return function($path) use($url, $sep, $main_url)
41
	{
42
		if ($path === "") return $main_url;
43
		$path = parse_dot_path($path);
44
		return $url.join_non_empty($sep, array($path->head, $path->tail));
45
	};
46
}
47

    
48
function fragment_override($url, $fragment=null)
49
{
50
	return function($path) use($url, $fragment)
51
	{
52
		if (!isset($fragment))
53
		{
54
			$path = parse_dot_path($path);
55
			$fragment = $path->head;
56
			$path = $path->tail;
57
		}
58
		if ($path !== "") $url .= "?".$path;
59
		return $url."#".$fragment;
60
	};
61
}
62

    
63
function phpPgAdmin($url, $table=null)
64
{
65
	return function($path) use($url, $table)
66
	{
67
		$path = join_non_empty(".", array($table, $path));
68
		$path = parse_dot_path($path);
69
		$subject = "schema";
70
		if ($path->head !== "")
71
		{
72
			$url .= "&table=".$path->head;
73
			if ($path->tail !== "")
74
			{
75
				$url .= "&column=".$path->tail;
76
				$subject = "column";
77
			}
78
			else $subject = "table";
79
		}
80
		$url .= "&subject=".$subject;
81
		return $url;
82
	};
83
}
84

    
85
function phpMyAdmin($url, $table=null)
86
{
87
	return function($path) use($url, $table)
88
	{
89
		$path = join_non_empty(".", array($table, $path));
90
		$path = parse_dot_path($path);
91
		$target = "db_structure";
92
		if ($path->head !== "")
93
		{
94
			$url .= "&table=".$path->head;
95
			if ($path->tail !== "") $url .= "&column=".$path->tail;
96
			$target = "tbl_structure";
97
		}
98
		$url .= "&target=".$target.".php";
99
		return $url;
100
	};
101
}
102

    
103
ob_start(); // delay output in case there is a redirect
104
?>
105
<html>
106
	<head>
107
		<title>VegPath</title>
108
		<link rel="stylesheet" type="text/css" href="main.css" />
109
		<style type="text/css">
110
h1 {color: green;}
111
		</style>
112
		<script type="text/javascript" src="util.js"></script>
113
	</head>
114
	<body>
115
		<h1>VegPath&nbsp;&nbsp; <small>human-readable URLs for vegetation resources</small></h1>
116
		<div>Supported URL patterns:&nbsp;&nbsp; <small>(elements in <i>italics</i> are optional)</small></div>
117
		<p></p>
118
<?php
119
# add and list URLs
120

    
121
$Redmine = "https://projects.nceas.ucsb.edu/nceas/projects/bien";
122
$Redmine_svn = $Redmine."/repository/raw";
123

    
124
$nimoy = "http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php";
125
function nimoy_db($db) { global $nimoy; return phpMyAdmin($nimoy."?db=".$db); }
126
?>
127
		<table border="0" cellspacing="0" cellpadding="0">
128
			<tr valign="top">
129
				<td nowrap="nowrap"><h2>Terms</h2></td>
130
				<td nowrap="nowrap"><h2>Data</h2></td>
131
			</tr>
132
			<tr valign="top">
133
				<td nowrap="nowrap">
134
<?php
135
print("<blockquote>\n");
136
print("<h3>Exchange schemas</h3>");
137
{
138
	print("<blockquote>\n");
139
	add_ref("VegCore", ".term", "https://projects.nceas.ucsb.edu/nceas/projects/bien/wiki/VegCore#");
140
	add_ref("DwC", ".term", "http://rs.tdwg.org/dwc/terms/#");
141
	{
142
		print("<blockquote>\n"); $h_level++;
143
		add_ref("DwC-history", ".term", "http://rs.tdwg.org/dwc/terms/history/#");
144
		print("</blockquote>\n"); $h_level--;
145
	}
146
	add_ref("TCS", "/XPath", "http://www.tdwg.org/standards/117/download/#/v101.xsd#");
147
	add_ref("VegX", "/XPath", "http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#");
148
	print("</blockquote>\n");
149
}
150
print("<h3>Aggregators</h3>");
151
{
152
	print("<blockquote>\n");
153
	add_ref("VegBank", ".table.column", custom_separator("http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&entity=dba_tabledescription&where=where_tablename&wparam=",
154
		"#", "http://vegbank.org/get/index/dba_tabledescription"));
155
	add_ref("SALVIAS", ".table.column", "http://salvias.net/Documents/salvias_data_dictionary.html#");
156
	{
157
		print("<blockquote>\n"); $h_level++;
158
		add_ref("SALVIAS-db", ".table.column", nimoy_db("salvias_plots"));
159
		add_ref("SALVIAS-users", ".table.column", nimoy_db("salvias_users"));
160
		print("</blockquote>\n"); $h_level--;
161
	}
162
	add_ref("BIEN2", "", $nimoy."?target=server_databases.php");
163
	{
164
		print("<blockquote>\n"); $h_level++;
165
		add_ref("BIEN2-web", ".table.column", nimoy_db("bien_web"));
166
		add_ref("BIEN2-core", ".table.column", nimoy_db("bien2"));
167
		add_ref("BIEN2-geoscrub", ".table.column", nimoy_db("geoscrub"));
168
		add_ref("BIEN2-staging", ".table.column", nimoy_db("bien2_staging"));
169
		print("</blockquote>\n"); $h_level--;
170
	}
171
	add_ref("VegBIEN", ".table.column", phpPgAdmin("http://vegbiendev.nceas.ucsb.edu/phppgadmin/redirect.php?server=localhost%3A5432%3Aallow&database=vegbien&schema=public"));
172
	print("</blockquote>\n");
173
}
174
print("<h3>Primary databases</h3>");
175
{
176
	print("<blockquote>\n");
177
	add_ref("TNRS", ".term", fragment_override("http://tnrs.iplantcollaborative.org/instructions.html", "download_results"));
178
	add_ref("CTFS", "", $CTFS);
179
	{
180
		print("<blockquote>\n"); $h_level++;
181
		add_ref("CTFS-schema", ".table.column", "https://projects.nceas.ucsb.edu/nceas/projects/bien/repository/raw/inputs/CTFS/_archive/DBv5.txt#");
182
		add_ref("CTFS-tables", ".table", fragment_override($Redmine."/wiki/CTFS", "Tables"));
183
		add_ref("CTFS-terms", ".term", $Redmine_svn."/inputs/CTFS/_src/ctfs-comments_worksheet.xls#");
184
		print("</blockquote>\n"); $h_level--;
185
	}
186
	print("</blockquote>\n");
187
}
188
print("<h3>People</h3>");
189
{
190
	print("<blockquote>\n");
191
	add_ref("Brad-Boyle", "", $CTFS);
192
	{
193
		print("<blockquote>\n"); $h_level++;
194
		$Brad_Boyle_VegCore = $Redmine_svn."/schemas/VegCore/Brad_Boyle";
195
		add_ref("Brad-Boyle-data-provenance", ".term", $Brad_Boyle_VegCore."/BIEN%20database%20entities%20related%20to%20data%20provenance%20and%20ownership.docx#");
196
		add_ref("Brad-Boyle-DwC-IDs-2013-2-7", ".term", $Brad_Boyle_VegCore."/vegbien_identifiers.xlsx#");
197
		add_ref("Brad-Boyle-DwC-IDs-2013-1-31", ".term", $Brad_Boyle_VegCore."/vegbien_identifier_examples.xlsx#");
198
		print("</blockquote>\n"); $h_level--;
199
	}
200
	print("</blockquote>\n");
201
}
202
print("</blockquote>\n");
203
?>
204
				</td>
205
				<td nowrap="nowrap">
206
<?php
207
print("<blockquote>\n");
208
print("<h3>Institutions</h3>");
209
{
210
	print("<blockquote>\n");
211
	add_ref("IH", ".herbarium_code", by_prefix("http://sweetgum.nybg.org/ih/herbarium_list.php?QueryName=DetailedQuery&Restriction=NamPartyType+%3D+%27IH+Herbarium%27&col_NamOrganisationAcronym=",
212
		"http://sweetgum.nybg.org/ih/"));
213
	print("</blockquote>\n");
214
}
215
print("</blockquote>\n");
216
?>
217
				</td>
218
			</tr>
219
		</table>
220
<?php
221
if (ends_with($alias, '#')) # URL shortener requires fragment redirect
222
{
223
?>
224
		<script type="text/javascript">
225
var loc = document.location
226
if (loc.hash) document.location = rm_prefix('#', loc.hash)
227
		</script>
228
<?php
229
}
230
?>
231
	</body>
232
</html>
233
<?php
234
ob_end_flush();
235
?>
(2-2/5)