v1.js
Imports from airtable to woocommerce. Imports products to woocommerce.
Should be run with command line arguments.
Example:node import-from-airtable-to-woocommerce-v1.js \
wc-api-url=https://SITE/wp-json/wc/v3 \
wc-consumer-key= \
wc-consumer-secret= \
type=product \
airtable-base-name= \
airtable-table-name=Pricelist \
airtable-view-name=wordpress \
airtable-table-key=Model \
airtable-key-name=wp \
airtable-key-value=publish \
import-fields=Model+sku,regular_price_sek+regular_price \
airtable-api-key=keyUuJlo2wY5OZBxg
optional:console-key=my-console-key
console-prefix=import-from-airtable-to-woocommerce-v1
Help: Coming soon! 😀
An app bundled by ac-bundle-app, published by ac-bundle-module. namespace: import-from-airtable-to-woocommerce
Install from:
https://www.npmjs.com/package/import-from-airtable-to-woocommerce-v1
https://github.com/animatedcreativity/import-from-airtable-to-woocommerce-v1
Available Methods: start, startUps, workerStartUps, callbacks, api, build, parseArgv, console, exit, consoleColors, camelCase, properCase, workers, enhance, publish, sync, utils, has
start
async function() {
var options = app.parseArgv(["type", "wc-api-url", "wc-consumer-key", "wc-consumer-secret", "airtable-base-name", "airtable-table-name", "airtable-view-name", "airtable-table-key", "airtable-key-name", "airtable-key-value", "import-fields", "airtable-api-key", "console-key", "console-prefix"]);
console.log(options);
if (app.has(options) && app.has(options.type) && app.has(app.sync[options.type])) {
app.cliOptions = options;
await app.sync[options.type].start(options);
if (app.has(options.consoleKey)) app.exit(10);
} else {
console.log(app.consoleColors.bgRed, "Invalid options: ", options);
}
}
startUps
workerStartUps
callbacks
static
api
airtable, woo
build
parseArgv
function(list) {
var options = {};
for (var i=2; i<=process.argv.length-1; i++) {
var option = process.argv[i];
var name = option.split("=").shift().trim();
var cName = app.camelCase(name).split("-").join("");
var value = option.split("=").pop().trim();
if (list.indexOf(name) >= 0) {
options[cName] = value;
} else {
console.log(app.consoleColors.bgRed, "Invalid option: " + name);
return;
}
}
app.cliOptions = options;
return options;
}
console
function() {
if (app.has(app.cliOptions) && app.has(app.cliOptions.consoleKey)) {
if (!app.has(mod.consoleRe)) {
mod.consoleRe = require('console-remote-client').connect({server: "https://console.ylo.one:8088", channel: app.cliOptions.consoleKey});
}
var args = Array.prototype.slice.call(arguments);
if (app.has(app.cliOptions.consolePrefix)) {
args.unshift("[lime]" + app.cliOptions.consolePrefix + "[/lime]");
}
console.re.log.apply(null, args);
mod.logged = true;
}
}
exit
async function(time) {
if (mod.logged === true) {
console.log("Waiting for remote console...");
if (!app.has(time)) time = 5; // 5 seconds
await new Promise(function(resolve, reject) {
setTimeout(function() { resolve(true); }, time * 1000);
});
}
process.exit();
}
consoleColors
reset, bright, dim, underscore, blink, reverse, hidden, fgBlack, fgRed, fgGreen, fgYellow, fgBlue, fgMagenta, fgCyan, fgWhite, fgGray, bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite, bgGray
camelCase
function camelize(str, capitalFirst) {
if (!app.has(capitalFirst)) capitalFirst = false;
var result = str.replace(/(?:^\w|[A-Z]|\b\w)/g, function(word, index) {
return index === 0 ? word.toLowerCase() : word.toUpperCase();
}).replace(/\s+/g, '');
if (capitalFirst) result = result.substr(0, 1).toUpperCase() + result.substr(1, 999);
return result;
}
properCase
function(str) {
return str.replace(
/\w\S*/g,
function(txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); }
);
}
workers
index, list, task, count, do
enhance
argv, config, console, string, workers
publish
sync
product
utils
object, relatedFields
has
function(value) {
var found = true;
for (var i=0; i<=arguments.length-1; i++) {
var value = arguments[i];
if (!(typeof value !== "undefined" && value !== null && value !== "")) found = false;
}
return found;
}
Happy Coding!
MIT License: https://choosealicense.com/licenses/mit/
Copyright 2022 Animated Creativity
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.