2022-08-13 03:34:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2020 John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
*
|
|
|
|
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0-or-later
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-08-18 18:27:25 +00:00
|
|
|
namespace OCA\Memories\Controller;
|
2022-08-13 03:34:05 +00:00
|
|
|
|
2022-08-17 22:03:29 +00:00
|
|
|
use OC\Files\Search\SearchComparison;
|
|
|
|
use OC\Files\Search\SearchQuery;
|
2022-08-18 18:27:25 +00:00
|
|
|
use OCA\Memories\AppInfo\Application;
|
2022-08-20 02:53:21 +00:00
|
|
|
use OCA\Memories\Db\TimelineQuery;
|
2022-08-13 03:34:05 +00:00
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
2022-08-17 20:39:48 +00:00
|
|
|
use OCP\Files\IRootFolder;
|
2022-08-13 03:34:05 +00:00
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUserSession;
|
2022-08-17 22:03:29 +00:00
|
|
|
use OCP\Files\FileInfo;
|
|
|
|
use OCP\Files\Search\ISearchComparison;
|
2022-08-13 03:34:05 +00:00
|
|
|
|
|
|
|
class ApiController extends Controller {
|
2022-09-09 07:31:42 +00:00
|
|
|
private IConfig $config;
|
|
|
|
private IUserSession $userSession;
|
2022-08-13 03:34:05 +00:00
|
|
|
private IDBConnection $connection;
|
2022-09-09 07:31:42 +00:00
|
|
|
private IRootFolder $rootFolder;
|
|
|
|
private TimelineQuery $timelineQuery;
|
2022-08-13 03:34:05 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
public function __construct(
|
|
|
|
IRequest $request,
|
|
|
|
IConfig $config,
|
|
|
|
IUserSession $userSession,
|
2022-08-17 20:39:48 +00:00
|
|
|
IDBConnection $connection,
|
2022-09-09 07:31:42 +00:00
|
|
|
IRootFolder $rootFolder) {
|
2022-08-22 18:48:35 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
parent::__construct(Application::APPNAME, $request);
|
2022-08-13 03:34:05 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
$this->config = $config;
|
|
|
|
$this->userSession = $userSession;
|
2022-08-13 03:34:05 +00:00
|
|
|
$this->connection = $connection;
|
2022-09-09 07:31:42 +00:00
|
|
|
$this->rootFolder = $rootFolder;
|
2022-09-12 01:33:38 +00:00
|
|
|
$this->timelineQuery = new TimelineQuery($this->connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get transformations depending on the request
|
|
|
|
*/
|
|
|
|
private function getTransformations() {
|
|
|
|
$transforms = array();
|
|
|
|
|
|
|
|
// Filter only favorites
|
|
|
|
if ($this->request->getParam('fav')) {
|
|
|
|
$transforms[] = array($this->timelineQuery, 'transformFavoriteFilter');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $transforms;
|
2022-09-09 07:31:42 +00:00
|
|
|
}
|
|
|
|
|
2022-09-13 03:21:25 +00:00
|
|
|
/** Preload a few "day" at the start of "days" response */
|
|
|
|
private function preloadDays(array &$days) {
|
|
|
|
$uid = $this->userSession->getUser()->getUID();
|
|
|
|
$transforms = $this->getTransformations();
|
|
|
|
$preloaded = 0;
|
|
|
|
foreach ($days as &$day) {
|
|
|
|
$day["detail"] = $this->timelineQuery->getDay(
|
|
|
|
$this->config,
|
|
|
|
$uid,
|
|
|
|
$day["dayid"],
|
|
|
|
$transforms,
|
|
|
|
);
|
|
|
|
$day["count"] = count($day["detail"]); // make sure count is accurate
|
|
|
|
$preloaded += $day["count"];
|
|
|
|
|
|
|
|
if ($preloaded >= 50) { // should be enough
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function days(): JSONResponse {
|
2022-08-13 03:34:05 +00:00
|
|
|
$user = $this->userSession->getUser();
|
2022-09-09 07:31:42 +00:00
|
|
|
if (is_null($user)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
2022-08-13 03:34:05 +00:00
|
|
|
|
2022-09-12 01:33:38 +00:00
|
|
|
$list = $this->timelineQuery->getDays(
|
|
|
|
$this->config,
|
|
|
|
$user->getUID(),
|
|
|
|
$this->getTransformations(),
|
|
|
|
);
|
2022-09-13 03:21:25 +00:00
|
|
|
$this->preloadDays($list);
|
2022-09-09 07:31:42 +00:00
|
|
|
return new JSONResponse($list, Http::STATUS_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function day(string $id): JSONResponse {
|
2022-08-14 23:31:47 +00:00
|
|
|
$user = $this->userSession->getUser();
|
2022-09-09 07:31:42 +00:00
|
|
|
if (is_null($user) || !is_numeric($id)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
2022-08-14 23:31:47 +00:00
|
|
|
|
2022-09-12 01:33:38 +00:00
|
|
|
$list = $this->timelineQuery->getDay(
|
|
|
|
$this->config,
|
|
|
|
$user->getUID(),
|
|
|
|
intval($id),
|
|
|
|
$this->getTransformations(),
|
|
|
|
);
|
2022-09-09 07:31:42 +00:00
|
|
|
return new JSONResponse($list, Http::STATUS_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if folder is allowed and get it if yes
|
|
|
|
*/
|
|
|
|
private function getAllowedFolder(int $folder, $user) {
|
|
|
|
// Get root if folder not specified
|
|
|
|
$root = $this->rootFolder->getUserFolder($user->getUID());
|
|
|
|
if ($folder === 0) {
|
|
|
|
$folder = $root->getId();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check access to folder
|
|
|
|
$nodes = $root->getById($folder);
|
|
|
|
if (empty($nodes)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check it is a folder
|
|
|
|
$node = $nodes[0];
|
|
|
|
if (!$node instanceof \OCP\Files\Folder) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function folder(string $folder): JSONResponse {
|
2022-08-16 03:58:55 +00:00
|
|
|
$user = $this->userSession->getUser();
|
2022-09-09 07:31:42 +00:00
|
|
|
if (is_null($user) || !is_numeric($folder)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
2022-08-16 03:58:55 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
// Check permissions
|
|
|
|
$node = $this->getAllowedFolder(intval($folder), $user);
|
|
|
|
if (is_null($node)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
}
|
2022-08-17 20:39:48 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
// Get response from db
|
2022-08-20 02:53:21 +00:00
|
|
|
$list = $this->timelineQuery->getDaysFolder($node->getId());
|
2022-08-17 20:39:48 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
// Get subdirectories
|
|
|
|
$sub = $node->search(new SearchQuery(
|
|
|
|
new SearchComparison(ISearchComparison::COMPARE_EQUAL, 'mimetype', FileInfo::MIMETYPE_FOLDER),
|
|
|
|
0, 0, [], $user));
|
|
|
|
$sub = array_filter($sub, function ($item) use ($node) {
|
|
|
|
return $item->getParent()->getId() === $node->getId();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Sort by name
|
|
|
|
usort($sub, function($a, $b) {
|
|
|
|
return strnatcmp($a->getName(), $b->getName());
|
|
|
|
});
|
|
|
|
|
|
|
|
// Map sub to JSON array
|
|
|
|
$subdirArray = [
|
|
|
|
"dayid" => -0.1,
|
|
|
|
"detail" => array_map(function ($node) {
|
|
|
|
return [
|
|
|
|
"fileid" => $node->getId(),
|
|
|
|
"name" => $node->getName(),
|
2022-09-13 04:59:35 +00:00
|
|
|
"isfolder" => 1,
|
2022-09-09 07:31:42 +00:00
|
|
|
"path" => $node->getPath(),
|
|
|
|
];
|
|
|
|
}, $sub, []),
|
|
|
|
];
|
|
|
|
$subdirArray["count"] = count($subdirArray["detail"]);
|
|
|
|
array_unshift($list, $subdirArray);
|
|
|
|
|
|
|
|
return new JSONResponse($list, Http::STATUS_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function folderDay(string $folder, string $dayId): JSONResponse {
|
2022-08-16 03:58:55 +00:00
|
|
|
$user = $this->userSession->getUser();
|
2022-09-09 07:31:42 +00:00
|
|
|
if (is_null($user) || !is_numeric($folder) || !is_numeric($dayId)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
2022-08-16 03:58:55 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
$node = $this->getAllowedFolder(intval($folder), $user);
|
|
|
|
if ($node === NULL) {
|
|
|
|
return new JSONResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
}
|
2022-08-17 20:39:48 +00:00
|
|
|
|
2022-09-12 09:35:09 +00:00
|
|
|
$list = $this->timelineQuery->getDayFolder($user->getUID(), $node->getId(), intval($dayId));
|
2022-09-09 07:31:42 +00:00
|
|
|
return new JSONResponse($list, Http::STATUS_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* update preferences (user setting)
|
|
|
|
*
|
|
|
|
* @param string key the identifier to change
|
|
|
|
* @param string value the value to set
|
|
|
|
*
|
|
|
|
* @return JSONResponse an empty JSONResponse with respective http status code
|
|
|
|
*/
|
|
|
|
public function setUserConfig(string $key, string $value): JSONResponse {
|
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
if (is_null($user)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
|
|
|
|
|
|
|
$userId = $user->getUid();
|
|
|
|
$this->config->setUserValue($userId, Application::APPNAME, $key, $value);
|
|
|
|
return new JSONResponse([], Http::STATUS_OK);
|
|
|
|
}
|
2022-08-13 03:34:05 +00:00
|
|
|
}
|