การจัดการผู้ปกครอง

แหล่งข้อมูลของผู้ปกครองแสดงถึงผู้ใช้ เช่น ผู้ปกครอง ที่ได้รับข้อมูลเกี่ยวกับหลักสูตรและงานของนักเรียน ผู้ดูแลซึ่งโดยทั่วไปไม่ใช่สมาชิกของโดเมน Classroom ของนักเรียน/นักศึกษา จะต้องได้รับเชิญโดยใช้อีเมลของตนจึงจะเป็นผู้ดูแลได้

คําเชิญนี้จะสร้างทรัพยากร GuardianInvitation ที่มีสถานะเป็น PENDING จากนั้นผู้ใช้จะได้รับอีเมลแจ้งให้ตอบรับคำเชิญ หากอีเมลไม่ได้เชื่อมโยงกับบัญชี Google ระบบจะแจ้งให้ผู้ใช้สร้างบัญชีก่อนตอบรับคำเชิญ

ขณะที่คำเชิญมีสถานะเป็น PENDING ผู้ใช้อาจยอมรับคำเชิญ ซึ่งจะสร้างทรัพยากรของผู้ปกครองและทําเครื่องหมาย GuardianInvitation เป็นสถานะ COMPLETED นอกจากนี้ คำเชิญยังอาจกลายเป็นCOMPLETEDได้หากคำเชิญนั้นหมดอายุ หรือหากผู้ใช้ที่ได้รับอนุญาตยกเลิกคำเชิญ (เช่น ใช้วิธีการ PatchGuardianInvitation) ผู้ปกครอง ครูใน Classroom หรือผู้ดูแลระบบอาจยกเลิกความสัมพันธ์ของผู้ปกครองได้โดยใช้อินเทอร์เฟซผู้ใช้ของ Classroom หรือวิธี DeleteGuardian

ผู้ที่มีสิทธิ์จัดการผู้ปกครอง

ตารางต่อไปนี้อธิบายการดำเนินการที่ทำได้กับผู้ปกครองตามประเภทของผู้ใช้ที่ตรวจสอบสิทธิ์ในปัจจุบัน

ตาราง ACL ที่เกี่ยวข้องกับผู้ปกครองตามประเภทผู้ใช้

ขอบเขต

สิทธิ์ระดับที่ให้คุณจัดการผู้ปกครองมี 3 ระดับดังนี้

การทำงานทั่วไป

ส่วนนี้จะอธิบายการดำเนินการทั่วไปบางอย่างของผู้ปกครองที่คุณอาจต้องการดำเนินการโดยใช้ Google Classroom API

สร้างคำเชิญให้ผู้ปกครอง

ตัวอย่างต่อไปนี้แสดงวิธีสร้างคำเชิญผู้ปกครองโดยใช้เมธอด userProfiles.guardianInvitations.create()

JavaPython
classroom/snippets/src/main/java/CreateGuardianInvitation.java
GuardianInvitation guardianInvitation = null;

/* Create a GuardianInvitation object with state set to PENDING. See
https://developers.google.com/classroom/reference/rest/v1/userProfiles.guardianInvitations#guardianinvitationstate
for other possible states of guardian invitations. */

GuardianInvitation content =
   
new GuardianInvitation()
       
.setStudentId(studentId)
       
.setInvitedEmailAddress(guardianEmail)
       
.setState("PENDING");
try {
  guardianInvitation
=
      service
.userProfiles().guardianInvitations().create(studentId, content).execute();

 
System.out.printf("Invitation created: %s\n", guardianInvitation.getInvitationId());
} catch (GoogleJsonResponseException e) {
 
// TODO (developer) - handle error appropriately
 
GoogleJsonError error = e.getDetails();
 
if (error.getCode() == 404) {
   
System.out.printf("There is no record of studentId: %s", studentId);
 
} else {
   
throw e;
 
}
} catch (Exception e) {
 
throw e;
}
return guardianInvitation;
guardianInvitation = {
 
'invitedEmailAddress': 'guardian@gmail.com',
}
guardianInvitation
= service.userProfiles().guardianInvitations().create(
                      studentId
='student@mydomain.edu',
                          body
=guardianInvitation).execute()
print("Invitation created with id: {0}".format(guardianInvitation.get('invitationId')))

