forked from BigchillRK/Zoom-Meeting-and-Recording
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscheduling.py
117 lines (91 loc) · 4.38 KB
/
scheduling.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
"""Used to automatically schedule meetings through CRON or Windows equivalent"""
import getpass
from dateutil import parser
from crontab import CronTab
PREFIX = 'AUTOZOOM'
def get_full_path():
"""Gets the full path of the executed file"""
return __file__.replace('scheduling', 'autozoom')
def day_time_to_cron(days, time):
"""Converts time to cron, i.e. "mwf 10:00pm" to cron equivalent"""
days = days.lower()
for c in days:
if not c in 'umtwrfs':
raise Exception('Invalid date string. Must only contain umtwrfs.')
day_key = list('umtwrfs')
date = parser.parse(time)
cron_days = ','.join([str(day_key.index(d)) for d in days])
minute = date.minute
hour = date.hour
return '{} {} * * {}'.format(minute, hour, cron_days)
def args_to_cmd(path, id, password, audio, video, record, name, keytimeout, starttimeout, jointimeout, passtimeout, anonymous):
"""Creates a command given the arguments"""
return '{} "python3 {} join {} {} "'.format(path.replace('autozoom.py', 'cronLauncher.sh'), path, id, ' '.join([('--name '.format(name) if name else ''), ('--password {}'.format(password) if password else ''), ('--audio' if audio else ''), ('--Video' if video else ''), ('--record' if record else ''), ('--keytimeout {}'.format(keytimeout) if keytimeout else ''), ('--starttimeout {}'.format(starttimeout) if starttimeout else ''), ('--jointimeout {}'.format(jointimeout) if jointimeout else ''), ('--passtimeout {}'.format(passtimeout) if passtimeout else ''), ('--cronlauncher True'), ('--anonymous' if anonymous else '')]))
def create_cron_line(name, cron, cmd):
"""Create the raw cron lines for the crontab file"""
global PREFIX
return '{} {} #[{}]{}'.format(cron, cmd, PREFIX, name)
def get_name(line):
"""Get the name of a given line in crontab"""
global PREFIX
head = '[{}]'.format(PREFIX)
if head in line:
split = line.split(head)
return split[1]
return ''
def add_or_replace_cron(head, crontime, command):
"""Add a new line to crontab or replace existing one with same name"""
cron = CronTab(user=getpass.getuser())
added = False
for job in cron:
#Replace the job here
if head in job.comment:
print('Updating existing schedule'.format(head))
job.setall(crontime)
job.command = command
added = True
#Add to the end
if not added:
job = cron.new(command=command, comment=head)
job.setall(crontime)
cron.write()
def create_head(name):
"""Create the header to append to each crontab line"""
global PREFIX
return '[{}]{}'.format(PREFIX, name)
def cron_unschedule(schedulename):
"""Unschedule a meeting given its schedule name"""
if schedulename.lower() == 'all':
head = create_head('')
else:
head = create_head(schedulename)
cron = CronTab(user=getpass.getuser())
removed = False
for job in cron:
if head in job.comment:
cron.remove(job)
removed = True
if not removed:
print('Schedule not found. Unable to remove'.format(head))
cron.write()
def cron_schedule(schedulename, crontime, id, password, audio, video, record, name, keytimeout, starttimeout, jointimeout, passtimeout, anonymous):
"""Schedules Zoom calls at certain times according to crontime"""
global PREFIX
head = create_head(schedulename)
path = get_full_path()
cmd = args_to_cmd(path, id, password, audio, video, record, name, keytimeout, starttimeout, jointimeout, passtimeout, anonymous)
add_or_replace_cron(head, crontime, cmd)
def day_time_schedule(schedulename, days, time, id, password, audio, video, record, name, keytimeout, starttimeout, jointimeout, passtimeout, anonymous):
"""Converts daytime to crontime and schedules"""
cron_schedule(schedulename, day_time_to_cron(days, time), id, password, audio, video, record, name, keytimeout, starttimeout, jointimeout, passtimeout, anonymous)
def list_schedule():
"""List the schedule as is in crontab"""
cron = CronTab(user=getpass.getuser())
has_job = False
for job in cron:
if '[{}]'.format(PREFIX) in job.comment:
has_job = True
name = job.comment.split('[{}]'.format(PREFIX))[1]
print('{} scheduled {}'.format(name, job.description(use_24hour_time_format=False)))
if not has_job:
print('No meetings scheduled')