1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00
Oinktube/objects/playlistRename.php
DanielnetoDotCom 20c17ce500 Some CSS fixes
2020-10-02 11:54:42 -03:00

39 lines
1,002 B
PHP

<?php
header('Content-Type: application/json');
global $global, $config;
if(!isset($global['systemRootPath'])){
require_once '../videos/configuration.php';
}
$obj = new stdClass();
$obj->error = true;
$obj->msg = '';
$obj->name = '';
if (empty($_REQUEST['playlist_id'])) {
$obj->msg = "playlist_id cannot be empty";
die(json_encode($obj));
}
if (empty($_REQUEST['name'])) {
$obj->msg = "name cannot be empty";
die(json_encode($obj));
}
$obj->name = $_REQUEST['name'];
require_once $global['systemRootPath'] . 'objects/user.php';
require_once $global['systemRootPath'] . 'objects/playlist.php';
if (!User::isLogged()) {
$obj->msg = __("Permission denied");
die(json_encode($obj));
}
$playList = new PlayList($_REQUEST['playlist_id']);
if(!User::isAdmin() && User::getId() != $playList->getUsers_id()){
$obj->msg = __("Permission denied");
die(json_encode($obj));
}
$playList->setName($obj->name);
$obj->error = empty($playList->save());
die(json_encode($obj));