-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Related to #39 .
To make the categories also sync, either gain access to the Airtable Metadata API (not going to happen, they've stopped onboarding new teams), or write code that scrapes the ESOVDB Airtable API docs and syncs the tag categories with Zotero, creating collections with the
Tagsparent collection, and then returning their Zotero Keys and Versions back to the ESOVDB API, either stored in a new table on the Airtable (not preferable), or in a JSON data file. This should all happen on command, set it up as a command line tool
Since Airtable is no longer onboarding new users on the Metadata API, all that can be done is to scrape the API documentation page, which contains the same data, but annoyingly distributed throughout rendered HTML. The idea is to create a command-line tool that will take an Airtable Base ID, email, and password, and spit out a JSON file for all the metadata in that Airtable base.
Schema:
{
"name": "baseName",
"id": "baseId",
"apiBaseURL": "https://api.airtable.com/v0/baseId",
"tables": [
{
"name": "tableName",
"fields": [
{
"name": "fieldName",
"fieldType": "airtableFieldType",
"type": "dataType",
"description": "airtableDescription",
"examples": [
{
"type": "text",
"value": "exampleText"
},
{
"type": "array",
"value": [
"arrayItem",
...
]
}
]
},
...
]
},
...
]
}This can be open-sourced and distributed to others separate from the ESOVDB, who might find it usefu, given the moratorium on Airtable metadata API.
The data will be scraped using puppeteer.js and cheerio.js, with puppeteer in stealth mode.
The JSON file that this script writes out can be parsed and used for instance to dynamically list tag categories in #40, and this can either run on a schedule with crontab, or with the various ESOVDB sync functions, or manually through the command-line.
Metadata
Metadata
Assignees
Labels
Projects
Status