From 782e0a853583084d68c035faf6610125915da162 Mon Sep 17 00:00:00 2001 From: bvdberg01 <74251551+bvdberg01@users.noreply.github.com> Date: Sat, 8 Feb 2025 21:59:42 +0100 Subject: [PATCH] New script: Barcode Buddy (#2167) --- ct/barcode-buddy.sh | 76 ++++++++++++++++++++++++++++++ install/barcode-buddy-install.sh | 81 ++++++++++++++++++++++++++++++++ json/barcode-buddy.json | 39 +++++++++++++++ 3 files changed, 196 insertions(+) create mode 100644 ct/barcode-buddy.sh create mode 100644 install/barcode-buddy-install.sh create mode 100644 json/barcode-buddy.json diff --git a/ct/barcode-buddy.sh b/ct/barcode-buddy.sh new file mode 100644 index 00000000..1a9abf1d --- /dev/null +++ b/ct/barcode-buddy.sh @@ -0,0 +1,76 @@ +#!/usr/bin/env bash +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2025 community-scripts ORG +# Author: bvdberg01 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/Forceu/barcodebuddy + +# App Default Values +APP="Barcode-Buddy" +var_tags="grocery;household" +var_cpu="1" +var_ram="512" +var_disk="3" +var_os="debian" +var_version="12" +var_unprivileged="1" + +# App Output & Base Settings +header_info "$APP" +base_settings + +# Core +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + if [[ ! -d /opt/barcodebuddy ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + RELEASE=$(curl -s https://api.github.com/repos/Forceu/barcodebuddy/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') + if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then + msg_info "Stopping Service" + systemctl stop apache2 + systemctl stop barcodebuddy + msg_ok "Stopped Service" + + msg_info "Updating ${APP} to v${RELEASE}" + cd /opt + mv /opt/barcodebuddy/ /opt/barcodebuddy-backup + wget -q "https://github.com/Forceu/barcodebuddy/archive/refs/tags/v${RELEASE}.zip" + unzip -q "v${RELEASE}.zip" + mv "/opt/barcodebuddy-${RELEASE}" /opt/barcodebuddy + cp -r /opt/barcodebuddy-backup/data/. /opt/barcodebuddy/data + chown -R www-data:www-data /opt/barcodebuddy/data + echo "${RELEASE}" >/opt/${APP}_version.txt + msg_ok "Updated $APP to v${RELEASE}" + + msg_info "Starting Service" + systemctl start apache2 + systemctl start barcodebuddy + msg_ok "Started Service" + + msg_info "Cleaning up" + rm -r "/opt/v${RELEASE}.zip" + rm -r /opt/barcodebuddy-backup + msg_ok "Cleaned" + msg_ok "Updated Successfully" + else + msg_ok "No update required. ${APP} is already at v${RELEASE}" + fi + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} Access it using the following URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/install/barcode-buddy-install.sh b/install/barcode-buddy-install.sh new file mode 100644 index 00000000..36dca772 --- /dev/null +++ b/install/barcode-buddy-install.sh @@ -0,0 +1,81 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: bvdberg01 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE + +source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" +$STD apt-get install -y \ + curl \ + sudo \ + mc \ + apache2 \ + redis \ + php-{curl,date,json,mbstring,redis,sqlite3,sockets} \ + libapache2-mod-php +msg_ok "Installed Dependencies" + +msg_info "Installing barcodebuddy" +RELEASE=$(curl -s https://api.github.com/repos/Forceu/barcodebuddy/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') +cd /opt +wget -q "https://github.com/Forceu/barcodebuddy/archive/refs/tags/v${RELEASE}.zip" +unzip -q "v${RELEASE}.zip" +mv "/opt/barcodebuddy-${RELEASE}" /opt/barcodebuddy +chown -R www-data:www-data /opt/barcodebuddy/data +echo "${RELEASE}" >/opt/${APPLICATION}_version.txt +msg_ok "Installed barcodebuddy" + +msg_info "Creating Services" +cat </etc/systemd/system/barcodebuddy.service +[Unit] +Description=Run websocket server for barcodebuddy screen feature +After=network.target + +[Service] +Type=simple +ExecStart=/usr/bin/php /opt/barcodebuddy/wsserver.php +StandardOutput=null +Restart=on-failure +User=www-data + +[Install] +WantedBy=multi-user.target +EOF +cat </etc/apache2/sites-available/barcodebuddy.conf + + ServerName barcodebuddy + DocumentRoot /opt/barcodebuddy + + + Options FollowSymLinks + AllowOverride All + Require all granted + + + ErrorLog /var/log/apache2/barcodebuddy_error.log + CustomLog /var/log/apache2/barcodebuddy_access.log combined + +EOF +systemctl enable -q --now barcodebuddy +$STD a2ensite barcodebuddy +$STD a2enmod rewrite +$STD a2dissite 000-default.conf +$STD systemctl reload apache2 +msg_ok "Created Services" + +motd_ssh +customize + +msg_info "Cleaning up" +rm -rf "/opt/v${RELEASE}.zip" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" diff --git a/json/barcode-buddy.json b/json/barcode-buddy.json new file mode 100644 index 00000000..a0c6c5fa --- /dev/null +++ b/json/barcode-buddy.json @@ -0,0 +1,39 @@ +{ + "name": "Barcode buddy", + "slug": "barcode-buddy", + "categories": [ + 24 + ], + "date_created": "2025-02-08", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 80, + "documentation": "https://barcodebuddy-documentation.readthedocs.io/en/latest/", + "website": "https://github.com/Forceu/barcodebuddy", + "logo": null, + "description": "Barcode Buddy for Grocy is an extension for Grocy, allowing to pass barcodes to Grocy. It supports barcodes for products and chores. If you own a physical barcode scanner, it can be integrated, so that all barcodes scanned are automatically pushed to BarcodeBuddy/Grocy.", + "install_methods": [ + { + "type": "default", + "script": "ct/barcode-buddy.sh", + "resources": { + "cpu": 1, + "ram": 512, + "hdd": 3, + "os": "Debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "text": "After install enable the option \"Use Redis cache\" on the settings page.", + "type": "info" + } + ] +} \ No newline at end of file