-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
156 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# -*- coding: utf-8 -*- | ||
################################################################## | ||
# | ||
# (C) Copyright 2006-2007 ObjectRealms, LLC | ||
# (C) Copyright 2007-2017 Plone Foundation | ||
# All Rights Reserved | ||
# | ||
# This file is part of iterate. | ||
# | ||
# iterate is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# iterate is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with CMFDeployment; if not, write to the Free Software | ||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
################################################################## | ||
""" | ||
Base Checkin Checkout Policy For Content | ||
""" | ||
|
||
from Acquisition import aq_inner | ||
from Acquisition import aq_parent | ||
from plone.app.iterate.event import BeforeCheckoutEvent | ||
from plone.app.iterate.event import CancelCheckoutEvent | ||
from plone.app.iterate.event import CheckoutEvent | ||
from plone.app.iterate.interfaces import ICheckinCheckoutPolicy | ||
from plone.app.iterate.interfaces import IObjectCopier | ||
from plone.app.iterate.util import get_storage | ||
from zope.component import queryAdapter | ||
from zope.event import notify | ||
from zope.interface import implementer | ||
|
||
|
||
@implementer(ICheckinCheckoutPolicy) | ||
class CheckinCheckoutBasePolicyAdapter(object): | ||
"""Base Checkin Checkout Policy For Content | ||
- on checkout context is the baseline | ||
- on checkin context is the working copy. | ||
""" | ||
|
||
# used when creating baseline version for first time | ||
default_base_message = 'Created Baseline' | ||
|
||
def __init__(self, context): | ||
self.context = context | ||
|
||
def checkin(self, checkin_message): | ||
raise NotImplemented() | ||
|
||
def checkout(self, container): | ||
# see interface | ||
notify(BeforeCheckoutEvent(self.context)) | ||
|
||
# use the object copier to checkout the content to the container | ||
copier = queryAdapter(self.context, IObjectCopier) | ||
working_copy, relation = copier.copyTo(container) | ||
|
||
# publish the event for any subscribers | ||
notify(CheckoutEvent(self.context, working_copy, relation)) | ||
|
||
# finally return the working copy | ||
return working_copy | ||
|
||
def cancelCheckout(self): | ||
# see interface | ||
|
||
# get the baseline | ||
baseline = self._getBaseline() | ||
|
||
# publish an event | ||
notify(CancelCheckoutEvent(self.context, baseline)) | ||
|
||
# delete the working copy | ||
wc_container = aq_parent(aq_inner(self.context)) | ||
wc_container.manage_delObjects([self.context.getId()]) | ||
|
||
return baseline | ||
|
||
################################# | ||
# Checkin Support Methods | ||
|
||
def getBaseline(self): | ||
raise NotImplemented() | ||
|
||
def getWorkingCopy(self): | ||
raise NotImplemented() | ||
|
||
def getProperties(self, obj, default=None): | ||
return get_storage(obj, default=default) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters