103 lines
2.8 KiB
PHP
Executable File
103 lines
2.8 KiB
PHP
Executable File
<?php
|
|
|
|
// Cria as pastas do usuário
|
|
function create_user_dir($target_dir) {
|
|
$paths = array('', '/src', '/dest', '/thumbs');
|
|
foreach($paths as $path) {
|
|
file_exists($target_dir . $path) || mkdir($target_dir . $path, 0775, true);
|
|
}
|
|
}
|
|
|
|
// Checa a extensão do arquivo
|
|
function check_file_extension($target_file) {
|
|
$fileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
|
|
|
|
if ($fileType != '.mkv') {
|
|
echo "Apenas arquivos .mkv são aceitos. ";
|
|
exit(1);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
// Checa se o arquivo existe
|
|
function check_file_exists($brute_file) {
|
|
if (file_exists($brute_file)) {
|
|
echo "Sorry, file already exists.";
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
// Move uploaded file to correct dir
|
|
function upload($orig_file, $brute_file) {
|
|
|
|
if (!move_uploaded_file($orig_file, $brute_file)) {
|
|
echo "Houve um problema com o upload do arquivo.";
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
// Processa o vídeo com o script do flavio
|
|
function process_file($username, $title, $input_file, $output_file) {
|
|
$SCRIPT_PATH = '/var/www/src/AliceClass/script/script.sh';
|
|
|
|
$cmd = sprintf('%s "%s" "%s" "%s" "%s" "%s"',
|
|
$SCRIPT_PATH, $title, $username, $input_file, '', $output_file);
|
|
|
|
$output = shell_exec($cmd);
|
|
return 1;
|
|
}
|
|
|
|
function insert_into_db($username, $title, $desc, $level, $software, $date) {
|
|
|
|
include("library/json-db.class.php");
|
|
|
|
$db = new DB('/var/www/src/AliceClass/_data/aulas.json');
|
|
|
|
$data = array(
|
|
"title" => $title,
|
|
"user" => $username,
|
|
"nome" => $username,
|
|
"description" => $desc,
|
|
"date" => $date,
|
|
"software" => $software,
|
|
"level" => $level
|
|
);
|
|
|
|
$db->insert($data);
|
|
|
|
return 1;
|
|
}
|
|
|
|
function push_to_git() {
|
|
$git_cmd = '-c user.name="www-data" -c user.email="no-replay@example.org"'
|
|
shell_exec('cd /var/www/src/AliceClass;' . $git_cmd . 'add _data/aulas.json;' . $git_cmd . 'commit -m "update data";' . $git_cmd . 'push');
|
|
}
|
|
|
|
$username = $_SERVER['PHP_AUTH_USER'];
|
|
|
|
$video_title = $_POST["videoTitle"];
|
|
$video_desc = $_POST["videoDescription"];
|
|
$video_level = $_POST["level"];
|
|
$video_software = $_POST["software"];
|
|
$video_date = date('d/m/Y');
|
|
|
|
$orig_file = $_FILES["fileToUpload"]["tmp_name"];
|
|
$target_dir = "/var/www/html/aliceclass_videos/" . $username;
|
|
$brute_file = $target_dir . "/src/" . $video_title . '.mkv';
|
|
$target_file = $target_dir . "/dest/" . $video_title . '.mp4';
|
|
|
|
create_user_dir($target_dir); //|| echo error && exit;
|
|
check_file_extension($_FILES["fileToUpload"]["tmp_name"]); // || echo error && exit;
|
|
// !check_file_exists($brute_file) || echo error && exit;
|
|
upload($orig_file, $brute_file); //|| echo error && exit;
|
|
process_file($username, $video_title, $brute_file, $target_file); // || echo error && exit;
|
|
insert_into_db($username, $video_title, $video_desc, $video_level, $video_software, $video_date);
|
|
|
|
echo "The file ". htmlspecialchars(basename($orig_file)). " has been uploaded.";
|
|
?>
|