aboutsummaryrefslogtreecommitdiff
path: root/task-git.sh
blob: 4f4e8c353ef3d4c8f9bc02082761918f259a55fe (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash

# Get task command
TASK_COMMAND="task ${@}"

# Get data dir
DATA_RC=$(task _show | grep data.location)
DATA=(${DATA_RC//=/ })
DATA_DIR=${DATA[1]}

# Need to expand home dir ~
eval DATA_DIR=$DATA_DIR

# Exit if we don't have a tasks data directory
if [ ! -e "$DATA_DIR" ]; then
    echo "Could not load data directory $DATA_DIR."
    exit 1
fi

# Check if git repo exists
if ! [ -d "$DATA_DIR/.git" ]; then
    echo "Initializing git repo"
    pushd $DATA_DIR
    git init
    git add *
    git commit -m "Initial Commit"
fi

# Push by default
PUSH=1
PULL=0

# Check if we have a place to push to
GIT_REMOTE=$(git remote -v | grep push | grep origin | awk '{print $2}')
if [ -z $GIT_REMOTE ]; then
    # No place to push to
    PUSH=0
fi

# Check if --no-push is passed as an argument.
for i
do
    if [ "$i" == "--no-push" ]; then
        # Set the PUSH flag, and remove this from the arguments list.
        PUSH=0
        shift
    fi
done

# Check if we are passing something that doesn't do any modifications
for i in $@
do
    case $i in
        add|append|completed|delete|done|due|duplicate|edit|end|modify|prepend|rm|start|stop)
            if [ "$PUSH" == 1 ]; then
                PUSH=1
            fi
            ;;
        push)
            if [ "$PUSH" == 1 ]; then
                PUSH=1
            fi
            ;;
        pull)
            echo "Pull"
            PULL=1
            ;;
        *)
            PUSH=0
            ;;
    esac
done

if [ "$PULL" == 1 ]; then
    echo "Fetching & Applying updates from $GIT_REMOTE"
    git fetch && git pull
    exit 0
fi

# Call task, commit files and push if flag is set.
/usr/bin/task $@


cd $DATA_DIR
git add .
git commit -m "$TASK_COMMAND" > /dev/null

if [ "$PUSH" == 1 ]; then
    echo "Pushing updates to $GIT_REMOTE"
    git push origin master > /dev/null
fi
exit 0