2009-08-25 12:16:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author : Arslan Hassan
|
|
|
|
*/
|
|
|
|
include('../includes/config.inc.php');
|
|
|
|
|
2010-12-21 11:31:21 +00:00
|
|
|
|
2012-08-16 20:10:07 +00:00
|
|
|
|
2012-08-28 15:30:50 +00:00
|
|
|
if (isset($_REQUEST['upload']))
|
|
|
|
$mode = "upload";
|
|
|
|
|
|
|
|
if ($_POST['insertVideo'])
|
|
|
|
$mode = "insert_video";
|
|
|
|
if ($_POST['getForm'])
|
|
|
|
$mode = "get_form";
|
|
|
|
if ($_POST['updateVideo'] == 'yes')
|
|
|
|
$mode = "update_video";
|
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
switch ($mode)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
case "insert_video":
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$title = getName($_POST['title']);
|
2012-12-19 14:12:16 +00:00
|
|
|
$file_name = time() . RandomString(5);
|
|
|
|
|
2012-08-31 12:25:39 +00:00
|
|
|
$file_directory = createDataFolders();
|
2012-12-19 14:12:16 +00:00
|
|
|
|
2012-08-28 15:30:50 +00:00
|
|
|
$vidDetails = array
|
|
|
|
(
|
|
|
|
'title' => $title,
|
|
|
|
'description' => $title,
|
|
|
|
'tags' => genTags(str_replace(' ', ', ', $title)),
|
|
|
|
'category' => array($cbvid->get_default_cid()),
|
|
|
|
'file_name' => $file_name,
|
2012-08-31 12:25:39 +00:00
|
|
|
'file_directory' => $file_directory,
|
2012-08-28 15:30:50 +00:00
|
|
|
'userid' => userid(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$vid = $Upload->submit_upload($vidDetails);
|
2012-12-19 14:12:16 +00:00
|
|
|
|
|
|
|
if (error())
|
2012-12-19 13:24:47 +00:00
|
|
|
{
|
2013-01-01 16:57:40 +00:00
|
|
|
echo json_encode(array('err' => error()));
|
2012-12-19 14:12:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo json_encode(array('success' => 'yes',
|
|
|
|
'vid' => $vid, 'file_directory' => $file_directory,
|
|
|
|
'file_name' => $file_name));
|
2012-12-19 13:24:47 +00:00
|
|
|
}
|
2012-08-28 15:30:50 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
case "get_form":
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$title = getName($_POST['title']);
|
|
|
|
if (!$title)
|
|
|
|
$title = $_POST['title'];
|
|
|
|
$desc = $_POST['desc'];
|
|
|
|
$tags = $_POST['tags'];
|
|
|
|
|
|
|
|
if (!$desc)
|
|
|
|
$desc = $title;
|
|
|
|
if (!$tags)
|
|
|
|
$tags = $title;
|
|
|
|
|
|
|
|
$vidDetails = array
|
|
|
|
(
|
|
|
|
'title' => $title,
|
|
|
|
'description' => $desc,
|
|
|
|
'tags' => $tags,
|
|
|
|
'category' => array($cbvid->get_default_cid()),
|
|
|
|
);
|
|
|
|
|
|
|
|
assign("objId", $_POST['objId']);
|
|
|
|
|
|
|
|
assign('input', $vidDetails);
|
|
|
|
Template('blocks/upload/form.html');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
case "upload":
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-20 12:33:53 +00:00
|
|
|
$status_array = array();
|
2012-08-28 15:30:50 +00:00
|
|
|
|
|
|
|
// HTTP headers for no cache etc
|
|
|
|
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
|
|
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
|
|
|
|
header("Cache-Control: no-store, no-cache, must-revalidate");
|
|
|
|
header("Cache-Control: post-check=0, pre-check=0", false);
|
|
|
|
header("Pragma: no-cache");
|
|
|
|
|
2012-12-19 13:24:47 +00:00
|
|
|
//pr($_REQUEST);
|
2012-08-28 15:30:50 +00:00
|
|
|
$targetDir = TEMP_DIR;
|
|
|
|
|
|
|
|
$cleanupTargetDir = true; // Remove old files
|
|
|
|
$maxFileAge = 5 * 3600; // Temp file age in seconds
|
|
|
|
@set_time_limit(5 * 60);
|
|
|
|
|
|
|
|
$chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
|
|
|
|
$chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 0;
|
|
|
|
$fileName = isset($_REQUEST["name"]) ? $_REQUEST["name"] : '';
|
|
|
|
|
|
|
|
// Clean the fileName for security reasons
|
|
|
|
$fileName = preg_replace('/[^\w\._]+/', '_', $fileName);
|
|
|
|
|
|
|
|
// Make sure the fileName is unique but only if chunking is disabled
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($chunks < 2 && file_exists($targetDir . DIRECTORY_SEPARATOR . $fileName))
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$ext = strrpos($fileName, '.');
|
|
|
|
$fileName_a = substr($fileName, 0, $ext);
|
|
|
|
$fileName_b = substr($fileName, $ext);
|
|
|
|
|
|
|
|
$count = 1;
|
|
|
|
while (file_exists($targetDir . DIRECTORY_SEPARATOR . $fileName_a . '_' . $count . $fileName_b))
|
|
|
|
$count++;
|
|
|
|
|
|
|
|
$fileName = $fileName_a . '_' . $count . $fileName_b;
|
|
|
|
}
|
|
|
|
|
|
|
|
$filePath = $targetDir . DIRECTORY_SEPARATOR . $fileName;
|
|
|
|
|
|
|
|
// Create target dir
|
|
|
|
if (!file_exists($targetDir))
|
|
|
|
@mkdir($targetDir);
|
|
|
|
|
|
|
|
// Remove old temp files
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($cleanupTargetDir && is_dir($targetDir) && ($dir = opendir($targetDir)))
|
|
|
|
{
|
|
|
|
while (($file = readdir($dir)) !== false)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$tmpfilePath = $targetDir . DIRECTORY_SEPARATOR . $file;
|
|
|
|
|
|
|
|
// Remove temp file if it is older than the max age and is not the current file
|
2012-12-19 14:12:16 +00:00
|
|
|
if (preg_match('/\.part$/', $file) && (filemtime($tmpfilePath) < time() - $maxFileAge) && ($tmpfilePath != "{$filePath}.part"))
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
@unlink($tmpfilePath);
|
|
|
|
}
|
2012-07-16 12:01:09 +00:00
|
|
|
}
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2012-08-28 15:30:50 +00:00
|
|
|
closedir($dir);
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"}');
|
|
|
|
|
|
|
|
|
|
|
|
// Look for the content type header
|
|
|
|
if (isset($_SERVER["HTTP_CONTENT_TYPE"]))
|
|
|
|
$contentType = $_SERVER["HTTP_CONTENT_TYPE"];
|
|
|
|
|
|
|
|
if (isset($_SERVER["CONTENT_TYPE"]))
|
|
|
|
$contentType = $_SERVER["CONTENT_TYPE"];
|
|
|
|
|
|
|
|
// Handle non multipart uploads older WebKit versions didn't support multipart in HTML5
|
2012-12-19 14:12:16 +00:00
|
|
|
if (strpos($contentType, "multipart") !== false)
|
|
|
|
{
|
|
|
|
if (isset($_FILES['file']['tmp_name']) && is_uploaded_file($_FILES['file']['tmp_name']))
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
// Open temp file
|
|
|
|
$out = fopen("{$filePath}.part", $chunk == 0 ? "wb" : "ab");
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($out)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
// Read binary input stream and append it to temp file
|
|
|
|
$in = fopen($_FILES['file']['tmp_name'], "rb");
|
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($in)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
while ($buff = fread($in, 4096))
|
|
|
|
fwrite($out, $buff);
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
|
|
|
|
fclose($in);
|
|
|
|
fclose($out);
|
|
|
|
@unlink($_FILES['file']['tmp_name']);
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}');
|
2012-12-19 14:12:16 +00:00
|
|
|
} else
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
// Open temp file
|
|
|
|
$out = fopen("{$filePath}.part", $chunk == 0 ? "wb" : "ab");
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($out)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
// Read binary input stream and append it to temp file
|
|
|
|
$in = fopen("php://input", "rb");
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
if ($in)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
while ($buff = fread($in, 4096))
|
|
|
|
fwrite($out, $buff);
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
|
|
|
|
|
|
|
|
fclose($in);
|
|
|
|
fclose($out);
|
|
|
|
} else
|
|
|
|
die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if file has been uploaded
|
2012-12-19 14:12:16 +00:00
|
|
|
if (!$chunks || $chunk == $chunks - 1)
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
// Strip the temp .part suffix off
|
|
|
|
rename("{$filePath}.part", $filePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Return JSON-RPC response
|
|
|
|
//die('{"jsonrpc" : "2.0", "result" : null, "id" : "id"}');
|
|
|
|
//move_uploaded_file($tempFile, $targetFile);
|
2012-08-31 12:25:39 +00:00
|
|
|
$file_name = $_REQUEST['file_name'];
|
2012-08-28 15:30:50 +00:00
|
|
|
$targetFileName = $file_name . '.' . getExt($filePath);
|
|
|
|
$targetFile = TEMP_DIR . "/" . $targetFileName;
|
2012-12-19 14:12:16 +00:00
|
|
|
|
|
|
|
rename($filePath, $targetFile);
|
|
|
|
|
2012-08-31 12:25:39 +00:00
|
|
|
$fileDir = $_REQUEST['file_directory'];
|
2012-12-19 14:12:16 +00:00
|
|
|
$Upload->add_conversion_queue($targetFileName, $fileDir);
|
2012-12-20 12:33:53 +00:00
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
//exec(php_path()." -q ".BASEDIR."/actions/video_convert.php &> /dev/null &");
|
|
|
|
if (stristr(PHP_OS, 'WIN'))
|
|
|
|
{
|
|
|
|
exec(php_path() . " -q " . BASEDIR . "/actions/video_convert.php $targetFileName");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-12-21 07:11:27 +00:00
|
|
|
$status_array['rickshaw'] = 'videoconvert';
|
2012-12-19 14:12:16 +00:00
|
|
|
exec(php_path() . " -q " . BASEDIR . "/actions/video_convert.php $targetFileName &> /dev/null &");
|
|
|
|
}
|
2012-12-20 12:33:53 +00:00
|
|
|
|
|
|
|
$status_array['success'] = 'yes';
|
|
|
|
$status_array['file_name'] = $file_name;
|
2012-12-19 14:12:16 +00:00
|
|
|
|
2012-12-20 12:33:53 +00:00
|
|
|
echo json_encode($status_array);
|
2012-08-28 15:30:50 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2012-12-19 14:12:16 +00:00
|
|
|
case "update_video":
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$Upload->validate_video_upload_form();
|
|
|
|
$_POST['videoid'] = trim($_POST['videoid']);
|
2012-12-19 14:12:16 +00:00
|
|
|
if (empty($eh->error_list))
|
|
|
|
{
|
2012-08-28 15:30:50 +00:00
|
|
|
$cbvid->update_video();
|
|
|
|
}
|
|
|
|
if (error())
|
|
|
|
echo json_encode(array('error' => error('single')));
|
|
|
|
else
|
|
|
|
echo json_encode(array('msg' => msg('single')));
|
|
|
|
}
|
2009-08-25 12:16:42 +00:00
|
|
|
}
|
|
|
|
?>
|