1 # -*- coding: utf-8 -*-
2 #######################################################################################
3 # Plinn - http://plinn.org #
4 # Copyright (C) 2005-2007 BenoƮt PIN <benoit.pin@ensmp.fr> #
6 # This program is free software; you can redistribute it and/or #
7 # modify it under the terms of the GNU General Public License #
8 # as published by the Free Software Foundation; either version 2 #
9 # of the License, or (at your option) any later version. #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program; if not, write to the Free Software #
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #
19 #######################################################################################
20 """ Plinn portal folder implementation
26 from OFS
.CopySupport
import CopyError
, eNoData
, _cb_decode
, eInvalid
, eNotFound
,\
27 eNotSupported
, sanity_check
, cookie_path
28 from App
.Dialogs
import MessageDialog
29 from zExceptions
import BadRequest
32 from cgi
import escape
33 from OFS
import Moniker
34 from ZODB
.POSException
import ConflictError
35 import OFS
.subscribers
36 from webdav
.NullResource
import NullResource
37 from zope
.event
import notify
38 from zope
.lifecycleevent
import ObjectCopiedEvent
40 from zope
.app
.container
.contained
import notifyContainerModified
41 from zope
.app
.container
.contained
import ObjectMovedEvent
44 from zope
.container
.contained
import notifyContainerModified
45 from zope
.container
.contained
import ObjectMovedEvent
46 from OFS
.event
import ObjectClonedEvent
47 from OFS
.event
import ObjectWillBeMovedEvent
48 from zope
.component
.factory
import Factory
49 from Acquisition
import aq_base
, aq_inner
, aq_parent
51 from types
import StringType
, NoneType
52 from Products
.CMFCore
.permissions
import ListFolderContents
, View
, ViewManagementScreens
,\
53 ManageProperties
, AddPortalFolders
, AddPortalContent
,\
54 ManagePortal
, ModifyPortalContent
55 from permissions
import DeletePortalContents
, DeleteObjects
, DeleteOwnedObjects
, SetLocalRoles
, CheckMemberPermission
56 from Products
.CMFCore
.utils
import _checkPermission
, getToolByName
57 from Products
.CMFCore
.CMFCatalogAware
import CMFCatalogAware
58 from Products
.CMFCore
.PortalFolder
import PortalFolder
, ContentFilter
59 from Products
.CMFDefault
.DublinCore
import DefaultDublinCoreImpl
61 from zope
.interface
import implements
62 from Products
.CMFCore
.interfaces
import IContentish
64 from utils
import _checkMemberPermission
65 from utils
import Message
as _
66 from utils
import makeValidId
67 from Globals
import InitializeClass
68 from AccessControl
import ClassSecurityInfo
71 class PlinnFolder(CMFCatalogAware
, PortalFolder
, DefaultDublinCoreImpl
) :
74 implements(IContentish
)
76 security
= ClassSecurityInfo()
78 manage_options
= PortalFolder
.manage_options
80 ## change security for inherited methods
81 security
.declareProtected(AddPortalContent
, 'manage_pasteObjects')
83 def __init__( self
, id, title
='' ) :
84 PortalFolder
.__init
__(self
, id)
85 DefaultDublinCoreImpl
.__init
__(self
, title
= title
)
87 def __getitem__(self
, key
):
89 return self
._getOb
(key
, None)
90 request
= getattr(self
, 'REQUEST', None)
91 if not isinstance(request
, (str, NoneType
)):
92 method
=request
.get('REQUEST_METHOD', 'GET')
93 if (request
.maybe_webdav_client
and
94 method
not in ('GET', 'POST')):
95 id = makeValidId(self
, key
)
96 return NullResource(self
, id, request
).__of
__(self
)
100 security
.declarePublic('allowedContentTypes')
101 def allowedContentTypes(self
):
103 List type info objects for types which can be added in this folder.
104 Types can be filtered using the localContentTypes attribute.
106 allowedTypes
= PortalFolder
.allowedContentTypes(self
)
107 if hasattr(self
, 'localContentTypes'):
108 allowedTypes
= [t
for t
in allowedTypes
if t
.title
in self
.localContentTypes
]
111 security
.declareProtected(View
, 'objectIdCanBeDeleted')
112 def objectIdCanBeDeleted(self
, id) :
113 """ Check permissions and ownership and return True
114 if current user can delete object id.
116 if _checkPermission(DeleteObjects
, self
) : # std zope perm
119 elif _checkPermission(DeletePortalContents
, self
):
120 mtool
= getToolByName(self
, 'portal_membership')
121 authMember
= mtool
.getAuthenticatedMember()
122 ob
= getattr(self
, id)
123 if authMember
.allowed(ob
, object_roles
=['Owner'] ) and \
124 _checkPermission(DeleteOwnedObjects
, ob
) : return True
130 security
.declareProtected(DeletePortalContents
, 'manage_delObjects')
131 def manage_delObjects(self
, ids
=[], REQUEST
=None):
132 """Delete subordinate objects.
133 A member can delete his owned contents (if he has the 'Delete Portal Contents' permission)
134 without 'Delete objects' permission in this folder.
135 Return skipped object ids.
138 if _checkPermission(DeleteObjects
, self
) : # std zope perm
139 PortalFolder
.manage_delObjects(self
, ids
=ids
, REQUEST
=REQUEST
)
141 mtool
= getToolByName(self
, 'portal_membership')
142 authMember
= mtool
.getAuthenticatedMember()
144 if type(ids
) == StringType
:
148 if authMember
.allowed(ob
, object_roles
=['Owner'] ) and \
149 _checkPermission(DeleteOwnedObjects
, ob
) : owned
.append(id)
150 else : notOwned
.append(id)
152 PortalFolder
.manage_delObjects(self
, ids
=owned
, REQUEST
=REQUEST
)
154 if REQUEST
is not None:
155 return self
.manage_main(
157 manage_tabs_message
='Object(s) deleted.',
162 security
.declareProtected(AddPortalContent
, 'manage_renameObjects')
163 def manage_renameObjects(self
, ids
=[], new_ids
=[], REQUEST
=None) :
164 """ Rename subordinate objects
165 A member can rename his owned contents if he has the 'Modify Portal Content' permission.
166 Returns skippend object ids.
168 if len(ids
) != len(new_ids
):
169 raise BadRequest(_('Please rename each listed object.'))
171 if _checkPermission(ViewManagementScreens
, self
) : # std zope perm
172 return super(PlinnFolder
, self
).manage_renameObjects(ids
, new_ids
, REQUEST
)
174 mtool
= getToolByName(self
, 'portal_membership')
175 authMember
= mtool
.getAuthenticatedMember()
177 for id, new_id
in zip(ids
, new_ids
) :
178 if id == new_id
: continue
181 if authMember
.allowed(ob
, object_roles
=['Owner'] ) and \
182 _checkPermission(ModifyPortalContent
, ob
) :
183 self
.manage_renameObject(id, new_id
)
187 if REQUEST
is not None :
188 return self
.manage_main(self
, REQUEST
, update_menu
=1)
193 security
.declareProtected(ListFolderContents
, 'listFolderContents')
194 def listFolderContents( self
, contentFilter
=None ):
195 """ List viewable contentish and folderish sub-objects.
197 items
= self
.contentItems(filter=contentFilter
)
199 for id, obj
in items
:
200 if _checkPermission(View
, obj
) :
206 security
.declareProtected(ListFolderContents
, 'listNearestFolderContents')
207 def listNearestFolderContents(self
, contentFilter
=None, userid
=None, sorted=False) :
208 """ Return folder contents and traverse
209 recursively unaccessfull sub folders to find
215 filt
= contentFilter
.copy()
216 ctool
= getToolByName(self
, 'portal_catalog')
217 mtool
= getToolByName(self
, 'portal_membership')
219 if userid
and _checkPermission(CheckMemberPermission
, getToolByName(self
, 'portal_url').getPortalObject()) :
220 checkFunc
= lambda perm
, ob
: _checkMemberPermission(userid
, View
, ob
)
221 filt
['allowedRolesAndUsers'] = ctool
._listAllowedRolesAndUsers
( mtool
.getMemberById(userid
) )
223 checkFunc
= _checkPermission
224 filt
['allowedRolesAndUsers'] = ctool
._listAllowedRolesAndUsers
( mtool
.getAuthenticatedMember() )
227 # copy from CMFCore.PortalFolder.PortalFolder._filteredItems
228 pt
= filt
.get('portal_type', [])
229 if type(pt
) is type(''):
231 types_tool
= getToolByName(self
, 'portal_types')
232 allowed_types
= types_tool
.listContentTypes()
236 pt
= [t
for t
in pt
if t
in allowed_types
]
238 # After filtering, no types remain, so nothing should be
241 filt
['portal_type'] = pt
244 query
= ContentFilter(**filt
)
247 for o
in self
.objectValues() :
249 if checkFunc(View
, o
):
250 nearestObjects
.append(o
)
251 elif getattr(o
.aq_self
,'isAnObjectManager', False):
252 nearestObjects
.extend(_getDeepObjects(self
, ctool
, o
, filter=filt
))
254 if sorted and len(nearestObjects
) > 0 :
255 key
, reverse
= self
.getDefaultSorting()
256 if key
!= 'position' :
257 indexCallable
= callable(getattr(nearestObjects
[0], key
))
259 sortfunc
= lambda a
, b
: cmp(getattr(a
, key
)(), getattr(b
, key
)())
261 sortfunc
= lambda a
, b
: cmp(getattr(a
, key
), getattr(b
, key
))
262 nearestObjects
.sort(cmp=sortfunc
, reverse
=reverse
)
264 return nearestObjects
266 security
.declareProtected(ListFolderContents
, 'listCatalogedContents')
267 def listCatalogedContents(self
, contentFilter
={}):
268 """ query catalog and returns brains of contents.
269 Requires ExtendedPathIndex
271 ctool
= getToolByName(self
, 'portal_catalog')
272 contentFilter
['path'] = {'query':'/'.join(self
.getPhysicalPath()),
274 return ctool(sort_on
='position', **contentFilter
)
277 security
.declarePublic('synContentValues')
278 def synContentValues(self
):
279 # value for syndication
280 return self
.listNearestFolderContents()
282 security
.declareProtected(View
, 'SearchableText')
283 def SearchableText(self
) :
284 """ for full text indexation
286 return '%s %s' % (self
.title
, self
.description
)
288 security
.declareProtected(AddPortalFolders
, 'manage_addPlinnFolder')
289 def manage_addPlinnFolder(self
, id, title
='', REQUEST
=None):
290 """Add a new PortalFolder object with id *id*.
292 ob
=PlinnFolder(id, title
)
293 # from CMFCore.PortalFolder.PortalFolder :-)
294 self
._setObject
(id, ob
)
295 if REQUEST
is not None:
296 return self
.folder_contents( # XXX: ick!
297 self
, REQUEST
, portal_status_message
="Folder added")
300 # ## overload to maintain ownership if authenticated user has 'Manage portal' permission
301 # def manage_pasteObjects(self, cb_copy_data=None, REQUEST=None):
302 # """Paste previously copied objects into the current object.
304 # If calling manage_pasteObjects from python code, pass the result of a
305 # previous call to manage_cutObjects or manage_copyObjects as the first
308 # Also sends IObjectCopiedEvent and IObjectClonedEvent
309 # or IObjectWillBeMovedEvent and IObjectMovedEvent.
311 # if cb_copy_data is not None:
313 # elif REQUEST is not None and REQUEST.has_key('__cp'):
314 # cp = REQUEST['__cp']
318 # raise CopyError, eNoData
321 # op, mdatas = _cb_decode(cp)
323 # raise CopyError, eInvalid
326 # app = self.getPhysicalRoot()
327 # for mdata in mdatas:
328 # m = Moniker.loadMoniker(mdata)
331 # except ConflictError:
334 # raise CopyError, eNotFound
335 # self._verifyObjectPaste(ob, validate_src=op+1)
341 # mtool = getToolByName(self, 'portal_membership')
342 # utool = getToolByName(self, 'portal_url')
343 # portal = utool.getPortalObject()
344 # userIsPortalManager = mtool.checkPermission(ManagePortal, portal)
347 # orig_id = ob.getId()
348 # if not ob.cb_isCopyable():
349 # raise CopyError, eNotSupported % escape(orig_id)
352 # ob._notifyOfCopyTo(self, op=0)
353 # except ConflictError:
356 # raise CopyError, MessageDialog(
357 # title="Copy Error",
358 # message=sys.exc_info()[1],
359 # action='manage_main')
361 # id = self._get_id(orig_id)
362 # result.append({'id': orig_id, 'new_id': id})
365 # ob = ob._getCopy(self)
367 # notify(ObjectCopiedEvent(ob, orig_ob))
369 # if not userIsPortalManager :
370 # self._setObject(id, ob, suppress_events=True)
372 # self._setObject(id, ob, suppress_events=True, set_owner=0)
373 # ob = self._getOb(id)
376 # ob._postCopy(self, op=0)
378 # OFS.subscribers.compatibilityCall('manage_afterClone', ob, ob)
380 # notify(ObjectClonedEvent(ob))
382 # if REQUEST is not None:
383 # return self.manage_main(self, REQUEST, update_menu=1,
389 # orig_id = ob.getId()
390 # if not ob.cb_isMoveable():
391 # raise CopyError, eNotSupported % escape(orig_id)
394 # ob._notifyOfCopyTo(self, op=1)
395 # except ConflictError:
398 # raise CopyError, MessageDialog(
399 # title="Move Error",
400 # message=sys.exc_info()[1],
401 # action='manage_main')
403 # if not sanity_check(self, ob):
404 # raise CopyError, "This object cannot be pasted into itself"
406 # orig_container = aq_parent(aq_inner(ob))
407 # if aq_base(orig_container) is aq_base(self):
410 # id = self._get_id(orig_id)
411 # result.append({'id': orig_id, 'new_id': id})
413 # notify(ObjectWillBeMovedEvent(ob, orig_container, orig_id,
416 # # try to make ownership explicit so that it gets carried
417 # # along to the new location if needed.
418 # ob.manage_changeOwnershipType(explicit=1)
421 # orig_container._delObject(orig_id, suppress_events=True)
423 # orig_container._delObject(orig_id)
425 # "%s._delObject without suppress_events is discouraged."
426 # % orig_container.__class__.__name__,
427 # DeprecationWarning)
432 # self._setObject(id, ob, set_owner=0, suppress_events=True)
434 # self._setObject(id, ob, set_owner=0)
436 # "%s._setObject without suppress_events is discouraged."
437 # % self.__class__.__name__, DeprecationWarning)
438 # ob = self._getOb(id)
440 # notify(ObjectMovedEvent(ob, orig_container, orig_id, self, id))
441 # notifyContainerModified(orig_container)
442 # if aq_base(orig_container) is not aq_base(self):
443 # notifyContainerModified(self)
445 # ob._postCopy(self, op=1)
446 # # try to make ownership implicit if possible
447 # ob.manage_changeOwnershipType(explicit=0)
449 # if REQUEST is not None:
450 # REQUEST['RESPONSE'].setCookie('__cp', 'deleted',
451 # path='%s' % cookie_path(REQUEST),
452 # expires='Wed, 31-Dec-97 23:59:59 GMT')
453 # REQUEST['__cp'] = None
454 # return self.manage_main(self, REQUEST, update_menu=1,
460 InitializeClass(PlinnFolder
)
461 PlinnFolderFactory
= Factory(PlinnFolder
)
463 def _getDeepObjects(self
, ctool
, o
, filter={}):
464 res
= ctool
.unrestrictedSearchResults(path
= '/'.join(o
.getPhysicalPath()), **filter)
471 res
.sort(lambda a
, b
: cmp(a
.getPath(), b
.getPath()))
472 previousPath
= res
[0].getPath()
474 deepObjects
.append(res
[0].getObject())
476 currentPath
= b
.getPath()
477 if currentPath
.startswith(previousPath
) and len(currentPath
) > len(previousPath
):
480 deepObjects
.append(b
.getObject())
481 previousPath
= currentPath
486 manage_addPlinnFolder
= PlinnFolder
.manage_addPlinnFolder
.im_func