Skip to content

Commit 3c7fcf3

Browse files
author
Georgi Tenev
committed
define the structure, example code for getting the Police.getCategories
use domain:port/api/ POST request
1 parent f2d7ba1 commit 3c7fcf3

File tree

11 files changed

+259
-3
lines changed

11 files changed

+259
-3
lines changed

application/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import all blueprint modules
1717
"""
1818
from views.home import home
19-
from api.external_api import external_api
20-
19+
# from api.external_api import external_api
20+
from request_handler.handler import handler
2121

2222
if os.getenv('FLASK_CONF') == 'DEV':
2323
#development settings n
@@ -46,4 +46,5 @@ def inject_profiler():
4646

4747
# Pull in URL dispatch routes
4848
app.register_blueprint(home)
49-
app.register_blueprint(external_api)
49+
# app.register_blueprint(external_api)
50+
app.register_blueprint(handler)

application/controller/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

application/controller/controller.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import urllib2
2+
import json
3+
from google.appengine.api import users
4+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
5+
from flask import request, render_template, flash, url_for, redirect, Blueprint, json, jsonify
6+
from flask_cache import Cache
7+
from pprint import pprint
8+
9+
from application.decorators import login_required, admin_required
10+
from application.forms import ExampleForm
11+
12+
from application import app
13+
14+
from servers import police
15+
16+
def main():
17+
#test response will be the response from
18+
#the module taking care of a communication
19+
#with some external API
20+
#we parse that response with the PARSER
21+
#and return it to the request handler
22+
test_response = police.getCategories()
23+
temp = test_response.read()
24+
25+
return temp

application/controller/servers/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
"""
2+
handles interaction with the food standartds agency api
3+
"""
4+
5+
import urllib2
6+
import json
7+
8+
from google.appengine.api import users
9+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
10+
11+
from flask import request, render_template, flash, url_for, redirect, Blueprint
12+
13+
from flask_cache import Cache
14+
15+
16+
17+
from application.decorators import login_required, admin_required
18+
from application.forms import ExampleForm
19+
from application.models import ExampleModel
20+
21+
from application import app
22+
23+
# Flask-Cache (configured to use App Engine Memcache API)
24+
cache = Cache(app)
25+
26+
def getData(name, location, format):
27+
url = "http://ratings.food.gov.uk/search/" + name + "/" + location + "/" + format
28+
data = urllib2.urlopen(url)
29+
#remove the headers, and only get the relevant info
30+
result = json.load(data)['FHRSEstablishment']['EstablishmentCollection']['EstablishmentDetail']
31+
32+
return result
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
"""
2+
handles interaction with the worldbank api
3+
4+
"""
5+
import urllib2
6+
import json
7+
8+
from google.appengine.api import users
9+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
10+
11+
from flask import request, render_template, flash, url_for, redirect, Blueprint
12+
13+
from flask_cache import Cache
14+
15+
16+
17+
from application.decorators import login_required, admin_required
18+
from application.forms import ExampleForm
19+
from application.models import ExampleModel
20+
21+
from application import app
22+
23+
# Flask-Cache (configured to use App Engine Memcache API)
24+
cache = Cache(app)
25+
26+
'''
27+
API Key for geocoding can be found here:
28+
https://console.developers.google.com/project/cobalt-mantis-732/apiui/credential
29+
30+
Example link (need to edit api key):
31+
https://maps.googleapis.com/maps/api/geocode/json?address=122+Flinders+St,+Darlinghurst,+NSW,+Australia&sensor=false&key={key}
32+
33+
'''
34+
35+
API_KEY = "AIzaSyAXZycyWt-ZGGooaAycfCyfZuV1W5uKBGg"
36+
37+
components = "components=country:UK"
38+
def getData(address):
39+
url = "https://maps.googleapis.com/maps/api/geocode/json?address="+address+"&"+components+"&"+"sensor=false"+"&"+"key="+API_KEY
40+
request = urllib2.urlopen(url)
41+
result = json.load(request)
42+
43+
return result
44+
45+
46+
47+
48+
49+
50+
+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
2+
import urllib2
3+
import json
4+
5+
from google.appengine.api import users
6+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
7+
8+
from flask import request, render_template, flash, url_for, redirect, Blueprint, json, jsonify
9+
10+
from flask_cache import Cache
11+
12+
13+
14+
from application.decorators import login_required, admin_required
15+
from application.forms import ExampleForm
16+
from application.models import ExampleModel
17+
18+
from application import app
19+
20+
url = 'http://data.police.uk/api/'
21+
22+
def getData():
23+
global url
24+
#json object
25+
data = urllib2.urlopen(url)
26+
27+
#for testing purposes
28+
#print json.load(data)
29+
30+
url = 'http://data.police.uk/api/'
31+
return data
32+
33+
def getCategories():
34+
global url
35+
url += 'crime-categories?date=2011-08'
36+
return getData()
37+
38+
#Neighbourhoods must be lower case and the white spaces replaced with '-'
39+
def getNeighbourhoodsData(county):
40+
global url
41+
url += county + '/neighbourhoods'
42+
return getData()
43+
44+
def getBoundaryData(county, nhood):
45+
global url
46+
url += county + '/' + getNeighbourhoodID(county, nhood) + '/boundary'
47+
return getData()
48+
49+
def getNeighbourhoodID(county, nhood):
50+
global url
51+
url+= county + '/neighbourhoods'
52+
data = json.load(urllib2.urlopen(url))
53+
54+
for j in xrange(0, len(data)):
55+
if data[j]["name"] == nhood:
56+
return data[j]["id"]
57+
#date must be in the format yyyy-mm
58+
def getCrimesData(category, lat, lng, date):
59+
global url
60+
url+='crimes-street/' + category + '?lat=' + str(lat) + '&lng=' + str(lng) + '&date=' + date
61+
return getData()
62+
63+
def getCrimesInAreaData(category, latArr, lngArr, date):
64+
global url
65+
url+='crimes-street/' + category + '?poly='
66+
for j in xrange(0, len(latArr)):
67+
url+=str(latArr[j]) + ',' + str(lngArr[j]) + ':'
68+
url = url[:-1]
69+
url+='&date=' + date
70+
return getData()
71+
72+
73+
#getCategories()
74+
#getNeighbourhoods('hampshire')
75+
#getBoundary('hampshire', 'Fair Oak')
76+
#getCrimes('all-crimes', 52.629729, -1.131592, '2014-09')
77+
#getCrimesInArea('all-crimes', [52.268, 52.794, 52.130], [0.543, 0.238, 0.478], '2014-09')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
"""
2+
handles interaction with the worldbank api
3+
4+
"""
5+
import urllib2
6+
import json
7+
8+
from google.appengine.api import users
9+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
10+
11+
from flask import request, render_template, flash, url_for, redirect, Blueprint
12+
13+
from flask_cache import Cache
14+
15+
16+
17+
from application.decorators import login_required, admin_required
18+
from application.forms import ExampleForm
19+
from application.models import ExampleModel
20+
21+
from application import app
22+
23+
# Flask-Cache (configured to use App Engine Memcache API)
24+
cache = Cache(app)
25+
26+
def getData(dataType, date, format):
27+
url = "http://api.worldbank.org/countries/gbr/indicators/" + dataType + "?" + date + "&" + format
28+
request = urllib2.urlopen(url)
29+
result = json.load(request)[1][0]
30+
31+
return result

application/parser/__init__.py

Whitespace-only changes.

application/request_handler/__init__.py

Whitespace-only changes.
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
"""
2+
external_api.py
3+
4+
"""
5+
import urllib2
6+
import json
7+
from google.appengine.api import users
8+
from google.appengine.runtime.apiproxy_errors import CapabilityDisabledError
9+
from flask import request, render_template, flash, url_for, redirect, Blueprint, json, jsonify
10+
from flask_cache import Cache
11+
12+
from application.decorators import login_required, admin_required
13+
from application.forms import ExampleForm
14+
15+
from application import app
16+
17+
from application.controller import controller
18+
19+
20+
# Flask-Cache (configured to use App Engine Memcache API)
21+
cache = Cache(app)
22+
23+
handler = Blueprint('handler', __name__)
24+
25+
'''
26+
ideally, the request_handler accepts POST requests, extract the data in the POST requst,
27+
calls the controller method which returns the JSON object which the client expect,
28+
and then finally, send the result(the json) back to the client
29+
'''
30+
@handler.route('/app/', methods=['POST'])
31+
def handleReq():
32+
#extract the data sent from the client
33+
#the POST request's body should contain a key-value pair and the name of the key is 'data'
34+
input_data = request.form['data']
35+
result = controller.main()
36+
return result
37+
38+
39+

0 commit comments

Comments
 (0)