import Bcfg2.Server.Plugin import Bcfg2.Server.Reports.importscript from Bcfg2.Server.Reports.reports.models import Client import difflib, lxml.etree, time class DBStats(Bcfg2.Server.Plugin.StatisticsPlugin): __name__ = 'DBStats' __version__ = '$Id: $' def __init__(self, core, datastore): self.cpath = "%s/Metadata/clients.xml" % datastore self.core = core def StoreStatistics(self, mdata, xdata): newstats = xdata.find("Statistics") newstats.set('time', time.asctime(time.localtime())) e = lxml.etree.Element('Node', name=mdata.hostname) e.append(newstats) container = lxml.etree.Element("ConfigStatistics") container.append(e) # FIXME need to build a metadata interface to expose a list of clients Bcfg2.Server.Reports.importscript.load_stats( self.core.metadata.clientdata, container, 0, True) def GetExtra(self, client): c_inst = Client.objects.filter(name=client)[0] return [(a.kind, a.name) for a in c_inst.current_interaction.extra_items.all()] def GetCurrentEntry(self, client, e_type, e_name): c_inst = Client.objects.filter(name=client)[0] result = c_inst.current_interaction.bad_items.filter(kind=e_type, name=e_name) if not result: raise Bcfg2.Server.Plugin.PluginExecutionError entry = result[0] ret = [] data = ('owner', 'group', 'perms') for t in data: if getattr(entry.reason, "current_%s" % t) == '': ret.append(getattr(entry.reason, t)) else: ret.append(getattr(entry.reason, "current_%s" % t)) if entry.reason.current_diff != '': ret.append('\n'.join(difflib.restore(\ entry.reason.current_diff.split('\n'), 1))) else: ret.append(None) return ret