Last active
January 6, 2023 03:03
-
-
Save daichan4649/19df1e0a1bcb01f350a809f7c4964d96 to your computer and use it in GitHub Desktop.
[GAS] register to Google Calendar from SpreadSheet #spreadsheet #calendar #google
This file contains 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
const URL_BOOK = 'Spread Sheet URL (public)'; | |
const SHEETNAME = 'Sheet Name'; | |
const CALENDAR_ID = '[email protected]'; | |
function main() { | |
register2Calendar(); | |
} | |
function register2Calendar() { | |
// create JSON (from SpreadSheet) | |
const sheet = getSheet(URL_BOOK, SHEETNAME); | |
const json = convertSheet2Json(sheet); | |
// register to calendar | |
const calendar = CalendarApp.getCalendarById(CALENDAR_ID); | |
for (let i = 0; i < json.length; i++) { | |
const event = json[i]; | |
const title = event.title; | |
const date = event.date; | |
const options = { description: event.description }; | |
Utilities.sleep(500); | |
calendar.createAllDayEvent(title, date, options); | |
} | |
} | |
function getSheet(bookUrl, sheetName) { | |
const book = SpreadsheetApp.openByUrl(bookUrl); | |
return book.getSheetByName(sheetName); | |
} | |
function convertSheet2Json(sheet) { | |
// first line (title) | |
const firstRange = sheet.getRange(1, 1, 1, sheet.getLastColumn()); | |
const firstRowValues = firstRange.getValues(); | |
const titleColumns = firstRowValues[0]; | |
// after the second line (data) | |
const lastRow = sheet.getLastRow(); | |
let rowValues = []; | |
for (let rowIndex = 2; rowIndex <= lastRow; rowIndex++) { | |
const colStartIndex = 1; | |
const rowNum = 1; | |
const range = sheet.getRange(rowIndex, colStartIndex, rowNum, sheet.getLastColumn()); | |
const values = range.getValues(); | |
rowValues.push(values[0]); | |
} | |
// create json | |
let jsonArray = []; | |
for (let i = 0; i < rowValues.length; i++) { | |
let line = rowValues[i]; | |
let json = {}; | |
for (let j = 0; j < titleColumns.length; j++) { | |
json[titleColumns[j]] = line[j]; | |
} | |
jsonArray.push(json); | |
} | |
return jsonArray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment