-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCode.gs
99 lines (87 loc) · 2.64 KB
/
Code.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// The Google Apps Script for the Google Sheets file.
var SHEET_NAME = "Purchasing List";
var NAME_COL = 1;
var PRICE_COL = 6;
var SKU_COL = 9;
var SUPPLIER_COL = 10;
var URL_COL = 11;
var MAGIC_API_BASE = "<API base URL>";
function myOnEdit(e) {
var range = e.range;
var sheet = range.getSheet();
// Ensure we only look at edits to single cells on the purchasing list.
if (!(sheet.getName() == SHEET_NAME && e.value)) {
return;
}
var row = range.getRow();
var col = range.getColumn();
if (col == URL_COL) {
var url = e.value;
_doURL(url, row, sheet);
} else if (col == SKU_COL) {
// Try to determine the supplier from the SKU.
var sku = e.value;
var supplier, url;
if (sku.slice(0, 3) == "am-") {
supplier = "AndyMark";
if (sku.slice(-3) == "AUS") {
supplier += " Australia";
}
url = "https://www.andymark.com/" + sku;
} else if (sku.slice(0, 4) == "REV-") {
supplier = "REV Robotics";
url = "http://www.revrobotics.com/" + sku.toLowerCase() + "/";
}
if (supplier) {
// sheet.getRange(row, SUPPLIER_COL, 1, 2).setValues([supplier, url]);
_setCell(sheet, row, SUPPLIER_COL, supplier);
_setCell(sheet, row, URL_COL, url);
_doURL(url, row, sheet);
}
}
}
function _doURL(url, row, sheet) {
var info = _getJSON(MAGIC_API_BASE + encodeURIComponent(url));
if (!info) {
Logger.log("unsupported URL: %s", url);
return;
}
var hasAggregate = info.has_aggregate;
if (info.name) _setCell(sheet, row, NAME_COL, info.name, hasAggregate);
if (info.sku) _setCell(sheet, row, SKU_COL, info.sku, hasAggregate);
if (info.supplier) _setCell(sheet, row, SUPPLIER_COL, info.supplier);
if (info.price) {
var priceCell;
if (info.currency == "AUD" || !info.currency) {
priceCell = _setCell(sheet, row, PRICE_COL, info.price, hasAggregate);
if (!info.currency) {
priceCell.setNote(
"WARNING: Currency could not be automatically determined."
);
}
} else {
priceCell = _setCell(
sheet,
row,
PRICE_COL,
'=GOOGLEFINANCE("' + info.currency + 'AUD")*' + info.price,
hasAggregate
);
priceCell.setNote(info.price + " " + info.currency);
}
}
}
function _getJSON(url) {
var response = UrlFetchApp.fetch(url);
return JSON.parse(response.getContentText());
}
function _setCell(sheet, row, col, newValue, noOverwrite) {
var cell = sheet.getRange(row, col);
var currValue = cell.getValue();
if (currValue) {
if (currValue == newValue || noOverwrite) return;
// TODO prompt user
}
return cell.setValue(newValue);
}
// vim: ft=javascript: