mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
2e19bc7074
Some terraform providers were moved to the `hashicorp` organization, some are still in the `terraform-providers` organization. GitHub doesn't show moved repositories when querying via the API (only on the web interface). In addition, if there are more than 100 results (there still are), we'd need to implement paging, which is cubersome in curl. In addition to that, to look up tags, we used to creating a HTTP request for each and every provider, which caused us to easily get blocked by GitHubs rate-limiting. Instead of all that, let's use `hub` (which implements paging) and the GitHub's GraphQL endpoint to get a list all repositories for a given organization AND the latest tag for each of them. We post-process the output with `jq`. This also removes the providers.txt and folds the data into the script. The blacklist was becoming too annoying to handle as a config file. For the whitelist, we still need to individually fetch tags. Fixes #83215 Co-Authored-By: zimbatm <zimbatm@zimbatm.com>
174 lines
4.4 KiB
Bash
Executable File
174 lines
4.4 KiB
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p bash coreutils jq nix gitAndTools.hub
|
|
# vim: ft=sh sw=2 et
|
|
# shellcheck shell=bash
|
|
#
|
|
# This scripts scans the github terraform-providers repo for new releases,
|
|
# generates the corresponding nix code and finally generates an index of
|
|
# all the providers given in ./providers.txt.
|
|
set -euo pipefail
|
|
|
|
# the maximum number of attempts before giving up inside of GET and prefetch_github
|
|
readonly maxAttempts=30
|
|
|
|
get_tf_providers_org() {
|
|
# returns all terraform providers in a given organization, and their the
|
|
# latest tags, in the format
|
|
# $org/$repo $rev
|
|
local org=$1
|
|
hub api --paginate graphql -f query="
|
|
query(\$endCursor: String) {
|
|
repositoryOwner(login: \"${org}\") {
|
|
repositories(first: 100, after: \$endCursor) {
|
|
nodes {
|
|
nameWithOwner
|
|
name
|
|
refs(first: 1, refPrefix: \"refs/tags/\", orderBy: {field: TAG_COMMIT_DATE, direction: DESC}) {
|
|
nodes {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
pageInfo {
|
|
hasNextPage
|
|
endCursor
|
|
}
|
|
}
|
|
}
|
|
}" | \
|
|
jq -r '.data.repositoryOwner.repositories.nodes[] | select(.name | startswith("terraform-provider-")) | select((.refs.nodes | length) > 0) | .nameWithOwner + " " + .refs.nodes[0].name'
|
|
# filter the result with jq:
|
|
# - repos need to start with `teraform-provider-`
|
|
# - they need to have at least one tag
|
|
# for each of the remaining repos, assemble a string $org/$repo $rev
|
|
}
|
|
|
|
get_latest_repo_tag() {
|
|
# of a given repo and owner, retrieve the latest tag
|
|
local owner=$1
|
|
local repo=$2
|
|
hub api --paginate "https://api.github.com/repos/$owner/$repo/git/refs/tags" | \
|
|
jq -r '.[].ref' | \
|
|
grep -v 'v\.' | \
|
|
cut -d '/' -f 3- | \
|
|
sort --version-sort | \
|
|
tail -1
|
|
}
|
|
|
|
prefetch_github() {
|
|
# of a given owner, repo and rev, fetch the tarball and return the output of
|
|
# `nix-prefetch-url`
|
|
local owner=$1
|
|
local repo=$2
|
|
local rev=$3
|
|
local retry=1
|
|
while ! nix-prefetch-url --unpack "https://github.com/$owner/$repo/archive/$rev.tar.gz"; do
|
|
echo "The nix-prefetch-url command has failed. Attempt $retry/${maxAttempts}" >&2
|
|
if [[ "${retry}" -eq "${maxAttempts}" ]]; then
|
|
exit 1
|
|
fi
|
|
retry=$(( retry + 1 ))
|
|
sleep 5
|
|
done
|
|
}
|
|
|
|
echo_entry() {
|
|
local owner=$1
|
|
local repo=$2
|
|
local rev=$3
|
|
local version=${rev#v}
|
|
local sha256=$4
|
|
cat <<EOF
|
|
{
|
|
owner = "$owner";
|
|
repo = "$repo";
|
|
rev = "$rev";
|
|
version = "$version";
|
|
sha256 = "$sha256";
|
|
};
|
|
EOF
|
|
}
|
|
|
|
indent() { sed 's/^/ /'; }
|
|
|
|
add_provider() {
|
|
org="${1}"
|
|
repo="${2}"
|
|
rev="${3}"
|
|
|
|
echo "*** $org/$repo $rev ***"
|
|
name=$(echo "$repo" | cut -d - -f 3-)
|
|
sha256=$(prefetch_github "$org" "$repo" "$rev")
|
|
|
|
{
|
|
echo " $name ="
|
|
echo_entry "$org" "$repo" "$rev" "$sha256" | indent
|
|
} >> data.nix
|
|
}
|
|
|
|
## Main ##
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# individual repos to fetch
|
|
slugs=(
|
|
ajbosco/terraform-provider-segment
|
|
camptocamp/terraform-provider-pass
|
|
poseidon/terraform-provider-matchbox
|
|
spaceapegames/terraform-provider-wavefront
|
|
tweag/terraform-provider-nixos
|
|
tweag/terraform-provider-secret
|
|
)
|
|
|
|
# a list of providers to ignore
|
|
blacklist=(
|
|
terraform-providers/terraform-provider-azure-classic
|
|
terraform-providers/terraform-provider-cidr
|
|
terraform-providers/terraform-provider-quorum
|
|
terraform-providers/terraform-provider-cloudinit
|
|
terraform-providers/terraform-provider-time
|
|
)
|
|
|
|
cat <<HEADER > data.nix
|
|
# Generated with ./update-all
|
|
{
|
|
HEADER
|
|
|
|
# assemble list of terraform providers
|
|
providers=$(get_tf_providers_org "terraform-providers")
|
|
providers=$(echo "$providers";get_tf_providers_org "hashicorp")
|
|
|
|
# add terraform-providers from slugs
|
|
for slug in "${slugs[@]}"; do
|
|
# retrieve latest tag
|
|
org=${slug%/*}
|
|
repo=${slug#*/}
|
|
rev=$(get_latest_repo_tag "$org" "$repo")
|
|
|
|
# add to list
|
|
providers=$(echo "$providers";echo "$org/$repo $rev")
|
|
done
|
|
|
|
# filter out all providers on the blacklist
|
|
for repo in "${blacklist[@]}"; do
|
|
providers=$(echo "$providers" | grep -v "^${repo} ")
|
|
done
|
|
|
|
# sort results alphabetically by repo name
|
|
providers=$(echo "$providers" | sort -t "/" --key=2)
|
|
|
|
# render list
|
|
IFS=$'\n'
|
|
for provider in $providers; do
|
|
org=$(echo "$provider" | cut -d " " -f 1 | cut -d "/" -f1)
|
|
repo=$(echo "$provider" | cut -d " " -f 1 | cut -d "/" -f2)
|
|
rev=$(echo "$provider" | cut -d " " -f 2)
|
|
add_provider "${org}" "${repo}" "${rev}"
|
|
done
|
|
|
|
cat <<FOOTER >> data.nix
|
|
}
|
|
FOOTER
|
|
|
|
echo Done.
|