#!/usr/bin/python # -*- coding: utf-8 -*- import logging import urllib log = logging.getLogger(__name__) class GroupList(object): def __init__(self): self.groups={} self.lastChange=False def load(self,data): if 'lastChange' in data: self.lastChange=data['lastChange'] if 'groups' in data: for g in data['groups']: self.groups[g]=Group() self.groups[g].load(data['groups'][g]) def export(self): groups={} for uuid in self.groups: groups[uuid]=self.groups[uuid].export() return { 'lastChange': self.lastChange, 'groups': groups } def toJSON(self,pretty=False): if pretty: return json.dumps(self.export(),indent=4, separators=(',', ': ')) else: return json.dumps(self.export()) def sync(self,groups): ret=GroupList() if groups.lastChangeret.deletedContributions[uuid].lastChange: ret.contributions[uuid]=self.contributions[uuid] for uuid in group.contributions: if uuid not in ret.contributions: if uuid not in ret.deletedContributions: ret.contributions[uuid]=group.contributions[uuid] elif group.contributions[uuid].lastChange>ret.deletedContributions[uuid].lastChange: ret.contributions[uuid]=group.contributions[uuid] return ret class Contribution(object): def __init__(self): self.uuid=None self.contributor=None self.title=None self.cost=None self.date=None self.lastChange=None def load(self,data): self.uuid=data['uuid'] self.contributor=data['contributor'] self.title=data['title'] self.cost=data['cost'] self.date=data['date'] self.lastChange=data['lastChange'] def export(self): return { 'uuid': self.uuid, 'contributor': self.contributor, 'cost': self.cost, 'title': self.title, 'date': self.date, 'lastChange': self.lastChange } def sync(self, c): if c.lastChange>self.lastChange: return c else: return self class Contributor(object): def __init__(self): self.name=None self.email=None def load(self,data): self.name=data['name'] self.email=data['email'] def export(self): return { 'name': self.name, 'email': self.email } if __name__ == '__main__': import testdata import json data=json.loads(testdata.group_as_json) data2=json.loads(testdata.group_as_json2) gl=GroupList() gl.load(data2) print gl.toJSON(True) print 'Try sync groups' gl2=GroupList() gl2.load(data) gl_sync=gl.sync(gl2) print 'Sync group : %s' % gl_sync print gl_sync.toJSON(True)