-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassistant.py
executable file
·120 lines (83 loc) · 3.82 KB
/
assistant.py
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import environment
from tkinter import Tk, Frame, Label, Button, TRUE, LEFT, RIGHT, X, Y
from logger import log
import webbrowser
class AssistantWindow(Frame):
""" tkinter GUI to assist in attending meetings """
def __init__(self, meeting={}, attendeeName='Username'):
self.master = Tk()
# keep on top of other windows until dismissed
self.master.call('wm', 'attributes', '.', '-topmost', '1')
super().__init__(self.master)
self.meeting = meeting
self.attendeeName = attendeeName
self.pack()
self.setup()
self.copyAttendeeToClip()
self.show()
def show(self):
""" displays the assistant console """
self.mainloop()
def close(self):
""" closes the assistant window """
self.master.destroy()
def openBrowser(self):
""" opens the browser with meeting url and id """
webbrowser.open_new_tab('https://zoom.us/wc/join/' + str(self.meeting['id']))
self.join.configure(text="Join again ↻")
def copyAttendeeToClip(self):
""" copies attendee name to clipboard """
self.master.clipboard_clear()
self.master.clipboard_append(self.attendeeName)
self.copyAttendee.configure(text='Copied!')
self.copyPswd.configure(text='Copy')
def copyPswdToClip(self):
""" copies meeting password to clipboard """
self.master.clipboard_clear()
self.master.clipboard_append(self.meeting['pswd'])
self.copyAttendee.configure(text='Copy')
self.copyPswd.configure(text='Copied!')
def logPresence(self):
""" marks meeting attendance as present 'P' """
log(self.meeting['name'], 'P')
self.close()
def logAbsence(self):
""" marks meeting attendance as absent 'A' """
log(self.meeting['name'], 'A')
self.close()
def setup(self):
""" prepare the widget layout """
""" set window title """
self.master.title('Meetings Assistant')
""" top: meeting name & join button """
self.top = Frame(self)
self.top.pack(fill=X)
self.meetingTitleText = Label(self.top, text='Meeting : ' + self.meeting['name'])
self.meetingTitleText.pack(fill=X, pady=10)
self.join = Button(self.top, text="Join!", bg="yellow", command=self.openBrowser)
self.join.pack(pady=10)
""" attendee name """
self.mid1 = Frame(self)
self.mid1.pack(fill=X, padx = 25)
self.attendeeText = Label(self.mid1, text='Attendee : ' +self.attendeeName)
self.attendeeText.pack(side=LEFT)
self.copyAttendee = Button(self.mid1, text="Copy", command=self.copyAttendeeToClip)
self.copyAttendee.pack(side=RIGHT, padx=20)
""" password """
self.mid2 = Frame(self)
self.mid2.pack(fill=X, padx=25)
self.pswdText = Label(self.mid2, text='Password : [ ' + self.meeting['pswd'] + ' ]')
self.pswdText.pack(side=LEFT)
self.copyPswd = Button(self.mid2, text="Copy", command=self.copyPswdToClip)
self.copyPswd.pack(side=RIGHT, padx=20)
""" bottom: attendance log """
self.bottom = Frame(self)
self.bottom.pack(fill=X, pady=10, padx=5)
self.attendanceText = Label(self.bottom,text='Attendance Log')
self.attendanceText.pack(fill=X, pady=10)
self.attending = Button(self.bottom, text="Attending", bg="green", command=self.logPresence)
self.attending.pack(side=LEFT, expand=TRUE)
self.notAttending = Button(self.bottom, text="Not attending", bg="red", command=self.logAbsence)
self.notAttending.pack(side=LEFT, expand=TRUE)
self.noUpdate = Button(self.bottom, text="Don't log", command=self.close)
self.noUpdate.pack(side=LEFT, expand=TRUE)