aboutsummaryrefslogblamecommitdiff
path: root/files/usr/local/libexec/invidious-sighelper-update.invidious_server
blob: 3f928aaecfd91a3676b82c964f79e4a8fb48439b (plain) (tree)










































                                                                    

                                                                             



                                                              
#!/bin/sh

set -eu -o pipefail

prog=$(basename "$(readlink -f "$0")")
usage="${prog} [-q] INVIDIOUS_USER SIGHELPER_SRCDIR"

die() {
  printf '%s: %s\n' "$prog" "$*" 1>&2
  exit 1
}

usage(){
  printf 'usage: %s\n' "$usage" 1>&2
  exit 2
}

as_invidious(){
  su -m "$invidious_user" -c "HOME=$(dirname "$sighelper_dir") ${@}"
}

while getopts hq opt; do
  case $opt in
    h) usage ;;
    q) exec 1>/dev/null ;;
  esac
done
shift $((OPTIND - 1))

[ $# -eq 2 ] || usage

invidious_user=$1
sighelper_dir=$2

cd "$sighelper_dir"

as_invidious 'git fetch'
local_rev=$(as_invidious 'git rev-parse HEAD')
upstream_rev=$(as_invidious 'git rev-parse "@{u}"')

if [ "$local_rev" != "$upstream_rev" ]; then
  echo "updating inv_sig_helper to rev ${upstream_rev}"
  as_invidious 'git pull --ff-only && cargo build --release'
  service inv_sig_helper status 2>/dev/null && service inv_sig_helper restart
  service invidious status      2>/dev/null && service invidious restart
else
  echo "inv_sig_helper already up to date at rev ${local_rev}"
fi