-
Notifications
You must be signed in to change notification settings - Fork 168
/
service.php
57 lines (49 loc) · 1.89 KB
/
service.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
49
50
51
52
53
54
55
56
57
<?php
/* ----------------------------------------------------------------------
* service.php :
* ----------------------------------------------------------------------
* CollectiveAccess
* Open-source collections management software
* ----------------------------------------------------------------------
*
* Software by Whirl-i-Gig (http://www.whirl-i-gig.com)
* Copyright 2008-2018 Whirl-i-Gig
*
* For more information visit http://www.CollectiveAccess.org
*
* This program is free software; you may redistribute it and/or modify it under
* the terms of the provided license as published by Whirl-i-Gig
*
* CollectiveAccess is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTIES whatsoever, including any implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* This source code is free and modifiable under the terms of
* GNU General Public License. (http://www.gnu.org/copyleft/gpl.html). See
* the "license.txt" file for details, or visit the CollectiveAccess web site at
* http://www.CollectiveAccess.org
*
* ----------------------------------------------------------------------
*/
define("__CA_IS_SERVICE_REQUEST__", true);
if (!file_exists('./setup.php')) { print "No setup.php file found!"; exit; }
require('./setup.php');
// connect to database
$o_db = new Db(null, null, false);
$app = AppController::getInstance();
$req = $app->getRequest();
$resp = $app->getResponse();
// Prevent caching
$resp->addHeader('Access-Control-Allow-Origin', '*');
$resp->addHeader("Cache-Control", "no-cache, must-revalidate");
$resp->addHeader("Expires", "Mon, 26 Jul 1997 05:00:00 GMT");
$vb_auth_success = $req->doAuthentication(array('noPublicUsers' => true, "dont_redirect" => true, "no_headers" => true));
//
// Dispatch the request
//
$app->dispatch(true);
//
// Send output to client
//
$resp->sendResponse();
$req->close();