You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.1 KiB
150 lines
4.1 KiB
<?php
|
|
/**
|
|
*
|
|
* (c) Copyright Ascensio System SIA 2020
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
namespace OCA\Onlyoffice;
|
|
|
|
|
|
/**
|
|
* Key manager
|
|
*
|
|
* @package OCA\Onlyoffice
|
|
*/
|
|
class KeyManager {
|
|
|
|
/**
|
|
* Table name
|
|
*/
|
|
private const TableName_Key = "onlyoffice_filekey";
|
|
|
|
/**
|
|
* Get document identifier
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function get($fileId) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$select = $connection->prepare("
|
|
SELECT `key`
|
|
FROM `*PREFIX*" . self::TableName_Key . "`
|
|
WHERE `file_id` = ?
|
|
");
|
|
$result = $select->execute([$fileId]);
|
|
|
|
$keys = $result ? $select->fetch() : [];
|
|
$key = is_array($keys) && isset($keys["key"]) ? $keys["key"] : "";
|
|
|
|
return $key;
|
|
}
|
|
|
|
/**
|
|
* Store document identifier
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
* @param integer $key - file key
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function set($fileId, $key) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$insert = $connection->prepare("
|
|
INSERT INTO `*PREFIX*" . self::TableName_Key . "`
|
|
(`file_id`, `key`)
|
|
VALUES (?, ?)
|
|
");
|
|
return (bool)$insert->execute([$fileId, $key]);
|
|
}
|
|
|
|
/**
|
|
* Delete document identifier
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
* @param bool $unlock - delete even with lock label
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function delete($fileId, $unlock = false) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$delete = $connection->prepare("
|
|
DELETE FROM `*PREFIX*" . self::TableName_Key . "`
|
|
WHERE `file_id` = ?
|
|
" . ($unlock === false ? "AND `lock` != 1" : "")
|
|
);
|
|
return (bool)$delete->execute([$fileId]);
|
|
}
|
|
|
|
/**
|
|
* Change lock status
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
* @param bool $lock - status
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function lock($fileId, $lock = true) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$update = $connection->prepare("
|
|
UPDATE `*PREFIX*" . self::TableName_Key . "`
|
|
SET `lock` = ?
|
|
WHERE `file_id` = ?
|
|
");
|
|
return (bool)$update->execute([$lock === true ? 1 : 0, $fileId]);
|
|
}
|
|
|
|
/**
|
|
* Change forcesave status
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
* @param bool $fs - status
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function setForcesave($fileId, $fs = true) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$update = $connection->prepare("
|
|
UPDATE `*PREFIX*" . self::TableName_Key . "`
|
|
SET `fs` = ?
|
|
WHERE `file_id` = ?
|
|
");
|
|
return (bool)$update->execute([$fs === true ? 1 : 0, $fileId]);
|
|
}
|
|
|
|
/**
|
|
* Get forcesave status
|
|
*
|
|
* @param integer $fileId - file identifier
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function wasForcesave($fileId) {
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
$select = $connection->prepare("
|
|
SELECT `fs`
|
|
FROM `*PREFIX*" . self::TableName_Key . "`
|
|
WHERE `file_id` = ?
|
|
");
|
|
$result = $select->execute([$fileId]);
|
|
|
|
$rows = $result ? $select->fetch() : [];
|
|
$fs = is_array($rows) && isset($rows["fs"]) ? $rows["fs"] : "";
|
|
|
|
return $fs === "1";
|
|
}
|
|
}
|
|
|