1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
This commit is contained in:
Daniel Neto 2023-07-05 17:06:40 -03:00
parent 04f1b34b8a
commit 213874cbeb

View file

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