ผลลัพธ์จะมีตัวระบุที่เซิร์ฟเวอร์กำหนดซึ่งสามารถใช้อ้างอิง GuardianInvitation ได้

ยกเลิกคำเชิญผู้ปกครอง

หากต้องการยกเลิกคำเชิญ ให้แก้ไขสถานะของคำเชิญจาก PENDING เป็น COMPLETE โดยการเรียกใช้เมธอด userProfiles.guardianInvitations.patch() โปรดทราบว่านี่เป็นวิธีเดียวในการนำคำเชิญออกในปัจจุบัน

JavaPython
classroom/snippets/src/main/java/CancelGuardianInvitation.java
GuardianInvitation guardianInvitation = null;

try {
 
/* Change the state of the GuardianInvitation from PENDING to COMPLETE. See
  https://developers.google.com/classroom/reference/rest/v1/userProfiles.guardianInvitations#guardianinvitationstate
  for other possible states of guardian invitations. */

 
GuardianInvitation content =
      service
.userProfiles().guardianInvitations().get(studentId, invitationId).execute();
  content
.setState("COMPLETE");

  guardianInvitation
=
      service
         
.userProfiles()
         
.guardianInvitations()
         
.patch(studentId, invitationId, content)
         
.set("updateMask", "state")
         
.execute();

 
System.out.printf(
     
"Invitation (%s) state set to %s\n.",
      guardianInvitation
.getInvitationId(), guardianInvitation.getState());
} catch (GoogleJsonResponseException e) {
 
// TODO (developer) - handle error appropriately
 
GoogleJsonError error = e.getDetails();
 
if (error.getCode() == 404) {
   
System.out.printf(
       
"There is no record of studentId (%s) or invitationId (%s).", studentId, invitationId);
 
} else {
   
throw e;
 
}
} catch (Exception e) {
 
throw e;
}
return guardianInvitation;
guardian_invite = {
     
'state': 'COMPLETE'
}
guardianInvitation
= service.userProfiles().guardianInvitations().patch(
  studentId
='student@mydomain.edu',
  invitationId
=1234, # Replace with the invitation ID of the invitation you want to cancel
  updateMask
='state',
  body
=guardianInvitation).execute()

แสดงรายการคำเชิญสำหรับนักเรียนที่เฉพาะเจาะจง

คุณดูรายการคำเชิญทั้งหมดที่ส่งสำหรับนักเรียนคนใดคนหนึ่งได้โดยใช้เมธอด userProfiles.guardianInvitations.list() ดังนี้

JavaPython
classroom/snippets/src/main/java/ListGuardianInvitationsByStudent.java
List<GuardianInvitation> guardianInvitations = new ArrayList<>();
String pageToken = null;

try {
 
do {
   
ListGuardianInvitationsResponse response =
        service
           
.userProfiles()
           
.guardianInvitations()
           
.list(studentId)
           
.setPageToken(pageToken)
           
.execute();

   
/* Ensure that the response is not null before retrieving data from it to avoid errors. */
   
if (response.getGuardianInvitations() != null) {
      guardianInvitations
.addAll(response.getGuardianInvitations());
      pageToken
= response.getNextPageToken();
   
}
 
} while (pageToken != null);

 
if (guardianInvitations.isEmpty()) {
   
System.out.println("No guardian invitations found.");
 
} else {
   
for (GuardianInvitation invitation : guardianInvitations) {
     
System.out.printf("Guardian invitation id: %s\n", invitation.getInvitationId());
   
}
 
}
} catch (GoogleJsonResponseException e) {
 
GoogleJsonError error = e.getDetails();
 
if (error.getCode() == 404) {
   
System.out.printf("There is no record of studentId (%s).", studentId);
 
} else {
   
throw e;
 
}
} catch (Exception e) {
 
throw e;
}
return guardianInvitations;
guardian_invites = []
page_token
= None

