This repo is now DEPRECATED. Airtable released a Last Modified time field in May 2019. I do not know why you would choose to use this instead of their supported solution.
Scripts using the Airtable API to allow a "last updated" field.
You give us the information to connect to an Airtable table, we check it on a schedule you specify and update a column ('Last Updated', though you can change the name) whenever we detect a change.
Most of the logic exists in job.js
:
- On each run, each row in each airtable named in
configs.airtableTables
is hashed. - This hash is compared to what we saw for that row the last time the check was done.
- If we see a difference, that row is updated with the current date and time.
- We delete node's cache of the json each time so that we can actually make a comparison.
- Note that we're comparing the row data except the date column that we're updating.
- After scanning all the rows, out store of hashes for comparison (a .json file, because we are High Tech) is updated.
- If
configs.sendEmails
is set, we send an email indicating that the run happened (if you're running this on a server, this will incidentally let you know if it has gone down).
You don't necessarily need to set this up on a server for it to be useful, but it will probably be more useful that way.
Note that we use an old version of the email-templates
and async
packages because they changed
their syntax and we wanted to be able to copy-paste from old code. #OverlyHonestCoding
Running this code requires that you already have node.js installed.
Download the code! Then navigate to the base directory and install packages with:
npm install
Get your AirTable API key (instructions)
and create a secrets.js
file in the base directory of the repository. You can copy the secrets-template.js
over to your
secrets.js
file. You'll then want to fill in the contents, which are:
// API key for Airtable base
exports.apiKey = 'YOUR_API_KEY';
// Name of Airtable base to use
// Findable by clicking 'Help' in your base, then selecting 'API documentation'
exports.airtableBase = 'BASE_ID';
// Connection string for e-mail to use for notifications
// Probably don't use your personal e-mail, but YMMV
exports.notificationEmail = {
'address': 'AN_EMAIL_YOU_MADE@SOME_SERVER.COM',
'SMTP': 'smtps://AN_EMAIL_YOU_MADE@SOME_SERVER.COM:YOUR_PASSWORD@smtp.SOME_SERVER.COM'
};
// You'll want to change this to your email, so you can see all those sweet notifications
// and be alarmed when they don't appear
exports.maintainerEmail = 'YOUR_EMAIL@PROBABLYGMAIL.COM';
You will likely want to update the names of the tables in configs.js
to match yours:
// Name of tables in airtabeBase that should, uh, be updated
exports.airtableTables = ['TABLE_NAME', 'ANOTHER_TABLE_NAME'];
If you want to run this in production (i.e. acknowledging that the HH:mm:ss timestamps for this hack
are going to reflect when the script ran, not when the update happened, and just setting them to
00:00:00) then you will wish to edit the mode in configs.js
:
exports.mode = 'production';
If you don't want email notifications, you can enter dummy values for the email-related settings and
change the flag in configs.js
:
exports.sendEmails = false;
You can start a cron job by calling:
node runner.js
The cron job is set to run every 10 seconds in development
mode. It will run once a day if you
switch the mode to production
. You can change this in by editing the cronTimes
in configs.js
to suit your needs.
If you don't want to run this with a cron job, you can also run the script from the node interpreter:
// Within the node interpreter
var job = require('./job');
job.hackLastUpdated();
You can just run a cron job on your computer, as in the example above. You don't have to get this running on a server. It's just nicer and more automatic this way. We ended up using a DreamCompute instance for this, which has the following set up instructions but YMMV.
Command to access the instance (substitute the name of your ssh file and IP):
ssh -i ~/.ssh/last-updated-host.pem ubuntu@XXX.XXX.XXX.XXX
Then, once on the server, we ran the following in sequence:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt install npm
git clone https://github.com/alexanian/airtable-last-updated-hack
cd airtable-last-updated-hack/
npm install
cp secrets-template.js secrets.js
The secrets.js
file was updated by consulting:
- Our base's API page (located at
https://airtable.com/BASE_NAME/api/docs
, but we found it by following the link under the Help menu). - The SMTP server for a gmail account we'd set up. You can follow this Digital Ocean tutorial to do the same.
Then you'll want to update configs.js
with information about your table and to switch the
mode
to production. (It's possible you'll also want to change the time strings in configs.js
.)
Now install the package you'll be using to run the job in the background:
sudo npm install pm2 -g
sudo pm2 start pm2.ecosystem.json --only last-updated-hack
You can see what's running with:
sudo pm2 list
And the last few (here, five) lines of logs with:
sudo pm2 logs --lines 5
To ensure the job keeps running even if your server restarts, run the following:
sudo pm2 save
sudo pm2 startup ubuntu
You might need to "Allow less secure apps" or something similar to be able to send e-mails with
your SMTP string. For example, we saw the error Error: Invalid login: 534-5.7.14
when using a
gmail address.
We also saw Google (sensibly) block the e-mail once we tried sending from our server, since said server was in Brazil. Check your SMTP e-mail for security alerts.
Shout out to Zachary Jacobi, my designated pair programming buddy, both virtually and in person, for nearly every line of code in this repository.