From 8edab22d328d89b5055641ac53a956877c33ce41 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Thu, 13 Nov 2025 21:45:48 +0100 Subject: [PATCH] Remove Barcodebuddy (#9135) * Delete ct/barcode-buddy.sh * Delete ct/headers/barcode-buddy * Delete frontend/public/json/barcode-buddy.json * Delete install/barcode-buddy-install.sh --- ct/barcode-buddy.sh | 69 ----------------------- ct/headers/barcode-buddy | 6 -- frontend/public/json/barcode-buddy.json | 40 -------------- install/barcode-buddy-install.sh | 73 ------------------------- 4 files changed, 188 deletions(-) delete mode 100644 ct/barcode-buddy.sh delete mode 100644 ct/headers/barcode-buddy delete mode 100644 frontend/public/json/barcode-buddy.json delete mode 100644 install/barcode-buddy-install.sh diff --git a/ct/barcode-buddy.sh b/ct/barcode-buddy.sh deleted file mode 100644 index 270d11121..000000000 --- a/ct/barcode-buddy.sh +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL 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="Barcode-Buddy" -var_tags="${var_tags:-grocery;household}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-512}" -var_disk="${var_disk:-3}" -var_os="${var_os:-debian}" -var_version="${var_version:-12}" -var_unprivileged="${var_unprivileged:-1}" - -header_info "$APP" -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 - - if check_for_gh_release "barcodebuddy" "Forceu/barcodebuddy"; then - msg_info "Stopping Service" - systemctl stop apache2 - systemctl stop barcodebuddy - msg_ok "Stopped Service" - - msg_info "Backing up data" - mv /opt/barcodebuddy/ /opt/barcodebuddy-backup - msg_ok "Backed up data" - - fetch_and_deploy_gh_release "barcodebuddy" "Forceu/barcodebuddy" - - msg_info "Configuring ${APP}" - cp -r /opt/barcodebuddy-backup/data/. /opt/barcodebuddy/data - chown -R www-data:www-data /opt/barcodebuddy/data - msg_ok "Configured ${APP}" - - msg_info "Starting Service" - systemctl start apache2 - systemctl start barcodebuddy - msg_ok "Started Service" - - msg_info "Cleaning up" - rm -r /opt/barcodebuddy-backup - msg_ok "Cleaned" - msg_ok "Updated successfully!" - 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/ct/headers/barcode-buddy b/ct/headers/barcode-buddy deleted file mode 100644 index 81ec8c07a..000000000 --- a/ct/headers/barcode-buddy +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ ____ __ __ - / __ )____ _______________ ____/ /__ / __ )__ ______/ /___/ /_ __ - / __ / __ `/ ___/ ___/ __ \/ __ / _ \______/ __ / / / / __ / __ / / / / - / /_/ / /_/ / / / /__/ /_/ / /_/ / __/_____/ /_/ / /_/ / /_/ / /_/ / /_/ / -/_____/\__,_/_/ \___/\____/\__,_/\___/ /_____/\__,_/\__,_/\__,_/\__, / - /____/ diff --git a/frontend/public/json/barcode-buddy.json b/frontend/public/json/barcode-buddy.json deleted file mode 100644 index e3ddef15c..000000000 --- a/frontend/public/json/barcode-buddy.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "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": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/barcode-buddy.webp", - "config_path": "/opt/barcodebuddy/data/config.php", - "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" - } - ] -} diff --git a/install/barcode-buddy-install.sh b/install/barcode-buddy-install.sh deleted file mode 100644 index 14d40d206..000000000 --- a/install/barcode-buddy-install.sh +++ /dev/null @@ -1,73 +0,0 @@ -#!/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: https://github.com/Forceu/barcodebuddy - -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 \ - redis \ - sqlite3 -msg_ok "Installed Dependencies" - -PHP_VERSION="8.2" PHP_APACHE="YES" PHP_MODULE="redis, sqlite3" setup_php -fetch_and_deploy_gh_release "barcodebuddy" "Forceu/barcodebuddy" - -msg_info "Configuring barcodebuddy" -chown -R www-data:www-data /opt/barcodebuddy/data -msg_ok "Configured 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" -$STD apt-get -y autoremove -$STD apt-get -y autoclean -msg_ok "Cleaned"