-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
201 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module github.com/Harvard-University-iCommons/zerol-enrollment-cleaner | ||
|
||
go 1.17 | ||
|
||
require github.com/go-resty/resty/v2 v2.6.0 | ||
|
||
require golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
github.com/go-resty/resty/v2 v2.6.0 h1:joIR5PNLM2EFqqESUjCMGXrWmXNHEU9CEiK813oKYS4= | ||
github.com/go-resty/resty/v2 v2.6.0/go.mod h1:PwvJS6hvaPkjtjNg9ph+VrSD92bi5Zq73w/BIH7cC3Q= | ||
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0= | ||
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= | ||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | ||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
package main | ||
|
||
import ( | ||
"bufio" | ||
"encoding/json" | ||
"flag" | ||
"fmt" | ||
"log" | ||
"os" | ||
"strconv" | ||
|
||
"github.com/go-resty/resty/v2" | ||
) | ||
|
||
func main() { | ||
tokenPtr := flag.String("token", "", "The API token to use") | ||
hostPtr := flag.String("host", "exed.canvas.harvard.edu", "The Canvas host to connect to") | ||
filePtr := flag.String("file", "", "File to read - must contain a list of email addresses, one per line") | ||
accountIdPtr := flag.Int("account_id", 139, "The Canvas account ID to use") | ||
courseIdPtr := flag.Int("course_id", 0, "The Canvas course ID to use") | ||
flag.Parse() | ||
|
||
// make sure we have a token | ||
if *tokenPtr == "" { | ||
log.Fatal("Must provide a Canvas API token") | ||
} | ||
client := resty.New() | ||
client.SetAuthToken(*tokenPtr) | ||
client.SetHostURL("https://" + *hostPtr) | ||
|
||
log.Println("*****************************") | ||
log.Println("* Zero-L Enrollment Cleaner *") | ||
log.Println("*****************************") | ||
// Get the Canvas account | ||
account, err := getAccount(*accountIdPtr, client) | ||
log.Printf("Using account: %s\n", account.Name) | ||
|
||
// Get the Canvas course | ||
course, err := getCourse(*courseIdPtr, client) | ||
log.Printf("Using course: %s\n", course.Name) | ||
|
||
file, err := os.Open(*filePtr) | ||
|
||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
// Find a user for each email address in the file | ||
scanner := bufio.NewScanner(file) | ||
for scanner.Scan() { | ||
email := scanner.Text() | ||
user, err := findUser(email, client) | ||
if err != nil { | ||
log.Printf("Email not found: %s\n", email) | ||
continue | ||
} | ||
log.Printf("Email Found: %s Name: %s ID: %d \n", email, user.Name, user.ID) | ||
|
||
// Delete user's enrollments in the course | ||
err = deleteEnrollments(course.ID, user.ID, client) | ||
if err != nil { | ||
log.Printf("Error deleting enrollments: %s\n", err) | ||
continue | ||
} | ||
} | ||
} | ||
|
||
func findUser(email string, client *resty.Client) (*User, error) { | ||
url := "/api/v1/accounts/1/users?include[]=email&search_term=" + email | ||
resp, err := client.R().Get(url) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if resp.StatusCode() != 200 { | ||
return nil, fmt.Errorf("%s: %s", email, resp.String()) | ||
} | ||
var users []User | ||
err = json.Unmarshal(resp.Body(), &users) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if len(users) == 0 { | ||
return nil, fmt.Errorf("%s: not found", email) | ||
} | ||
|
||
for _, user := range users { | ||
if user.Email == email { | ||
return &user, nil | ||
} | ||
} | ||
|
||
return nil, fmt.Errorf("%s: not found", email) | ||
|
||
} | ||
|
||
// User represents a Canvas user | ||
type User struct { | ||
ID int `json:"id"` | ||
Name string `json:"name"` | ||
Email string `json:"email"` | ||
} | ||
|
||
// Get a Canvas account | ||
func getAccount(id int, client *resty.Client) (*Account, error) { | ||
resp, err := client.R().Get("/api/v1/accounts/" + strconv.Itoa(id)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if resp.StatusCode() != 200 { | ||
return nil, fmt.Errorf("%d: %s", id, resp.String()) | ||
} | ||
var account Account | ||
err = json.Unmarshal(resp.Body(), &account) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &account, nil | ||
} | ||
|
||
type Account struct { | ||
ID int `json:"id"` | ||
Name string `json:"name"` | ||
} | ||
|
||
// Get a Canvas course | ||
func getCourse(id int, client *resty.Client) (*Course, error) { | ||
resp, err := client.R().Get("/api/v1/courses/" + strconv.Itoa(id)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if resp.StatusCode() != 200 { | ||
return nil, fmt.Errorf("%d: %s", id, resp.String()) | ||
} | ||
var course Course | ||
err = json.Unmarshal(resp.Body(), &course) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &course, nil | ||
} | ||
|
||
type Course struct { | ||
ID int `json:"id"` | ||
Name string `json:"name"` | ||
} | ||
|
||
// Delete a user's enrollments in a course | ||
func deleteEnrollments(courseId int, userId int, client *resty.Client) error { | ||
url := "/api/v1/courses/" + strconv.Itoa(courseId) + "/enrollments?user_id=" + strconv.Itoa(userId) | ||
resp, err := client.R().Get(url) | ||
if err != nil { | ||
return err | ||
} | ||
if resp.StatusCode() != 200 { | ||
return fmt.Errorf("%d: %s", userId, resp.String()) | ||
} | ||
var enrollments []Enrollment | ||
err = json.Unmarshal(resp.Body(), &enrollments) | ||
if err != nil { | ||
return err | ||
} | ||
if len(enrollments) == 0 { | ||
log.Printf("No enrollments found for user %d in course %d\n", userId, courseId) | ||
return nil | ||
} | ||
|
||
for _, enrollment := range enrollments { | ||
log.Printf("Deleting enrollment %d for user %d in course %d\n", enrollment.ID, userId, courseId) | ||
delete_url := "/api/v1/courses/" + strconv.Itoa(courseId) + "/enrollments/" + strconv.Itoa(enrollment.ID) | ||
resp, err := client.R().Delete(delete_url) | ||
if err != nil { | ||
return err | ||
} | ||
if resp.StatusCode() != 200 { | ||
return fmt.Errorf("course=%d enrollment=%d: %s", courseId, enrollment.ID, resp.String()) | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
type Enrollment struct { | ||
ID int `json:"id"` | ||
Type string `json:"type"` | ||
Role string `json:"role"` | ||
} |