Skip to content

Instantly share code, notes, and snippets.

@sergio-august
Forked from davidmccoy/google_script.gs
Last active August 5, 2018 16:22
Show Gist options
  • Save sergio-august/a0af9d5719dacbfd81177a49c1c144e4 to your computer and use it in GitHub Desktop.
Save sergio-august/a0af9d5719dacbfd81177a49c1c144e4 to your computer and use it in GitHub Desktop.
// original from: http://mashe.hawksey.info/2014/07/google-sheets-as-a-database-insert-with-apps-script-using-postget-methods-with-ajax-example/
// original gist: https://gist.github.com/willpatera/ee41ae374d3c9839c2d6
function doGet(e){
return handleResponse(e);
}
// Enter sheet name where data is to be written below
var SHEET_NAME = "Sheet1";
var SCRIPT_PROP = PropertiesService.getScriptProperties(); // new property service
function handleResponse(e) {
// shortly after my original solution Google announced the LockService[1]
// this prevents concurrent access overwritting data
// [1] http://googleappsdeveloper.blogspot.co.uk/2011/10/concurrency-and-google-apps-script.html
// we want a public lock, one that locks for all invocations
var lock = LockService.getPublicLock();
lock.waitLock(30000); // wait 30 seconds before conceding defeat.
try {
// next set where we write the data - you could write to multiple/alternate destinations
var doc = SpreadsheetApp.openById(SCRIPT_PROP.getProperty("key"));
var sheet = doc.getSheetByName(SHEET_NAME);
var headRow = 1;
// we'll assume header is in row 1 (no overrides, because of potential security hole)
var headers = sheet.getRange(1, 1, 1, sheet.getLastColumn()).getValues()[0];
var nextRow = sheet.getLastRow()+1; // get next row
var row = [];
// loop through the header columns
for (i in headers){
if (headers[i] == "Timestamp"){ // special case if you include a 'Timestamp' column
row.push(new Date());
} else { // else use header name to get data
var val = String(e.parameter[headers[i]]);
// check value for executable spreadshets instructions
if ( val.trim().slice(0,1) == '=' && val.trim().slice(-1) == ')' ) {
throw 'Incorrect value in field: ' + headers[i];
} else {
row.push(val);
}
}
}
// more efficient to set values as [][] array than individually
sheet.getRange(nextRow, 1, 1, row.length).setValues([row]);
// return json success results
return ContentService
.createTextOutput(JSON.stringify({"result":"success"}))
.setMimeType(ContentService.MimeType.JSON);
} catch(e){
// if error return this
return ContentService
.createTextOutput(JSON.stringify({"result":"error", "error": e}))
.setMimeType(ContentService.MimeType.JSON);
} finally { //release lock
lock.releaseLock();
}
}
function setup() {
var doc = SpreadsheetApp.getActiveSpreadsheet();
SCRIPT_PROP.setProperty("key", doc.getId());
}
@kyliank
Copy link

kyliank commented Aug 5, 2018

Get the following errorcode with the Ajax request:

"stack": "\tat Code (Naamloos project):25 (handleResponse)\n\tat Code ([project name]):2 (doGet)\n"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment