Lib/on_libs.sh

61 lines
1.7 KiB
Bash
Raw Normal View History

2021-09-01 20:29:27 +00:00
#!/bin/bash
USAGE="on_libs.sh clone|pull
REPO_URL has to be set in enviroment:
example: export REPO_URL=https://rlung.librecloud.online
"
2021-10-14 17:00:04 +00:00
REPO_URL=${REPO_URL:-ssh://git@rlung.librecloud.online:32225}
2021-09-01 20:29:27 +00:00
[ "$1" == "-h" ] && echo -e "$USAGE" && exit 1
LIST="
Bin library|LibreCloud/lib_bin
CLDS Library|LibreCloud/lib_clds
2021-10-14 17:00:04 +00:00
Datastore Library|LibreCloud/lib_datastores
Datastore defs Library|LibreCloud/lib_datastores_defs
Datastore Conectors Library|LibreCloud/lib_datastores_connectors
2021-09-01 20:29:27 +00:00
Defs Library|LibreCloud/lib_defs
GraphQL Library|LibreCloud/lib_graphql
Key of Life Library|LibreCloud/lib_key_of_life
Macros Library|LibreCloud/lib_macros
Utils Library|LibreCloud/lib_utils
Tkdr Library|LibreCloud/lib_tkdr
2021-10-07 22:06:24 +00:00
Webenv library|LibreCloud/lib_webenv
2022-02-14 11:51:30 +00:00
Wrap Webservices Handlers Library|LibreCloud/lib_wraphandlers
Wrap Webservices Filters Library|LibreCloud/lib_wrapfilters
2021-09-01 20:29:27 +00:00
"
[ -z "$REPO_URL" ] && echo "REPO_URL not found in enviroment" && exit 1
case "$1" in
clone|c) TASK="clone" ;;
pull|p) TASK="pull" ;;
*) echo "TASK $1 not defined" ; exit 1
esac
while read -r line
do
name=$(echo "$line" | cut -f1 -d"|")
lib_path=$(echo "$line" | cut -f2 -d"|")
[ -z "$name" ] || [ -z "$lib_path" ] && continue
echo -n "$name ... $TASK ... "
case "$TASK" in
clone)
echo ""
2021-10-14 17:00:04 +00:00
name=$(echo $(basename "$lib_path") | sed 's/lib_//g' | sed 's,_,/,g')
if [ ! -d "$name" ] ; then
git clone "$REPO_URL/$lib_path.git" "$name"
fi
2021-09-01 20:29:27 +00:00
;;
pull)
2021-10-14 17:00:04 +00:00
dir_path=$(basename "$lib_path"| sed 's/lib_//g')
2021-09-01 20:29:27 +00:00
if [ -d "$dir_path" ] && [ -d "$dir_path/.git" ]; then
echo ""
cd "$dir_path" || continue
git pull
cd ..
else
echo "Dir: $dir_path with .git not found"
fi
;;
esac
done < <((echo "$LIST"))