forked from causefx/Organizr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax.php
executable file
·229 lines (223 loc) · 8.38 KB
/
ajax.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
// Include functions and user
require_once('functions.php');
require_once("user.php");
$GLOBALS['USER'] = new User('registration_callback');
// Upgrade environment
upgradeCheck();
// Lazyload settings
$databaseConfig = configLazy('config/config.php');
// Get Action
if (isset($_POST['submit'])) { $action = $_POST['submit']; }
if (isset($_POST['action'])) { $action = $_POST['action']; }
if (isset($_GET['action'])) { $action = $_GET['action']; }
if (isset($_GET['a'])) { $action = $_GET['a']; }
unset($_POST['action']);
// No Action
if (!isset($action)) {
sendNotification(false, 'No Action Specified!');
}
// Process Request
$response = array();
switch ($_SERVER['REQUEST_METHOD']) {
case 'GET':
switch ($action) {
case 'get-backups':
qualifyUser("admin", true);
$response = implode("\n",getBackups());
break;
case 'get-calendar':
echo json_encode(getCalendar());
die();
break;
case 'get-ping':
echo getPing($_GET['url'], $_GET['style'], true);
die();
break;
case 'show-file':
$auth = ($_SERVER['HTTP_REFERER'] ? true : false);
if ($auth === false) { die("WTF? Bro! This is an internal function only"); }
showFile();
die();
break;
case 'emby-image':
qualifyUser(EMBYHOMEAUTH, true);
getEmbyImage();
die();
break;
case 'plex-image':
qualifyUser(PLEXHOMEAUTH, true);
getPlexImage();
die();
break;
case 'emby-streams':
qualifyUser(EMBYHOMEAUTH, true);
echo getEmbyStreams(12, EMBYSHOWNAMES, $GLOBALS['USER']->role);
die();
break;
case 'plex-streams':
qualifyUser(PLEXHOMEAUTH, true);
echo getPlexStreams(12, PLEXSHOWNAMES, $GLOBALS['USER']->role);
die();
break;
case 'emby-recent':
qualifyUser(EMBYHOMEAUTH, true);
echo getEmbyRecent($_GET['type'], 12);
die();
break;
case 'plex-recent':
qualifyUser(PLEXHOMEAUTH, true);
echo getPlexRecent(array("movie" => PLEXRECENTMOVIE, "season" => PLEXRECENTTV, "album" => PLEXRECENTMUSIC));
die();
break;
case 'sabnzbd-update':
qualifyUser(SABNZBDHOMEAUTH, true);
echo sabnzbdConnect($_GET['list'] ? $_GET['list'] : die('Error!'));
die();
break;
case 'nzbget-update':
qualifyUser(NZBGETHOMEAUTH, true);
echo nzbgetConnect($_GET['list'] ? $_GET['list'] : die('Error!'));
die();
break;
case 'show-image':
qualifyUser(NZBGETHOMEAUTH, true);
header('Content-type: image/jpeg');
echo file_get_contents($_GET['image']);
die();
break;
default:
sendNotification(false, 'Unsupported Action!');
}
break;
case 'POST':
// Check if the user is an admin and is allowed to commit values
switch ($action) {
case 'tvdb-get':
$response = tvdbGet($_POST['id']);
break;
case 'tvdb-search':
$response = tvdbSearch($_POST['name'], $_POST['type']);
break;
case 'search-plex':
$response = searchPlex($_POST['searchtitle']);
break;
case 'validate-invite':
$response = inviteCodes("check", $_POST['invitecode']);
$response['notify'] = sendResult($response, "check", $_POST['checkurl'], "CODE_SUCCESS", "CODE_ERROR");
break;
case 'use-invite':
if(inviteCodes("check", $_POST['invitecode'])){
$response = inviteCodes("use", $_POST['invitecode'], $_POST['inviteuser']);
$response['notify'] = sendResult(plexUserShare($_POST['inviteuser']), "check", $_POST['checkurl'], "INVITE_SUCCESS", "INVITE_ERROR");
}
break;
case 'join-plex':
$response = plexJoin($_POST['joinuser'], $_POST['joinemail'], $_POST['joinpassword']);
$response['notify'] = sendResult($response, "check", $_POST['checkurl'], "JOIN_SUCCESS", "JOIN_ERROR");
break;
default: // Stuff that you need admin for
qualifyUser('admin', true);
switch ($action) {
case 'get-emails':
$response = printEmails(getEmails($_POST['type']));
break;
case 'mass-email':
massEmail($_POST['emailto'],$_POST['emailsubject'],$_POST['emailmessage']);
$response['notify'] = sendNotification(true, 'E-Mail Sent', false);
break;
case 'test-email':
sendResult(sendTestEmail($_POST['emailto'], $_POST['emailsenderemail'], $_POST['emailhost'], $_POST['emailauth'], $_POST['emailusername'], $_POST['emailpassword'], $_POST['emailtype'], $_POST['emailport'], $_POST['emailsendername']), "flask", "E-Mail TEST", "SUCCESS", "ERROR");
break;
case 'check-url':
sendResult(frameTest($_POST['checkurl']), "flask", $_POST['checkurl'], "IFRAME_CAN_BE_FRAMED", "IFRAME_CANNOT_BE_FRAMED");
break;
case 'backup-now':
sendResult(backupDB(), "database", "Backup", "BACKUP_CREATED", "BACKUP_ERROR");
break;
case 'upload-images':
uploadFiles('images/', array('jpg', 'png', 'svg', 'jpeg', 'bmp', 'gif'));
sendNotification(true);
break;
case 'upload-avatar':
uploadAvatar(USER_HOME.$GLOBALS['USER']->username.'/', array('jpg', 'png', 'svg', 'jpeg', 'bmp', 'gif'));
sendNotification(true);
break;
case 'remove-images':
removeFiles('images/'.(isset($_POST['file'])?$_POST['file']:''));
sendNotification(true);
break;
case 'update-config':
$response['notify'] = sendNotification(updateConfig($_POST));
$response['show_apply'] = true;
break;
case 'update-appearance':
// Custom CSS Special Case START
if (isset($_POST['customCSS'])) {
if ($_POST['customCSS']) {
write_ini_file($_POST['customCSS'], 'custom.css');
} else {
unlink('custom.css');
}
$response['notify'] = sendNotification(true,false,false);
$response['show_apply'] = true;
}
unset($_POST['customCSS']);
// Custom CSS Special Case END
if (!empty($_POST)) {
$response['notify'] = sendNotification(updateDBOptions($_POST),false,false);
$response['show_apply'] = true;
}
break;
case 'deleteDB':
deleteDatabase();
sendNotification(true, 'Database Deleted!');
break;
case 'upgradeInstall':
upgradeInstall();
$response['notify'] = sendNotification(true, 'Performing Checks', false);
$response['tab']['goto'] = 'updatedb.php';
break;
case 'forceBranchInstall':
upgradeInstall(GIT_BRANCH);
$response['notify'] = sendNotification(true, 'Performing Checks', false);
$response['tab']['goto'] = 'updatedb.php';
break;
case 'deleteLog':
$response['notify'] = sendNotification(unlink(FAIL_LOG));
$response['show_apply'] = true;
break;
case 'deleteChat':
$response['notify'] = sendNotification(unlink("chatpack.db"));
$response['show_apply'] = true;
$response['reload'] = true;
break;
case 'deleteOrgLog':
$response['notify'] = sendNotification(unlink("org.log"));
$response['show_apply'] = true;
break;
case 'submit-tabs':
$response['notify'] = sendNotification(updateTabs($_POST) , false, false);
$response['show_apply'] = true;
break;
default:
sendNotification(false, 'Unsupported Action!');
}
}
break;
case 'PUT':
sendNotification(false, 'Unsupported Action!');
break;
case 'DELETE':
sendNotification(false, 'Unsupported Action!');
break;
default:
sendNotification(false, 'Unknown Request Type!');
}
if ($response) {
header('Content-Type: application/json');
echo json_encode($response);
die();
} else {
sendNotification(false, 'Error: No Output Specified!');
}