forked from cketti/social-bearing-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
86 lines (74 loc) · 2.68 KB
/
server.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
# SocialBearing Server Component
# Copyright (C) 2011-2012
# * riot <[email protected]>
# * cketti <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import json
import bottle
from bottle import route, run, request, abort
from pymongo import Connection
from bson.objectid import ObjectId
from voluptuous import Schema, required, all, range, match
connection = Connection('localhost', 27017)
db = connection.socialbearing
ver = "v1"
fullschema = Schema({
required('device_uuid'): match(r'^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'),
'device_model': unicode,
required('buoys'): [
{
required('buoy_type'): unicode,
'buoy_id': unicode,
required('bearings'): [
{
required('timestamp'): all(long, range(min=0)),
required('lat'): all(float, range(min=-180, max=180)),
required('lon'): all(float, range(min=-90, max=90)),
required('bearing'): all(int, range(min=0, max=359)),
required('accuracy'): all(float, range(min=0))
}
]
}
],
})
@route('/', method='GET')
def index():
return """Versuchs mal mit nem POST von JSON Daten nach /%s/bearing oder
einem GET (mit bekannter buoy_id) nach /%s/bearing/$buoy_id ...
""" % (ver, ver)
@route('/%s/bearing' %(ver), method='POST')
def post_bearing():
data = request.body.readline()
print data
if not data:
abort(400, 'No data received')
entity = json.loads(data)
# Validate input
try:
validated = fullschema(entity)
except Exception, e:
print e
abort(400, "Invalid input data")
try:
db['bearings'].save(validated)
except ValidationError as ve:
abort(400, str(ve))
@route('/%s/bearing/:buoy_id' %(ver), method='GET')
def get_bearing(buoy_id):
entity = db['bearings'].find_one({'_id': ObjectId(buoy_id)})
if not entity:
abort(404, 'No buoy with id %s' % buoy_id)
return str(entity)
run(host='0.0.0.0', port=80, debug=True)