mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
73 lines
3 KiB
PHP
73 lines
3 KiB
PHP
<?php
|
|
header('Access-Control-Allow-Origin: *');
|
|
header("Access-Control-Allow-Headers: Content-Type");
|
|
header('Content-Type: application/json');
|
|
if (empty($global['systemRootPath'])) {
|
|
$global['systemRootPath'] = '../';
|
|
}
|
|
require_once $global['systemRootPath'] . 'videos/configuration.php';
|
|
require_once $global['systemRootPath'] . 'objects/user.php';
|
|
require_once 'comment.php';
|
|
require_once 'subscribe.php';
|
|
|
|
// gettig the mobile submited value
|
|
$inputJSON = file_get_contents('php://input');
|
|
$input = json_decode($inputJSON, TRUE); //convert JSON into array
|
|
if(!empty($input) && empty($_POST)){
|
|
foreach ($input as $key => $value) {
|
|
$_POST[$key]=$value;
|
|
}
|
|
}
|
|
if(!empty($_GET) && empty($_POST)){
|
|
$_POST = $_GET;
|
|
}
|
|
if(!empty($_POST['user']) && !empty($_POST['pass'])){
|
|
$user = new User(0, $_POST['user'], $_POST['pass']);
|
|
$user->login(false, true);
|
|
}
|
|
if(empty($_POST['playlists_id'])){
|
|
die('Play List can not be empty');
|
|
}
|
|
|
|
require_once './playlist.php';
|
|
$videos = PlayList::getVideosFromPlaylist($_POST['playlists_id']);
|
|
|
|
foreach ($videos as $key => $value) {
|
|
unset($videos[$key]['password']);
|
|
unset($videos[$key]['recoverPass']);
|
|
$videos[$key]['Poster'] = "{$global['webSiteRootURL']}videos/".$videos[$key]['filename'].".jpg";
|
|
$videos[$key]['Thumbnail'] = "{$global['webSiteRootURL']}videos/".$videos[$key]['filename']."_thumbs.jpg";
|
|
$videos[$key]['VideoUrl'] = getVideosURL($videos[$key]['filename']);
|
|
$videos[$key]['createdHumanTiming'] = humanTiming(strtotime($videos[$key]['created']));
|
|
$videos[$key]['pageUrl'] = "{$global['webSiteRootURL']}video/".$videos[$key]['clean_title'];
|
|
$videos[$key]['embedUrl'] = "{$global['webSiteRootURL']}videoEmbeded/".$videos[$key]['clean_title'];
|
|
unset($_POST['sort']);
|
|
unset($_POST['current']);
|
|
unset($_POST['searchPhrase']);
|
|
$_POST['rowCount'] = 10;
|
|
$_POST['sort']['created'] = "desc";
|
|
$videos[$key]['comments'] = Comment::getAllComments($videos[$key]['id']);
|
|
$videos[$key]['commentsTotal'] = Comment::getTotalComments($videos[$key]['id']);
|
|
foreach ($videos[$key]['comments'] as $key2 => $value2) {
|
|
$user = new User($value2['users_id']);
|
|
$videos[$key]['comments'][$key2]['userPhotoURL'] = User::getPhoto($videos[$key]['comments'][$key2]['users_id']);
|
|
$videos[$key]['comments'][$key2]['userName'] = $user->getNameIdentificationBd();
|
|
}
|
|
$videos[$key]['subscribers'] = Subscribe::getTotalSubscribes($videos[$key]['users_id']);
|
|
|
|
$videos[$key]['firstVideo'] = "";
|
|
foreach ($videos[$key]['VideoUrl'] as $value2) {
|
|
if($value2["type"] === 'video'){
|
|
$videos[$key]['firstVideo'] = $value2["url"];
|
|
break;
|
|
}
|
|
}
|
|
if(preg_match("/^videos/", $videos[$key]['photoURL'])){
|
|
$videos[$key]['UserPhoto'] = "{$global['webSiteRootURL']}".$videos[$key]['photoURL'];
|
|
}else{
|
|
$videos[$key]['UserPhoto'] = $videos[$key]['photoURL'];
|
|
}
|
|
|
|
}
|
|
|
|
echo json_encode($videos);
|