mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2025-02-03 09:44:13 -05:00
mange subscriptions
This commit is contained in:
parent
cea55bd2b8
commit
efe4c3d42f
@ -170,7 +170,6 @@ class Incident implements JsonSerializable
|
|||||||
|
|
||||||
$tg_message = urlencode('Hi ' . $firstname . chr(10) . 'There is a status update on a service that you have subscribed. <a href="' . WEB_URL . '">View online</a>');
|
$tg_message = urlencode('Hi ' . $firstname . chr(10) . 'There is a status update on a service that you have subscribed. <a href="' . WEB_URL . '">View online</a>');
|
||||||
$response = json_decode(file_get_contents("https://api.telegram.org/bot" . TG_BOT_API_TOKEN . "/sendMessage?chat_id=" . $telegramID . "&parse_mode=HTML&text=" . $tg_message));
|
$response = json_decode(file_get_contents("https://api.telegram.org/bot" . TG_BOT_API_TOKEN . "/sendMessage?chat_id=" . $telegramID . "&parse_mode=HTML&text=" . $tg_message));
|
||||||
print_r($response);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -7,22 +7,67 @@ $tg_user = getTelegramUserData();
|
|||||||
|
|
||||||
if($tg_user !== false){
|
if($tg_user !== false){
|
||||||
|
|
||||||
|
if(isset($_GET['add'])){
|
||||||
|
$service = $_GET['add'];
|
||||||
|
$query = $mysqli->query("SELECT * FROM subscribers WHERE telegramID=" . $tg_user['id']);
|
||||||
|
while($subscriber = $query->fetch_assoc()){
|
||||||
|
$subscriberID = $subscriber['subscriberID'];
|
||||||
|
}
|
||||||
|
$stmt = $mysqli->prepare("INSERT INTO services_subscriber VALUES (NULL,?, ?)");
|
||||||
|
$stmt->bind_param("ii", $subscriberID, $service);
|
||||||
|
$stmt->execute();
|
||||||
|
$query = $stmt->get_result();
|
||||||
|
header("Location: index.php?do=subscriptions");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isset($_GET['remove'])){
|
||||||
|
$service = $_GET['remove'];
|
||||||
|
$query = $mysqli->query("SELECT * FROM subscribers WHERE telegramID=" . $tg_user['id']);
|
||||||
|
while($subscriber = $query->fetch_assoc()){
|
||||||
|
$subscriberID = $subscriber['subscriberID'];
|
||||||
|
}
|
||||||
|
$stmt = $mysqli->prepare("DELETE FROM services_subscriber WHERE subscriberIDFK = ? AND serviceIDFK = ?");
|
||||||
|
$stmt->bind_param("ii", $subscriberID, $service);
|
||||||
|
$stmt->execute();
|
||||||
|
$query = $stmt->get_result();
|
||||||
|
header("Location: index.php?do=subscriptions");
|
||||||
|
}
|
||||||
|
|
||||||
$query = $mysqli->query("SELECT services.id, services.name, subscribers.subscriberID, subscribers.telegramID
|
$query = $mysqli->query("SELECT services.id, services.name, subscribers.subscriberID, subscribers.telegramID
|
||||||
FROM services
|
FROM services
|
||||||
LEFT JOIN services_subscriber ON services_subscriber.serviceIDFK = services.id
|
LEFT JOIN services_subscriber ON services_subscriber.serviceIDFK = services.id
|
||||||
LEFT JOIN subscribers ON services_subscriber.subscriberIDFK = subscribers.subscriberID
|
LEFT JOIN subscribers ON services_subscriber.subscriberIDFK = subscribers.subscriberID
|
||||||
WHERE subscribers.telegramID =" . $tg_user['id']);
|
WHERE subscribers.telegramID =" . $tg_user['id']);
|
||||||
//$query = $mysqli->query("SELECT id, name FROM services");
|
|
||||||
if ($query->num_rows){
|
if ($query->num_rows){
|
||||||
$timestamp = time();
|
$timestamp = time();
|
||||||
echo '<h1>' . _("Your subscriptions") . "</h1>";
|
echo '<h1>' . _("Your subscriptions") . "</h1>";
|
||||||
echo '<ul class="list-group">';
|
echo '<div class="list-group">';
|
||||||
|
$subs = array();
|
||||||
while($result = $query->fetch_assoc())
|
while($result = $query->fetch_assoc())
|
||||||
{
|
{
|
||||||
echo '<li class="list-group-item">' . $result['name'] . '</li>';
|
echo '<a href="https://status.jhuesser.ch/subscriptions.php?remove=' . $result['id'] .'" class="list-group-item">' . $result['name'] . '</a>';
|
||||||
|
$subs[] = $result['name'];
|
||||||
}
|
}
|
||||||
echo "</ul>";
|
echo "</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo '<h1>' . _("Add new subscription") . '</h1>';
|
||||||
|
|
||||||
|
$query = $mysqli->query("SELECT services.id, services.name from services");
|
||||||
|
if ($query->num_rows){
|
||||||
|
echo '<div class="list-group">';
|
||||||
|
|
||||||
|
while($result = $query->fetch_assoc()){
|
||||||
|
if(empty($subs)){
|
||||||
|
echo '<a href="https://status.jhuesser.ch/subscriptions.php?add=' . $result['id'] . '" class="list-group-item list-group-item-action">' . $result['name'] . '</a>';
|
||||||
|
|
||||||
|
} elseif(!in_array($result['name'], $subs)){
|
||||||
|
echo '<a href="https://status.jhuesser.ch/subscriptions.php?add=' . $result['id'] . '" class="list-group-item list-group-item-action">' . $result['name'] . '</a>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo '</div>';
|
||||||
|
}
|
||||||
|
|
||||||
} else{
|
} else{
|
||||||
header('Location: index.php');
|
header('Location: index.php');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user