-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
115 lines (87 loc) · 3.15 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
from flask import Flask, json, jsonify, request
import Model.PinModel as pm
import Helper.InputHandler as inp
from utilities import getusingself
app = Flask(__name__)
APIs = {}
APIs['query'] = "http://127.0.0.1:5000/get_using_postgres?radius=3&location=28.6333,77.25&pin_only=0"
APIs["exists"] = "http://127.0.0.1:5000/post_location?pin=110002&place_name=abc&city_name=def&latitude=28.6333&longitude=77.25"
APIs['close'] = "http://127.0.0.1:5000/post_location?pin=100003&place_name=abc&city_name=def&latitude=28.6434&longitude=77.25"
APIs['new'] = "http://127.0.0.1:5000/post_location?pin=100003&place_name=abc&city_name=def&latitude=28.8434&longitude=77.25"
APIs['find_place'] = "http://127.0.0.1:5000/find_place?latitude=28.65&longitude=77.2167"
APIs['get_using_self'] = "http://127.0.0.1:5000/get_using_self?radius=10&latitude=28.6333&longitude=77.25"
#get_using_postgres API (GET)
@app.route('/', methods =['GET'])
def index():
return jsonify(APIs)
@app.route('/get_using_postgres', methods=['GET'])
def get_using_postgres():
error= {"error":"invalid params", "msg":""}
try:
params = request.args;
err_msg, inputs = inp.getQueryInput(params)
except Exception, e:
print e
error['msg'] = "please provide valid params"
return jsonify(error)
if err_msg:
error['msg'] = err_msg
return jsonify(error)
nearby_pins = pm.getNearbyPins(inputs['lat'],inputs['long'], inputs['radius'], inputs['pin_only'])
return jsonify(nearby_pins)
#post_location API (POST)
@app.route('/post_location', methods=['GET', 'POST'])
def post_location():
error= {"error":"invalid params", "msg":""}
#if request.headers['Content-Type'] == 'application/json':
# error['data'] = request.data
try:
params = request.args;
err_msg, inputs = inp.getPostInput(params)
except Exception, e:
print e
error['msg'] = "please provide valid params"
return jsonify(error)
if err_msg:
error['msg'] = err_msg
return jsonify(error)
success_json = pm.InsertData(inputs)
return jsonify(success_json)
#find_place (GET)
@app.route('/find_place', methods =['GET'] )
def find_place():
error= {"error":"invalid params", "msg":""}
try:
params = request.args;
err_msg, inputs = inp.getFindPlaceInput(params)
except Exception, e:
print e
error['msg'] = "please provide valid params"
return jsonify(error)
if err_msg:
error['msg'] = err_msg
return jsonify(error)
place = pm.getplace(inputs)
return (jsonify(place))
#get_using_self API
@app.route('/get_using_self', methods=['GET'])
def get_using_self():
error= {"error":"invalid params", "msg":""}
try:
params = request.args;
err_msg, inputs = inp.getUsingSelfInput(params)
except Exception, e:
print e
error['msg'] = "please provide valid params"
return jsonify(error)
if err_msg:
error['msg'] = err_msg
return jsonify(error)
result = getusingself(inputs)
return (jsonify(result))
if __name__=='__main__':
app.run(debug = True)
'''
The url_for() function is very useful for dynamically building a URL for a specific function
https://gist.github.com/norman/1535879#file-earthdistance-rb-L50
'''