Security / PHP Security (semgrep) (push) Failing after 2m44s
Lint / Deploy (push) Successful in 8s
Lint / Notify on failure (push) Has been skipped
Lint / PHP (phpcs PSR-12) (push) Successful in 18s
Lint / JS (eslint) (push) Successful in 8s
Lint / PHP requirements (version + extensions) (push) Successful in 21s
Medium:
- create_ticket_api.php: environment tags were parsed with explode('][') which
left brackets on the first/last tag so the whitelist never matched, dropping
the env tag from the dedup hash — a [production] and [staging] issue with
otherwise-identical components could collide onto one ticket. Use a
bracket-aware regex.
- CommentModel::getThreadedCommentsPaged only fetched DIRECT children of root
comments, so when pagination is active, nested replies at depth 2-3 vanished
from the thread. Expand replies level-by-level (bounded to depth 3).
- StatsModel::getTicketsByAssignee ignored the visibility filter the rest of the
stats apply, so a non-admin's "by assignee" widget counted (leaked) confidential
tickets. Thread the same filter through.
- watch_ticket.php GET path returned watch state / watcher names / count for any
ticket with no access check (the POST path checks it) — added canUserAccessTicket.
- dashboard.js kanban: every card rendered as P4 because the [class*="lt-p"]
selector never matched the lt-badge-p1 class and the fallback didn't strip "P".
Extract the digit directly.
Low:
- audit_log.php CSV: "Log ID" column was always blank ($log['log_id'] vs the real
audit_id column). Use audit_id.
- check_duplicates.php: the graceful-degradation try/catch only covered the throw
path; guard the false-return (non-exception mysqli) path too.
- notifications.php: owner-who-is-also-@mentioned got two notifications for one
comment; drop the duplicate comment row when a mention covers the same comment.
- dashboard.js hover preview rendered "PP1" (doubled prefix); strip the leading P.
- markdown.js: code/inline-code restore used string replace, so $&, $$, $`, $' in
user code were treated as replacement patterns; use a function replacer. Also
removed an unused loop var.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
131 lines
4.2 KiB
PHP
131 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Watch / Unwatch Ticket API
|
|
*
|
|
* GET ?ticket_id=N → returns { watching: bool, watcher_count: int }
|
|
* POST { ticket_id, action: 'watch'|'unwatch' } → toggles watcher row
|
|
*/
|
|
|
|
require_once __DIR__ . '/bootstrap.php';
|
|
require_once dirname(__DIR__) . '/models/TicketModel.php';
|
|
|
|
$ticketId = isset($_GET['ticket_id'])
|
|
? (int)$_GET['ticket_id']
|
|
: (isset($data['ticket_id']) ? (int)$data['ticket_id'] : 0);
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$data = json_decode(file_get_contents('php://input'), true) ?? [];
|
|
$ticketId = (int)($data['ticket_id'] ?? 0);
|
|
$action = $data['action'] ?? '';
|
|
|
|
if ($ticketId <= 0 || !in_array($action, ['watch', 'unwatch'], true)) {
|
|
http_response_code(400);
|
|
echo json_encode(['success' => false, 'error' => 'Invalid parameters']);
|
|
exit;
|
|
}
|
|
|
|
$ticketModel = new TicketModel($conn);
|
|
$ticket = $ticketModel->getTicketById($ticketId);
|
|
if (!$ticket || !$ticketModel->canUserAccessTicket($ticket, $currentUser)) {
|
|
http_response_code(404);
|
|
echo json_encode(['success' => false, 'error' => 'Ticket not found']);
|
|
exit;
|
|
}
|
|
|
|
if ($action === 'watch') {
|
|
$stmt = $conn->prepare(
|
|
"INSERT IGNORE INTO ticket_watchers (ticket_id, user_id) VALUES (?, ?)"
|
|
);
|
|
$stmt->bind_param("ii", $ticketId, $userId);
|
|
$stmt->execute();
|
|
$stmt->close();
|
|
} else {
|
|
$stmt = $conn->prepare(
|
|
"DELETE FROM ticket_watchers WHERE ticket_id = ? AND user_id = ?"
|
|
);
|
|
$stmt->bind_param("ii", $ticketId, $userId);
|
|
$stmt->execute();
|
|
$stmt->close();
|
|
}
|
|
|
|
// Return updated state
|
|
$countStmt = $conn->prepare(
|
|
"SELECT COUNT(*) as cnt FROM ticket_watchers WHERE ticket_id = ?"
|
|
);
|
|
$countStmt->bind_param("i", $ticketId);
|
|
$countStmt->execute();
|
|
$count = (int)$countStmt->get_result()->fetch_assoc()['cnt'];
|
|
$countStmt->close();
|
|
|
|
apiRespond([
|
|
'success' => true,
|
|
'watching' => $action === 'watch',
|
|
'watcher_count' => $count,
|
|
]);
|
|
}
|
|
|
|
// GET — return current watch state for this user
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
|
http_response_code(405);
|
|
echo json_encode(['success' => false, 'error' => 'Method not allowed']);
|
|
exit;
|
|
}
|
|
|
|
if ($ticketId <= 0) {
|
|
http_response_code(400);
|
|
echo json_encode(['success' => false, 'error' => 'ticket_id required']);
|
|
exit;
|
|
}
|
|
|
|
// Enforce ticket visibility before returning watch state / watcher names, so a
|
|
// restricted ticket's watcher list and count aren't disclosed (the POST path
|
|
// already checks this).
|
|
$ticketModel = new TicketModel($conn);
|
|
$ticket = $ticketModel->getTicketById($ticketId);
|
|
if (!$ticket || !$ticketModel->canUserAccessTicket($ticket, $currentUser)) {
|
|
http_response_code(404);
|
|
echo json_encode(['success' => false, 'error' => 'Ticket not found']);
|
|
exit;
|
|
}
|
|
|
|
$watchingStmt = $conn->prepare(
|
|
"SELECT COUNT(*) as cnt FROM ticket_watchers WHERE ticket_id = ? AND user_id = ?"
|
|
);
|
|
$watchingStmt->bind_param("ii", $ticketId, $userId);
|
|
$watchingStmt->execute();
|
|
$watching = (bool)$watchingStmt->get_result()->fetch_assoc()['cnt'];
|
|
$watchingStmt->close();
|
|
|
|
// Fetch watcher list (up to 6) with display names for avatar group
|
|
$watchersStmt = $conn->prepare(
|
|
"SELECT u.user_id, COALESCE(u.display_name, u.username) AS display_name
|
|
FROM ticket_watchers tw
|
|
JOIN users u ON tw.user_id = u.user_id
|
|
WHERE tw.ticket_id = ?
|
|
ORDER BY tw.created_at ASC
|
|
LIMIT 6"
|
|
);
|
|
$watchersStmt->bind_param("i", $ticketId);
|
|
$watchersStmt->execute();
|
|
$watchersResult = $watchersStmt->get_result();
|
|
$watchers = [];
|
|
while ($row = $watchersResult->fetch_assoc()) {
|
|
$watchers[] = ['user_id' => (int)$row['user_id'], 'display_name' => $row['display_name']];
|
|
}
|
|
$watchersStmt->close();
|
|
|
|
// True watcher count (the list above is capped at 6 for the avatar group)
|
|
$countStmt = $conn->prepare("SELECT COUNT(*) AS cnt FROM ticket_watchers WHERE ticket_id = ?");
|
|
$countStmt->bind_param("i", $ticketId);
|
|
$countStmt->execute();
|
|
$count = (int)$countStmt->get_result()->fetch_assoc()['cnt'];
|
|
$countStmt->close();
|
|
|
|
echo json_encode([
|
|
'success' => true,
|
|
'watching' => $watching,
|
|
'watcher_count' => $count,
|
|
'watchers' => $watchers,
|
|
]);
|