]> git.0d.be Git - pige-extractor.git/blob - download.cgi
43d9f0654b6fb773d6aedae609bb83b0b1f88989
[pige-extractor.git] / download.cgi
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 import time
5 import cgi
6 import os
7 import sys
8 import datetime
9 import syslog
10
11 syslog.openlog('pigebox')
12
13 d = cgi.parse()
14
15 if os.environ.get('PATH_INFO'):
16     # filename has to be of the following form: %Y%m%d-%Hh%M-%Hh%M.%ext
17     filename = os.path.basename(os.environ.get('PATH_INFO'))
18     date = filename[:8]
19     start = '%s:%s' % (filename[9:11], filename[12:14])
20     seconds = 0
21     if filename[14] == 'm': # support for seconds
22         seconds += 3
23         start += ':' + filename[15:17]
24     else:
25         start += ':00'
26     end = '%s:%s' % (filename[15+seconds:17+seconds], filename[18+seconds:20+seconds])
27     if seconds:
28         end += ':' + filename[24:26]
29     else:
30         end += ':00'
31     ext = filename[-3:]
32
33     start = datetime.datetime.strptime('%s %s' % (date, start),
34            '%Y%m%d %H:%M:%S')
35     end = datetime.datetime.strptime('%s %s' % (date, end),
36            '%Y%m%d %H:%M:%S')
37 elif d:
38     end = '%s:%s' % (d.get('end_hour')[0], d.get('end_min')[0])
39
40     start = datetime.datetime.strptime('%s %s:%s' % (
41            d.get('date')[0], d.get('start_hour')[0], d.get('start_min')[0]),
42            '%d/%m/%Y %H:%M')
43     end = datetime.datetime.strptime('%s %s:%s' % (
44            d.get('date')[0], d.get('end_hour')[0], d.get('end_min')[0]),
45            '%d/%m/%Y %H:%M')
46     if d.get('wav'):
47         ext = 'wav'
48     else:
49         ext = 'ogg'
50 else:
51     print 'Location: .'
52     print ''
53     print 'Hop'
54     sys.exit(0)
55
56 if end < start:
57     end = end + datetime.timedelta(1)
58
59 os.chdir('/home/alsa-record/')
60
61 def get_filenames():
62     path = start.strftime('%Y/%m-%b/%d-%a/')
63     filenames = [os.path.join(path, x) for x in os.listdir(path)]
64     if end.hour < start.hour:
65         path = end.strftime('%Y/%m-%b/%d-%a/')
66         if os.path.exists(path):
67             filenames.extend([os.path.join(path, x) for x in os.listdir(path)])
68     filenames.sort()
69
70     filenames = [x for x in filenames if
71                 x >= start.strftime('%Y/%m-%b/%d-%a/%Hh%M') and 
72                 x < end.strftime('%Y/%m-%b/%d-%a/%Hh%M')]
73     return filenames
74
75 while True:
76     filenames = get_filenames()
77     without_extension = [os.path.splitext(x)[0] for x in filenames]
78     for f in without_extension:
79         if without_extension.count(f) > 1:
80             # currently encoding, wait a moment and try again
81             print 'X-Currently-Encoding: please wait'
82             time.sleep(5)
83             break
84     else:
85         break
86
87 syslog.syslog(syslog.LOG_INFO, 'extraction (%s to %s)' % (
88                         start.strftime('%Y-%m-%d %Hh%M'),
89                         end.strftime('%Hh%M')))
90
91 if ext == 'wav':
92     print 'Content-Type: audio/x-wav'
93 else:
94     print 'Content-Type: audio/ogg'
95
96 print 'Content-Disposition: attachment; filename=%s.%s\n' % \
97                 (start.strftime('%Y-%m-%d-%Hh%M') + end.strftime('-%Hh%M'), ext)
98
99 sys.stdout.flush()
100
101 if ext == 'ogg':
102     command = ['sox'] + filenames + ['-t', 'ogg', '-C', '6', '-']
103 else:
104     command = ['sox'] + filenames + ['-t', 'wav', '-']
105 os.system(' '.join(command))
106