Skip to content
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

Create wled-tools.sh #4625

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Create wled-tools.sh #4625

wants to merge 4 commits into from

Conversation

LordMike
Copy link
Contributor

@LordMike LordMike commented Mar 29, 2025

Per discussion #4621, add a discover-fueled tool to update/backup wled devices in the local network.

Todo:

  • discover and log hostnames, but connect to ips. Avoid requiring host dns to work when connecting

Help text:

# ./wled-tools.sh
Usage: wled-tools.sh [OPTIONS] COMMAND [ARGS...]

Options:
  -h, --help              Show this help message and exit.
  -v, --verbose           Enable verbose output for debugging.
  -t, --target <IP/Host>  Specify a single WLED device by IP address or hostname.
  -D, --discover          Discover multiple WLED devices using mDNS.
  -d, --directory <Path>  Specify a directory for saving backups (default: working directory).
  -f, --firmware <File>   Specify the firmware file for updating devices.
  -q, --quiet             Suppress logging output (also makes discover output hostnames only).

Commands:
  backup      Backup the current state of a WLED device or multiple discovered devices.
  update      Update the firmware of a WLED device or multiple discovered devices.
  discover    Discover WLED devices using mDNS and list their IP addresses and names.

Example command:

# ./wled-tools.sh backup --discover -d backups
[INFO] Backing up device config/presets: wled-light-1-6.local
[INFO] Backing up device config/presets: wled-light-5-3.local

Summary by CodeRabbit

  • New Features
    • Introduced a new command-line tool to manage WLED devices.
    • Now supports key functions such as device discovery, configuration backup, and firmware updates.
    • Enhanced logging provides color-coded feedback with adjustable verbosity and quiet mode for an improved terminal experience.

Per discussion, add a discover-fueled tool to update/backup wled devices in the local network.
Copy link

coderabbitai bot commented Mar 29, 2025

Walkthrough

A new Bash script, wled-tools.sh, has been added to provide a command-line interface for managing WLED devices. The script implements functions for device discovery, firmware updates, and backups. It includes color-coded logging, a generic HTTP request handler, and command-line argument processing with options such as help, verbosity, quiet mode, and target selection. Dependency checks and error handling are incorporated to ensure smooth interactions with network and filesystem operations.

Changes

File Path Summary
tools/wled-tools.sh New Bash script introducing a CLI for managing WLED devices. It implements logging, argument parsing, HTTP request handling, dependency checks, and supports backup, update, and discovery commands.
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@LordMike LordMike marked this pull request as draft March 29, 2025 13:10
@LordMike LordMike marked this pull request as ready for review March 29, 2025 17:21
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (6)
tools/wled-tools.sh (6)

3-9: Unused Color Variable Defined
The GREEN variable is defined but never used in the script. Consider removing it or utilizing it for consistency with the other color definitions.

🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 4-4: GREEN appears unused. Verify use (or export if used externally).

(SC2034)


27-47: Generic cURL Handler is Functional
The curl_handler function encapsulates HTTP request error handling well. One minor point: ensure that the command passed to this function does not introduce word-splitting issues. Consider validating or sanitizing $command if user input could ever be involved.


71-87: Device Discovery Function is Effective
The discover_devices function leverages avahi-browse and processes its output correctly. If you wish to enhance robustness, consider outputting discovered device entries as newline-separated values instead of a space‐delimited string (this can help avoid potential parsing issues when hostname fields contain spaces).


89-113: Backup Function – Quotation Issue in cURL Command Strings
In the backup_one function, the assignments on lines 105 and 106 trigger shellcheck warnings because inner quotes are not properly escaped. This may lead to unexpected behavior when the URLs or destination paths contain spaces.
Consider applying the following diff to fix the quoting:

-    local curl_command_cfg="curl -s "$cfg_url" -o "$cfg_dest.tmp""
-    local curl_command_presets="curl -s "$presets_url" -o "$presets_dest.tmp""
+    local curl_command_cfg="curl -s \"$cfg_url\" -o \"$cfg_dest.tmp\""
+    local curl_command_presets="curl -s \"$presets_url\" -o \"$presets_dest.tmp\""
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 105-105: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 106-106: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


115-128: Firmware Update Function – Quotation in cURL Command Needs Correction
On line 125 in update_one, the command string is not properly quoted, which may lead to issues with files or URLs containing spaces. Applying proper escaping will make the command robust. For example:

-    local curl_command="curl -s -X POST -F "file=@$firmware" "$url""
+    local curl_command="curl -s -X POST -F \"file=@$firmware\" \"$url\""
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 125-125: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


181-242: Command Execution Block Appears Consistent
The switch-case block executing the chosen command (discover, backup, or update) is logically structured and handles errors (e.g., missing targets) appropriately. Ensure that the assumptions (e.g., defaulting to port 80 for a target) are documented if they are intended design decisions.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e76e9a3 and 8a6e3a9.

📒 Files selected for processing (1)
  • tools/wled-tools.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
tools/wled-tools.sh

[warning] 4-4: GREEN appears unused. Verify use (or export if used externally).

(SC2034)


[warning] 105-105: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 106-106: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 125-125: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)

🔇 Additional comments (1)
tools/wled-tools.sh (1)

11-25: Logging Function Implementation Looks Good
The log function correctly handles conditional terminal output based on the quiet flag and whether the output is a terminal.

