allerta-vvf/backend/app/Utils/Alerts.php

69 lines
2.0 KiB
PHP

<?php
namespace App\Utils;
use App\Models\Alert;
use App\Models\User;
use App\Models\TelegramBotNotifications;
use App\Models\TelegramBotLogins;
use App\Utils\Logger;
use App\Exceptions\AlertClosed;
use App\Exceptions\AlertResponseAlreadySet;
use DefStudio\Telegraph\Facades\Telegraph;
class Alerts {
public static function updateAlertResponse($alertId, $response, $userId = null, $fromTelegram = false)
{
$alert = Alert::find($alertId);
if($alert->closed) {
throw new AlertClosed();
}
if(is_null($userId)) {
$userId = auth()->user()->id;
}
foreach($alert->crew as $crew) {
if($crew->user->id == $userId) {
if($crew->accepted != null) {
throw new AlertResponseAlreadySet();
} else {
$crew->accepted = $response;
$crew->save();
}
}
}
$user = User::find($userId);
//Add to logs
Logger::log(
"Risposta ad allertamento: ".($response ? "presente" : "non presente"),
$user,
$fromTelegram ? $user : null,
$fromTelegram ? "telegram" : "web"
);
//Send message to the user via Telegram to notify the response
$chatRows = TelegramBotLogins::join("users", "users.id", "=", "telegram_bot_logins.user")
->select("users.id", "chat_id", "users.available")
->where("users.id", $userId)
->whereNotNull("chat_id")
->get();
foreach ($chatRows as $chatRow) {
//Get chat by id
$chat = Telegraph::chat($chatRow["chat_id"]);
$chat
->message(
"La tua risposta all'allertamento è stata registrata.\n".
"Sei <b>".($response ? "presente" : "assente")."</b>.\n".
"Rimani in attesa di nuove istruzioni."
)
->send();
}
}
}