X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=rest%2Fupdate.py;h=fb6bb9707caee095123c02d19953a44e95a1464f;hb=3886c4b8a044e867f5dad3cadcc0f149717790c1;hp=965797642f9d55bcd5fcde38814b5d7d1b1ff1eb;hpb=fecbbac04ddd2f55989661f4666dcabae647dc50;p=myslice.git diff --git a/rest/update.py b/rest/update.py index 96579764..fb6bb970 100644 --- a/rest/update.py +++ b/rest/update.py @@ -23,16 +23,30 @@ def dispatch(request, object_type, object_name): elif request.method == 'GET': #return error('only post request is supported') req_items = request.GET + print req_items for el in req_items.items(): + + print "#===============>",el if el[0].startswith('filters'): o.filters[el[0][8:-1]] = el[1] elif el[0].startswith('params'): - o.params[el[0][7:-1]] = el[1] + print "#======> 0 ", el[0] + print "#======> 1 ", req_items.getlist(el[0]) + + if (el[0][-2:] == '[]') : + # when receiving params[key][] = 'value1' ... + o.params.append({el[0][7:-3]:",".join(req_items.getlist(el[0]))}) + else : + # when receiving params[key] = 'value' + o.params.append({el[0][7:-1]:el[1]}) + + print "o.params = ",o.params + elif el[0].startswith('fields'): o.fields=req_items.getlist('fields[]') elif el[0].startswith('options'): o.options = req_items.getlist('options[]') - + try: response = o.update() @@ -42,5 +56,5 @@ def dispatch(request, object_type, object_name): return error('an error has occurred') except Exception, e: - return error(str(e)) + return error("exception:"+str(e))