-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommand_verify.go
65 lines (50 loc) · 1.66 KB
/
command_verify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package checkpoint
import (
"fmt"
"strings"
"github.com/bwmarrin/discordgo"
"github.com/vidhanio/checkpoint/student"
)
func (c *Checkpoint) verify(s *discordgo.Session, i *discordgo.InteractionCreate) {
g, err := c.guilds.Guild(i.GuildID)
if err != nil {
errorRespond(s, i, err)
return
}
if g.VerifiedRole == "" {
warningRespond(s, i, "Checkpoint is not configured. Please ask someone with `Manage Roles` permissions to use `/config set verified_role`.")
return
}
firstName := strings.Title(i.ApplicationCommandData().Options[0].StringValue())
lastName := strings.Title(i.ApplicationCommandData().Options[1].StringValue())
grade := int(i.ApplicationCommandData().Options[2].IntValue())
teacherName := strings.Title(i.ApplicationCommandData().Options[3].StringValue())
StudentNumber := int(i.ApplicationCommandData().Options[4].IntValue())
student := student.Student{
Initials: [2]rune{rune(firstName[0]), rune(lastName[0])},
Grade: grade,
TeacherInitial: rune(teacherName[0]),
StudentNumber: StudentNumber,
}
v := c.students.Verify(student)
if !v {
warningRespond(s, i, "You have not been verified.")
return
}
err = c.session.GuildMemberRoleAdd(i.GuildID, i.Member.User.ID, g.VerifiedRole)
if err != nil {
errorRespond(s, i, err)
}
successRespond(s, i, "You have been verified!")
err = c.session.GuildMemberNickname(i.GuildID, i.Member.User.ID, fmt.Sprintf("%s %c.", firstName, lastName[0]))
if err != nil {
errorRespond(s, i, err)
}
if g.GradeRoles[grade-1] == "" {
return
}
err = c.session.GuildMemberRoleAdd(i.GuildID, i.Member.User.ID, g.GradeRoles[grade-1])
if err != nil {
errorRespond(s, i, err)
}
}