summaryrefslogtreecommitdiff
path: root/scripts/pull_metadata.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pull_metadata.sh')
-rwxr-xr-xscripts/pull_metadata.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/scripts/pull_metadata.sh b/scripts/pull_metadata.sh
new file mode 100755
index 00000000..a9156a8c
--- /dev/null
+++ b/scripts/pull_metadata.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
+L10N_DIR="$(cd "$PROJECT_ROOT/../l10n" && pwd)"
+
+MODE="${1:-normal}" # normal|custom
+case "$MODE" in
+ normal|custom) ;;
+ *) echo "Usage: $0 [normal|custom]"; exit 1 ;;
+esac
+
+SRC_GLOB="$L10N_DIR/bitmask-playstore-metadata/*.json"
+OUT_BASE="$PROJECT_ROOT/src/${MODE}ProductionFat/fastlane/metadata/android"
+
+command -v jq >/dev/null 2>&1 || { echo "Missing jq"; exit 1; }
+
+for json in $SRC_GLOB; do
+ [ -e "$json" ] || break
+ lang="$(basename "$json" .json)"
+ echo "updating meta data for langauge $lang"
+ out_dir="$OUT_BASE/$lang"
+ mkdir -p "$out_dir"
+
+ jq -r '.full_description' "$json" > "$out_dir/full_description.txt"
+ jq -r '.short_description' "$json" > "$out_dir/short_description.txt"
+ jq -r '.title' "$json" > "$out_dir/title.txt"
+done