Commit Graph

1230 Commits

Author SHA1 Message Date
Andrew Roberts
6eae9b88dc Configureable delimiter for remote auth groups (#1782)
* add groups-delimiter (REMOTE_AUTH_GROUPS_DELIMITER) for parsing groups from a remote auth source

* added doc
2025-12-06 20:20:52 -07:00
Jose Alvarez
21e53e1609 Add missing field for Kobo OverDrive expiration check (#1774) 2025-12-06 20:18:18 -07:00
Balázs Szücs
7b5128a511 fix(epub): fix and improve cover image extraction from EPUB files (specifically support for: EPUB 3 specification) (#1773)
* fix(epub): improve cover image extraction from EPUB files

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

* fix(epub): enhance cover image extraction and path resolution

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

---------

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-06 20:17:51 -07:00
Balázs Szücs
d336cde261 fix(bookdrop): ignore dot and underscore files during monitoring (#1771)
Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-06 20:12:57 -07:00
Ryan Mellmer
05261c84f1 Add OIDC mobile redirect support for mobile apps (#1767)
* Add mobile OIDC authentication endpoint

This adds a new REST endpoint for mobile applications to complete OIDC
authentication. Mobile apps cannot use the web-based OIDC callback because
they need to receive tokens via a custom URL scheme.

New endpoints:
- POST /api/v1/auth/mobile/oidc/callback
  Accepts authorization code, PKCE verifier, and redirect URI.
  Returns Booklore JWT tokens (accessToken, refreshToken).

- GET /api/v1/auth/mobile/oidc/redirect
  Alternative endpoint that redirects to the mobile app's URL scheme
  with tokens as query parameters.

The flow works as follows:
1. Mobile app initiates OIDC auth with PKCE, using its own redirect URI
2. User authenticates with the OIDC provider
3. OIDC provider redirects to Booklore server's oauth2-callback
4. Mobile app calls this new endpoint with the authorization code
5. Booklore exchanges the code for OIDC tokens
6. Booklore validates the tokens and provisions/finds the user
7. Booklore issues its own JWT tokens to the mobile app

This enables iOS/Android apps to use OIDC authentication with Booklore.

* Fix compilation issues in MobileOidcController.java
2025-12-06 09:45:45 -07:00
Muppetteer
51fa54bed3 Improve bookdrop UI (#1768)
* Improve bookdrop UI

* Rename resetAll as it doesn't apply to all now

* Fix display of copied metadata fields
2025-12-06 09:16:42 -07:00
Muppetteer
474e95c4f2 Hide empty filters from sidebar (#1759) 2025-12-05 09:45:10 -07:00
Muppetteer
16fe1b632b Fix script error on clearing multi-select fields (#1756) 2025-12-05 09:44:04 -07:00
Balázs Szücs
147c374d51 hotfix(auth): add missing EC algo for Authentik, manually increase timeout limit (#1747)
* hotfix(auth) enhance OIDC JWT validation error messaging and improve JWK source configuration

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

* fix(auth): add RSA algorithm to JWS algorithm set for JWT processing

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

---------

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-05 08:41:28 -07:00
Aditya Chandel
66220b80ee Add sort preference option for Magic Shelf names in the left sidebar (#1749) 2025-12-03 21:44:39 -07:00
Muppetteer
a7fe7b555d Feature: filter mode preference (#1739)
* Feature: filter mode preference

* Flter sorting mode preference

* Filter sorting mode preference

---------

Co-authored-by: Aditya Chandel <8075870+adityachandelgit@users.noreply.github.com>
2025-12-03 21:19:52 -07:00
Aditya Chandel
f22f9bd1e0 Add a user-facing option to enable or disable series view (#1748) 2025-12-03 21:17:06 -07:00
aditya.chandel
9b6079a3b5 Merge branch 'develop' of github.com-personal:adityachandelgit/BookLore into develop 2025-12-03 20:12:11 -07:00
aditya.chandel
9281fd9559 Improve the UI of the shelf edit dialog 2025-12-03 20:11:48 -07:00
Balázs Szücs
162779a105 fix(metadata): disable merging of moods and tags during metadata updates (#1743)
Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-03 09:01:48 -07:00
Balázs Szücs
ed5c770f99 fix(amazon): improve localization of Amazon Parser (#1706)
* fix(amazon): review date parsing to support Japanese formats

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

* refactor: enhance Amazon metadata parser robustness and domain support

- Add missing Amazon domains (AE, SA, CN, SG, TR, EG, BE) to DOMAIN_LOCALE_MAP.
- Implement fallback selectors for Title, Authors, Description, Publisher, Publication Date, and ISBNs to support legacy and variant page layouts.
- Support localized 'Publisher' labels (e.g., Herausgeber, Éditeur, Uitgever) in detail bullets.
- Fix brittle date parsing by searching for dates in detail bullets when RPI attributes are missing.
- Improve author extraction with multiple fallback strategies.

---------

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-03 08:57:58 -07:00
Aditya Chandel
bb31f67d80 More UI tweaks (#1740) 2025-12-02 23:31:48 -07:00
aditya.chandel
0b286619ae Highlight color 2025-12-02 20:58:35 -07:00
aditya.chandel
82e003a080 Remove tooltip 2025-12-02 20:35:51 -07:00
Aditya Chandel
a4b0e22ad8 Visually indicate the active menu item in the left sidebar (#1738) 2025-12-02 20:22:25 -07:00
Muppetteer
76e904436b Add filter mode to querystring (#1728)
* Add filter mode to query string

* Fix state of clear filters button

* Ensures filter divider lines meet container border
2025-12-02 19:40:56 -07:00
Balázs Szücs
cea977062a fix(epub): improve date parsing to support year-only formats and add tests (#1735)
Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-02 16:44:19 -07:00
Aditya Chandel
6b0b078044 Align the layout to be consistent throughout all dialogs (#1737) 2025-12-02 16:31:19 -07:00
WorldTeacher
8e8d57af73 opds sort by addedon Desc by default (#1691)
Co-authored-by: WorldTeacher <admin@theprivateserver.de>
2025-12-02 11:20:40 -07:00
Balázs Szücs
ff2654db1b feat(metadata): consider locked, but empty or null metadata valid (#1729)
Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-12-02 10:13:55 -07:00
Sergio Visinoni
d40a650df7 Fix race conditions between Bookdrop and Monitoring Service when importing multiple files (#1709)
* fix(bookdrop): gate library re-registration during single-file moves

- query MonitoringService to see if the library is actively watched before
  unregistering/re-registering it
- lower log noise for these operations and monitoring registration
- expose MonitoringService#isLibraryMonitored via MonitoringRegistrationService
- add FileMoveServiceTest covering monitored vs unmonitored scenarios

This fixes issues when importing multiple files via bookdrop.

Refs: #1608

* fix(bookdrop): avoid unnecessary stacktrace

* Use `deleteIfExists` to avoid trying to delete a missing file

This happens regularly as the file has already been removed by other methods
2025-12-02 10:06:59 -07:00
beedaddy
a179749c93 Re-add "description" to epub metadata extraction (#1727)
A former commit accidentially removed the description field from the metadata extraction.

Fixes #1725
2025-12-02 08:07:09 -07:00
Aditya Chandel
4da832cd19 Fix: Missing close button from dialogue window (#1717) 2025-12-01 20:02:53 -07:00
Aditya Chandel
b5460a5e90 Fix: Date filter doesn't work very well (#1715) 2025-12-01 19:25:17 -07:00
Muppetteer
d4121b241a Fix dev docker environment (#1713) 2025-12-01 17:27:50 -07:00
aditya.chandel
4b206115ce Tweak UI for dashboard settings and book filter 2025-12-01 12:46:51 -07:00
Aditya Chandel
132e3e3f92 Fix build (#1697) 2025-11-30 18:15:03 -07:00
aditya.chandel
0c9409b087 Metadata viewer minor layout tweaks 2025-11-30 17:36:19 -07:00
Aditya Chandel
ff17b74adb Downgrade Java, Spring Boot and Gradle (#1696)
* Revert Spring Boot 4

* Downgrade Java from 25 to 21 and Gradle from 9 to 8
2025-11-30 16:39:56 -07:00
aditya.chandel
bdeeee6d8d Fix missing import 2025-11-30 09:55:11 -07:00
CounterClops
dfb73d50d9 Feature: Add EPUB conversion support for CBX files to Kobo Sync (#1538)
* Feature/kobo sync cbx support (#3)

* Feature: Add CBX syncing support to Kobo sync (#2)

* feat: add cbx sync support

* fix: phrasing of setting description to align with CBX terminology

* fix: resolve issue with CBX setting persistence

* fix: updated dev docker compose to align with Dockerfile

* feat: add cbx files as allowed entitlements

* fix: relax tomcat query characters for kobo sync

* fix: remove hardcoded epub restrictions

* fix: reduce image size and resolve relative content paths

* fix: resolve issues with the image file encoding

* feat: add rar and cb7 support

* feat: bring generated epub more in line with epub standard

* fix: resolve issues with extra metadata fields

* fix: make css background colour white to improve e-ink performance

* cleanup: code comments

* feat: add cbx unit tests

* fix: update zipfile to use builder pattern as current method is deprecated

* fix: remove comments

* fix: replace regex pattern to a simpler check

* fix: remove unused imports

* fix: update epub template to use standard language string

* fix: missing line end on css

* fix: remove duplicate query characters

* fix: grammer issue

* fix: resolve typo in the entitlement service test

* fix: redundant imports and update long types

* chore: update test descriptions for cbx conversion

* fix: add check for larger images in archive files. unlikely to occur.

* fix: merge temp dir logic for the book download

* fix: update kobo entitlement to always report the format as epub3

* fix: implement suggested changes around javadocs and some edge cases to handle gracefully

* chore: cleanup variable names to be clearer in download service

* feat: change function to extract to disk instead of storing images in memory

* fix: add temp file clean up into the conversion service

* fix: add visual divider to seperate CBX and EPUB settings

* fix: update lambdas to use method references

* fix: reword setting description for cbx to epub sync

---------

Co-authored-by: Aditya Chandel <8075870+adityachandelgit@users.noreply.github.com>
2025-11-30 09:53:26 -07:00
aditya.chandel
e47046aa20 Fix flyway versioning 2025-11-30 09:49:20 -07:00
CounterClops
3ef5b60ed6 Feat: Improve kobo reading state sync logic for better bidirectional support (#1644)
* feat: kobo sync improvements (push changes from booklore, and properly delete kobo data on reset)

* fix: issues with sync race conditions and improve readability

* fix: update function names to be clearer and more explicit

* fix: move partially_read to reading status mapping

* fix: make the bufferwindow more explicit in the unsynced progress check

* chore: add unit tests for additional sync logic

* fix: improve bi-directional logic to account for changes in progress and status

* chore: add additional tests to check the kobo sync logic and remove redundant tests
2025-11-30 09:44:11 -07:00
Balázs Szücs
2336d04a46 refactor(exception): modernize exception handling and method signatures across services and controllers (#1670)
* refactor(exception): modernize exception handling and method signatures across services and controllers

- Remove unnecessary checked exceptions from method signatures
- Replace IOException with UncheckedIOException where appropriate
- Update test methods to match new signatures and remove throws declarations
- Improve converter classes with type safety, logging, and null handling
- Simplify collection assignment logic in metadata and book services
- Enhance author and category tokenization in HardcoverParser
- Add equals/hashCode to ShelfEntity for proper set behavior
- Add comprehensive unit tests for converter and service classes

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

* refactor(entity): update equality and hashCode for JPA entities to use ID; add comprehensive tests and adjust test data to set IDs

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

---------

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-11-30 09:41:15 -07:00
Balázs Szücs
965aa9dfab Improve image resource management by ensuring BufferedImage objects are flushed after processing; add tests for cover extraction and image scaling (#1688)
Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-11-30 08:17:44 -07:00
Aditya Chandel
914d05b464 Enable jumping to filters by clicking page count, file size, or match score ranges (#1685) 2025-11-29 17:42:44 -07:00
Balázs Szücs
348e8e9022 fix(pdf): handle out-of-memory errors gracefully during cover generation and limit image size to prevent OOM (#1680)
* fix(pdf): handle out-of-memory errors gracefully during cover generation and limit image size to prevent OOM

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

* fix(file): release native resources after saving image to prevent memory leaks

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>

---------

Signed-off-by: Balázs Szücs <bszucs1209@gmail.com>
2025-11-29 17:00:43 -07:00
Muppetteer
7baa2ee8bd More single select filters (#1678) 2025-11-29 17:00:13 -07:00
beedaddy
357c98b8ce Add actual language to Kobo metadata (#1682)
Fixes #1681
2025-11-29 16:59:17 -07:00
Aditya Chandel
3017d0413c Improve computed filter label logic for cleaner and more readable summaries (#1684) 2025-11-29 16:58:53 -07:00
Aditya Chandel
2145683ce0 Expose Magic Shelves through the OPDS feed so clients can access them (#1683) 2025-11-29 16:58:31 -07:00
aditya.chandel
dbad4f6659 Revert angular update 2025-11-28 19:20:16 -07:00
Aditya Chandel
16ffd5f558 Upgrade Angular to v21 and update all major frontend dependencies (#1674) 2025-11-28 19:15:04 -07:00
Muppetteer
7ff72a8916 Add single select filter mode (#1671)
* Add single select filter mode

* Update booklore-ui/src/app/features/book/components/book-browser/book-filter/book-filter.component.ts

Co-authored-by: Aditya Chandel <8075870+adityachandelgit@users.noreply.github.com>

---------

Co-authored-by: Aditya Chandel <8075870+adityachandelgit@users.noreply.github.com>
2025-11-28 18:43:06 -07:00
Muppetteer
5d79e06254 Fix: Prevent sorting prefs select options from overflowing container (#1673) 2025-11-28 18:38:40 -07:00