2010-11-26 15:07:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
from __future__ import division
|
|
|
|
|
2011-02-11 14:46:21 +00:00
|
|
|
import ox
|
2010-11-26 15:07:24 +00:00
|
|
|
from ox.utils import json
|
|
|
|
from ox.django.decorators import login_required_json
|
|
|
|
from ox.django.shortcuts import render_to_json_response, get_object_or_404_json, json_response
|
|
|
|
|
2011-02-09 14:28:52 +00:00
|
|
|
|
2011-02-11 10:21:25 +00:00
|
|
|
from app.models import site_config
|
|
|
|
from item.models import Item
|
2010-12-22 07:45:37 +00:00
|
|
|
from api.actions import actions
|
2010-11-26 15:07:24 +00:00
|
|
|
|
2011-02-11 10:21:25 +00:00
|
|
|
import models
|
|
|
|
|
2010-12-28 14:04:28 +00:00
|
|
|
|
2011-01-18 09:54:14 +00:00
|
|
|
def findAnnotations(request):
|
2010-12-28 14:04:28 +00:00
|
|
|
'''
|
|
|
|
param data {
|
|
|
|
fixme
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
'status': {'code': int, 'text': string}
|
|
|
|
'data': {
|
|
|
|
annotations = [{..}, {...}, ...]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'''
|
|
|
|
#FIXME: implement findItem like queries
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
response = json_response(status=200, text='ok')
|
|
|
|
qs = models.Annotations.objects.filter(item__itemId=data['item'])
|
|
|
|
response['data']['annotations'] = [a.json() for a in qs]
|
|
|
|
return render_to_json_response(response)
|
2011-01-18 09:54:14 +00:00
|
|
|
actions.register(findAnnotations)
|
2010-12-28 14:04:28 +00:00
|
|
|
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
@login_required_json
|
2010-12-28 14:04:28 +00:00
|
|
|
def addAnnotation(request):
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
2010-12-28 14:04:28 +00:00
|
|
|
param data {
|
|
|
|
item: itemId,
|
|
|
|
layer: layerId,
|
2011-02-09 14:28:52 +00:00
|
|
|
in: float,
|
|
|
|
out: float,
|
2010-12-28 14:04:28 +00:00
|
|
|
value: string
|
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
return {'status': {'code': int, 'text': string},
|
2010-12-28 14:04:28 +00:00
|
|
|
'data': {
|
2011-02-25 15:03:41 +00:00
|
|
|
id: 123,
|
|
|
|
...
|
2010-12-28 14:04:28 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
2010-12-28 14:04:28 +00:00
|
|
|
data = json.loads(request.POST['data'])
|
2011-02-09 14:28:52 +00:00
|
|
|
for key in ('item', 'layer', 'in', 'out', 'value'):
|
2010-12-28 14:04:28 +00:00
|
|
|
if key not in data:
|
2011-01-01 11:44:42 +00:00
|
|
|
return render_to_json_response(json_response(status=400,
|
|
|
|
text='invalid data'))
|
2010-12-28 14:04:28 +00:00
|
|
|
|
2011-02-11 10:21:25 +00:00
|
|
|
#FIXME: this should be only called starting up server
|
|
|
|
models.load_layers(site_config()['layers'])
|
|
|
|
|
2011-02-09 14:28:52 +00:00
|
|
|
item = get_object_or_404_json(Item, itemId=data['item'])
|
|
|
|
layer = get_object_or_404_json(models.Layer, name=data['layer'])
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-12-28 14:04:28 +00:00
|
|
|
annotation = models.Annotation(
|
|
|
|
item=item,
|
|
|
|
layer=layer,
|
|
|
|
user=request.user,
|
2011-02-09 14:28:52 +00:00
|
|
|
start=float(data['in']), end=float(data['out']),
|
2011-01-01 11:44:42 +00:00
|
|
|
value=data['value'])
|
2010-12-28 14:04:28 +00:00
|
|
|
annotation.save()
|
2011-02-25 15:03:41 +00:00
|
|
|
response = json_response(annotation.json())
|
2010-12-28 14:04:28 +00:00
|
|
|
return render_to_json_response(response)
|
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
response = {'status': {'code': 501, 'text': 'not implemented'}}
|
|
|
|
return render_to_json_response(response)
|
2011-01-13 08:33:14 +00:00
|
|
|
actions.register(addAnnotation, cache=False)
|
2010-11-26 15:07:24 +00:00
|
|
|
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
@login_required_json
|
2011-02-11 14:46:21 +00:00
|
|
|
def removeAnnotations(request):
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
2010-12-28 14:04:28 +00:00
|
|
|
param data {
|
2011-02-11 14:46:21 +00:00
|
|
|
ids: []
|
2010-12-28 14:04:28 +00:00
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
return {'status': {'code': int, 'text': string},
|
2010-12-28 14:04:28 +00:00
|
|
|
'data': {
|
|
|
|
}
|
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
2011-02-11 14:46:21 +00:00
|
|
|
response = json_response({})
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
ids = map(ox.from32, data['ids'])
|
|
|
|
failed = []
|
|
|
|
for a in models.Annotation.objects.filter(id__in=ids):
|
|
|
|
if a.editable(request.user):
|
|
|
|
a.delete()
|
|
|
|
else:
|
|
|
|
failed.append(a.get_id)
|
|
|
|
if failed:
|
|
|
|
response = json_response(status=403, text='permission denied')
|
|
|
|
response['data']['ids'] = failed
|
2010-11-26 15:07:24 +00:00
|
|
|
return render_to_json_response(response)
|
2011-02-11 14:46:21 +00:00
|
|
|
actions.register(removeAnnotations, cache=False)
|
2010-11-26 15:07:24 +00:00
|
|
|
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
@login_required_json
|
2010-12-28 14:04:28 +00:00
|
|
|
def editAnnotation(request):
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
2010-12-28 14:04:28 +00:00
|
|
|
param data {
|
|
|
|
id:,
|
2011-02-09 14:28:52 +00:00
|
|
|
in: float,
|
|
|
|
out: float,
|
2010-12-28 14:04:28 +00:00
|
|
|
value: string,
|
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
return {'status': {'code': int, 'text': string},
|
2010-12-28 14:04:28 +00:00
|
|
|
'data': {
|
2011-02-25 15:03:41 +00:00
|
|
|
id:
|
|
|
|
...
|
2010-12-28 14:04:28 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-26 15:07:24 +00:00
|
|
|
'''
|
|
|
|
response = json_response({})
|
|
|
|
data = json.loads(request.POST['data'])
|
2011-02-11 14:46:21 +00:00
|
|
|
a = get_object_or_404_json(models.Annotation, pk=ox.from32(data['id']))
|
2011-02-09 14:28:52 +00:00
|
|
|
if a.editable(request.user):
|
|
|
|
a.value = data['value']
|
|
|
|
a.start = data['in']
|
|
|
|
a.end = data['out']
|
|
|
|
a.save()
|
2011-02-25 15:03:41 +00:00
|
|
|
response['data'] = a.json()
|
2010-11-26 15:07:24 +00:00
|
|
|
else:
|
|
|
|
response = json_response(status=403, text='permission denied')
|
|
|
|
return render_to_json_response(response)
|
2011-01-13 08:33:14 +00:00
|
|
|
actions.register(editAnnotation, cache=False)
|