-
Notifications
You must be signed in to change notification settings - Fork 155
/
storage_uploader.php
79 lines (60 loc) · 2.39 KB
/
storage_uploader.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
<?php
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup UnaCore UNA Core
* @{
*/
require_once('./inc/header.inc.php');
$sUploaderObject = bx_process_input(bx_get('uo'));
$sStorageObject = bx_process_input(bx_get('so'));
$sUniqId = preg_match("/^[\d\w]+$/", bx_get('uid')) ? bx_get('uid') : '';
$isMultiple = bx_get('m') ? true : false;
$isLatest = bx_get('l') ? true : false;
$sFormat = bx_process_input(bx_get('f'));
if ($sFormat != 'html' && $sFormat != 'json')
$sFormat = 'html';
$iContentId = bx_get('c');
if (false === $iContentId || '' === $iContentId)
$iContentId = false;
else
$iContentId = bx_process_input($iContentId, BX_DATA_INT);
if (!$sUploaderObject || !$sStorageObject || !$sUniqId)
exit;
$isPrivate = (int)bx_get('p') ? 1 : 0;
$oUploader = BxDolUploader::getObjectInstance($sUploaderObject, $sStorageObject, $sUniqId);
if (!$oUploader) {
// no such uploader available
exit;
}
$sAction = bx_process_input(bx_get('a'));
switch ($sAction) {
case 'show_uploader_form':
header('Content-type: text/html; charset=utf-8');
require_once(BX_DIRECTORY_PATH_INC . "design.inc.php");
bx_import('BxDolLanguages');
echo $oUploader->getUploaderForm($isMultiple, $iContentId, $isPrivate);
break;
case 'restore_ghosts':
header('Content-Type: application/json; charset=utf-8');
$sImagesTranscoder = bx_process_input(bx_get('img_trans'));
echo $oUploader->getGhostsWithOrder((int)bx_get_logged_profile_id(), $sFormat, $sImagesTranscoder, $iContentId, $isLatest);
break;
case 'reorder_ghosts':
header('Content-Type: application/json; charset=utf-8');
$aGhosts = bx_process_input(bx_get('ghosts'));
echo $oUploader->reorderGhosts((int)bx_get_logged_profile_id(), $sFormat, $aGhosts, $iContentId);
break;
case 'delete':
header('Content-type: text/html; charset=utf-8');
$iFileId = bx_process_input(bx_get('id'), BX_DATA_INT);
echo $oUploader->deleteGhost($iFileId, bx_get_logged_profile_id());
break;
case 'upload':
header('Content-type: text/html; charset=utf-8');
bx_import('BxDolLanguages');
$oUploader->handleUploads(bx_get_logged_profile_id(), isset($_FILES['f']) ? $_FILES['f'] : null, $isMultiple, $iContentId, $isPrivate);
break;
}
/** @} */