-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (46 loc) · 1.99 KB
/
index.php
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
/*******************************************************************************
*
* LEIDEN OPEN VARIATION DATABASE (LOVD)
* Adapted from /src/api.php in the LOVD3 project.
*
* Created : 2023-08-02
* Modified : 2023-09-26 // When modified, also change the library_version.
*
* Supported URIs (/v# is optional):
* - v1 /v#/ (GET/HEAD)
* - v1 /v#/catalogs (GET/HEAD)
* - v1 /v#/catalog/<UUID> (GET/HEAD)
* - v1 /v#/catalog/<UUID>/datasets (GET/HEAD)
* - v1 /v#/catalog/<UUID>/dataset/<GENE> (GET/HEAD)
* - v1 /v#/catalog/<UUID>/dataset/<GENE>/distributions (GET/HEAD)
* - v1 /v#/catalog/<UUID>/dataset/<GENE>/distribution/html (GET/HEAD)
* - v1 /v#/catalog/<UUID>/dataset/<GENE>/distribution/json/v2 (GET/HEAD)
*
* Copyright : 2004-2023 Leiden University Medical Center; http://www.LUMC.nl/
* Programmer : Ivo F.A.C. Fokkema <I.F.A.C.Fokkema@LUMC.nl>
*
*
* This file is part of LOVD.
*
* LOVD is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LOVD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LOVD. If not, see <http://www.gnu.org/licenses/>.
*
*************/
define('ROOT_PATH', './');
define('CACHE_PATH', './cache/');
require ROOT_PATH . 'inc-init.php';
require ROOT_PATH . 'class/api.php';
// The API's constructor already parses the URL, makes sure the method is valid, and handles the request.
$_API = new LOVD_API();
?>