init follow api

This commit is contained in:
ghost 2021-12-30 20:38:16 +02:00
parent 033a72052f
commit f5f294bc90
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<?php
$response = [
'success' => false,
'message' => _('Internal server error'),
'total' => 0
];
if (isset($_SESSION['userName'])) {
$userName = isset($_POST['userName']) ? $_POST['userName'] : $_SESSION['userName'];
$followingUsersTotal = 0;
foreach ((array) $_twister->getFollowing($_SESSION['userName']) as $followingUserName) {
$followingUsersTotal++;
}
$response = [
'success' => true,
'message' => _('Follow totals received'),
'total' => $followingUsersTotal
];
} else {
$response = [
'success' => false,
'message' => _('Session expired. Please, reload the page.'),
'total' => 0
];
}
header('Content-Type: application/json; charset=utf-8');
echo json_encode($response);