2016-02-02 02:29:42 +00:00
|
|
|
{ lib
|
|
|
|
, source
|
2016-02-01 02:00:48 +00:00
|
|
|
, target-user ? "root"
|
|
|
|
, target-host
|
|
|
|
, target-path ? "/var/src"
|
|
|
|
}:
|
2016-02-02 02:29:42 +00:00
|
|
|
with lib;
|
2016-02-01 02:00:48 +00:00
|
|
|
let
|
2016-02-02 00:53:38 +00:00
|
|
|
out = {
|
|
|
|
inherit populate;
|
|
|
|
};
|
|
|
|
|
|
|
|
populate = ''
|
2016-02-01 02:00:48 +00:00
|
|
|
#! /bin/sh
|
2016-02-02 02:20:29 +00:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
verbose() {
|
2016-02-02 02:57:32 +00:00
|
|
|
printf '+%s\n' "$(printf ' %q' "$@")" >&2
|
2016-02-02 02:20:29 +00:00
|
|
|
"$@"
|
|
|
|
}
|
2016-02-01 02:00:48 +00:00
|
|
|
|
|
|
|
echo ${shell.escape git-script} \
|
|
|
|
| ssh ${shell.escape "${target-user}@${target-host}"} -T
|
|
|
|
|
2016-02-02 02:20:29 +00:00
|
|
|
unset tmpdir
|
2016-02-01 02:00:48 +00:00
|
|
|
trap '
|
|
|
|
rm "$tmpdir"/*
|
|
|
|
rmdir "$tmpdir"
|
|
|
|
trap - EXIT INT QUIT
|
|
|
|
' EXIT INT QUIT
|
2016-02-02 02:20:29 +00:00
|
|
|
tmpdir=$(mktemp -dt stockholm.XXXXXXXX)
|
2016-02-01 02:49:31 +00:00
|
|
|
chmod 0755 "$tmpdir"
|
2016-02-02 02:20:29 +00:00
|
|
|
|
2016-02-01 02:00:48 +00:00
|
|
|
${concatStringsSep "\n"
|
|
|
|
(mapAttrsToList
|
|
|
|
(name: spec: let dst = removePrefix "symlink:" (get-url spec); in
|
2016-02-02 02:20:29 +00:00
|
|
|
"verbose ln -s ${shell.escape dst} $tmpdir/${shell.escape name}")
|
2016-02-01 02:00:48 +00:00
|
|
|
symlink-specs)}
|
|
|
|
|
2016-02-02 02:20:29 +00:00
|
|
|
verbose proot \
|
2016-02-01 02:00:48 +00:00
|
|
|
-b $tmpdir:${shell.escape target-path} \
|
|
|
|
${concatStringsSep " \\\n "
|
|
|
|
(mapAttrsToList
|
|
|
|
(name: spec:
|
|
|
|
"-b ${shell.escape "${get-url spec}:${target-path}/${name}"}")
|
|
|
|
file-specs)} \
|
|
|
|
rsync \
|
|
|
|
-f ${shell.escape "P /*"} \
|
|
|
|
${concatMapStringsSep " \\\n "
|
|
|
|
(name: "-f ${shell.escape "R /${name}"}")
|
|
|
|
(attrNames file-specs)} \
|
|
|
|
--delete \
|
|
|
|
-vFrlptD \
|
|
|
|
${shell.escape target-path}/ \
|
|
|
|
${shell.escape "${target-user}@${target-host}:${target-path}"}
|
|
|
|
'';
|
|
|
|
|
|
|
|
get-schema = uri:
|
|
|
|
if substring 0 1 uri == "/"
|
|
|
|
then "file"
|
|
|
|
else head (splitString ":" uri);
|
|
|
|
|
|
|
|
has-schema = schema: uri: get-schema uri == schema;
|
|
|
|
|
|
|
|
get-url = spec: {
|
|
|
|
string = spec;
|
|
|
|
path = toString spec;
|
|
|
|
set = get-url spec.url;
|
|
|
|
}.${typeOf spec};
|
|
|
|
|
|
|
|
git-specs =
|
|
|
|
filterAttrs (_: spec: has-schema "https" (get-url spec)) source //
|
|
|
|
filterAttrs (_: spec: has-schema "http" (get-url spec)) source //
|
|
|
|
filterAttrs (_: spec: has-schema "git" (get-url spec)) source;
|
|
|
|
|
|
|
|
file-specs =
|
|
|
|
filterAttrs (_: spec: has-schema "file" (get-url spec)) source;
|
|
|
|
|
|
|
|
symlink-specs =
|
|
|
|
filterAttrs (_: spec: has-schema "symlink" (get-url spec)) source;
|
|
|
|
|
|
|
|
git-script = ''
|
2016-02-02 02:20:29 +00:00
|
|
|
#! /bin/sh
|
|
|
|
set -efu
|
|
|
|
|
|
|
|
verbose() {
|
2016-02-02 02:57:32 +00:00
|
|
|
printf '+%s\n' "$(printf ' %q' "$@")" >&2
|
|
|
|
"$@"
|
2016-02-02 02:20:29 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 02:00:48 +00:00
|
|
|
fetch_git() {(
|
|
|
|
dst_dir=$1
|
|
|
|
src_url=$2
|
|
|
|
src_ref=$3
|
|
|
|
|
|
|
|
if ! test -e "$dst_dir"; then
|
|
|
|
git clone "$src_url" "$dst_dir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd "$dst_dir"
|
|
|
|
|
|
|
|
if ! url=$(git config remote.origin.url); then
|
|
|
|
git remote add origin "$src_url"
|
|
|
|
elif test "$url" != "$src_url"; then
|
|
|
|
git remote set-url origin "$src_url"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# TODO resolve src_ref to commit hash
|
|
|
|
hash=$src_ref
|
|
|
|
|
|
|
|
if ! test "$(git log --format=%H -1)" = "$hash"; then
|
|
|
|
git fetch origin
|
|
|
|
git checkout "$hash" -- "$dst_dir"
|
|
|
|
git checkout "$hash"
|
|
|
|
fi
|
|
|
|
|
|
|
|
git clean -dxf
|
|
|
|
)}
|
|
|
|
|
|
|
|
${concatStringsSep "\n"
|
|
|
|
(mapAttrsToList
|
|
|
|
(name: spec: toString (map shell.escape [
|
2016-02-02 02:20:29 +00:00
|
|
|
"verbose"
|
2016-02-01 02:00:48 +00:00
|
|
|
"fetch_git"
|
|
|
|
"${target-path}/${name}"
|
|
|
|
spec.url
|
|
|
|
spec.rev
|
|
|
|
]))
|
|
|
|
git-specs)}
|
|
|
|
'';
|
|
|
|
|
|
|
|
in out
|