Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
3

    
4
if self_not_included; then
5

    
6
alias use_sync='declare prefix=sync_; import_vars; unset prefix'
7

    
8
upload() # usage: local_dir=... remote_url=serv:dir [swap=1] [subpath=...] \
9
# upload [opt|path]...
10
# swap: downloads instead of uploads
11
# subpath: relative to *currdir*, not $local_dir as in `put`
12
# path: relative to *currdir*, not $local_dir. when invoking from a script, use
13
#     an absolute path (e.g. "$(dirname "${BASH_SOURCE[0]}")"/...).
14
# requires put from https://uutils.googlecode.com/svn/trunk/bin/put
15
{
16
	echo_func; kw_params local_dir remote_url; echo_vars swap
17
	
18
	# make subpath relative to currdir
19
	if test "$subpath"; then
20
		local subpath="$(base_dir="$local_dir" canon_rel_path "$subpath")"
21
		if test "$subpath" = .; then unset subpath; fi
22
	fi
23
	
24
	# change path args to --includes
25
	local has_includes= args=()
26
	local a; for a in "$@"; do
27
		if starts_with -- "$a"; then args+=("$a") # option, so leave as is
28
		else # path
29
			# also need to --include parent dirs for each --include path
30
			path_parents "$(base_dir="$local_dir" canon_dir_rel_path "$a")"
31
			args+=("${dirs[@]/#/--include=/}") # prepend each with --include=/
32
			has_includes=1
33
		fi
34
	done
35
	set -- "${args[@]}" ${has_includes:+--exclude="**"}
36
	
37
	# use .rsync_ignore
38
	set -- --filter="dir-merge,- .rsync_ignore" "$@"
39
	
40
	# use directional .rsync_filter
41
	local filter_type=upload; if test "$swap"; then filter_type=download; fi
42
	set -- --filter="dir-merge .rsync_filter.$(hostname -s).$filter_type" \
43
	       --filter="dir-merge .rsync_filter.$filter_type" "$@"
44
	
45
	src="$local_dir" dest="$remote_url" command put "$@"
46
}
47

    
48
fi
(9-9/11)