Last active
August 29, 2015 14:22
-
-
Save danthareja/13ce79761eeff16752c3 to your computer and use it in GitHub Desktop.
App Script to download formulas and notes from a Google Sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// requires ?id=<GOOGLE_SHEET_ID> | |
// you must have authorized access to the spreadsheet | |
function doGet(request) { | |
if (!request.parameter.id) { | |
return ContentService.createTextOutput(JSON.stringify(new Error('no Google Sheet id set'))) | |
.setMimeType(ContentService.MimeType.JSON); | |
} | |
var cache = getNotesAndFormulas(request.parameter.id); | |
// Return cache as JSON | |
return ContentService.createTextOutput(JSON.stringify(cache)) | |
.setMimeType(ContentService.MimeType.JSON); | |
} | |
// requires ?data=<CACHED_OBJECT> where CACHED_OBJECT is the stringified result of a previous doGet() | |
function doPost(request) { | |
if (!request.parameter.data) { | |
return ContentService.createTextOutput(JSON.stringify(new Error('no data sent'))) | |
.setMimeType(ContentService.MimeType.JSON); | |
} | |
var result = setNotesAndFormulas(JSON.parse(request.parameter.data)); | |
return ContentService.createTextOutput(JSON.stringify(result)) | |
.setMimeType(ContentService.MimeType.JSON); | |
} | |
function getNotesAndFormulas(spreadsheetId) { | |
return SpreadsheetApp | |
.openById(spreadsheetId) | |
.getSheets() | |
.reduce(function(cache, sheet) { | |
var sheetData = cache[sheet.getName()] = {}; | |
var range = sheet.getDataRange(); | |
sheetData.range = range.getA1Notation(); | |
sheetData.notes = range.getNotes(); | |
sheetData.formulas = range.getFormulas(); | |
return cache; | |
}, { spreadsheetId: spreadsheetId }); | |
} | |
function setNotesAndFormulas(cache) { | |
SpreadsheetApp | |
.openById(cache.spreadsheetId) | |
.getSheets() | |
.forEach(function(sheet) { | |
var range = cache[sheet.getName()].getDataRange(); | |
range.setNotes(cache.notes); | |
range.setFormulas(cache.formulas); | |
}); | |
return { message:'Cache successfully loaded!' }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so badass