Create initial template for council pages

This commit is contained in:
2024-07-28 22:42:32 +10:00
parent e4169182e0
commit b017d642bc
3 changed files with 40 additions and 7 deletions

View File

@@ -1,10 +1,11 @@
#!/bin/bash
# This script uses the wp and jq commands, make sure they are installed before running this script.
# This script uses the jq, wp, and gomplate commands, make sure they are installed before running this script.
# The council_names.json file must contain a list of objects (one for each council).
# Each object must have a "shortName" field and a "wardNames" field.
# Each object must have the following fields: "shortName", "councilName", and "wardNames"
# The "shortName" field must be a string.
# The "councilName" field must be a string.
# The "wardNames" field must be a list of strings.
JSON_FILE="council_names.json"
@@ -17,15 +18,14 @@ function create_or_update_page() {
short_name=$(echo "$council_block" | jq -r '.shortName')
# TODO: Generate better content! This just outputs the name of each ward.
content=$(echo "$council_block" | jq -r '.wardNames | .[]')
content=$(echo "$council_block" | jq -c | gomplate -d config=stdin:///in.json -f page-template)
if [[ -n "$page_id" ]]; then
echo "Update page $short_name (post $page_id)"
wp post update "$page_id" --post_content="$content" $WP_FLAGS
echo "$content" | wp post update "$page_id" --post_content="$content" $WP_FLAGS -
else
echo "Create page $short_name"
wp post create --post_type=page --post_title="$short_name" --post_status=publish --post_content="$content" $WP_FLAGS
echo "$content" | wp post create --post_type=page --post_title="$short_name" --post_status=publish $WP_FLAGS -
fi
}