1
|
#!/bin/bash -e
|
2
|
# links to locally-available resources
|
3
|
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
|
4
|
.rel db.sh
|
5
|
.rel make.sh
|
6
|
.rel sync.sh
|
7
|
|
8
|
if self_not_included; then
|
9
|
|
10
|
root_dir="$(canon_rel_path "$(dirname "${BASH_SOURCE[0]}")"/../..)" || return
|
11
|
|
12
|
root_rel_path() { echo_func; base_dir="$root_dir" canon_rel_path "$1"; }
|
13
|
|
14
|
bin_dir="$root_dir"/bin
|
15
|
bin_dir_abs="$(realpath "$bin_dir")" || return
|
16
|
|
17
|
: "${PATH_add=1}"
|
18
|
if test "$PATH_add"; then export PATH="$bin_dir_abs:$PATH"; fi
|
19
|
|
20
|
#### make
|
21
|
|
22
|
root_make() { echo_func; make --directory="$root_dir" "$@"; }
|
23
|
|
24
|
#### connection vars
|
25
|
|
26
|
: "${remote_ssh_server=vegbiendev.nceas.ucsb.edu}"
|
27
|
: "${remote_server=}"
|
28
|
: "${local_server=localhost}"
|
29
|
: "${local_user=bien}"
|
30
|
: "${local_password="$(cat "$root_dir"/config/bien_password)"}"
|
31
|
: "${local_pg_database=vegbien}"
|
32
|
: "${root_user=root}"
|
33
|
: "${root_password=$local_password}"
|
34
|
|
35
|
#### databases
|
36
|
|
37
|
### MySQL
|
38
|
|
39
|
: "${postgres_compat=1}"
|
40
|
|
41
|
mysql_local() { echo_func; use_local_remote; mysql "$@"; }
|
42
|
|
43
|
mysql_export_local() { echo_func; use_local_remote; mysql_export "$@"; }
|
44
|
|
45
|
mysqldump_local() { echo_func; use_local_remote; mysqldump_diffable "$@"; }
|
46
|
|
47
|
mysql_root() { echo_func; use_local_remote; use_root; mysql "$@"; }
|
48
|
|
49
|
### PostgreSQL
|
50
|
|
51
|
func_override psql__db_sh
|
52
|
psql() # usage: [file=...] [dir=...] self
|
53
|
{
|
54
|
echo_func; kw_params file dir
|
55
|
if test "$file"; then local dir="${dir:-$(dirname "$file")}"; fi
|
56
|
local dir="${dir:-$top_dir}"
|
57
|
mk_schema_esc
|
58
|
mk_table_esc
|
59
|
|
60
|
use_local
|
61
|
(cat <<EOF
|
62
|
\cd $dir
|
63
|
\set schema $schema_esc
|
64
|
\set table $table_esc
|
65
|
\set table_str '''$table_esc'''
|
66
|
SET search_path TO $schema_esc;
|
67
|
EOF
|
68
|
cat${file:+ "$file"}
|
69
|
)|psql__db_sh "$@"
|
70
|
}
|
71
|
|
72
|
public_schema_exists() { psql_script_vegbien </dev/null 2>/dev/null; }
|
73
|
|
74
|
pg_dump_local() { echo_func; use_local; pg_dump "$@"; }
|
75
|
|
76
|
|
77
|
#### sync
|
78
|
|
79
|
: "${sync_local_dir=$root_dir}"
|
80
|
: "${sync_remote_subdir=bien/}"
|
81
|
: "${sync_remote_url=jupiter:/data/dev/aaronmk/$sync_remote_subdir}"
|
82
|
|
83
|
sync_upload() { echo_func; use_sync; upload --no-owner --no-group "$@"; }
|
84
|
|
85
|
|
86
|
#### data loading
|
87
|
|
88
|
# prevent automated tests when the public schema contains the live DB
|
89
|
if test "$(hostname -s)" = vegbiendev; then export can_test=; fi
|
90
|
|
91
|
fi
|