while True:
    response
= service.userProfiles().guardianInvitations().list(
                                      studentId
='student@mydomain.edu').execute()
    guardian_invites
.extend(response.get('guardian_invites', []))
    page_token
= response.get('nextPageToken', None)
   
if not page_token:
       
break

if not courses:
   
print('No guardians invited for this {0}.'.format(response.get('studentId')))
else:
   
print('Guardian Invite:')
   
for guardian in guardian_invites:
       
print('An invite was sent to '.format(guardian.get('id'),
                                              guardian
.get('guardianId')))

โดยค่าเริ่มต้น ระบบจะแสดงเฉพาะคำเชิญ PENDING รายการเท่านั้น ในฐานะผู้ดูแลระบบโดเมน คุณสามารถเรียกข้อมูลคำเชิญในสถานะ COMPLETED ได้โดยระบุพารามิเตอร์ states

แสดงรายการผู้ปกครองที่ใช้งานอยู่

หากต้องการระบุว่าผู้ใช้รายใดเป็นผู้ดูแลที่ใช้งานอยู่สำหรับนักเรียนคนใดคนหนึ่ง ให้ใช้เมธอด userProfiles.guardians.list() ผู้ปกครองที่ใช้งานอยู่คือผู้ปกครองที่ตอบรับคำเชิญทางอีเมล

JavaPython
classroom/snippets/src/main/java/ListGuardians.java
List<Guardian> guardians = new ArrayList<>();
String pageToken = null;

try {
 
do {
   
ListGuardiansResponse response =
        service
.userProfiles().guardians().list(studentId).setPageToken(pageToken).execute();

   
/* Ensure that the response is not null before retrieving data from it to avoid errors. */
   
if (response.getGuardians() != null) {
      guardians
.addAll(response.getGuardians());
      pageToken
= response.getNextPageToken();
   
}
 
} while (pageToken != null);

 
if (guardians.isEmpty()) {
   
System.out.println("No guardians found.");
 
} else {
   
for (Guardian guardian : guardians) {
     
System.out.printf(
         
"Guardian name: %s, guardian id: %s, guardian email: %s\n",
          guardian
.getGuardianProfile().getName().getFullName(),
          guardian
.getGuardianId(),
          guardian
.getInvitedEmailAddress());
   
}
 
}

} catch (GoogleJsonResponseException e) {
 
GoogleJsonError error = e.getDetails();
 
if (error.getCode() == 404) {
   
System.out.printf("There is no record of studentId (%s).", studentId);
 
} else {
   
throw e;
 
}
} catch (Exception e) {
 
throw e;
}
return guardians;
guardian_invites = []
page_token
= None

while True:
    response
= service.userProfiles().guardians().list(studentId='student@mydomain.edu').execute()
    guardian_invites
.extend(response.get('guardian_invites', []))
    page_token
= response.get('nextPageToken', None)
   
if not page_token:
       
break

if not courses:
   
print('No guardians invited for this {0}.'.format(response.get('studentId')))
else:
   
print('Guardian Invite:')
   
for guardian in guardian_invites:
       
print('An invite was sent to '.format(guardian.get('id'),
                                              guardian
.get('guardianId')))

นำผู้ปกครองออก

นอกจากนี้ คุณยังนำผู้ปกครองออกจากนักเรียนได้โดยใช้วิธี userProfiles.guardians.delete() ดังนี้

JavaPython
classroom/snippets/src/main/java/DeleteGuardian.java
try {
  service
.userProfiles().guardians().delete(studentId, guardianId).execute();
 
System.out.printf("The guardian with id %s was deleted.\n", guardianId);
} catch (GoogleJsonResponseException e) {
 
GoogleJsonError error = e.getDetails();
 
if (error.getCode() == 404) {
   
System.out.printf("There is no record of guardianId (%s).", guardianId);
 
}
}
service.userProfiles().guardians().delete(studentId='student@mydomain.edu',
                                        guardianId
='guardian@gmail.com').execute()