forked from github/platform-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request github#53 from github/repo-list-export
GitHub organization repo list exporter
- Loading branch information
Showing
2 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# set GITHUB_TOKEN to your GitHub or GHE access token | ||
# set GITHUB_API_ENDPOINT to your GHE API endpoint (defaults to https://api.github.com) | ||
|
||
if [ -n "$GITHUB_API_ENDPOINT" ]; then | ||
url=$GITHUB_API_ENDPOINT | ||
else | ||
url="https://api.github.com" | ||
fi | ||
|
||
token=$GITHUB_TOKEN | ||
|
||
OUTPUT_FORMAT="list" | ||
|
||
today=$(date +"%Y-%m-%d") | ||
|
||
dependency_test() | ||
{ | ||
for dep in curl jq ; do | ||
command -v $dep &>/dev/null || { echo -e "\n${_error}Error:${_reset} I require the ${_command}$dep${_reset} command but it's not installed.\n"; exit 1; } | ||
done | ||
} | ||
|
||
token_test() | ||
{ | ||
if [ -n "$token" ]; then | ||
token_cmd="Authorization: token $token" | ||
else | ||
echo "You must set a Personal Access Token to the GITHUB_TOKEN environment variable" | ||
exit 1 | ||
fi | ||
} | ||
|
||
usage() | ||
{ | ||
echo -e "Usage: $0 [options] <orgname>...\n" | ||
echo "Options:" | ||
echo " -h | --help Display this help text" | ||
echo " -a | --array-format Output the repository list in" | ||
echo " \"<orgname>/<repo1>\",\"<orgname>/<repo2>\" format" | ||
echo "" | ||
} | ||
|
||
# Progress indicator | ||
working() { | ||
echo -n "." | ||
} | ||
|
||
work_done() { | ||
echo -n "done!" | ||
echo -e "\n" | ||
} | ||
|
||
output_list() | ||
{ | ||
if [[ "$OUTPUT_FORMAT" == "array" ]]; then | ||
printf '%s\n' "${all_repos[@]}" | sort --ignore-case | sed -E "s/^(.*)/\"$org\/\1\"/g" | paste -sd ',' - > $org-$today.txt | ||
else | ||
printf '%s\n' "${all_repos[@]}" | sort --ignore-case > $org-$today.txt | ||
fi | ||
} | ||
|
||
get_repos() | ||
{ | ||
last_repo_page=$( curl -s --head -H "$token_cmd" "$url/orgs/$org/repos?per_page=100" | sed -nE 's/^Link:.*per_page=100.page=([0-9]+)>; rel="last".*/\1/p' ) | ||
|
||
if [[ "$last_repo_page" == "" ]]; then | ||
echo "Fetching repository list for '$org' organization" | ||
all_repos=($( curl -s -H "$token_cmd" "$url/orgs/$org/repos?per_page=100" | jq --raw-output '.[].name' | tr '\n' ' ' )) | ||
output_list | ||
total_repos=$( echo "${all_repos[@]}" | wc -w | tr -d "[:space:]" ) | ||
echo | ||
echo "Total # of repositories in "\'$org\'": $total_repos" | ||
echo "List saved to $org-$today.txt" | ||
else | ||
echo "Fetching repository list for '$org' organization" | ||
all_repos=() | ||
for (( i=1; i<=$last_repo_page; i++ )) | ||
do | ||
working | ||
paginated_repos=$( curl -s -H "$token_cmd" "$url/orgs/$org/repos?per_page=100&page=$i" | jq --raw-output '.[].name' | tr '\n' ' ' ) | ||
all_repos=(${all_repos[@]} $paginated_repos) | ||
done | ||
work_done | ||
output_list | ||
total_repos=$( echo "${all_repos[@]}" | wc -w | tr -d "[:space:]" ) | ||
echo "Total # of repositories in "\'$org\'": $total_repos" | ||
echo "List saved to $org-$today.txt" | ||
fi | ||
} | ||
|
||
#### MAIN | ||
|
||
dependency_test | ||
|
||
token_test | ||
|
||
if [[ -z "$*" ]] ; then | ||
echo "Error: no organization name entered" 1>&2 | ||
echo | ||
usage | ||
exit 1 | ||
fi | ||
|
||
while [[ "$1" != "" ]]; do | ||
case $1 in | ||
-h | --help ) usage | ||
exit ;; | ||
-a | --array-format ) OUTPUT_FORMAT="array";; | ||
-* ) echo "Error: invalid argument: '$1'" 1>&2 | ||
echo | ||
usage | ||
exit 1;; | ||
* ) org="$1" | ||
get_repos | ||
esac | ||
shift | ||
done | ||
|
||
exit 0 |