#1104: TimesheetFavoritesService.kt

projectforge-business/src/main/kotlin/org/projectforge/business/timesheet/TimesheetFavoritesService.kt Service / Favorites, projectforge-business/src/main/kotlin/org/projectforge/business/timesheet/TimesheetFavoritesService.kt 175 lines · 119 code · 34 comments · 22 blank
Spring @Service managing user timesheet favorites. Uses hybrid storage: new favorites stored as Favorites<TimesheetFavorite> JSON via UserPrefService under area "timesheet", while supporting migration from legacy UserPrefDao templates (area TIMESHEET_TEMPLATE). getFavorites() attempts to load new format, falls back to migrateFromLegacyFavorites() which converts old UserPref entries to Favorites objects. Inner MigrationCache (extends AbstractCache) caches per-user legacy-favorites-exist checks. createFavorite()/deleteFavorite()/renameFavorite() use the Favorites helper. refreshMigrationCache() invalidates after modifications. Legacy favorites are migrated on-demand (never overwrites existing new favorites).

Git History

868d6abb7 2025 -> 2026
63081666f Source file headers: 2024-> 2025.
011000f03 Migration stuff in progress... (all tests of all packages: OK).
67805f2fc ThreadLocalUserContext.user -> ThreadLocalUserContext.loggedInUser (renamed for avoiding mis-understandings in code).
4c04cfd65 MAJOR-CHANGE! Migration of integer id's to Long id's (including fk's etc.)
b6092df09 Copyright 2023 -> 2024
ab45d51fa Copyright 2001-2022 -> 2001-2023.
38bec971a ThreadLocal -> Kotlin
a0c602b8c Time sheet editing: tooltip for task favorite star added.
534df1ecc Stackoverflow bug fixed in TimesheetsFavoritesService while migrating old templates.
170fb63cf Migration of legacy timesheet templates implemented on demand.
5f7ef41b8 Copyright 2021 -> 2022
ceb63e8a1 Source code header: (C) 2001-2021.
2d6ddaea9 Refactoring of recent time sheets functionality in TimesheetRecentService.
7c79f1922 Copyright of source header -> 2020.
d505b25cc TimesheetFavoritesService: null safe as operator.
f9f2a6165 WIP: Time sheet editing (favorites).
f07e036ad WIP: Timesheet editing: time sheet favorites...