mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
20 lines
769 B
PHP
20 lines
769 B
PHP
<?php
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once '../videos/configuration.php';
|
|
}
|
|
require_once $global['systemRootPath'] . 'objects/like.php';
|
|
require_once $global['systemRootPath'] . 'objects/user.php';
|
|
require_once $global['systemRootPath'] . 'objects/comments_like.php';
|
|
header('Content-Type: application/json');
|
|
|
|
if (!empty($_GET['user']) && !empty($_GET['pass'])) {
|
|
$user = new User(0, $_GET['user'], $_GET['pass']);
|
|
$user->login(false, true);
|
|
}
|
|
if (empty($_POST['comments_id']) && !empty($_GET['comments_id'])) {
|
|
$_POST['comments_id'] = $_GET['comments_id'];
|
|
}
|
|
|
|
$like = new CommentsLike($_GET['like'], $_POST['comments_id']);
|
|
echo json_encode(CommentsLike::getLikes($_POST['comments_id']));
|