diff options
| author | J08nY | 2017-06-29 23:51:47 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-30 13:18:10 +0200 |
| commit | f2cf2d0c96c0cf47e6dfa80137bb705ec4e8321b (patch) | |
| tree | 05afab72170dca745dad0d9976b28ce5878956d0 /src/mailman/model/workflows.py | |
| parent | c1060c9dfec4776ab6d714bea6e678a7d708396e (diff) | |
| download | mailman-f2cf2d0c96c0cf47e6dfa80137bb705ec4e8321b.tar.gz mailman-f2cf2d0c96c0cf47e6dfa80137bb705ec4e8321b.tar.zst mailman-f2cf2d0c96c0cf47e6dfa80137bb705ec4e8321b.zip | |
Create mailman.workflows package. Move base Workflow there.
- Also introduce IWorkflow, ISubscriptionWorkflow,
IUnsubscriptionWorkflow.
Diffstat (limited to 'src/mailman/model/workflows.py')
| -rw-r--r-- | src/mailman/model/workflows.py | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/mailman/model/workflows.py b/src/mailman/model/workflows.py new file mode 100644 index 000000000..587d3375e --- /dev/null +++ b/src/mailman/model/workflows.py @@ -0,0 +1,71 @@ +# Copyright (C) 2015-2017 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman 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 +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""Model for workflow states.""" + +from mailman.database.model import Model +from mailman.database.transaction import dbconnection +from mailman.database.types import SAUnicode +from mailman.interfaces.workflows import IWorkflowState, IWorkflowStateManager +from public import public +from sqlalchemy import Column +from zope.interface import implementer + + +@public +@implementer(IWorkflowState) +class WorkflowState(Model): + """Workflow states.""" + + __tablename__ = 'workflowstate' + + token = Column(SAUnicode, primary_key=True) + step = Column(SAUnicode) + data = Column(SAUnicode) + + +@public +@implementer(IWorkflowStateManager) +class WorkflowStateManager: + """See `IWorkflowStateManager`.""" + + @dbconnection + def save(self, store, token, step=None, data=None): + """See `IWorkflowStateManager`.""" + state = WorkflowState(token=token, step=step, data=data) + store.add(state) + + @dbconnection + def restore(self, store, token): + """See `IWorkflowStateManager`.""" + state = store.query(WorkflowState).get(token) + if state is not None: + store.delete(state) + return state + + @dbconnection + def discard(self, store, token): + """See `IWorkflowStateManager`.""" + state = store.query(WorkflowState).get(token) + if state is not None: + store.delete(state) + + @property + @dbconnection + def count(self, store): + """See `IWorkflowStateManager`.""" + return store.query(WorkflowState).count() |
