forked from unacms/una
-
Notifications
You must be signed in to change notification settings - Fork 0
/
storage.php
59 lines (48 loc) · 1.41 KB
/
storage.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
<?php
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup UnaCore UNA Core
* @{
*/
//ob_start();
require_once('./inc/header.inc.php');
$sStorageObject = bx_process_input(bx_get('o'));
$sFile = bx_process_input(bx_get('f'));
$sToken = bx_process_input(bx_get('t'));
$oStorage = BxDolStorage::getObjectInstance($sStorageObject);
if (!$oStorage || !method_exists($oStorage, 'download')) {
ob_end_clean();
bx_storage_download_error_occured();
exit;
}
$i = strrpos($sFile, '.');
$sRemoteId = ($i !== false) ? substr($sFile, 0, $i) : $sFile;
if (!$sRemoteId) {
ob_end_clean();
bx_storage_download_error_occured();
exit;
}
//ob_end_clean();
if (!$oStorage->download($sRemoteId, $sToken)) {
$iError = $oStorage->getErrorCode();
switch ($iError) {
case BX_DOL_STORAGE_ERR_FILE_NOT_FOUND:
bx_storage_download_error_occured();
exit;
case BX_DOL_STORAGE_ERR_PERMISSION_DENIED:
bx_storage_download_error_occured('displayAccessDenied');
exit;
default:
bx_storage_download_error_occured('displayErrorOccured');
exit;
}
}
function bx_storage_download_error_occured($sMethod = 'displayPageNotFound')
{
require_once(BX_DIRECTORY_PATH_INC . "design.inc.php");
$oTemplate = BxDolTemplate::getInstance();
$oTemplate->$sMethod ();
}
/** @} */