Skip to content

Commit 7bf2f87

Browse files
committed
first commit
0 parents  commit 7bf2f87

38 files changed

+2414
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_STORE
2+
/build
3+
/dist
4+
/reqable_scripting.egg-info
5+
__pycache__
6+
*.cb

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Reqable Scripting Framework
2+
3+
This is the Python scripting framework for Reqable.
4+
5+
# Installation
6+
```
7+
pip3 install reqable-scripting
8+
```
9+
10+
# Documentation
11+
12+
https://reqable.com/docs/capture/addons

reqable/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import main
2+
3+
if __name__== '__main__':
4+
main.main()

reqable/addons.py

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# API Docs: https://reqable.com/docs/capture/addons
2+
3+
from reqable import *
4+
5+
def onRequest(context, request):
6+
# Print url to console
7+
# print('request url ' + context.url)
8+
9+
# Update or add a query parameter
10+
# request.queries['foo'] = 'bar'
11+
12+
# Update or add a http header
13+
# request.headers['foo'] = 'bar'
14+
15+
# Replace http body with a text
16+
# request.body = 'Hello World'
17+
18+
# Map with a local file
19+
# request.body.file('~/Desktop/body.json')
20+
21+
# Convert to dict if the body is a JSON
22+
# request.body.jsonify()
23+
# Update the JSON content
24+
# request.body['foo'] = 'bar'
25+
26+
# Done
27+
return request
28+
29+
def onResponse(context, response):
30+
# Update status code
31+
# response.code = 404
32+
33+
# APIs are same as `onRequest`
34+
35+
# Done
36+
return response

reqable/addons_mini.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# API Docs: https://reqable.com/docs/capture/addons
2+
3+
from reqable import *
4+
5+
def onRequest(context, request):
6+
return request
7+
8+
def onResponse(context, response):
9+
return response

reqable/main.py

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

Comments
 (0)