2018-09-20 07:42:52 +00:00
|
|
|
<?php
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Nextcloud - Social Support
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later. See the COPYING file.
|
|
|
|
*
|
|
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
|
|
* @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program 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 (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-11-12 22:57:32 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
namespace OCA\Social\Service;
|
|
|
|
|
|
|
|
use OCA\Social\AppInfo\Application;
|
2018-09-28 11:41:24 +00:00
|
|
|
use OCP\IUserManager;
|
2019-08-12 11:00:40 +00:00
|
|
|
use OCP\Util;
|
2022-04-14 13:56:20 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-11-12 22:57:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class MiscService
|
|
|
|
*
|
|
|
|
* @package OCA\Social\Service
|
|
|
|
*/
|
2018-09-20 07:42:52 +00:00
|
|
|
class MiscService {
|
2022-04-14 13:56:20 +00:00
|
|
|
private LoggerInterface $logger;
|
|
|
|
private IUserManager $userManager;
|
2018-09-28 11:41:24 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
|
2022-04-14 13:56:20 +00:00
|
|
|
public function __construct(LoggerInterface $logger, IUserManager $userManager) {
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->logger = $logger;
|
2018-09-28 11:41:24 +00:00
|
|
|
$this->userManager = $userManager;
|
2018-09-20 07:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $message
|
|
|
|
* @param int $level
|
|
|
|
*/
|
2023-01-04 23:38:23 +00:00
|
|
|
public function log(string $message, $level = 2) {
|
2018-09-20 07:42:52 +00:00
|
|
|
$data = array(
|
2022-04-15 11:34:01 +00:00
|
|
|
'app' => Application::APP_NAME,
|
2018-09-20 07:42:52 +00:00
|
|
|
'level' => $level
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->logger->log($level, $message, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-12 11:00:40 +00:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getNcVersion(): int {
|
|
|
|
$ver = Util::getVersion();
|
|
|
|
|
|
|
|
return $ver[0];
|
|
|
|
}
|
2018-09-20 07:42:52 +00:00
|
|
|
}
|