This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/schema/generator
2015-08-18 11:26:57 -07:00

57 lines
1.5 KiB
Bash
Executable file

#!/bin/bash -eu
if [ $# -eq 0 ]; then
SCHEMA='worker'
else
SCHEMA=$1
fi
if [ $SCHEMA = "worker" ]; then
IN="schema/workerschema/v1.json"
OUT="schema/workerschema/v1-json.go"
GEN="schema/workerschema/v1-gen.go"
GOPKG="workerschema"
elif [ $SCHEMA = 'admin' ]; then
IN="schema/adminschema/v1.json"
OUT="schema/adminschema/v1-json.go"
GEN="schema/adminschema/v1-gen.go"
GOPKG="adminschema"
else
echo "Usage: generator [worker|admin]"
exit 1
fi
# See schema/generator_import.go for instructions on updating the dependency
PKG="google.golang.org/api/google-api-go-generator"
# First, write the discovery document into a go file so it can be served statically by the API
cat << EOF > "${OUT}"
package $GOPKG
//
// This file is automatically generated by schema/generator
//
// **** DO NOT EDIT ****
//
EOF
echo -n 'const DiscoveryJSON = `' >> ${OUT}
cat ${IN} >> "${OUT}"
echo -n '`' >> "${OUT}"
# Now build google-api-go-generator - we vendor so this is consistently reproducible
GEN_PATH="bin/google-api-go-generator"
if [ ! -f ${GEN_PATH} ]; then
GOPATH="${PWD}/Godeps/_workspace" go build -o ${GEN_PATH} ${PKG}
fi
# Build the bindings
GOPATH=${PWD}/gopath ./bin/google-api-go-generator \
-googleapi_pkg "google.golang.org/api/googleapi" \
-api_json_file "${IN}" \
-output "${GEN}"
# Finally, fix the import in the bindings to refer to the vendored google-api package
sed -i '' -e "s%google.golang.org%github.com/coreos/dex/Godeps/_workspace/src/google.golang.org%" "${GEN}"
goimports -w ${GEN}