Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-network-sync
blob: dd37744035a0c9455474859597fe1b5baaee62b2 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/bin/sh

# Copyright (C) 2012-2013 Aleksey Lim
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

[ "${V}" ] && set -x

PARCEL_SUFFIX=".parcel"

info() {
    echo "-- $@"
}

phase() {
    echo "   $@"
}


warning() {
    echo "-- $@"
}

abort() {
    rm -f *.sync
    echo "-- $@"
    [ "${V}" ] || echo "   run \"V=1 $0 ${cmdline}\" to get full debugging output"
    exit 1
}

help() {
    cat <<EOF
Usage: $(basename $0) [PATH] [URL]

Sugar Network sneakernet synchronization utility.

Command arguments:
  PATH      if specified, utility will try to recursively search for
            synchronization packet files (files with "$PARCEL_SUFFIX" suffix);
            using wget or curl utility, each file will be uploaded
            to the targeting Sugar Network server with downloading resulting
            packets; on success, uploaded packets will be removed and resulting
            packets will be placed to PATH instead
  URL       if specified, should be Sugar Network API url, e.g.,
            http://node.sugarlabs.org; instead of synchronization, the script
            will download full data dump from the specified master node

Utility is intended to upload request packet files (generated by Sugar Network
slave node) to Sugar Network master server and download response packets
to deliver them back to slave.

See http://wiki.sugarlabs.org/go/Sugar_Network for details.
EOF
}

get_hostname() {
    echo $@ | awk -F/ '{print $3}'
}

get_header_key() {
    local package="$1"
    local key="$2"

    zcat "${package}" | head -n1 | \
        grep -o "\"${key}\":[^,}]\+" | \
        sed 's/^[^:]*://; s/^[ "]*//; s/"$//'
}

upload() {
    local url="$1"
    local cookie="$2"
    local in_packet="$3"
    local out_packet="${in_packet}.sync"

    [ -e "${out_packet}" ] && abort "Destination ${out_packet} already exists"

    if which wget >/dev/null 2>&1; then
        cmd="wget --output-document=${out_packet} --load-cookies=${cookie} --save-cookies=${cookie}"
        [ "${in_packet}" ] && cmd="${cmd} --post-file=${in_packet}"
        [ "${V}" ] && cmd="${cmd} --server-response" || cmd="${cmd} --quiet"
    else
        cmd="curl --output ${out_packet} --cookie ${cookie} --cookie-jar ${cookie}"
        [ "${in_packet}" ] && cmd="${cmd} -XPOST --data-binary @${in_packet}"
        [ "${V}" ] || cmd="${cmd} --silent"
    fi

    ${cmd} "${url}" || abort "Cannot run upload command"

    if [ -e "${out_packet}" ]; then
        if [ $(stat -c %s "${out_packet}") -eq 0 ]; then
            rm "${out_packet}"
        else
            if [ "${in_packet}" ]; then
                phase "Replace ${in_packet} with results"
                mv "${out_packet}" "${in_packet}" || abort "Cannot write to ${in_packet}"
            else
                out_filename="$(get_hostname $url)"$PARCEL_SUFFIX
                phase "Store results in ${out_filename}"
                mv "${out_packet}" "${out_filename}" || abort "Cannot write to ${out_filename}"
            fi
        fi
    fi

    if [ -e "${cookie}" ]; then
        if grep unset_sugar_network_pull "${cookie}" >/dev/null; then
            rm "${cookie}"
        elif grep sugar_network_pull "${cookie}" >/dev/null; then
            phase "Postpone pull with ${cookie}"
        else
            rm "${cookie}"
        fi
    fi

    if [ "${in_packet}" ]; then
        phase "Remove uploaded file"
        rm "${in_packet}"
    fi
}

pull() {
    local api_url="$1?cmd=pull"
    local cookie="$(get_hostname $1).cookie"

    while true; do
        local disk_free=$(df . --block-size=1 | tail -n1 | awk '{print $4}')
        [ $disk_free -gt $disk_limit ] || abort \
            "No free disk space on $PWD, copy all *.cookie files" \
            "to directory with more free space and re-run $0 from there"

        upload "${api_url}&accept_length=${disk_free}" "${cookie}"
        [ -e "${cookie}" ] || break

        delay=$(grep -o 'sugar_network_delay[[:space:]]*[0-9]\+' "${cookie}" 2>/dev/null | awk '{print $2}')
        if [ "${delay}" ]; then
            phase "Server started processing pull, check for results in ${delay} seconds"
            sleep ${delay}
        else
            phase "Pull postponed updates"
        fi
    done
}

sync_path="$1"
clone_url="$2"
cmdline="$@"
FS=
disk_limit=$(expr 1024 \* 1024 \* 10)

if [ $# -eq 0 ]; then
    if [ "$(basename $(dirname $0))" = "sugar-network-sync" ]; then
        # Script was launched from sync directory, so, process sync
        sync_path="$(dirname $0)"
    else
        help
        exit 0
    fi
fi

mkdir -p "${sync_path}" || abort "Cannot create ${sync_path} sync directory"
cd "${sync_path}" || abort "Cannot switch to ${sync_path} sync directory"

mountpoint="$(stat --printf %m .)"
[ "${mountpoint}/sugar-network-sync" = "$PWD" ] || \
    info "NOTICE To make $PWD directory capable for further auto synchronization, place it to the mount's root"

if [ "${clone_url}" ]; then
    info "Clone master"
    pull "${clone_url}"
    exit 0
fi

# Upload push packets at first
for parcel in $(find -type f -name "*$PARCEL_SUFFIX" -printf '%f\n'); do
    api_url="$(get_header_key "${parcel}" api_url)"
    if [ -z "${api_url}" ]; then
        info "Skip ${parcel}, it is not intended for uploading"
    else
        info "Push ${parcel} to ${api_url}"
        upload "${api_url}?cmd=push" "$(get_hostname ${api_url}).cookie" "${parcel}"
    fi
done

# Using cookies from uploaded packets, download master data
while true; do
    found=
    for cookie in $(find -type f -name '*.cookie'); do
        api_url="http://$(basename "${cookie}" .cookie)"
        info "Pull updates from ${api_url}"
        pull "${api_url}"
        found=1
    done
    [ "${found}" ] || break
done