芝麻web文件管理V1.00
编辑当前文件:/home/asmplong/www/admin/js/filemanager/ajax_calls.php
send(); exit; } if (isset($_SESSION['RF']['language_file']) && file_exists($_SESSION['RF']['language_file'])) { include $_SESSION['RF']['language_file']; } else { response('Language file is missing!', 500)->send(); exit; } if(isset($_GET['action'])) { switch($_GET['action']) { case 'view': if(isset($_GET['type'])) { $_SESSION['RF']["view_type"] = $_GET['type']; } else { response('view type number missing', 400)->send(); exit; } break; case 'filter': if (isset($_GET['type'])) { if (isset($remember_text_filter) && $remember_text_filter) { $_SESSION['RF']["filter"] = $_GET['type']; } } else { response('view type number missing', 400); exit; } break; case 'sort': if (isset($_GET['sort_by'])) { $_SESSION['RF']["sort_by"] = $_GET['sort_by']; } if (isset($_GET['descending'])) { $_SESSION['RF']["descending"] = $_GET['descending'] === "TRUE"; } break; case 'image_size': // not used $pos = strpos($_POST['path'], $upload_dir); if ($pos !== false) { $info = getimagesize(substr_replace($_POST['path'], $current_path, $pos, strlen($upload_dir))); response($info)->send(); exit; } break; case 'save_img': $info = pathinfo($_POST['name']); if ( strpos($_POST['path'], '/') === 0 || strpos($_POST['path'], '../') !== false || strpos($_POST['path'], './') === 0 || (strpos($_POST['url'], 'http://s3.amazonaws.com/feather') !== 0 && strpos($_POST['url'], 'https://s3.amazonaws.com/feather') !== 0) || $_POST['name'] != fix_filename($_POST['name'], $transliteration, $convert_spaces, $replace_with) || ! in_array(strtolower($info['extension']), array( 'jpg', 'jpeg', 'png' )) ) { response('wrong data', 400)->send(); exit; } $image_data = get_file_by_url($_POST['url']); if ($image_data === false) { response(trans('Aviary_No_Save'), 400)->send(); exit; } file_put_contents($current_path . $_POST['path'] . $_POST['name'],$image_data); create_img($current_path . $_POST['path'] . $_POST['name'], $thumbs_base_path.$_POST['path'].$_POST['name'], 122, 91); // TODO something with this function cause its blowing my mind new_thumbnails_creation( $current_path.$_POST['path'], $current_path.$_POST['path'].$_POST['name'], $_POST['name'], $current_path, $relative_image_creation, $relative_path_from_current_pos, $relative_image_creation_name_to_prepend, $relative_image_creation_name_to_append, $relative_image_creation_width, $relative_image_creation_height, $relative_image_creation_option, $fixed_image_creation, $fixed_path_from_filemanager, $fixed_image_creation_name_to_prepend, $fixed_image_creation_to_append, $fixed_image_creation_width, $fixed_image_creation_height, $fixed_image_creation_option ); break; case 'extract': if (strpos($_POST['path'], '/') === 0 || strpos($_POST['path'], '../') !== false || strpos($_POST['path'], './') === 0) { response('wrong path', 400)->send(); exit; } $path = $current_path . $_POST['path']; $info = pathinfo($path); $base_folder = $current_path . fix_dirname($_POST['path']) . "/"; switch ($info['extension']) { case "zip": $zip = new ZipArchive; if ($zip->open($path) === true) { //make all the folders for ($i = 0; $i < $zip->numFiles; $i++) { $OnlyFileName = $zip->getNameIndex($i); $FullFileName = $zip->statIndex($i); if (substr($FullFileName['name'], -1, 1) == "/") { create_folder($base_folder . $FullFileName['name']); } } //unzip into the folders for ($i = 0; $i < $zip->numFiles; $i++) { $OnlyFileName = $zip->getNameIndex($i); $FullFileName = $zip->statIndex($i); if ( ! (substr($FullFileName['name'], -1, 1) == "/")) { $fileinfo = pathinfo($OnlyFileName); if (in_array(strtolower($fileinfo['extension']), $ext)) { copy('zip://' . $path . '#' . $OnlyFileName, $base_folder . $FullFileName['name']); } } } $zip->close(); } else { response(trans('Zip_No_Extract'), 500)->send(); exit; } break; case "gz": $p = new PharData($path); $p->decompress(); // creates files.tar break; case "tar": // unarchive from the tar $phar = new PharData($path); $phar->decompressFiles(); $files = array(); check_files_extensions_on_phar($phar, $files, '', $ext); $phar->extractTo($current_path . fix_dirname($_POST['path']) . "/", $files, true); break; default: response(trans('Zip_Invalid'), 400)->send(); exit; } break; case 'media_preview': $preview_file = $current_path . $_GET["file"]; $info = pathinfo($preview_file); ob_start(); ?>
play
play
pause
stop
mute
unmute
max volume
full screen
restore screen
repeat
repeat off
Update Required
To play the media you will need to either update your browser to a recent version or update your
Flash plugin
.
send(); exit; break; case 'copy_cut': if ($_POST['sub_action'] != 'copy' && $_POST['sub_action'] != 'cut') { response('wrong sub-action', 400)->send(); exit; } if (trim($_POST['path']) == '') { response('no path', 400)->send(); exit; } $path = $current_path . $_POST['path']; if (is_dir($path)) { // can't copy/cut dirs if ($copy_cut_dirs === false) { response(sprintf(trans('Copy_Cut_Not_Allowed'), ($_POST['sub_action'] == 'copy' ? lcfirst(trans('Copy')) : lcfirst(trans('Cut'))), trans('Folders')), 403)->send(); exit; } // size over limit if ($copy_cut_max_size !== false && is_int($copy_cut_max_size)) { list($sizeFolderToCopy,$fileNum,$foldersCount) = folder_info($path); if (($copy_cut_max_size * 1024 * 1024) < $sizeFolderToCopy) { response(sprintf(trans('Copy_Cut_Size_Limit'), ($_POST['sub_action'] == 'copy' ? lcfirst(trans('Copy')) : lcfirst(trans('Cut'))), $copy_cut_max_size), 400)->send(); exit; } } // file count over limit if ($copy_cut_max_count !== false && is_int($copy_cut_max_count)) { if ($copy_cut_max_count < filescount($path)) { response(sprintf(trans('Copy_Cut_Count_Limit'), ($_POST['sub_action'] == 'copy' ? lcfirst(trans('Copy')) : lcfirst(trans('Cut'))), $copy_cut_max_count), 400)->send(); exit; } } } else { // can't copy/cut files if ($copy_cut_files === false) { response(sprintf(trans('Copy_Cut_Not_Allowed'), ($_POST['sub_action'] == 'copy' ? lcfirst(trans('Copy')) : lcfirst(trans('Cut'))), trans('Files')), 403)->send(); exit; } } $_SESSION['RF']['clipboard']['path'] = $_POST['path']; $_SESSION['RF']['clipboard_action'] = $_POST['sub_action']; break; case 'clear_clipboard': $_SESSION['RF']['clipboard'] = null; $_SESSION['RF']['clipboard_action'] = null; break; case 'chmod': $path = $current_path . $_POST['path']; if ( (is_dir($path) && $chmod_dirs === false) || (is_file($path) && $chmod_files === false) || (is_function_callable("chmod") === false) ) { response(sprintf(trans('File_Permission_Not_Allowed'), (is_dir($path) ? lcfirst(trans('Folders')) : lcfirst(trans('Files'))), 403), 400)->send(); exit; } else { $perm = decoct(fileperms($path) & 0777); $perm_user = substr($perm, 0, 1); $perm_group = substr($perm, 1, 1); $perm_all = substr($perm, 2, 1); $ret = '
r
w
x
'.trans('User').'
'.trans('Group').'
'.trans('All').'
'; if (is_dir($path)) { $ret .= '
'.trans('File_Permission_Recursive').'
'.trans('No').'
'.trans('Files').'
'.trans('Folders').'
'.trans('Files').' & '.trans('Folders').'
'; } $ret .= '
'; response($ret)->send(); exit; } break; case 'get_lang': if ( ! file_exists('lang/languages.php')) { response(trans('Lang_Not_Found'), 404)->send(); exit; } $languages = include 'lang/languages.php'; if ( ! isset($languages) || ! is_array($languages)) { response(trans('Lang_Not_Found'), 404)->send(); exit; } $curr = $_SESSION['RF']['language']; $ret = '
'; foreach ($languages as $code => $name) { $ret .= '
' . $name . '
'; } $ret .= '
'; response($ret)->send(); exit; break; case 'change_lang': $choosen_lang = $_POST['choosen_lang']; if ( ! file_exists('lang/' . $choosen_lang . '.php')) { response(trans('Lang_Not_Found'), 404)->send(); exit; } $_SESSION['RF']['language'] = $choosen_lang; $_SESSION['RF']['language_file'] = 'lang/' . $choosen_lang . '.php'; break; case 'get_file': // preview or edit $sub_action = $_GET['sub_action']; $preview_mode = $_GET["preview_mode"]; if ($sub_action != 'preview' && $sub_action != 'edit') { response("wrong action")->send(); exit; } $selected_file = ($sub_action == 'preview' ? $current_path . $_GET['file'] : $current_path . $_POST['path']); $info = pathinfo($selected_file); if ( ! file_exists($selected_file)) { response(trans('File_Not_Found'), 404)->send(); exit; } if ($preview_mode == 'text') { $is_allowed = ($sub_action == 'preview' ? $preview_text_files : $edit_text_files); $allowed_file_exts = ($sub_action == 'preview' ? $previewable_text_file_exts : $editable_text_file_exts); } elseif ($preview_mode == 'viewerjs') { $is_allowed = $viewerjs_enabled; $allowed_file_exts = $viewerjs_file_exts; } elseif ($preview_mode == 'google') { $is_allowed = $googledoc_enabled; $allowed_file_exts = $googledoc_file_exts; } if ( ! isset($allowed_file_exts) || ! is_array($allowed_file_exts)) { $allowed_file_exts = array(); } if ( ! in_array($info['extension'], $allowed_file_exts) || ! isset($is_allowed) || $is_allowed === false || ! is_readable($selected_file) ) { response(sprintf(trans('File_Open_Edit_Not_Allowed'), ($sub_action == 'preview' ? strtolower(trans('Open')) : strtolower(trans('Edit')))), 403)->send(); exit; } echo $sub_action ; echo $preview_mode; if ($sub_action == 'preview') { if ($preview_mode == 'text') { // get and sanities $data = stripslashes(htmlspecialchars(file_get_contents($selected_file))); $ret = ''; if ( ! in_array($info['extension'],$previewable_text_file_exts_no_prettify)) { $ret .= ''; $ret .= '
'.$info['basename'].'
'.$data.'
'; } else { $ret .= '
'.$info['basename'].'
'.$data.'
'; } } elseif ($preview_mode == 'viewerjs') { $ret = '
'; } elseif ($preview_mode == 'google') { $url_file = $base_url . $upload_dir . str_replace($current_path, '', $_GET["file"]); $googledoc_url = urlencode($url_file); $googledoc_html = "
"; $ret = '
' . $info['basename'] . '
' . $googledoc_html . ''; } } else { $data = stripslashes(htmlspecialchars(file_get_contents($selected_file))); $ret = '
'.$data.'</textarea>'; } response($ret)->send(); exit; break; default: response('no action passed', 400)->send(); exit; } } else { response('no action passed', 400)->send(); exit; }