source: WAeUP_SRP/trunk/exportimport.py @ 470

Last change on this file since 470 was 407, checked in by joachim, 18 years ago

undoing change committed in 404

File size: 3.4 KB
Line 
1#-*- mode: python; mode: fold -*-
2# $Id: exportimport.py 31640 2006-01-15 19:22:29Z ogrisel $
3"""WAeUP Tool XML Adapter.
4
5An XML adapter tells the GenericSetup machinery howto im- / export persistent
6configuration that is relative to a specific CMF component such as our WAeUP
7Tool.
8
9GenericSetup uses the Zope3 interfaces and components machinery to find the
10right XML adapter for the right object. This is why we flagged our waeup tool
11with the `implements(IWAeUPTool)` class attribute and made an adapter
12association in the `configure.zcml` file.
13"""
14import csv,re
15
16# Zope3 component architecture
17from zope.component import adapts
18from zope.interface import implements
19
20# Standard GenericSetup base classes and functions
21from Products.GenericSetup.utils import exportObjects
22from Products.GenericSetup.utils import importObjects
23from Products.GenericSetup.utils import XMLAdapterBase
24from Products.GenericSetup.utils import PropertyManagerHelpers
25
26from Products.CMFCore.utils import getToolByName
27
28# GenericSetup multi adapts a class that implement IWAeUP and a particular
29# ISetupEnvironment to and IBody (piece of XML configuration).
30from Products.GenericSetup.interfaces import IBody
31from Products.GenericSetup.interfaces import ISetupEnviron
32from Products.WAeUP_SRP.interfaces import IWAeUPTool
33import Globals
34p_home = Globals.package_home(globals())
35i_home = Globals.INSTANCE_HOME
36
37TOOL = 'portal_waeup'
38NAME = 'waeup'
39
40def exportWAeUP(context):
41    """Export our WAeUP tool configuration
42    """
43    site = context.getSite()
44    tool = getattr(context,"campus",None)
45    if tool is None:
46        logger = context.getLogger(NAME)
47        logger.info("Nothing to export.")
48        return
49    exportObjects(tool, '', context)
50
51def importWAeUP(context):
52    """Import WAeUP tool configuration
53    """
54    site = context.getSite()
55    pm = site.portal_membership
56    pm.setLocalGroupRoles(site,['role:Authenticated',],'SectionReader')
57
58    importObjects(site.portal_accommodation, '', context)
59   
60from Products.GenericSetup.ZCatalog.exportimport import ZCatalogXMLAdapter
61
62from interfaces import IWAeUPTable
63
64class WAeUPTableXMLAdapter(ZCatalogXMLAdapter):
65   
66    __used_for__ = IWAeUPTable
67
68    _LOGGER_ID = 'waeup_table'
69
70    name = 'accommodation'
71
72# This the XMLAdapter itself. It encodes the im- / export logic that is specific
73# to our tool. `im- / exportObjects` functions will find it thanks to the zope
74# components machinery and the associations made in the configure.zcml file.
75
76##class WAeUPXMLAdapter(XMLAdapterBase, PropertyManagerHelpers):
77##    """XML importer and exporter for the WAeUP tool.
78##
79##    Hence this XMLAdapter is really simple. To get more complete examples of
80##    what XMLAdapters are meant to do, please have a look at the
81##    CPSSkins.exportimport.py or CPSDirectory.exportimport.py files, for
82##    instance.
83##    """
84##
85##    adapts(IWAeUPTool, ISetupEnviron)
86##    implements(IBody)
87##
88##    _LOGGER_ID = NAME
89##    name = NAME
90##
91##    def _exportNode(self):
92##        """Export the object as a DOM node.
93##        """
94##        node = self._getObjectNode('object')
95##        node.appendChild(self._extractProperties())
96##        self._logger.info("WAeUP tool exported.")
97##        return node
98##
99##    def _importNode(self, node):
100##        """Import the object from the DOM node.
101##        """
102##        if self.environ.shouldPurge():
103##            self._purgeProperties()
104##        self._initProperties(node)
105##        self._logger.info("WAeUP tool imported.")
106##
Note: See TracBrowser for help on using the repository browser.