-
-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: fix direct update delay #555
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe pull request adds logic to delay the update process based on configured conditions. The update method now retrieves a JSON string from shared preferences, parses it using the Gson library into an array of Changes
Sequence Diagram(s)sequenceDiagram
participant U as Update Process
participant P as CapacitorUpdaterPlugin
participant SP as SharedPreferences
participant G as Gson Parser
participant N as Notification System
U->>P: Invoke backgroundDownload()
P->>SP: Retrieve JSON string for DelayConditions
SP-->>P: Return JSON string
P->>G: Parse JSON to DelayConditions array
G-->>P: Return DelayConditions array
alt DelayConditions present
P->>N: Call endBackGroundTaskWithNotif()
N-->>P: Notify user update delayed
else No DelayConditions
P->>U: Continue update process
end
Poem
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java (1)
61-61
: Consider using a descriptive name for the preferences key.Using an empty string as the key for shared preferences is unusual and could potentially lead to conflicts with other preferences. Consider using a more descriptive name that includes the plugin name for better namespacing.
- private static final String DELAY_CONDITION_PREFERENCES = ""; + private static final String DELAY_CONDITION_PREFERENCES = "capacitor_updater_delay_conditions";
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java
(1 hunks)
🧰 Additional context used
🧬 Code Definitions (1)
android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java (2)
android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdater.java (1)
CapacitorUpdater
(43-1074)src/definitions.ts (1)
CapacitorUpdaterPlugin
(238-569)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: build_ios
🔇 Additional comments (2)
android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java (2)
1109-1122
: LGTM! Properly implemented delay conditions check.The code correctly checks for delay conditions before proceeding with an update. When conditions are present, it appropriately notifies the user and stops the update process until those conditions are met.
1223-1230
: Good consistency with delay condition handling.This code matches the implementation in the
backgroundDownload
method, ensuring delay conditions are consistently checked before proceeding with updates in both direct and background scenarios.
Summary by CodeRabbit