Skip to content

Instantly share code, notes, and snippets.

@rheajt
Last active December 5, 2017 14:41
Show Gist options
  • Save rheajt/4a78eb383eb4392c17fce1652089830f to your computer and use it in GitHub Desktop.
Save rheajt/4a78eb383eb4392c17fce1652089830f to your computer and use it in GitHub Desktop.
google apps script for education
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