-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathajax.cgi
executable file
·73 lines (50 loc) · 1.09 KB
/
ajax.cgi
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
#!/usr/bin/python
import cgi
import glob
import random
import sys
import simplejson as json
sys.path.append('./lib')
import wordlist
def _pick(l):
return random.choice(l)
def sentence():
hackwords = []
item = _pick(wordlist.ITEM)
if isinstance(item, tuple):
plural = item[1]
item = item[0]
else:
plural = False
intro = _pick(wordlist.INTRO)
for wlist in wordlist.SOCIOPOLITICAL, wordlist.PHYSICAL:
hackwords.append(_pick(wlist))
hackwords.append(item)
resp = _pick(wordlist.RESPONSES)
if plural:
intro = "%s some" % intro
else:
if hackwords[0][0] in ('a', 'e', 'i', 'o', 'u'):
intro = "%s an" % intro
else:
intro = "%s a" % intro
return intro, hackwords, resp
def ajax():
(intro, hackwords, resp) = sentence()
phrase = intro + " " + " ".join(hackwords)
data = {
'intro': intro,
'hackvars': hackwords,
'response': resp,
'bg': getbg(),
'phrase': phrase,
}
print "Content-type: text/json\n"
print json.dumps(data)
def getbg():
choices = glob.glob('static/hackbg*')
return _pick(choices)
def main():
ajax()
if __name__ == '__main__':
main()