Revert "shlib.sh: Add new bang_eval function"
[girocco.git] / shlib.sh
blobe7cf9aa7f1eac6c17c0785521f01beb045ac1ae9
1 #!/bin/sh
3 # This is generic shell library for all the scripts used by Girocco;
4 # most importantly, it introduces all the $cfg_* shell variables.
6 get_girocco_config_var_list() {
7 # Export all the variables from Girocco::Config to suitable var= lines
8 # prefixing them with 'cfg_'. E.g. $cfg_admin is admin's mail address now
9 # and also setting a 'defined_cfg_' prefix to 1 if they are not undef.
10 __girocco_conf="$GIROCCO_CONF"
11 [ -n "$__girocco_conf" ] || __girocco_conf="Girocco::Config"
12 [ -z "$basedir" ] || __girocco_extrainc="-I$basedir"
13 perl -I@basedir@ $__girocco_extrainc -M$__girocco_conf -le \
14 'foreach (sort {uc($a) cmp uc($b)} keys %Girocco::Config::) {
15 my $val = ${$Girocco::Config::{$_}}; defined($val) or $val="";
16 $val =~ s/([\\"\$\`])/\\$1/gos;
17 $val =~ s/(?:\r\n|\r|\n)$//os;
18 print "cfg_$_=\"$val\"";
19 print "defined_cfg_$_=",
20 (defined(${$Girocco::Config::{$_}})?"1":"");
24 # If basedir has been replaced, and shlib_vars.sh exists, get the config
25 # definitions from it rather than running Perl.
26 if [ "@basedir@" = '@'basedir'@' ] || ! [ -r "@basedir@/shlib_vars.sh" ]; then
27 # Import all the variables from Girocco::Config to the local environment,
28 eval "$(get_girocco_config_var_list)"
29 else
30 # Import the variables from shlib_vars.sh which avoids needlessly
31 # running another copy of Perl
32 . "@basedir@/shlib_vars.sh"
35 git() (
36 # some poorly behaving /bin/sh implementations do not
37 # properly export variables when the command is actually
38 # a shell function -- they are set for the function call
39 # but not exported into the environment for anything the
40 # function executes. Export the two Git variables we
41 # care about if they are set. Since this is a subshell
42 # the export will be temporary.
43 [ -z "$GIT_DIR" ] || export GIT_DIR
44 [ -z "$GIT_SSL_NO_VERIFY" ] || export GIT_SSL_NO_VERIFY
45 exec "$cfg_git_bin" "$@"
48 nc_openbsd() { "$cfg_nc_openbsd_bin" "$@"; }
50 _addrlist() {
51 _list=
52 for _addr in "$@"; do
53 [ -z "$_list" ] || _list="$_list, "
54 _list="$_list$_addr"
55 done
56 echo "$_list"
59 _sendmail() {
60 _mailer="${cfg_sendmail_bin:-/usr/sbin/sendmail}"
61 if [ -n "$cfg_sender" ]; then
62 "$_mailer" -i -f "$cfg_sender" "$@"
63 else
64 "$_mailer" -i "$@"
68 mail() {
69 _subject=
70 if [ "$1" = "-s" ]; then
71 shift
72 _subject="$1"
73 shift
76 echo "From: \"$cfg_name\" ($cfg_title) <$cfg_admin>"
77 echo "To: $(_addrlist "$@")"
78 [ -z "$_subject" ] || echo "Subject: $_subject"
79 echo "MIME-Version: 1.0"
80 echo "Content-Type: text/plain; charset=utf-8"
81 echo "Content-Transfer-Encoding: 8bit"
82 echo "Auto-Submitted: auto-generated"
83 echo ""
84 cat
85 } | _sendmail "$@"
88 # bang CMD... will execute the command with well-defined failure mode;
89 # set bang_action to string of the failed action ('clone', 'update', ...);
90 # pre-set bang_once=1 to make sure jobs banging on a repo repeatedly will
91 # not spam the owner; re-define the bang_trap() function to do custom
92 # cleanup before bailing out
93 bang() {
94 if [ -n "$show_progress" ]; then
95 exec 3>&1
96 errcode=
97 read -r errcode <<-EOT || :
99 exec 4>&3 3>&1 1>&4 4>&-
100 { "$@" 3>&- || echo $? >&3; } 2>&1 | tee -a "$bang_log"
103 exec 3>&-
104 if [ -z "$errcode" ]; then
105 # All right. Cool.
106 return;
108 else
109 if "$@" >>"$bang_log" 2>&1; then
110 # All right. Cool.
111 return;
112 else
113 errcode="$?"
116 if ! [ -e .banged ]; then
117 bangmailok=true
118 ! [ -f HEAD -a -f config -a -d objects ] ||
119 bangmailok="$(GIT_DIR=. git config --bool gitweb.statusupdates 2>/dev/null || echo true)"
120 bangaddrs=''
121 [ "$bangmailok" = "false" -o -z "$mail" ] || bangaddrs="$mail"
122 [ -z "$cfg_admincc" -o "$cfg_admincc" = "0" -o -z "$cfg_admin" ] ||
123 if [ -z "$bangaddrs" ]; then bangaddrs="$cfg_admin"; else bangaddrs="$bangaddrs,$cfg_admin"; fi
124 [ -z "$bangaddrs" ] ||
126 echo "$* failed with error code $errcode"
127 echo ""
128 [ ! -n "$bang_once" ] || echo "you will not receive any more notifications until recovery"
129 echo "this status message may be disabled on the project admin page"
130 echo ""
131 echo "Log follows:"
132 echo ""
133 cat "$bang_log"
134 } | mail -s "[$cfg_name] $proj $bang_action failed" "$bangaddrs"
136 touch .banged
137 bang_trap
138 exit 1
141 # Default bang settings:
142 bang_setup() {
143 bang_action="lame_programmer"
144 bang_once=
145 bang_trap() { :; }
146 bang_log="$(mktemp -t repomgr-XXXXXX)"
147 trap "rm \"\$bang_log\"" EXIT
151 # Progress report - if show_progress is set, shows the given message.
152 progress() {
153 [ ! -n "$show_progress" ] || echo "$@"
157 # Project config accessors; must be run in project directory
158 config_get() {
159 git config "gitweb.$1"
162 config_set() {
163 git config "gitweb.$1" "$2" && chgrp repo config && chmod g+w config
166 config_set_raw() {
167 git config "$1" "$2" && chgrp repo config && chmod g+w config
170 config_get_date_seconds() {
171 _dt="$(config_get "$1" || :)"
172 [ -n "$_dt" ] || return 1
173 _ds="$(perl -I@basedir@ -MGirocco::Util -e "print parse_rfc2822_date('$_dt')")"
174 [ -n "$_ds" ] || return 1
175 echo "$_ds"
178 # Tool for checking whether given number of seconds has not passed yet
179 check_interval() {
180 os="$(config_get_date_seconds "$1")" || return 1
181 ns="$(date +%s)"
182 [ $ns -lt $(($os+$2)) ]
186 # List all Git repositories, with given prefix if specified, one-per-line
187 get_repo_list() {
188 if [ -n "$1" ]; then
189 cut -d : -f 1,3 "$cfg_chroot"/etc/group | grep "^$1"
190 else
191 cut -d : -f 1,3 "$cfg_chroot"/etc/group
192 fi | while IFS=: read name id; do
193 [ $id -lt 65536 ] || echo "$name"
194 done
197 # returns true if the passed in git dir (defaults to ".") is a mirror using git fast-import
198 is_gfi_mirror() {
199 _gitdir="${1-.}"
200 # always return false for non-mirrors
201 [ ! -e "$_gitdir/.nofetch" ] || return 1
202 _url="$(GIT_DIR="$_gitdir" config_get baseurl 2>/dev/null || :)"
203 case "$_url" in
204 svn://* | svn+http://* | svn+https://*)
205 # Don't think git-svn currently uses git fast-import
206 return 1
208 darcs://*)
209 # darcs mirrors use git fast-import
210 return 0
212 bzr://*)
213 # bzr mirrors use git fast-import
214 return 0
216 hg+http://* | hg+https://*)
217 # hg mirrors use git fast-import
218 return 0
220 esac
221 # assume it does not use git fast-import
222 return 1
225 # hg-fast-export | git fast-import with error handling in current directory GIT_DIR
226 git_hg_fetch() {
227 _python="${PYTHON:-python}"
228 _err1=
229 _err2=
230 exec 3>&1
231 { read -r _err1 || :; read -r _err2 || :; } <<-EOT
233 exec 4>&3 3>&1 1>&4 4>&-
235 _e1=0
236 [ -f hg2git-marks ] || touch hg2git-marks
237 _af="$(git config hg.authorsfile || :)"
238 _cmd='GIT_DIR="$(pwd)" "$_python" "$cfg_basedir/bin/hg-fast-export.py" \
239 --repo "$(pwd)/repo.hg" \
240 --marks "$(pwd)/hg2git-marks" \
241 --mapping "$(pwd)/hg2git-mapping" \
242 --heads "$(pwd)/hg2git-heads" \
243 --status "$(pwd)/hg2git-state" \
244 -U unknown --force --flatten'
245 [ -z "$_af" ] || _cmd="$_cmd"' --authors "$_af"'
246 eval "$_cmd" 3>&- || _e1=$?
247 echo $_e1 >&3
248 } | \
250 _e2=0
251 rm -f hg2git-marks.new
252 git fast-import \
253 --export-marks="$(pwd)/hg2git-marks.new" \
254 --export-pack-edges="$(pwd)/gfi-packs" \
255 --force 3>&- || _e2=$?
256 echo $_e2 >&3
260 exec 3>&-
261 [ "$_err1" = 0 -a "$_err2" = 0 ] || return 1
262 if [ -f hg2git-marks ]; then
263 rm -f hg2git-marks.old
264 mv hg2git-marks hg2git-marks.old
265 else
266 touch hg2git-marks.old
268 cat hg2git-marks.old hg2git-marks.new | LC_ALL=C uniq > hg2git-marks
269 rm hg2git-marks.old hg2git-marks.new
270 rm -f hg2git-heads
271 git branch --no-color | \
272 while IFS= read -r _head; do
273 echo ":${_head#??} $(git rev-parse "refs/heads/${_head#??}")"
274 done > hg2git-heads