Home | About | Current
9th Sep 2020
Let’s imagine that you have a front-end pure HTML/CSS/JS code or used a modern framework to build it. You have deployed it behind a file server like Nginx and you want to renew the data that is fed into the app from Google Sheets/similar source.
It is the days of COVID-19, your data source is an Excel sheet on Google Docs. You want to process it into some other format and you are able to set up your cron
jobs but just have no time to configure Python/R/Node or other languages to get something up and running.
What I mean is this: if you want to consume a CSV coming originally from a Google sheet, you cannot use it directly in your front-end code. This will hit the famous CORS (Cross-Origin Resource Sharing) policy of the browser. So, the data has to come from your own server where your front end is served. How do you do this? Well, you can download the Google sheet and turn it into a CSV in Python/R or maybe even Node.
The alternative to these languages is doing it in Bash. So, back to Bash for me. Instead of installing an R package which then requires dependencies to download the sheet and convert it into CSV/JSON (and I did do this), you can get the data using Bash, make some changes using sed
(a true Swiss army knife), and serve the application using your modern JS bundle.
It is worth much more than a short article, but I just wanted to point out how easy it is once your cron script is something basic like:
#!/bin/sh
# 1
cd desired/path
# git pull #| grep 'Already up to date.'
# or some docker instance
# 2
# update some part of front end file: for instance index.html file with a stamp
sed -i "s/Last*/Last: $(date '+%Y-%m-%d %H:%M')/" index.html
# 3
curl 'https://docs.google.com/spreadsheets/d/doc_id/export?exportFormat=csv' -o mycsv.csv
# do some logging
# 4
echo $(date -u) "Last update" >> /update.log
This is a simple Bash script that can run on a Unix machine and does the following:
Finally, you need to find your favorite tutorial to set up a cron job that runs this script at your desired intervals. If the sheet is edited on an hourly basis, then so be it.
What did we achieve?