| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- #!/bin/bash
- #
- # Dune Weaver CLI
- #
- # Usage: dw <command>
- #
- # Commands:
- # install Run initial setup (Docker + WiFi fix)
- # start Start Dune Weaver
- # stop Stop Dune Weaver
- # restart Restart Dune Weaver
- # update Pull latest changes and restart
- # logs View live logs (Ctrl+C to exit)
- # status Show container status
- # shell Open a shell in the container
- # touch Manage touch screen app
- # help Show this help message
- #
- set -e
- # Colors
- RED='\033[0;31m'
- GREEN='\033[0;32m'
- YELLOW='\033[1;33m'
- BLUE='\033[0;34m'
- NC='\033[0m'
- # Find dune-weaver directory
- find_install_dir() {
- # Check common locations
- if [[ -f "$HOME/dune-weaver/main.py" ]]; then
- echo "$HOME/dune-weaver"
- elif [[ -f "/home/pi/dune-weaver/main.py" ]]; then
- echo "/home/pi/dune-weaver"
- elif [[ -f "./main.py" ]]; then
- pwd
- else
- echo ""
- fi
- }
- # Check if using Docker or systemd
- is_docker_mode() {
- # Docker mode if docker-compose.yml exists and docker is available
- [[ -f "$INSTALL_DIR/docker-compose.yml" ]] && command -v docker &> /dev/null
- }
- INSTALL_DIR=$(find_install_dir)
- # Check if installed
- check_installed() {
- if [[ -z "$INSTALL_DIR" ]]; then
- echo -e "${RED}Error: Dune Weaver not found${NC}"
- echo ""
- echo "Please install first:"
- echo " git clone https://github.com/tuanchris/dune-weaver --single-branch"
- echo " cd dune-weaver"
- echo " dw install"
- exit 1
- fi
- }
- # Commands
- cmd_install() {
- if [[ -z "$INSTALL_DIR" ]]; then
- # Not installed, check if we're in the right directory
- if [[ -f "./docker-compose.yml" ]] && [[ -f "./main.py" ]]; then
- INSTALL_DIR=$(pwd)
- else
- echo -e "${RED}Error: Run this from the dune-weaver directory${NC}"
- echo ""
- echo " git clone https://github.com/tuanchris/dune-weaver --single-branch"
- echo " cd dune-weaver"
- echo " dw install"
- exit 1
- fi
- fi
- cd "$INSTALL_DIR"
- bash setup-pi.sh "$@"
- }
- cmd_start() {
- check_installed
- echo -e "${BLUE}Starting Dune Weaver...${NC}"
- cd "$INSTALL_DIR"
- if is_docker_mode; then
- sudo docker compose up -d
- else
- sudo systemctl start dune-weaver
- fi
- echo -e "${GREEN}Started!${NC} Access at http://$(hostname -I | awk '{print $1}'):8080"
- }
- cmd_stop() {
- check_installed
- echo -e "${BLUE}Stopping Dune Weaver...${NC}"
- cd "$INSTALL_DIR"
- if is_docker_mode; then
- sudo docker compose down
- else
- sudo systemctl stop dune-weaver
- fi
- echo -e "${GREEN}Stopped${NC}"
- }
- cmd_restart() {
- check_installed
- echo -e "${BLUE}Restarting Dune Weaver...${NC}"
- cd "$INSTALL_DIR"
- if is_docker_mode; then
- sudo docker compose restart
- else
- sudo systemctl restart dune-weaver
- fi
- echo -e "${GREEN}Restarted${NC}"
- }
- cmd_update() {
- check_installed
- echo -e "${BLUE}Updating Dune Weaver...${NC}"
- cd "$INSTALL_DIR"
- echo "Pulling latest code..."
- git pull
- # Update dw CLI
- echo "Updating dw command..."
- sudo cp "$INSTALL_DIR/dw" /usr/local/bin/dw
- sudo chmod +x /usr/local/bin/dw
- if is_docker_mode; then
- echo "Pulling latest Docker image..."
- sudo docker compose pull
- echo "Restarting with new version..."
- sudo docker compose up -d --quiet-pull
- else
- echo "Updating Python dependencies..."
- source .venv/bin/activate
- pip install -r requirements.txt
- echo "Restarting service..."
- sudo systemctl restart dune-weaver
- fi
- # Update touch app if installed
- local touch_dir="$INSTALL_DIR/dune-weaver-touch"
- if [[ -d "$touch_dir" ]]; then
- echo ""
- echo -e "${BLUE}Updating touch app...${NC}"
- cd "$touch_dir"
- git pull
- sudo systemctl restart dune-weaver-touch
- echo -e "${GREEN}Touch app updated!${NC}"
- fi
- echo -e "${GREEN}Update complete!${NC}"
- }
- cmd_logs() {
- check_installed
- cd "$INSTALL_DIR"
- # Parse optional line count (e.g., dw logs 100)
- local lines="${1:-}"
- local follow="-f"
- if [[ -n "$lines" ]]; then
- follow="--tail $lines"
- fi
- if is_docker_mode; then
- sudo docker compose logs $follow
- else
- if [[ -n "$lines" ]]; then
- sudo journalctl -u dune-weaver -n "$lines"
- else
- sudo journalctl -u dune-weaver -f
- fi
- fi
- }
- cmd_status() {
- check_installed
- cd "$INSTALL_DIR"
- if is_docker_mode; then
- sudo docker compose ps
- else
- sudo systemctl status dune-weaver
- fi
- }
- cmd_shell() {
- check_installed
- cd "$INSTALL_DIR"
- if is_docker_mode; then
- sudo docker compose exec dune-weaver /bin/bash
- else
- echo -e "${YELLOW}Shell not available in systemd mode${NC}"
- echo "Use: cd $INSTALL_DIR && source .venv/bin/activate"
- fi
- }
- # Touch app commands (systemd service)
- cmd_touch() {
- local subcmd="${1:-help}"
- case "$subcmd" in
- logs)
- local lines="${2:-}"
- if [[ -n "$lines" ]]; then
- sudo journalctl -u dune-weaver-touch -n "$lines"
- else
- sudo journalctl -u dune-weaver-touch -f
- fi
- ;;
- restart)
- echo -e "${BLUE}Restarting touch app...${NC}"
- sudo systemctl restart dune-weaver-touch
- echo -e "${GREEN}Touch app restarted${NC}"
- ;;
- stop)
- echo -e "${BLUE}Stopping touch app...${NC}"
- sudo systemctl stop dune-weaver-touch
- echo -e "${GREEN}Touch app stopped${NC}"
- ;;
- start)
- echo -e "${BLUE}Starting touch app...${NC}"
- sudo systemctl start dune-weaver-touch
- echo -e "${GREEN}Touch app started${NC}"
- ;;
- status)
- sudo systemctl status dune-weaver-touch
- ;;
- install)
- check_installed
- local touch_dir="$INSTALL_DIR/dune-weaver-touch"
- if [[ ! -f "$touch_dir/install.sh" ]]; then
- echo -e "${RED}Touch app installer not found at $touch_dir/install.sh${NC}"
- echo "Make sure you have the dune-weaver-touch directory in your dune-weaver folder."
- exit 1
- fi
- echo -e "${BLUE}Running touch app installer...${NC}"
- cd "$touch_dir"
- sudo bash install.sh
- ;;
- help|*)
- echo -e "${GREEN}Touch App Commands${NC}"
- echo ""
- echo "Usage: dw touch <command>"
- echo ""
- echo "Commands:"
- echo " install Install touch app (clone, setup, enable service)"
- echo " logs [N] View logs (N lines or follow if omitted)"
- echo " restart Restart touch app"
- echo " stop Stop touch app"
- echo " start Start touch app"
- echo " status Show touch app status"
- echo " help Show this help message"
- ;;
- esac
- }
- cmd_help() {
- echo -e "${GREEN}Dune Weaver CLI${NC}"
- echo ""
- echo "Usage: dw <command>"
- echo ""
- echo "Commands:"
- echo " install Run initial setup (Docker + WiFi fix)"
- echo " start Start Dune Weaver"
- echo " stop Stop Dune Weaver"
- echo " restart Restart Dune Weaver"
- echo " update Pull latest changes and restart"
- echo " logs [N] View logs (N=number of lines, or follow if omitted)"
- echo " status Show container status"
- echo " shell Open a shell in the container"
- echo " touch Manage touch screen app (run 'dw touch help')"
- echo " help Show this help message"
- echo ""
- if [[ -n "$INSTALL_DIR" ]]; then
- echo -e "Install directory: ${BLUE}$INSTALL_DIR${NC}"
- fi
- }
- # Main
- case "${1:-help}" in
- install)
- shift
- cmd_install "$@"
- ;;
- start)
- cmd_start
- ;;
- stop)
- cmd_stop
- ;;
- restart)
- cmd_restart
- ;;
- update)
- cmd_update
- ;;
- logs)
- cmd_logs "$2"
- ;;
- status)
- cmd_status
- ;;
- shell)
- cmd_shell
- ;;
- touch)
- shift
- cmd_touch "$@"
- ;;
- help|--help|-h)
- cmd_help
- ;;
- *)
- echo -e "${RED}Unknown command: $1${NC}"
- echo ""
- cmd_help
- exit 1
- ;;
- esac
|