Comment on lines +143 to +177
while [[ $# -gt 0 ]]; do
case "$1" in
-h|--help)
show_help
exit 0
;;
-t|--target)
target="$2"
shift 2
;;
-D|--discover)
discover=true
shift
;;
-d|--directory)
backup_dir="$2"
shift 2
;;
-f|--firmware)
firmware_file="$2"
shift 2
;;
-q|--quiet)
quiet=true
shift
;;
backup|update|discover)
command="$1"
shift
;;
*)
log "ERROR" "$RED" "Unknown argument: $1"
exit 1
;;
esac
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

❓ Verification inconclusive

Missing Verbose Option Handling in Command-Line Arguments
While the help message (show_help) describes a -v/--verbose option, there is no case handling for it in the argument processing loop. If verbose output is intended, add an option block to set a verbose variable and use it accordingly in your functions (for example, to control additional debug output).


Missing Verbose Option Handling in Command-Line Arguments

The help message clearly references a -v/--verbose option to enable verbose output; however, the current argument parser in tools/wled-tools.sh (lines 143-177) lacks any handling for this flag. To align the implementation with the documentation, please add a case for -v|--verbose that sets a verbose variable (e.g., to true) and then shifts the arguments. For instance:

-v|--verbose)
    verbose=true
    shift
    ;;

This update will ensure that verbose mode can be correctly activated as documented.

Copy link

@coderabbitai coderabbitai bot left a 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

♻️ Duplicate comments (1)
tools/wled-tools.sh (1)

142-177: 🛠️ Refactor suggestion

Missing Verbose Option Handling
The PR objectives and help text documentation indicate support for a verbose flag (-v/--verbose), yet no corresponding case exists in the argument parsing block. To enable verbose logging, add handling for this flag (e.g., set a global variable verbose=true) and update the help text to list the verbose option.

Proposed diff for the argument parsing (suggest inserting after the -f|--firmware case and before -q|--quiet):

-        -f|--firmware)
-            firmware_file="$2"
-            shift 2
-            ;;
+        -f|--firmware)
+            firmware_file="$2"
+            shift 2
+            ;;
+        -v|--verbose)
+            verbose=true
+            shift
+            ;;

Proposed diff for updating the help message (inside the heredoc in show_help):

  -f, --firmware <File>   Specify the firmware file for updating devices.
+  -v, --verbose           Enable verbose output for debugging.
  -q, --quiet             Suppress logging output (also makes discover output hostnames only).
🧹 Nitpick comments (4)
tools/wled-tools.sh (4)

4-8: Unused Variable Warning: GREEN
The variable GREEN is defined at the top but is never referenced in the script. If you plan to use it in future logging or other features, consider adding an inline comment for clarity; otherwise, removing it could help clean up the code.

🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 4-4: GREEN appears unused. Verify use (or export if used externally).

(SC2034)


104-105: Fix Quoting in Curl Command Construction for Backup
The curl command strings in the backup_one function use inner quotes without escaping, which may lead to unexpected behavior or shellcheck warnings. Using escaped quotes will ensure the URL and destination paths are correctly interpreted.

-    local curl_command_cfg="curl -s "$cfg_url" -o "$cfg_dest.tmp""
-    local curl_command_presets="curl -s "$presets_url" -o "$presets_dest.tmp""
+    local curl_command_cfg="curl -s \"$cfg_url\" -o \"$cfg_dest.tmp\""
+    local curl_command_presets="curl -s \"$presets_url\" -o \"$presets_dest.tmp\""
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 104-104: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 105-105: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


124-124: Fix Quoting in Curl Command for Firmware Update
The curl command in the update_one function is also affected by unescaped inner quotes. Escaping these quotes correctly will fix potential issues with command interpretation.

-    local curl_command="curl -s -X POST -F "file=@$firmware" "$url""
+    local curl_command="curl -s -X POST -F \"file=@$firmware\" \"$url\""
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 124-124: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


107-111: Enhance Backup Error Handling
In the backup_one function, both curl calls are executed without checking their exit statuses. To prevent partial backups (e.g., renaming temporary files even if one download fails), consider verifying that each curl_handler call succeeds before moving the temporary files. For example:

if ! curl_handler "$curl_command_cfg" "$hostname"; then
    log "ERROR" "$RED" "Failed to backup config for $hostname."
    return 1
fi
if ! curl_handler "$curl_command_presets" "$hostname"; then
    log "ERROR" "$RED" "Failed to backup presets for $hostname."
    return 1
fi
mv "$cfg_dest.tmp" "$cfg_dest"
mv "$presets_dest.tmp" "$presets_dest"

This additional check will help ensure data integrity during the backup process.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8a6e3a9 and 6f54827.

📒 Files selected for processing (1)
  • tools/wled-tools.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
tools/wled-tools.sh

[warning] 4-4: GREEN appears unused. Verify use (or export if used externally).

(SC2034)


[warning] 104-104: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 105-105: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)


[warning] 124-124: The surrounding quotes actually unquote this. Remove or escape them.

(SC2027)

⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: wled_build / Build Environments (usermods)
  • GitHub Check: wled_build / Build Environments (esp32s3dev_8MB_opi)

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you drop the extension, it leaves the door open to ever be rewritten in python for example.

Because for a user the language is not of interest.

I'm not running libreoffice.sh or ls.py either 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants