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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
##############################################################################
#
# Copyright (c) 2005 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
""" Plone control panel tool node adapters.
$Id: controlpanel.py 10481 2006-08-18 17:18:39Z shh42 $
"""
from Products.GenericSetup.utils import exportObjects
from Products.GenericSetup.utils import importObjects
from Products.GenericSetup.utils import XMLAdapterBase
from Products.CMFCore.interfaces import IActionProvider
from Products.CMFCore.interfaces.portal_actions \
import ActionProvider as z2IActionProvider
from Products.CMFCore.utils import getToolByName
from Products.CMFPlone.interfaces import IControlPanel
class ControlPanelXMLAdapter(XMLAdapterBase):
"""
XML im- and exporter for Plone control panel. Most of this
code is taken from the actions handler in CMFCore.
"""
__used_for__ = IControlPanel
_LOGGER_ID = 'controlpanel'
name = 'controlpanel'
def _exportNode(self):
"""
Export the object as a DOM node.
"""
node = self._getObjectNode('object')
node.appendChild(self._extractConfiglets())
self._logger.info('Control panel exported.')
return node
def _importNode(self, node):
"""
Import the object from the DOM node.
"""
self._initProvider(node)
self._logger.info('Control panel imported.')
def _initProvider(self, node):
if self.environ.shouldPurge():
actions = self.context.listActions()
for action in actions:
self.context.unregisterConfiglet(action.getId())
self._initConfiglets(node)
def _extractConfiglets(self):
fragment = self._doc.createDocumentFragment()
provider = self.context
if not (IActionProvider.providedBy(provider) or
z2IActionProvider.isImplementedBy(provider)):
return fragment
actions = provider.listActions()
if actions and isinstance(actions[0], dict):
return fragment
for ai in actions:
mapping = ai.getMapping()
child = self._doc.createElement('configlet')
child.setAttribute('action_id', mapping['id'])
child.setAttribute('category', mapping['category'])
child.setAttribute('condition_expr', mapping['condition'])
child.setAttribute('title', mapping['title'])
child.setAttribute('url_expr', mapping['action'])
child.setAttribute('visible', str(mapping['visible']))
child.setAttribute('appId', ai.getAppId())
for permission in mapping['permissions']:
sub = self._doc.createElement('permission')
sub.appendChild(self._doc.createTextNode(permission))
child.appendChild(sub)
fragment.appendChild(child)
return fragment
def _initConfiglets(self, node):
controlpanel = self.context
for child in node.childNodes:
if child.nodeName != 'configlet':
continue
action_id = str(child.getAttribute('action_id'))
title = str(child.getAttribute('title'))
url_expr = str(child.getAttribute('url_expr'))
condition_expr = str(child.getAttribute('condition_expr'))
category = str(child.getAttribute('category'))
visible = str(child.getAttribute('visible'))
appId = str(child.getAttribute('appId'))
if visible.lower() == 'true':
visible = 1
else:
visible = 0
permission = ''
for permNode in child.childNodes:
if permNode.nodeName == 'permission':
for textNode in permNode.childNodes:
if textNode.nodeName != '#text' or \
not textNode.nodeValue.strip():
continue
permission = str(textNode.nodeValue)
break # only one permission is allowed
if permission:
break
# Remove previous action with same id and category.
controlpanel.unregisterConfiglet(action_id)
controlpanel.registerConfiglet(id=action_id,
name=title,
action=url_expr,
appId=appId,
condition=condition_expr,
category=category,
permission=permission,
visible=visible)
def importControlPanel(context):
"""Import Plone control panel.
"""
site = context.getSite()
tool = getToolByName(site, 'portal_controlpanel')
importObjects(tool, '', context)
def exportControlPanel(context):
"""Export actions tool.
"""
site = context.getSite()
tool = getToolByName(site, 'portal_controlpanel', None)
if tool is None:
logger = context.getLogger('controlpanel')
logger.info('Nothing to export.')
return
exportObjects(tool, '', context)
|