Initial Upload
This commit is contained in:
162
lib/Service/LogServiceInterface.php
Normal file
162
lib/Service/LogServiceInterface.php
Normal file
@@ -0,0 +1,162 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright (C) 2024 Xibo Signage Ltd
|
||||
*
|
||||
* Xibo - Digital Signage - https://xibosignage.com
|
||||
*
|
||||
* This file is part of Xibo.
|
||||
*
|
||||
* Xibo is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* Xibo is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
namespace Xibo\Service;
|
||||
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
* Interface LogServiceInterface
|
||||
* @package Xibo\Service
|
||||
*/
|
||||
interface LogServiceInterface
|
||||
{
|
||||
/**
|
||||
* Log constructor.
|
||||
* @param LoggerInterface $logger
|
||||
* @param string $mode
|
||||
*/
|
||||
public function __construct($logger, $mode = 'production');
|
||||
|
||||
/**
|
||||
* Get the underlying logger interface
|
||||
* useful for custom code and modules which may not want to know about the full Xibo LogServiceInterface
|
||||
* @return \Psr\Log\LoggerInterface
|
||||
*/
|
||||
public function getLoggerInterface(): LoggerInterface;
|
||||
|
||||
public function getUserId(): ?int;
|
||||
public function getSessionHistoryId(): ?int;
|
||||
public function getRequestId(): ?int;
|
||||
|
||||
/**
|
||||
* Set the user Id
|
||||
* @param int $userId
|
||||
*/
|
||||
public function setUserId($userId);
|
||||
|
||||
/**
|
||||
* Set the User IP Address
|
||||
* @param $ip
|
||||
* @return mixed
|
||||
*/
|
||||
public function setIpAddress($ip);
|
||||
|
||||
/**
|
||||
* Set history session id
|
||||
* @param $sessionHistoryId
|
||||
* @return mixed
|
||||
*/
|
||||
public function setSessionHistoryId($sessionHistoryId);
|
||||
|
||||
/**
|
||||
* Set API requestId
|
||||
* @param $requestId
|
||||
* @return mixed
|
||||
*/
|
||||
public function setRequestId($requestId);
|
||||
|
||||
/**
|
||||
* @param $mode
|
||||
* @return mixed
|
||||
*/
|
||||
public function setMode($mode);
|
||||
|
||||
/**
|
||||
* Audit Log
|
||||
* @param string $entity
|
||||
* @param int $entityId
|
||||
* @param string $message
|
||||
* @param string|object|array $object
|
||||
*/
|
||||
public function audit($entity, $entityId, $message, $object);
|
||||
|
||||
/**
|
||||
* @param $sql
|
||||
* @param $params
|
||||
* @param bool $logAsError
|
||||
* @return mixed
|
||||
*/
|
||||
public function sql($sql, $params, $logAsError = false);
|
||||
|
||||
/**
|
||||
* @param string
|
||||
* @return mixed
|
||||
*/
|
||||
public function debug($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function notice($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function info($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function warning($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function error($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function critical($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function alert($object);
|
||||
|
||||
/**
|
||||
* @param ...$object
|
||||
* @return mixed
|
||||
*/
|
||||
public function emergency($object);
|
||||
|
||||
/**
|
||||
* Resolve the log level
|
||||
* @param string $level
|
||||
* @return int
|
||||
*/
|
||||
public static function resolveLogLevel($level);
|
||||
|
||||
/**
|
||||
* Set the log level on all handlers
|
||||
* @param $level
|
||||
*/
|
||||
public function setLevel($level);
|
||||
}
|
||||
Reference in New Issue
Block a user