From 66e101e7704c3799c1a8c72cdea16656884235bf Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Tue, 25 Oct 2011 10:23:13 +0200 Subject: test --- src/meetingtools/apps/room/views.py | 70 +++++++++++++++---------------------- 1 file changed, 28 insertions(+), 42 deletions(-) (limited to 'src/meetingtools/apps') diff --git a/src/meetingtools/apps/room/views.py b/src/meetingtools/apps/room/views.py index 059df69..cf79c92 100644 --- a/src/meetingtools/apps/room/views.py +++ b/src/meetingtools/apps/room/views.py @@ -238,62 +238,48 @@ def _import_room(request,acc,r): modified = False room = None + #if abs(room.lastupdate() - time.time()) < IMPORT_TTL: + # return room + + if r.has_key('urlpath'): + r['urlpath'] = r['urlpath'].strip('/') + try: room = Room.objects.get(sco_id=r['sco_id'],acc=acc) + for key in ('sco_id','name','source_sco_id','urlpath','description','user_count','host_count'): + if r.has_key(key) and hasattr(room,key): + rv = getattr(room,key) + if rv != r[key] and r[key] != None and r[key]: + setattr(room,key,r[key]) + modified = True + + if modified: + logging.debug("+++ saving room ... %s" % pformat(room)) + room.save() + except ObjectDoesNotExist: if r['folder_sco_id']: try: - room = Room.objects.create(sco_id=r['sco_id'],acc=acc,creator=request.user,folder_sco_id=r['folder_sco_id']) + room = Room.objects.create(sco_id=r['sco_id'], + source_sco_id=r['source_sco_id'], + acc=acc, + name=r['name'], + urlpath=r['urlpath'], + description=r['description'], + creator=request.user, + folder_sco_id=r['folder_sco_id']) except Exception,e: room = None pass - logging.debug("+++ after object create") - logging.debug(room) - if not room: - return None - - logging.debug("+++ room timers") - logging.debug(room.lastupdate()) - logging.debug(room.lastupdate() - time.time()) - if abs(room.lastupdate() - time.time()) < IMPORT_TTL: - return room - logging.debug("+++ looking at user counts") api = ac_api_client(request,acc) userlist = api.request('meeting-usermanager-user-list',{'sco-id': room.sco_id},False) - r['user_count'] = 0 - r['host_count'] = 0 if userlist.status_code() == 'ok': - r['user_count'] = int(userlist.et.xpath("count(.//userdetails)")) - r['host_count'] = int(userlist.et.xpath("count(.//userdetails/role[text() = 'host'])")) - modified = True - - logging.debug("+++ room before merge") - logging.debug(pformat(room)) - logging.debug(pformat(r)) - - if r.has_key('urlpath'): - r['urlpath'] = r['urlpath'].strip('/') - - for key in ('sco_id','name','source_sco_id','urlpath','description','user_count','host_count'): - if r.has_key(key) and hasattr(room,key): - rv = getattr(room,key) - if rv != r[key] and r[key] != None and r[key]: - setattr(room,key,r[key]) - modified = True - - logging.debug("+++ room after merge") - logging.debug(pformat(room)) - - if not room.name: - room.delete() - return None - - if modified: - logging.debug("+++ saving room ... %s" % pformat(room)) + room.user_count = int(userlist.et.xpath("count(.//userdetails)")) + room.host_count = int(userlist.et.xpath("count(.//userdetails/role[text() = 'host'])")) room.save() - + return room @login_required -- cgit v1.1