-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.py
executable file
·71 lines (51 loc) · 1.72 KB
/
app.py
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
#!/usr/bin/env python
from flask import Flask, jsonify, abort, make_response, request
from whoosh.index import open_dir
import os
import traceback
from api import getResult, getTranslations
app = Flask(__name__)
ix = open_dir("whooshdir")
def root_dir():
return os.path.abspath(os.path.dirname(__file__))
@app.route('/api/search', methods=['POST'])
def getSearchResult():
if not request.json or 'arabicText' not in request.json:
abort(400)
try:
value = request.json['arabicText']
if 'translation' in request.json:
translation = request.json['translation']
else:
translation = 'en-hilali'
result = getResult(value, translation, ix)
except Exception:
print traceback.format_exc()
abort(500)
return jsonify({'result': result})
@app.route('/api/translations', methods=['POST'])
def getAyahTranslations():
if not request.json or 'ayahs' not in request.json:
abort(400)
try:
ayahs = request.json['ayahs']
if 'translation' in request.json:
translation = request.json['translation']
else:
translation = 'en-hilali'
result = getTranslations(ayahs, translation)
except Exception:
print traceback.format_exc()
abort(500)
return jsonify({'result': result})
@app.errorhandler(400)
def bad_request(error):
return make_response(jsonify({'error': 'Bad request'}), 400)
@app.errorhandler(404)
def not_found(error):
return make_response(jsonify({'error': 'Not found'}), 404)
@app.errorhandler(500)
def server_error(error):
return make_response(jsonify({'error': 'Server error'}), 500)
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)