2022-08-20 02:53:21 +00:00
|
|
|
<?php
|
2022-10-19 17:10:36 +00:00
|
|
|
|
2022-08-20 02:53:21 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\Memories;
|
|
|
|
|
2022-12-08 21:00:53 +00:00
|
|
|
use OCP\App\IAppManager;
|
2023-03-10 00:39:26 +00:00
|
|
|
use OCP\Files\Node;
|
2022-12-08 21:00:53 +00:00
|
|
|
use OCP\IConfig;
|
|
|
|
|
2022-10-19 17:10:36 +00:00
|
|
|
class Util
|
|
|
|
{
|
2022-09-16 21:37:52 +00:00
|
|
|
public static $TAG_DAYID_START = -(1 << 30); // the world surely didn't exist
|
|
|
|
public static $TAG_DAYID_FOLDERS = -(1 << 30) + 1;
|
|
|
|
|
2022-09-25 23:02:26 +00:00
|
|
|
public static $ARCHIVE_FOLDER = '.archive';
|
|
|
|
|
2022-11-09 09:23:12 +00:00
|
|
|
/**
|
|
|
|
* Get host CPU architecture (amd64 or aarch64).
|
|
|
|
*/
|
|
|
|
public static function getArch()
|
|
|
|
{
|
|
|
|
$uname = php_uname('m');
|
|
|
|
if (false !== stripos($uname, 'aarch64') || false !== stripos($uname, 'arm64')) {
|
|
|
|
return 'aarch64';
|
|
|
|
}
|
|
|
|
if (false !== stripos($uname, 'x86_64') || false !== stripos($uname, 'amd64')) {
|
|
|
|
return 'amd64';
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the libc type for host (glibc or musl).
|
|
|
|
*/
|
|
|
|
public static function getLibc()
|
|
|
|
{
|
|
|
|
if ($ldd = shell_exec('ldd --version 2>&1')) {
|
|
|
|
if (false !== stripos($ldd, 'musl')) {
|
|
|
|
return 'musl';
|
|
|
|
}
|
|
|
|
if (false !== stripos($ldd, 'glibc')) {
|
|
|
|
return 'glibc';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-10-27 20:45:03 +00:00
|
|
|
/**
|
|
|
|
* Check if albums are enabled for this user.
|
|
|
|
*/
|
2022-12-08 21:00:53 +00:00
|
|
|
public static function albumsIsEnabled(IAppManager &$appManager): bool
|
2022-10-27 20:45:03 +00:00
|
|
|
{
|
|
|
|
if (!$appManager->isEnabledForUser('photos')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-29 16:57:03 +00:00
|
|
|
$v = $appManager->getAppVersion('photos');
|
2022-10-27 20:45:03 +00:00
|
|
|
|
|
|
|
return version_compare($v, '1.7.0', '>=');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if tags is enabled for this user.
|
2022-10-27 20:57:00 +00:00
|
|
|
*
|
|
|
|
* @param mixed $appManager
|
2022-10-27 20:45:03 +00:00
|
|
|
*/
|
|
|
|
public static function tagsIsEnabled(&$appManager): bool
|
|
|
|
{
|
|
|
|
return $appManager->isEnabledForUser('systemtags');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if recognize is enabled for this user.
|
|
|
|
*/
|
2022-12-08 21:00:53 +00:00
|
|
|
public static function recognizeIsEnabled(IAppManager &$appManager): bool
|
2022-10-27 20:45:03 +00:00
|
|
|
{
|
|
|
|
if (!$appManager->isEnabledForUser('recognize')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-29 16:57:03 +00:00
|
|
|
$v = $appManager->getAppVersion('recognize');
|
2022-10-27 20:45:03 +00:00
|
|
|
|
|
|
|
return version_compare($v, '3.0.0-alpha', '>=');
|
|
|
|
}
|
2022-11-07 03:36:11 +00:00
|
|
|
|
2022-12-08 21:00:53 +00:00
|
|
|
/**
|
|
|
|
* Check if Face Recognition is enabled by the user.
|
|
|
|
*/
|
|
|
|
public static function facerecognitionIsEnabled(IConfig &$config, string $userId): bool
|
|
|
|
{
|
|
|
|
$e = $config->getUserValue($userId, 'facerecognition', 'enabled', 'false');
|
|
|
|
|
|
|
|
return 'true' === $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if Face Recognition is installed and enabled for this user.
|
|
|
|
*/
|
|
|
|
public static function facerecognitionIsInstalled(IAppManager &$appManager): bool
|
|
|
|
{
|
|
|
|
if (!$appManager->isEnabledForUser('facerecognition')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$v = $appManager->getAppInfo('facerecognition')['version'];
|
|
|
|
|
|
|
|
return version_compare($v, '0.9.10-beta.2', '>=');
|
|
|
|
}
|
|
|
|
|
2022-11-07 03:36:11 +00:00
|
|
|
/**
|
|
|
|
* Check if link sharing is allowed.
|
|
|
|
*/
|
2022-12-08 21:00:53 +00:00
|
|
|
public static function isLinkSharingEnabled(IConfig &$config): bool
|
2022-11-07 03:36:11 +00:00
|
|
|
{
|
|
|
|
// Check if the shareAPI is enabled
|
|
|
|
if ('yes' !== $config->getAppValue('core', 'shareapi_enabled', 'yes')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether public sharing is enabled
|
|
|
|
if ('yes' !== $config->getAppValue('core', 'shareapi_allow_links', 'yes')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2022-11-21 10:13:43 +00:00
|
|
|
|
2023-03-10 00:39:26 +00:00
|
|
|
/**
|
|
|
|
* Force a fileinfo value on a node.
|
|
|
|
* This is a hack to avoid subclassing everything.
|
|
|
|
*
|
|
|
|
* @param mixed $node File to patch
|
|
|
|
* @param mixed $key Key to set
|
|
|
|
* @param mixed $value Value to set
|
|
|
|
*/
|
|
|
|
public static function forceFileInfo(Node &$node, $key, $value)
|
|
|
|
{
|
|
|
|
/** @var \OC\Files\Node\Node */
|
|
|
|
$node = $node;
|
|
|
|
$node->getFileInfo()[$key] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force permissions on a node.
|
|
|
|
*
|
|
|
|
* @param mixed $node File to patch
|
|
|
|
* @param mixed $permissions Permissions to set
|
|
|
|
*/
|
|
|
|
public static function forcePermissions(Node &$node, int $permissions)
|
|
|
|
{
|
|
|
|
self::forceFileInfo($node, 'permissions', $permissions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert permissions to string.
|
|
|
|
*/
|
|
|
|
public static function permissionsToStr(int $permissions): string
|
|
|
|
{
|
|
|
|
$str = '';
|
|
|
|
if ($permissions & \OCP\Constants::PERMISSION_CREATE) {
|
|
|
|
$str .= 'C';
|
|
|
|
}
|
|
|
|
if ($permissions & \OCP\Constants::PERMISSION_READ) {
|
|
|
|
$str .= 'R';
|
|
|
|
}
|
|
|
|
if ($permissions & \OCP\Constants::PERMISSION_UPDATE) {
|
|
|
|
$str .= 'U';
|
|
|
|
}
|
|
|
|
if ($permissions & \OCP\Constants::PERMISSION_DELETE) {
|
|
|
|
$str .= 'D';
|
|
|
|
}
|
|
|
|
if ($permissions & \OCP\Constants::PERMISSION_SHARE) {
|
|
|
|
$str .= 'S';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
2022-11-21 10:13:43 +00:00
|
|
|
/**
|
|
|
|
* Check if any encryption is enabled that we can not cope with
|
|
|
|
* such as end-to-end encryption.
|
|
|
|
*/
|
2022-12-04 17:33:20 +00:00
|
|
|
public static function isEncryptionEnabled(): bool
|
2022-11-21 10:13:43 +00:00
|
|
|
{
|
2022-12-04 17:57:31 +00:00
|
|
|
$encryptionManager = \OC::$server->get(\OCP\Encryption\IManager::class);
|
2022-11-21 10:13:43 +00:00
|
|
|
if ($encryptionManager->isEnabled()) {
|
|
|
|
// Server-side encryption (OC_DEFAULT_MODULE) is okay, others like e2e are not
|
|
|
|
return 'OC_DEFAULT_MODULE' !== $encryptionManager->getDefaultEncryptionModuleId();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2023-01-04 20:32:36 +00:00
|
|
|
|
2023-02-06 03:46:44 +00:00
|
|
|
/**
|
|
|
|
* Check if geolocation (places) is enabled and available.
|
|
|
|
* Returns the type of the GIS.
|
|
|
|
*/
|
|
|
|
public static function placesGISType(): int
|
|
|
|
{
|
2023-02-06 03:55:39 +00:00
|
|
|
return (int) \OC::$server->get(\OCP\IConfig::class)->getSystemValue('memories.gis_type', -1);
|
2023-02-06 03:46:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-04 20:32:36 +00:00
|
|
|
/**
|
|
|
|
* Kill all instances of a process by name.
|
|
|
|
* Similar to pkill, which may not be available on all systems.
|
|
|
|
*/
|
|
|
|
public static function pkill(string $name): void
|
|
|
|
{
|
2023-02-24 17:12:23 +00:00
|
|
|
// don't kill everything
|
|
|
|
if (empty($name)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-04 20:32:36 +00:00
|
|
|
// get pids using ps as array
|
2023-01-04 20:46:13 +00:00
|
|
|
$pids = shell_exec("ps -ef | grep {$name} | grep -v grep | awk '{print $2}'");
|
|
|
|
if (null === $pids || empty($pids)) {
|
|
|
|
return;
|
|
|
|
}
|
2023-01-04 20:32:36 +00:00
|
|
|
$pids = array_filter(explode("\n", $pids));
|
|
|
|
|
|
|
|
// kill all pids
|
|
|
|
foreach ($pids as $pid) {
|
2023-01-21 17:01:50 +00:00
|
|
|
posix_kill((int) $pid, 9); // SIGKILL
|
2023-01-04 20:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-19 17:10:36 +00:00
|
|
|
}
|