1
+ import sys
2
+ import json
3
+ from reqable import CaptureContext , CaptureHttpRequest , CaptureHttpResponse
4
+ import addons
5
+
6
+ def main ():
7
+ argv = sys .argv [1 :]
8
+ if len (argv ) != 2 :
9
+ raise Exception ('Invalid reqable script arguments' )
10
+ type = argv [0 ]
11
+ if type == 'request' :
12
+ onRequest (argv [1 ])
13
+ elif type == 'response' :
14
+ onResponse (argv [1 ])
15
+ else :
16
+ raise Exception ('Unexpected type ' + type )
17
+
18
+ def onRequest (request ):
19
+ with open (request , 'r' , encoding = 'UTF-8' ) as content :
20
+ data = json .load (content )
21
+ context = CaptureContext (data ['context' ])
22
+ result = addons .onRequest (context , CaptureHttpRequest (data ['request' ]))
23
+ if result is not None :
24
+ with open (request + '.cb' , 'w' , encoding = 'UTF-8' ) as callback :
25
+ callback .write (json .dumps ({
26
+ 'request' : result .serialize (),
27
+ 'shared' : context .shared ,
28
+ }))
29
+
30
+ def onResponse (response ):
31
+ with open (response , 'r' , encoding = 'UTF-8' ) as content :
32
+ data = json .load (content )
33
+ context = CaptureContext (data ['context' ])
34
+ result = addons .onResponse (context , CaptureHttpResponse (data ['response' ]))
35
+ if result is not None :
36
+ with open (response + '.cb' , 'w' , encoding = 'UTF-8' ) as callback :
37
+ callback .write (json .dumps ({
38
+ 'response' : result .serialize (),
39
+ 'shared' : context .shared ,
40
+ }))
41
+
42
+ if __name__ == '__main__' :
43
+ main ()
0 commit comments