diff --git a/plugin/MobileManager/upload.php b/plugin/MobileManager/upload.php index 1bf527e6d..9a56b0ec4 100644 --- a/plugin/MobileManager/upload.php +++ b/plugin/MobileManager/upload.php @@ -1,110 +1,113 @@ error = true; $object->videos_id = 0; if (!User::canUpload() && (empty($_GET['user']) || empty($_GET['pass']))) { $object->msg = "You need a user"; die(json_encode($object)); } $user = $_GET['user']; $password = $_GET['pass']; $userObj = new User(0, $user, $password); $userObj->login(false, true); if (!User::canUpload()) { $object->msg = "You can not upload"; die(json_encode($object)); } // A list of permitted file extensions $allowed = array('mp4', 'avi', 'mov', 'mkv', 'flv', 'mp3', 'wav', 'm4v', 'webm', 'wmv', 'mpg', 'mpeg', 'f4v', 'm4v', 'm4a', 'm2p', 'rm', 'vob', 'mkv', 'jpg', 'jpeg', 'gif', 'png', 'webp'); _error_log("MOBILE UPLOAD: Starts"); if (isset($_FILES['upl']) && $_FILES['upl']['error'] == 0) { $extension = pathinfo($_FILES['upl']['name'], PATHINFO_EXTENSION); if (!in_array(strtolower($extension), $allowed)) { $object->msg = "File extension error (" . $_FILES['upl']['name'] . "), we allow only (" . implode(",", $allowed) . ")"; _error_log("MOBILE UPLOAD: {$object->msg}"); die(json_encode($object)); } //chack if is an audio $type = "video"; if (strcasecmp($extension, 'mp3') == 0 || strcasecmp($extension, 'wav') == 0) { $type = 'audio'; } require_once $global['systemRootPath'] . 'objects/video.php'; $duration = Video::getDurationFromFile($_FILES['upl']['tmp_name']); // check if can upload video (about time limit storage) if (!empty($global['videoStorageLimitMinutes'])) { $maxDuration = $global['videoStorageLimitMinutes'] * 60; $currentStorageUsage = getSecondsTotalVideosLength(); $thisFile = parseDurationToSeconds($duration); $limitAfterThisFile = $currentStorageUsage + $thisFile; if ($maxDuration < $limitAfterThisFile) { $object->msg = "Sorry, your storage limit has run out." . "
[Max Duration: {$maxDuration} Seconds]" . "
[Current Srotage Usage: {$currentStorageUsage} Seconds]" . "
[This File Duration: {$thisFile} Seconds]" . "
[Limit after this file: {$limitAfterThisFile} Seconds]"; if (!empty($_FILES['upl']['videoId'])) { $video = new Video("", "", $_FILES['upl']['videoId']); $video->delete(); } _error_log("MOBILE UPLOAD: {$object->msg}"); die(json_encode($object)); } } $mainName = preg_replace("/[^A-Za-z0-9]/", "", cleanString($_FILES['upl']['name'])); $paths = Video::getNewVideoFilename(); $filename = $paths['filename']; $video = new Video(preg_replace("/_+/", " ", $_FILES['upl']['name']), $filename, 0); $video->setDuration($duration); if ($type == 'audio') { $video->setType($type); } else { $video->setType("video"); } if(!empty($_REQUEST['title'])){ $video->setTitle($_REQUEST['title']); } if(!empty($_REQUEST['description'])){ $video->setDescription($_REQUEST['description']); } if(!empty($_REQUEST['categories_id'])){ $video->setCategories_id($_REQUEST['categories_id']); } if(!empty($_REQUEST['can_share'])) { $video->setCan_share($_REQUEST['can_share']); } + if(!empty($_REQUEST['video_password'])) { + $video->setVideo_password($_REQUEST['video_password']); + } $video->setStatus(Video::$statusEncoding); if (!move_uploaded_file($_FILES['upl']['tmp_name'], Video::getStoragePath()."original_" . $filename)) { $object->msg = "Error on move_uploaded_file(" . $_FILES['upl']['tmp_name'] . ", " . Video::getStoragePath()."original_" . $filename . ")"; _error_log("MOBILE UPLOAD ERROR: ". json_encode($object)); die(json_encode($object)); } $object->videos_id = $video->save(); $video->queue(); $object->error = false; $object->msg = "We sent your video to the encoder"; _error_log("MOBILE SUCCESS UPLOAD: ". json_encode($object)); die(json_encode($object)); } else { _error_log("MOBILE UPLOAD: File Not exists - " . json_encode($_FILES)); }