-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpc.php
115 lines (98 loc) · 3.34 KB
/
rpc.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
/***************************************************************************
*
* Nephthys - file sharing management
* Copyright (c) by Andreas Unterkircher, [email protected]
*
* This file is part of Nephthys.
*
* Nephthys 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.
*
* Nephthys 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 Nephthys. If not, see <http://www.gnu.org/licenses/>.
*
***************************************************************************/
require_once "nephthys.class.php";
class NEPHTHYS_RPC {
public function __construct()
{
session_start();
} // __construct()
public function process_ajax_request()
{
require_once 'HTML/AJAX/Server.php';
$server = new HTML_AJAX_Server();
$server->handleRequest();
/* was there only an init call, then stop */
if($_GET['mode'] == 'init' && $_GET['client'] == 'all')
return true;
define("RPC_CALL", uniqid());
$nephthys = new NEPHTHYS();
// if no action has been specified we are going to redirect
// this request to Nephthys start page.
if(!isset($_GET['action']) && !isset($_POST['action'])) {
Header("Location: ". $nephthys->cfg->web_path);
return;
}
if(isset($_GET['action']))
$action = $_GET['action'];
if(isset($_POST['action']))
$action = $_POST['action'];
switch($action) {
case 'get_content':
print $nephthys->get_content();
break;
case 'get_menu':
print $nephthys->get_menu();
break;
case 'store':
print $nephthys->store();
break;
case 'login':
print $nephthys->login();
break;
case 'logout':
print $nephthys->logout();
break;
case 'notifybucket':
print $nephthys->notifybucket();
break;
case 'deletebucket':
print $nephthys->delete_bucket();
break;
case 'validateemail':
if(isset($_POST['address']) && !empty($_POST['address']) && $nephthys->is_valid_email($_POST['address']))
print "ok";
else
print "failed";
break;
case 'sortorder':
print $nephthys->update_sort_order();
break;
case 'getxmllist':
print $nephthys->get_xml_list();
break;
case 'get_bucket_info':
print $nephthys->get_bucket_info();
break;
case 'filemgr':
print $nephthys->load_filemgr();
break;
default:
print "unkown action ". $action;
break;
}
} // process_ajax_request();
} // class NEPHTHYS_RPC
$rpc = new NEPHTHYS_RPC();
$rpc->process_ajax_request();
// vim: set filetype=php expandtab softtabstop=3 tabstop=3 shiftwidth=3 autoindent smartindent:
?>