diff --git a/.github/workflows/check-database-migration-files.yml b/.github/workflows/check-database-migration-files.yml new file mode 100644 index 000000000000..54a7f4cfcbdc --- /dev/null +++ b/.github/workflows/check-database-migration-files.yml @@ -0,0 +1,83 @@ +name: Flyway Migration Files + +on: + pull_request: + branches: + - '**' + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - name: Checkout current branch + uses: actions/checkout@v3 + + - name: Fetch base branch + run: | + git fetch origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }} + + - name: Check for new migration files + run: | + echo "Checking for new migration files..." + + # Set the directory for migrations + MIGRATION_DIR=src/main/resources/db/migration + + # Get existing migration files from the base branch + BASE_MIGRATION_FILES=$(git ls-tree -r --name-only origin/${{ github.base_ref }} -- $MIGRATION_DIR) + + # Initialize variable to hold the latest base file + LATEST_BASE_FILE="" + LATEST_BASE_TIMESTAMP="" + + # Determine the latest timestamp from the base branch + for BASE_FILE in $BASE_MIGRATION_FILES; do + BASE_TIMESTAMP=$(echo $BASE_FILE | grep -oP 'V\K[0-9_]{10,14}') + # Check if the timestamp is valid + if [[ -z "$BASE_TIMESTAMP" ]]; then + echo "Error: Base file $BASE_FILE does not have a valid timestamp." + continue + fi + # Check if this base timestamp is later than the current latest + if [[ "$LATEST_BASE_TIMESTAMP" < "$BASE_TIMESTAMP" ]]; then + LATEST_BASE_TIMESTAMP="$BASE_TIMESTAMP" + LATEST_BASE_FILE="$BASE_FILE" + fi + done + + echo "Base migration file with the latest timestamp:" + echo "$LATEST_BASE_FILE" + + # List current migration files + CURRENT_MIGRATION_FILES=$(ls $MIGRATION_DIR) + + # Get the new migration files added in the current branch + NEW_MIGRATION_FILES=$(git diff --name-only origin/${{ github.base_ref }} -- $MIGRATION_DIR) + + # Output new migration files found in the current branch + if [[ -z "$NEW_MIGRATION_FILES" ]]; then + echo "No new migration files found." + exit 0 + else + echo "New migration files in the current branch:" + echo "$NEW_MIGRATION_FILES" + fi + + # Check for new migration files and their timestamps + for FILE in $NEW_MIGRATION_FILES; do + TIMESTAMP=$(echo $FILE | grep -oP 'V\K[0-9_]{10,14}') + # Ensure the timestamp is valid + if [[ -z "$TIMESTAMP" ]]; then + echo "Error: File $FILE does not have a valid timestamp." + exit 1 + fi + + # Validate against the latest base file timestamp + if [[ "$TIMESTAMP" < "$LATEST_BASE_TIMESTAMP" ]]; then + echo "Error: Timestamp $TIMESTAMP in $FILE is earlier than the latest base migration timestamp $LATEST_BASE_TIMESTAMP from $LATEST_BASE_FILE." + exit 1 + fi + done + + echo "All new migration files are valid." diff --git a/src/main/resources/db/migration/V2024_10_10_1047__new_scenario.sql b/src/main/resources/db/migration/V2024_10_10_1047__new_scenario.sql new file mode 100644 index 000000000000..f48028e7b611 --- /dev/null +++ b/src/main/resources/db/migration/V2024_10_10_1047__new_scenario.sql @@ -0,0 +1,52 @@ +/** + * Add scenario + */ +INSERT INTO dbs.scenario (name, notifications_to_delete, notifications_to_create) +VALUES ('Scenario.AAA6.JudgmentsOnline.IssuedCCJ.Claimant', + '{"Notice.AAA6.ClaimantIntent.CCJ.Requested.Claimant", + "Notice.AAA6.ClaimantIntent.RequestedCCJ.ClaimantAcceptedDefendantPlan.Claimant", + "Notice.AAA6.ClaimantIntent.RequestCCJ.ClaimantAcceptOrRejectPlan.SettlementRequested.NoDefResponse.Claimant", + "Notice.AAA6.ClaimantIntent.RequestCCJ.ClaimantAcceptOrRejectPlan.SettlementRequested.DefPaymentMissed.Claimant"}', + '{"Notice.AAA6.JudgmentsOnline.IssuedCCJ.Claimant": ["djClaimantNotificationMessage", "djClaimantNotificationMessageCy"]}'); + +/** + * Add notification template + */ +INSERT INTO dbs.dashboard_notifications_templates ( template_name, title_En, title_Cy, description_En, description_Cy + , notification_role) +VALUES ('Notice.AAA6.JudgmentsOnline.IssuedCCJ.Claimant', + 'A judgment against the defendant has been made', + 'Mae dyfarniad wedi’i wneud yn erbyn y diffynnydd', + '
The defendant should now pay you according to the terms of the judgment.
Once they do, you should confirm that they’ve paid you the full amount that you’re owed.
If they do not pay you by the date on the judgment, you can ask for enforcement action to be taken against them.
If you need to change the terms of payment within the judgment, such as the instalments you had previously agreed, you can ${djClaimantNotificationMessage}.
Dylai’r diffynnydd eich talu yn unol â thelerau’r dyfarniad.
Unwaith y byddant yn gwneud hynny, dylech gadarnhau eu bod wedi talu’r swm llawn sy’n ddyledus i chi.
Os na fyddant yn eich talu erbyn y dyddiad ar y dyfarniad, gallwch ofyn am gymryd camau gorfodi yn eu herbyn.
Os oes arnoch angen newid y telerau talu o fewn y dyfarniad, fel y rhandaliadau roeddech wedi cytuno arnynt yn flaenorol, gallwch ${djClaimantNotificationMessageCy}.