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= only_explicit_files=1 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
			if ! could_be_file "$a"; then only_explicit_files=; fi
34
		fi
35
	done
36
	if test ! "$has_includes"; then only_explicit_files=; fi #root dir->not file
37
	set -- "${args[@]}" ${has_includes:+--exclude="**"}
38
	
39
	if test ! "$only_explicit_files"; then # don't rsync-ignore explicit files
40
		# use .rsync_ignore
41
		set -- --filter="dir-merge,- .rsync_ignore" "$@"
42
		
43
		# use directional .rsync_filter
44
		local filter_type=upload; if test "$swap"; then filter_type=download; fi
45
		set -- --filter="dir-merge .rsync_filter.$(hostname -s).$filter_type" \
46
			   --filter="dir-merge .rsync_filter.$filter_type" "$@"
47
	fi
48
	
49
	src="$local_dir" dest="$remote_url" command put "$@"
50
}
51

    
52
fi
(9-9/11)