icingadb-web/library/Icingadb/Common/ServiceLinks.php
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

109 lines
3.1 KiB
PHP

<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Module\Icingadb\Common;
use Icinga\Module\Icingadb\Model\Host;
use Icinga\Module\Icingadb\Model\Service;
use ipl\Web\Url;
abstract class ServiceLinks
{
public static function acknowledge(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/acknowledge',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function addComment(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/add-comment',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function checkNow(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/check-now',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function scheduleCheck(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/schedule-check',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function comments(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/comments',
['service.name' => $service->name, 'host.name' => $host->name]
);
}
public static function downtimes(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/downtimes',
['service.name' => $service->name, 'host.name' => $host->name]
);
}
public static function history(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/history',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function removeAcknowledgement(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/remove-acknowledgement',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function scheduleDowntime(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/schedule-downtime',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function sendCustomNotification(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/send-custom-notification',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function processCheckresult(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/process-checkresult',
['name' => $service->name, 'host.name' => $host->name]
);
}
public static function toggleFeatures(Service $service, Host $host): Url
{
return Url::fromPath(
'icingadb/service/toggle-features',
['name' => $service->name, 'host.name' => $host->name]
);
}
}