diff options
author | davidovski <david@davidovski.xyz> | 2022-02-20 02:13:54 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-20 02:13:54 +0000 |
commit | e5bc87ffc368799685b9c9bf0e01db35ee974540 (patch) | |
tree | 322791eae090f5b6f3f821f6f09b83c5aa199561 /src/sync.sh | |
parent | 65940c0cc719311fbac5e11c81cce34563ea3f21 (diff) |
added search functionality
Diffstat (limited to 'src/sync.sh')
-rwxr-xr-x | src/sync.sh | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/sync.sh b/src/sync.sh index c0dd36c..3d1c7d1 100755 --- a/src/sync.sh +++ b/src/sync.sh @@ -30,12 +30,15 @@ list_source () { local full_url="${repo_url}/packages.list" local tmp_file="${SYNC_CACHE}/$name.$repo" + ${VERBOSE} && printf "${LIGHT_BLACK}Indexing $repo from $full_url\n" local status=$(download_file $tmp_file $full_url) - if [ "$status" = "200" ]; then + if [ "$status" = "200" ] || [ "$status" = "000" ]; then while IFS= read -r line; do parse_line $repo $repo_url $line done < "$tmp_file" + else + return 1 fi } @@ -47,7 +50,8 @@ dep_graph () { local tmp_file="${SYNC_CACHE}/$name.deps.graph" [ -f $tmp_file ] && rm $tmp_file; touch $tmp_file - if [ "$(download_file $tmp_file $full_url)" = "200" ]; then + local status=$(download_file $tmp_file $full_url) + if [ "$status" = "200" ] || [ "$status" = "000" ]; then while IFS= read -r line; do local package=$(echo $line | cut -d: -f1) local new=$(echo $line | cut -d: -f2-) @@ -68,6 +72,11 @@ contest () { } popularity_contest () { + if [ "$(find $PACKAGES_DIR -type f | wc -l)" = "0" ]; then + printf "${RED}No packages found!\n"; + return 1 + fi + local list=$(ls -1 -d $PACKAGES_DIR/*/*) local total=$(echo $list | wc -l) @@ -75,9 +84,9 @@ popularity_contest () { for package_dir in $list; do contest $package_dir & completed=$((completed+1)) - hbar -T "${LARGE_CIRCLE} contesting packages..." $completed $total + ${QUIET} || hbar -T "${LARGE_CIRCLE} contesting packages..." $completed $total done - hbar -t ${HBAR_COMPLETE} -T "${CHECKMARK} contested packages" $completed $completed + ${QUIET} || hbar -t ${HBAR_COMPLETE} -T "${CHECKMARK} contested packages" $completed $completed } index_deps () { @@ -100,6 +109,7 @@ index_repo () { local total=$# local completed=0 + for src in ${SOURCES}; do list_source $repo $src completed=$((completed+1)) @@ -108,7 +118,6 @@ index_repo () { ${QUIET} || hbar -l $l ${HBAR_COMPLETE} -T "${CHECKMARK} synced $repo" $completed $total } - sync () { # prepare the file structure for the sync mkdir -p ${SYNC_CACHE} @@ -117,6 +126,7 @@ sync () { rm -r $DEP_DIR mkdir $DEP_DIR + ${VERBOSE} && printf "${LIGHT_BLACK}Syncing\n" # create padding spaces for each hbar ${QUIET} || for repo in ${REPOS}; do hbar |