getParameterList.php
1.59 KB
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
<?php
/**
* @api {get} getParameterList.php getParameterList
* @apiDescription Provides the hierarchy of derived parameters belonging to a user and parameters in AMDA.
* @apiName getParameterList
* @apiGroup webservices
*
* @apiParam {String} [userID] Identifier of the user in AMDA (*mandatory for user owned data*)
* @apiParam {String} [password] Password of the user in AMDA (*mandatory for user owned data*)
*
* @apiSuccess {String} success `true`
* @apiSuccess {String} URL of the XML file, which contains the list of derived parameters and parameters in AMDA
*
* @apiSuccessExample Success-Response:
* HTTP/1.1 200 OK
* [success] => 1
* [ParameterList] => stdClass Object
* (
* [LocalDataBaseParameters] => http://amda.irap.omp.eu/AMDA/data/WSRESULT/parameterlist_impex_20180919_AmdaLocalDataBaseParameters.xml
* )
* or with userID
* (
* [UserDefinedParameters] => http://amda.irap.omp.eu/AMDA/data/WSRESULT/parameterlist_userID_20180919_UserDefinedParameters.xml
* [LocalDataBaseParameters] => http://amda.irap.omp.eu/AMDA/data/WSRESULT/parameterlist_userID_20180919_AmdaLocalDataBaseParameters.xml
* )
*
*
*
* @apiErrorExample Error-Response:
* {"error":"Login procedure failed for impex1 : Check your password"}
*/
require_once '../config.php';
$amda_ws = new WebServer();
$result = $amda_ws->getParameterList($_GET);
if ($result['ParameterList']){
foreach($result['ParameterList'] as $key => $value) {
echo "<$key>$value</$key>";
}
}
else {
echo $result['message'];
}
?>