2009-10-01 13:52:34 -06:00
|
|
|
#! /usr/bin/env python3
|
|
|
|
|
|
|
|
import cgi
|
2009-10-07 15:45:02 -06:00
|
|
|
import time
|
|
|
|
import os
|
2009-10-01 13:52:34 -06:00
|
|
|
|
|
|
|
f = cgi.FieldStorage()
|
|
|
|
if f.getfirst('submit'):
|
|
|
|
print('Content-type: text/plain')
|
|
|
|
print()
|
|
|
|
print('Thanks for filling in the survey.')
|
|
|
|
print()
|
2009-10-07 15:45:02 -06:00
|
|
|
try:
|
|
|
|
fn = '/var/lib/ctf/survey/%s.%d.%d.txt' % (time.strftime('%Y-%m-%d'), time.time(), os.getpid())
|
|
|
|
o = open(fn, 'w')
|
|
|
|
for k in f.keys():
|
|
|
|
o.write('%s: %r\n' % (k, f.getlist(k)))
|
|
|
|
except IOError:
|
|
|
|
pass
|
2009-10-01 13:52:34 -06:00
|
|
|
print('The key is:')
|
|
|
|
print(' quux blorb frotz')
|
|
|
|
else:
|
|
|
|
print('Content-type: text/plain')
|
|
|
|
print()
|
|
|
|
print('You need to actually fill in the form to get the key.')
|