summaryrefslogtreecommitdiff
path: root/share/hydractl/sync-media-remotes
blob: 1b8f59ea97556b7d8c44a884df8c1ecc471e7a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
#
# Keep git remotes in sync among media archives.
#

# Parameters
BASENAME="$0"
DEST="$1"
MEDIA="/var/cache/media"

# Syntax
if [ -z "$DEST" ]; then
  echo "usage: $BASENAME <dest>"
  exit 1
elif [ ! -d "$DEST/$MEDIA" ]; then
  echo "folder $DEST/$MEDIA does not exist."
  exit 1
fi

# Run
for folder in `ls $MEDIA`; do
  if [ -d "$DEST/$MEDIA/$folder/.git" ]; then
    # Add new remotes
    git -C $MEDIA/$folder remote -v | while read remote; do
      cd $DEST/$MEDIA/$folder
      name="`echo $remote | cut -d ' ' -f 1`"
      addr="`echo $remote | cut -d  ' ' -f 2`"
      type="`echo $remote | cut -d ' ' -f 3`"

      if [ "$type" == "(push)" ]; then
        command="set-url --push"
      else
        command="add"
      fi

      if ! git remote -v | sed -e 's/\t/ /g' | grep -q "^$name $addr $type$"; then
        git remote $command $name $addr
      fi
    done

    # Delete old remotes
    git -C $DEST/$MEDIA/$folder remote -v | while read remote; do
      cd $MEDIA/$folder
      name="`echo $remote | cut -d ' ' -f 1`"
      addr="`echo $remote | cut -d  ' ' -f 2`"
      type="`echo $remote | cut -d ' ' -f 3`"

      if [ "$type" == "(push)" ]; then
        command="set-url --delete"
        arg="$addr"
      else
        command="remove"
        arg=""
      fi

      if ! git remote -v | sed -e 's/\t/ /g' | grep -q "^$name $addr $type$"; then
        git -C $DEST/$MEDIA/$folder remote $command $name $arg
      fi
    done
  fi
done