// SPDX-License-Identifier: AGPL-3.0-or-later namespace OCA\Pantry\Service; use OCA\Pantry\AppInfo\Application; use OCP\IConfig; class PrefsService { private const KEY_LAST_HOUSE = 'last_house_id'; private const KEY_IMAGE_FOLDER = 'image_folder'; public const DEFAULT_IMAGE_FOLDER = '/Pantry'; public function __construct( private IConfig $config, ) { } public function getLastHouseId(string $uid): ?int { $value = $this->config->getUserValue($uid, Application::APP_ID, self::KEY_LAST_HOUSE, ''); if ($value === '') { return null; } return (int)$value; } public function setLastHouseId(string $uid, ?int $houseId): void { if ($houseId === null) { $this->config->deleteUserValue($uid, Application::APP_ID, self::KEY_LAST_HOUSE); return; } $this->config->setUserValue($uid, Application::APP_ID, self::KEY_LAST_HOUSE, (string)$houseId); } public function getImageFolder(string $uid, int $houseId): string { $value = $this->config->getUserValue( $uid, Application::APP_ID, self::KEY_IMAGE_FOLDER . '_' . $houseId, self::DEFAULT_IMAGE_FOLDER, ); return $this->normalizeFolder($value); } public function setImageFolder(string $uid, int $houseId, string $folder): string { $normalized = $this->normalizeFolder($folder); $this->config->setUserValue($uid, Application::APP_ID, self::KEY_IMAGE_FOLDER . '_' . $houseId, $normalized); return $normalized; } // ----- Sort preferences ----- private const KEY_PHOTO_SORT = 'photo_sort'; private const KEY_NOTE_SORT = 'note_sort'; public function getPhotoSort(string $uid, int $houseId): string { return $this->config->getUserValue( $uid, Application::APP_ID, self::KEY_PHOTO_SORT . '_' . $houseId, 'custom', ); } public function setPhotoSort(string $uid, int $houseId, string $sort): string { $allowed = ['custom', 'newest', 'oldest', 'description_asc', 'description_desc']; if (!in_array($sort, $allowed, true)) { $sort = 'custom'; } $this->config->setUserValue($uid, Application::APP_ID, self::KEY_PHOTO_SORT . '_' . $houseId, $sort); return $sort; } public function getPhotoFoldersFirst(string $uid, int $houseId): bool { return $this->config->getUserValue( $uid, Application::APP_ID, 'photo_folders_first_' . $houseId, '1', ) === '1'; } public function setPhotoFoldersFirst(string $uid, int $houseId, bool $value): bool { $this->config->setUserValue($uid, Application::APP_ID, 'photo_folders_first_' . $houseId, $value ? '1' : '0'); return $value; } public function getNoteSort(string $uid, int $houseId): string { return $this->config->getUserValue( $uid, Application::APP_ID, self::KEY_NOTE_SORT . '_' . $houseId, 'custom', ); } public function setNoteSort(string $uid, int $houseId, string $sort): string { $allowed = ['custom', 'newest', 'oldest', 'title_asc', 'title_desc']; if (!in_array($sort, $allowed, true)) { $sort = 'custom'; } $this->config->setUserValue($uid, Application::APP_ID, self::KEY_NOTE_SORT . '_' . $houseId, $sort); return $sort; } // ----- Checklist item sort preferences ----- private const KEY_CHECKLIST_ITEM_SORT = 'checklist_item_sort'; public function getChecklistItemSort(string $uid, int $houseId): string { return $this->config->getUserValue( $uid, Application::APP_ID, self::KEY_CHECKLIST_ITEM_SORT . '_' . $houseId, 'custom', ); } public function setChecklistItemSort(string $uid, int $houseId, string $sort): string { $allowed = ['custom', 'newest', 'oldest', 'name_asc', 'name_desc']; if (!in_array($sort, $allowed, true)) { $sort = 'custom'; } $this->config->setUserValue($uid, Application::APP_ID, self::KEY_CHECKLIST_ITEM_SORT . '_' . $houseId, $sort); return $sort; } // ----- Notification preferences ----- public function getNotificationPref(string $uid, int $houseId, string $prefKey): bool { $value = $this->config->getUserValue( $uid, Application::APP_ID, $prefKey . '_' . $houseId, '1', // enabled by default ); return $value === '1'; } public function setNotificationPref(string $uid, int $houseId, string $prefKey, bool $enabled): void { $this->config->setUserValue( $uid, Application::APP_ID, $prefKey . '_' . $houseId, $enabled ? '1' : '0', ); } /** * @return array */ public function getNotificationPrefs(string $uid, int $houseId): array { return [ 'notifyPhoto' => $this->getNotificationPref($uid, $houseId, 'notify_photo'), 'notifyNoteCreate' => $this->getNotificationPref($uid, $houseId, 'notify_note_create'), 'notifyNoteEdit' => $this->getNotificationPref($uid, $houseId, 'notify_note_edit'), 'notifyItemAdd' => $this->getNotificationPref($uid, $houseId, 'notify_item_add'), 'notifyItemRecur' => $this->getNotificationPref($uid, $houseId, 'notify_item_recur'), 'notifyItemDone' => $this->getNotificationPref($uid, $houseId, 'notify_item_done'), ]; } private function normalizeFolder(string $folder): string { $trimmed = trim($folder); if ($trimmed === '') { return self::DEFAULT_IMAGE_FOLDER; } // Ensure leading slash, no trailing slash. $withLeading = str_starts_with($trimmed, '/') ? $trimmed : '/' . $trimmed; $clean = rtrim($withLeading, '/'); return $clean === '' ? '/' : $clean; } }