From aec05c2c4eb5ec3a76e441869d25fe3b4b550555 Mon Sep 17 00:00:00 2001 From: user2 Date: Tue, 15 Nov 2022 20:01:13 +0300 Subject: [PATCH] Change endpoint (new page) --- update_FDEVCalendar.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/update_FDEVCalendar.bash b/update_FDEVCalendar.bash index 0581638..bf85ff6 100755 --- a/update_FDEVCalendar.bash +++ b/update_FDEVCalendar.bash @@ -2,15 +2,15 @@ cd /home/user2/projects_production/FDEVCommunityEventsMonitoring || { exit 1; echo "changing directory failed"; exit 1; } -http_response=$(curl -s -L -o calendar.json -w "%{http_code}" "https://calendar.zaonce.net/jsonapi/node/calendar_item") +http_response=$(curl -s -L -o calendar-page-2.json -w "%{http_code}" "https://calendar.zaonce.net/jsonapi/node/calendar_item?page%5Boffset%5D=50&page%5Blimit%5D=50") if [ $http_response != "200" ]; then git reset --hard | grep -v "HEAD is now at" exit 1 else - cat calendar.json | python3 -m json.tool > .calendar.json - mv .calendar.json calendar.json - git add "calendar.json" + cat calendar-page-2.json | python3 -m json.tool > .calendar-page-2.json + mv .calendar-page-2.json calendar-page-2.json + git add "calendar-page-2.json" git commit -m "commit" 2>/dev/null >/dev/null git push 2>/dev/null fi