summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Lint/Bundler.py
blob: 7bf6f0baa9b95e0b538899d52372836a2d45f4f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
""" ``bcfg2-lint`` plugin for :ref:`Bundler
<server-plugins-structures-bundler>` """

from Bcfg2.Server.Lint import ServerPlugin


class Bundler(ServerPlugin):
    """ Perform various :ref:`Bundler
    <server-plugins-structures-bundler>` checks. """
    __serverplugin__ = 'Bundler'

    def Run(self):
        self.missing_bundles()
        for bundle in list(self.core.plugins['Bundler'].entries.values()):
            if self.HandlesFile(bundle.name):
                self.bundle_names(bundle)

    @classmethod
    def Errors(cls):
        return {"bundle-not-found": "error",
                "unused-bundle": "warning",
                "explicit-bundle-name": "error",
                "genshi-extension-bundle": "error"}

    def missing_bundles(self):
        """ Find bundles listed in Metadata but not implemented in
        Bundler. """
        if self.files is None:
            # when given a list of files on stdin, this check is
            # useless, so skip it
            groupdata = self.metadata.groups_xml.xdata

            ref_bundles = set([b.get("name")
                               for b in groupdata.findall("//Bundle")])
            for bundle in list(self.core.plugins['Bundler'].bundles.values()):
                ref_bundles |= set([rb.get("name") for rb in
                                    bundle.xdata.findall(".//RequiredBundle")])

            allbundles = list(self.core.plugins['Bundler'].bundles.keys())
            for bundle in ref_bundles:
                if bundle not in allbundles:
                    self.LintError("bundle-not-found",
                                   "Bundle %s referenced, but does not exist" %
                                   bundle)

            for bundle in allbundles:
                if bundle not in ref_bundles:
                    self.LintError("unused-bundle",
                                   "Bundle %s defined, but is not referenced "
                                   "in Metadata" % bundle)

    def bundle_names(self, bundle):
        """ Verify that deprecated bundle .genshi bundles and explicit
        bundle names aren't used """
        if bundle.xdata.get('name'):
            self.LintError("explicit-bundle-name",
                           "Deprecated explicit bundle name in %s" %
                           bundle.name)

        if bundle.name.endswith(".genshi"):
            self.LintError("genshi-extension-bundle",
                           "Bundle %s uses deprecated .genshi extension" %
                           bundle.name)