X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=rest%2Fupdate.py;h=8deb42818f3653a7052ae76268aa72a57aefdc65;hb=ac575fb40a8a128cdac22bdc0b868012011c5e66;hp=965797642f9d55bcd5fcde38814b5d7d1b1ff1eb;hpb=395901526547f862eff0c1e1676a29983978ca3e;p=myslice.git diff --git a/rest/update.py b/rest/update.py index 96579764..8deb4281 100644 --- a/rest/update.py +++ b/rest/update.py @@ -23,16 +23,31 @@ 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]))}) + o.params.append({el[0][7:-3]: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 +57,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))