19 lines
495 B
PHP
19 lines
495 B
PHP
<?php
|
|
/**
|
|
* Auth check for AJAX endpoints.
|
|
* Include this at the top of every ajax handler.
|
|
* Sets $currentUserId from session or returns 401 JSON.
|
|
*/
|
|
if (session_status() === PHP_SESSION_NONE) {
|
|
session_start();
|
|
}
|
|
|
|
if (empty($_SESSION['iduserlogin'])) {
|
|
header('Content-Type: application/json');
|
|
http_response_code(401);
|
|
echo json_encode(['success' => false, 'message' => 'Non autorizzato. Effettua il login.']);
|
|
exit;
|
|
}
|
|
|
|
$currentUserId = (int)$_SESSION['iduserlogin'];
|