Last active
December 5, 2017 14:41
-
-
Save rheajt/4a78eb383eb4392c17fce1652089830f to your computer and use it in GitHub Desktop.
google apps script for education
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
function Course(name, students) { | |
this.name = name; | |
this.students = students; | |
} | |
function getRosters() { | |
var courses = Classroom.Courses.list().courses; | |
var sheetData = []; | |
for(var i = 0; i < courses.length; i++) { | |
var courseName = courses[i].name; | |
var students = Classroom.Courses.Students.list(courses[i].id).students || []; | |
if(students.length) { | |
students = students.map(function(student) { | |
return [student.profile.name.fullName, student.profile.emailAddress]; | |
}); | |
} | |
sheetData.push(new Course(courseName, students)); | |
} | |
for(var j = 0; j < sheetData.length; j++) { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.insertSheet(sheetData[j].name); | |
if(sheetData[j].students) { | |
var range = sheet.getRange(2, 1, sheetData[j].students.length, 2); | |
range.setValues(sheetData[j].students); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment