-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathservice.php
69 lines (61 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
68
69
<?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_APP_TYPE__", "PROVIDENCE");
define("__CA_IS_SERVICE_REQUEST__", true);
if (!file_exists('./setup.php')) { print "No setup.php file found!"; exit; }
require('./setup.php');
try {
// connect to database
$o_db = new Db(null, null, false);
$app = AppController::getInstance();
$g_request = $req = $app->getRequest();
$resp = $app->getResponse();
// Prevent caching
$resp->addHeader('Access-Control-Allow-Origin', '*');
$resp->addHeader('Access-Control-Allow-Methods', 'POST, GET, OPTIONS, DELETE, PUT');
$resp->addHeader('Access-Control-Max-Age', 1000);
$resp->addHeader('Access-Control-Allow-Headers', 'x-requested-with, Content-Type, origin, authorization, accept, client-security-token');
$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();
} catch(DatabaseException $e) {
$opa_error_messages = ["Could not connect to database. Check your database configuration in <em>setup.php</em>."];
require_once(__CA_BASE_DIR__."/themes/default/views/system/configuration_error_html.php");
exit();
} catch (Exception $e) {
caDisplayException($e);
}