ComunicAPI/RestControllers/likesController.php

73 lines
1.6 KiB
PHP
Raw Normal View History

2017-12-29 08:49:44 +00:00
<?php
/**
* API likes controller
*
* @author Pierre HUBERT
*/
class likesController {
/**
* Update a specific component like
*
* @url POST /likes/update
*/
public function update_like(){
user_login_required(); //Need login
//Get component kind
if(!isset($_POST["type"]))
Rest_fatal_error(401, "Please specify like type !");
$type = $_POST["type"];
//Check new status for the like
if(!isset($_POST['like']))
Rest_fatal_error(400, "Please specify the new like status with the request !");
$like = $_POST['like'] == "true";
//Find the right component type for checks
switch($type){
//In case of user
case "user":
//Extract informations
$id = getPostUserId("id");
$componentType = Likes::LIKE_USER;
//Check if user can access page
if(!CS::get()->components->user->userAllowed(userID, $id))
Rest_fatal_error(401, "You can not access this user information !");
break;
2018-01-04 16:42:40 +00:00
//In case of post
case "post":
//Extract informations
$id = getPostPostID("id");
$componentType = Likes::LIKE_POST;
//Check user can see the post
if(CS::get()->components->posts->access_level($id, userID) === Posts::NO_ACCESS)
Rest_fatal_error(401, "You are not allowed to access this post informations !");
break;
2017-12-29 08:49:44 +00:00
//Default case : error
default:
2018-01-04 16:42:40 +00:00
Rest_fatal_error(404, "Specifed component type currently not supported !");
2017-12-29 08:49:44 +00:00
}
//Update like status
CS::get()->components->likes->update(userID, $like, $id, $componentType);
//Success
return array("success" => "Like status updated.");
}
}