| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- include '../auth.php';
- ?>
- <?php
- header('Access-Control-Allow-Origin: *');
- header('Cache-Control: no-cache');
- header('Access-Control-Request-Headers: *');
- header('Access-Control-Allow-Headers: Content-Type');
- $ds = DIRECTORY_SEPARATOR;
- $dataarr = [];
- //Set storefolder to uploads/username
- if(isset($_POST['targetModule']) !== False){
- if (isset($_POST['extmode']) && $_POST['extmode'] != ""){
- //request upload to external storage devices
- $storeFolder = $_POST['extmode'] . "/" . $_POST['targetModule'] . "/";
- //
- }else{
- //Use default module folder instead
- $storeFolder = "../" . $_POST['targetModule'] . "/uploads/";
- }
- }else{
- echo 'Unset target Module.';
- http_response_code(404);
- die();
- }
- if(isset($_POST['filetype']) !== False && $_POST['filetype'] != ""){
- $rawformat = strtolower($_POST['filetype']);
- $allowtype = explode(",",$rawformat);
- $ext = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
- if (!in_array(strtolower($ext),$allowtype)){
- echo 'This format is not supported.';
- http_response_code(404);
- die();
- }
- }
- if (!empty($_FILES)) {
- $tempFile = $_FILES['file']['tmp_name'];
- if (strpos($storeFolder,"/media/") === 0){
- //Upload to external USB devices
- if (file_exists($storeFolder) == false){
- mkdir($storeFolder,0777);
- }
- $targetPath = $storeFolder;
- }else{
- //Uplaod to internal storage path
- $targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;
- }
- $ext = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
- //$ext = strtolower($ext)
- $filename = str_replace("." . $ext,"",$_FILES['file']['name']);
- //declare the PHP_VERSION_ID
- if (!defined('PHP_VERSION_ID')) {
- $version = explode('.', PHP_VERSION);
- define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2]));
- }
-
- //check if PHP was higher than 7.4, if true then not using inith filename
- if(PHP_VERSION_ID >= 70404){
- $targetFile = $targetPath.$filename.".".strtolower($ext);
- }else{
- $targetFile = $targetPath. "inith" . bin2hex($filename).".".strtolower($ext);
- }
- //$targetFile = $targetPath. "testt";
- move_uploaded_file($tempFile,$targetFile);
- header('Location: ' . "../" .$_POST['targetModule']);
- }else{
- echo 'Unknown Error.';
- http_response_code(404);
- die();
- }
- ?>
|