#!/usr/bin/env bash source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions" source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions" set -eo pipefail [[ $DOKKU_TRACE ]] && set -x cmd-builder-nixpacks-report() { declare desc="displays a builder-nixpacks report for one or more apps" declare cmd="builder-nixpacks:report" [[ "$1" == "$cmd" ]] && shift 1 fn-report-parse-args "$@" set -- "${REPORT_ARGS[@]}" declare APP="${1:-}" INFO_FLAG="${2:-}" if [[ -n "$APP" ]] && [[ "$APP" == --* ]]; then INFO_FLAG="$APP" APP="" fi if [[ "$REPORT_IS_GLOBAL" == "true" ]]; then APP="--global" fi if [[ -z "$APP" ]] && [[ -z "$INFO_FLAG" ]]; then INFO_FLAG="true" fi if [[ "$APP" == "--global" ]]; then cmd-builder-nixpacks-report-single "$APP" "$INFO_FLAG" "$REPORT_FORMAT" elif [[ -z "$APP" ]]; then for app in $(dokku_apps); do cmd-builder-nixpacks-report-single "$app" "$INFO_FLAG" "$REPORT_FORMAT" | tee || true done else cmd-builder-nixpacks-report-single "$APP" "$INFO_FLAG" "$REPORT_FORMAT" fi } cmd-builder-nixpacks-report-single() { declare APP="$1" INFO_FLAG="$2" FORMAT="${3:-stdout}" if [[ "$INFO_FLAG" == "true" ]]; then INFO_FLAG="" fi local flag_map=() if [[ "$APP" == "--global" ]]; then flag_map=( "--builder-nixpacks-global-nixpackstoml-path: $(fn-builder-nixpacks-global-nixpackstoml-path "$APP")" ) else verify_app_name "$APP" flag_map=( "--builder-nixpacks-computed-nixpackstoml-path: $(fn-builder-nixpacks-computed-nixpackstoml-path "$APP")" "--builder-nixpacks-global-nixpackstoml-path: $(fn-builder-nixpacks-global-nixpackstoml-path "$APP")" "--builder-nixpacks-nixpackstoml-path: $(fn-builder-nixpacks-nixpackstoml-path "$APP")" ) fi fn-report-validate-format "$FORMAT" "$INFO_FLAG" if [[ "$FORMAT" == "json" ]]; then fn-report-emit-json flag_map "builder-nixpacks" return fi if [[ -z "$INFO_FLAG" ]]; then if [[ "$APP" == "--global" ]]; then dokku_log_info2_quiet "global builder-nixpacks information" else dokku_log_info2_quiet "${APP} builder-nixpacks information" fi for flag in "${flag_map[@]}"; do key="$(echo "${flag#--}" | cut -f1 -d' ' | tr - ' ')" dokku_log_verbose "$(printf "%-30s %-25s" "${key^}" "${flag#*: }")" done else local match=false for flag in "${flag_map[@]}"; do valid_flags="${valid_flags} $(echo "$flag" | cut -d':' -f1)" if [[ "$flag" == "${INFO_FLAG}:"* ]]; then value=${flag#*: } size="${#value}" if [[ "$size" -ne 0 ]]; then echo "$value" && match=true else match=true fi fi done [[ "$match" == "true" ]] || dokku_log_fail "Invalid flag passed, valid flags:${valid_flags}" fi } fn-builder-nixpacks-computed-nixpackstoml-path() { declare APP="$1" file="$(fn-builder-nixpacks-nixpackstoml-path "$APP")" if [[ "$file" == "" ]]; then file="$(fn-builder-nixpacks-global-nixpackstoml-path "$APP")" fi echo "$file" } fn-builder-nixpacks-global-nixpackstoml-path() { declare APP="$1" fn-plugin-property-get "builder-nixpacks" "--global" "nixpackstoml-path" "nixpacks.toml" } fn-builder-nixpacks-nixpackstoml-path() { declare APP="$1" fn-plugin-property-get "builder-nixpacks" "$APP" "nixpackstoml-path" "" }