* @author Varun Patil * @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 . */ namespace OCA\Memories\Controller; use OCA\Memories\Errors; use OCA\Memories\HttpResponseException; class AlbumsController extends GenericClusterController { protected function appName(): string { return 'Albums'; } protected function isEnabled(): bool { return $this->albumsIsEnabled(); } protected function useTimelineRoot(): bool { return false; } protected function clusterName(string $name) { return explode('/', $name)[1]; } protected function getClusters(): array { // Run actual query $list = []; $t = (int) $this->request->getParam('t', 0); if ($t & 1) { // personal $list = array_merge($list, $this->timelineQuery->getAlbums($this->getUID())); } if ($t & 2) { // shared $list = array_merge($list, $this->timelineQuery->getAlbums($this->getUID(), true)); } // Remove elements with duplicate album_id $seenIds = []; $list = array_filter($list, function ($item) use (&$seenIds) { if (\in_array($item['album_id'], $seenIds, true)) { return false; } $seenIds[] = $item['album_id']; return true; }); // Convert $list to sequential array return array_values($list); } protected function getFiles(string $name, ?int $limit = null): array { // Get album $album = $this->timelineQuery->getAlbumIfAllowed($this->getUID(), $name); if (null === $album) { throw new HttpResponseException(Errors::NotFound("album {$name}")); } // Get files $id = (int) $album['album_id']; return $this->timelineQuery->getAlbumFiles($id, $limit) ?? []; } }