Esempio n. 1
0
async def update_car(request):
    car_data = await request.json()
    try:
        if car_data.get('VIN'):
            raise InvalidQueryError('Field VIN is Unchanged')
        Car.objects(VIN=request.match_info['vin']).update(**car_data)
        return web.json_response({'msg': 'Car updated'}, status=201)
    except Exception as e:
        return web.json_response({'msg': str(e)}, status=400)
Esempio n. 2
0
async def delete(request):
    try:
        car = Car.objects(VIN=request.match_info['vin'])
        if not car.delete():
            raise InvalidQueryError('Unknown car with this VIN')
        return web.json_response({'msg': 'Car deleted'}, status=204)
    except Exception as e:
        return web.json_response({'error': str(e)}, status=400)
Esempio n. 3
0
async def get_car(request):
    car = Car.objects(VIN=request.match_info['vin'])
    return web.json_response({'item': json.loads(car.to_json())}, status=200)
Esempio n. 4
0
async def create_car(request):
    document = [json.loads(obj.to_json()) for obj in Car.objects(**{k: v for k, v in request.rel_url.query.items() if v})]
    return web.json_response({'items': document}, status=200)