300e5f4 by Arvind at 2014-01-09 |
1 |
import argparse |
|
2 |
import datetime |
|
3 |
import query |
cad2a99 by Arvind at 2014-01-14 |
4 |
import gmail |
|
5 |
import mailConfig |
d48d677 by Arvind at 2014-01-15 |
6 |
from string import Template |
200085d by Arvind at 2014-01-09 |
7 |
parser = argparse.ArgumentParser(description="""Generate report for the date specified. |
|
8 |
Start and end date default to present day. |
|
9 |
Start time defaults to 00:00:00. |
|
10 |
End time defaults to 23:59:59.""") |
300e5f4 by Arvind at 2014-01-09 |
11 |
parser.add_argument('-s','--start-date', type=str, default=datetime.datetime.strftime(datetime.date.today(), '%Y-%m-%d'), help="Start date (YYYY-MM-DD)") |
|
12 |
parser.add_argument('-e','--end-date', type=str, default=datetime.datetime.strftime(datetime.date.today(), '%Y-%m-%d'), help="End date (YYYY-MM-DD)") |
|
13 |
parser.add_argument('-S','--start-time', type=str, default = '00:00:00', help="Start time (HH:MM:SS)") |
200085d by Arvind at 2014-01-09 |
14 |
parser.add_argument('-E','--end-time', type=str, default='23:59:59', help="End time (HH:MM:SS)") |
cad2a99 by Arvind at 2014-01-14 |
15 |
parser.add_argument('-p','--print', type=bool, default=True, help="Print report on command line") |
|
16 |
parser.add_argument('-m','--mail', type=bool, default=False, help="Mail report to addressess in mailConfig.py") |
9d54d1e by Arvind at 2014-01-09 |
17 |
|
|
18 |
|
300e5f4 by Arvind at 2014-01-09 |
19 |
args = parser.parse_args() |
|
20 |
startDate = args.start_date + " " + args.start_time |
|
21 |
endDate = args.end_date + " " + args.end_time |
|
22 |
|
|
23 |
postings = query.Query('lb_postings') |
|
24 |
callDetails = query.Query('cdr') |
|
25 |
average_call_length = callDetails.average(startDate, endDate) |
|
26 |
audio_minutes = callDetails.sum(startDate, endDate) |
|
27 |
channel1_minutes = callDetails.load('SIP/10.0.0.20', startDate, endDate) |
|
28 |
channel2_minutes = callDetails.load('SIP/10.0.0.21', startDate, endDate) |
|
29 |
channel3_minutes = callDetails.load('SIP/10.0.0.22', startDate, endDate) |
2e37597 by Arvind at 2014-01-14 |
30 |
mobilink_load = callDetails.call_distribution(startDate, endDate, 'mobilink') |
|
31 |
mobilink_tata_load = callDetails.call_distribution(startDate, endDate, 'mobilinktata') |
300e5f4 by Arvind at 2014-01-09 |
32 |
|
cad2a99 by Arvind at 2014-01-14 |
33 |
|
d48d677 by Arvind at 2014-01-15 |
34 |
def genReport(): |
|
35 |
|
|
36 |
posts = '{0}: {1}'.format("Number of postings published", postings.posts(startDate, endDate)) |
|
37 |
|
|
38 |
recordings = '{0}: {1}'.format("Number of recordings made", postings.recordings(startDate, endDate)) |
|
39 |
|
|
40 |
impact_stories = '{0}: {1}'.format("Number of impact stories", postings.filter_by_title('impact', startDate, endDate)) |
|
41 |
|
|
42 |
missed_calls = '{0}: {1}'.format("Number of missed calls", callDetails.missedCalls(startDate, endDate)) |
|
43 |
|
|
44 |
missed_calls_mobilink = '{0}: {1}'.format("Number of missed calls on 'mobilink'", callDetails.missedCalls(startDate, endDate, 'mobilink')) |
|
45 |
|
|
46 |
missed_calls_mobilink_tata = '{0}: {1}'.format("Number of missed calls on 'mobilinktata'", callDetails.missedCalls(startDate, endDate,'mobilinktata')) |
|
47 |
|
|
48 |
answered_calls = '{0}: {1}'.format("Number of calls answered", callDetails.answeredCalls(startDate, endDate)) |
|
49 |
|
|
50 |
filtered_calls = '{0}: {1}'.format("Number of calls lasting less than 30 seconds", callDetails.filter_calls_by_duration(startDate, endDate, 30)) |
|
51 |
|
|
52 |
average_Call_Length = '{0}: {1:.4f}'.format("Average length of calls", average_call_length) |
|
53 |
|
|
54 |
audio_Minutes = '{0}: {1:.4f}'.format("Total number of audio minutes played", audio_minutes) |
|
55 |
|
|
56 |
ch1_minutes = '{0}: {1:.4f}'.format("Audio minutes on channel 10.0.0.20", channel1_minutes) |
cad2a99 by Arvind at 2014-01-14 |
57 |
|
d48d677 by Arvind at 2014-01-15 |
58 |
ch2_minutes = '{0}: {1:.4f}'.format("Audio minutes on channel 10.0.0.21", channel2_minutes) |
|
59 |
|
|
60 |
ch3_minutes = '{0}: {1:.4f}'.format("Audio minutes on channel 10.0.0.22", channel3_minutes) |
|
61 |
|
|
62 |
ch1_load = '{0}: {1:.4f}'.format("Load on channel 10.0.0.20", channel1_minutes/audio_minutes) |
|
63 |
|
|
64 |
ch2_load = '{0}: {1:.4f}'.format("Load on channel 10.0.0.21", channel2_minutes/audio_minutes) |
|
65 |
|
|
66 |
ch3_load = '{0}: {1:.4f}'.format("Load on channel 10.0.0.22", channel3_minutes/audio_minutes) |
|
67 |
|
|
68 |
mobilink_max_load = '{0}: {1}'.format("Busiest hour for mobilink",mobilink_load["maxLoad"]) |
|
69 |
|
|
70 |
mobilink_max_calls = '{0}: {1}'.format("Number of calls in busiest hour for mobilink",mobilink_load["maxCalls"]) |
|
71 |
|
|
72 |
mobilink_min_load = '{0}: {1}'.format("Least active hour for mobilink",mobilink_load["minLoad"]) |
|
73 |
|
|
74 |
mobilink_tata_max_load = '{0}: {1}'.format("Busiest hour for mobilinktata",mobilink_tata_load["maxLoad"]) |
|
75 |
|
|
76 |
mobilink_tata_max_calls = '{0}: {1}'.format("Number of calls in busiest hour for mobilinktata",mobilink_tata_load["maxCalls"]) |
|
77 |
|
|
78 |
mobilink_tata_min_load = '{0}: {1}'.format("Least active hour for mobilinktata",mobilink_tata_load["minLoad"]) |
|
79 |
|
efa17c7 by Arvind at 2014-01-25 |
80 |
unanswered_calls = '{0}: {1}'.format("Number of calls unanswered", callDetails.calls_unanswered(startDate, endDate)) |
|
81 |
|
54dd346 by Arvind at 2014-01-25 |
82 |
max_duration_UC = '{0}: {1}'.format("Maximum duration of unanswered call(in seconds)", callDetails.max_duration_UC(startDate, endDate)) |
|
83 |
|
|
84 |
t =Template('$posts\n$recordings\n$impact_stories\n$missed_calls\n$missed_calls_mobilink\n$missed_calls_mobilink_tata\n$answered_calls\n$unanswered_calls\n$max_duration_uc\n$filtered_calls\n$average_call_length\n$audio_minutes\n$ch1_minutes\n$ch2_minutes\n$ch3_minutes\n$ch1_load\n$ch2_load\n$ch3_load\n$mobilink_max_load\n$mobilink_max_calls\n$mobilink_min_load\n$mobilink_tata_max_load\n$mobilink_tata_max_calls\n$mobilink_tata_min_load') |
|
85 |
report = t.substitute(posts=posts,recordings=recordings,impact_stories=impact_stories,missed_calls=missed_calls,missed_calls_mobilink=missed_calls_mobilink,missed_calls_mobilink_tata=missed_calls_mobilink_tata,answered_calls=answered_calls,unanswered_calls=unanswered_calls,max_duration_uc=max_duration_UC,filtered_calls=filtered_calls,average_call_length=average_Call_Length,audio_minutes=audio_Minutes,ch1_minutes=ch1_minutes,ch2_minutes=ch2_minutes,ch3_minutes=ch3_minutes,ch1_load=ch1_load,ch2_load=ch2_load,ch3_load=ch3_load,mobilink_max_load=mobilink_max_load,mobilink_max_calls=mobilink_max_calls,mobilink_min_load=mobilink_min_load,mobilink_tata_max_load=mobilink_tata_max_load,mobilink_tata_max_calls=mobilink_tata_max_calls,mobilink_tata_min_load=mobilink_tata_min_load) |
d48d677 by Arvind at 2014-01-15 |
86 |
return report |
|
87 |
|
|
88 |
if args.mail is False: |
|
89 |
report = genReport() |
|
90 |
print report |
|
91 |
else: |
|
92 |
report = genReport() |
3410657 by Arvind at 2014-01-15 |
93 |
subject = mailConfig.subject.format(startDate, endDate) |
1e18075 by Arvind at 2014-01-14 |
94 |
report = mailConfig.text.format(startDate, endDate) + '\n' + report |
cad2a99 by Arvind at 2014-01-14 |
95 |
mail = gmail.GMail(mailConfig.username, mailConfig.password) |
4c66686 by Arvind at 2014-01-20 |
96 |
message = gmail.Message(subject, mailConfig.to, mailConfig.cc, text=report) |
d48d677 by Arvind at 2014-01-15 |
97 |
mail.send(message) |