loops/interfaces.py
helmutm d6b7f5bc1f Assignment of resources to concepts and vice versa
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1108 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-03-04 14:50:16 +00:00

498 lines
15 KiB
Python

#
# Copyright (c) 2004 Helmut Merz helmutm@cy55.de
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
loops interface definitions.
$Id$
"""
from zope.interface import Interface, Attribute
from zope.i18nmessageid import MessageFactory
from zope import schema
from zope.app.container.constraints import contains, containers
from zope.app.container.interfaces import IContainer, IOrderedContainer
from zope.app.file.interfaces import IImage as IBaseAsset
from zope.app.folder.interfaces import IFolder
from cybertools.relation.interfaces import IRelation
import util
_ = MessageFactory('loops')
# common interfaces
class ILoopsObject(Interface):
""" Common top-level interface.
"""
def getLoopsRoot():
""" Return the loops root object.
"""
class IPotentialTarget(Interface):
""" For objects that may be used as target objects for views/nodes.
"""
proxyInterface = Attribute('An interface allowing an object to be '
'used as a target for a view/node (and '
'typically specifying the corresponding schema')
# concept interfaces
class IConcept(ILoopsObject, IPotentialTarget):
""" The concept is the central element of the loops framework.
A concept is related to other concepts, may have resources
associated with it and may be referenced by views.
"""
title = schema.TextLine(
title=_(u'Title'),
description=_(u'Title of the concept'),
default=u'',
required=False)
conceptType = schema.Choice(
title=_(u'Concept Type'),
description=_(u"The type of the concept, specified by a relation to "
"a concept of type 'type'."),
default=None,
source="loops.conceptTypeSource",
required=False)
def getChildren(predicates=None):
""" Return a sequence of concepts related to self as child concepts,
optionally restricted to the predicates given.
"""
def getChildRelations(predicates=None, children=None):
""" Return a sequence of relations to other concepts assigned to self
as child concepts, optionally restricted to the predicates given
or to a certain child concept.
"""
def getParents(predicates=None):
""" Return a tuple of concepts related to self as parent concepts,
optionally restricted to the predicates given.
"""
def getParentRelations(predicates=None, parents=None):
""" Return a sequence of relations to other concepts assigned to self
as parent concepts, optionally restricted to the predicates given
or to a certain parent concept.
"""
def assignChild(concept, predicate):
""" Assign an existing concept to self using the predicate given.
The assigned concept will be a child concept of self.
The predicate defaults to the concept manager's default predicate.
"""
def assignParent(concept, predicate):
""" Assign an existing concept to self using the predicate given.
The assigned concept will be a parent concept of self.
The predicate defaults to the concept manager's default predicate.
"""
def deassignChild(child, predicates=None):
""" Remove the child concept relations to the concept given from self,
optionally restricting them to the predicates given.
"""
def deassignParent(parent, predicates=None):
""" Remove the parent concept relations to the concept given from self,
optionally restricting them to the predicates given.
"""
def getResources(predicates=None):
""" Return a sequence of resources assigned to self,
optionally restricted to the predicates given.
"""
def getResourceRelations(predicates=None, resource=None):
""" Return a sequence of relations to resources assigned to self,
optionally restricted to the predicates given or to a certain
resource.
"""
def assignResource(resource, predicate):
""" Assign an existing resource to self using the predicate given.
The relationship defaults to ConceptResourceRelation.
"""
def deassignResource(resource, predicates=None):
""" Remove the relations to the resource given from self, optionally
restricting them to the predicates given.
"""
class IConceptView(Interface):
""" Used for accessing a concept via a node's target attribute"""
class IConceptManager(ILoopsObject, IContainer):
""" A manager/container for concepts.
"""
contains(IConcept)
def getTypePredicate():
""" Return the concept that provides the type predicate.
"""
def getTypeConcept():
""" Return the concept that provides the type object.
"""
def getDefaultPredicate():
""" Return the concept that provides the default (standard) predicate.
"""
class IConceptManagerContained(Interface):
containers(IConceptManager)
# resource interfaces
class IResourceSchema(Interface):
title = schema.TextLine(
title=_(u'Title'),
description=_(u'Title of the resource'),
default=u'',
missing_value=u'',
required=False)
data = schema.Bytes(
title=_(u'Data'),
description=_(u'Resource raw data'),
default='',
missing_value='',
required=False)
contentType = schema.BytesLine(
title=_(u'Content Type'),
description=_(u'Content type (format) of the data field'),
default='',
missing_value='',
required=False)
class IResource(ILoopsObject, IPotentialTarget):
""" A resource is an atomic information element that is made
available via a view or a concept.
"""
def getClients(relationships=None):
""" Return a sequence of objects that the resource is the target of.
"""
def getConcepts(predicates=None):
""" Return a tuple of concepts related to self as parent concepts,
optionally restricted to the predicates given.
"""
def getConceptRelations(predicates=None, concepts=None):
""" Return a sequence of relations to concepts assigned to self
as parent concepts, optionally restricted to the predicates given
or to a certain concept.
"""
def assignConcept(concept, predicate):
""" Assign an existing concept to self using the predicate given.
The assigned concept will be a parent concept of self.
The predicate defaults to the concept manager's default predicate.
"""
def deassignConcept(concept, predicates=None):
""" Remove the concept relations to the concept given from self,
optionally restricting them to the predicates given.
"""
class IDocumentSchema(IResourceSchema):
data = schema.Text(
title=_(u'Data'),
description=_(u'Raw body data of the document'),
default=u'',
missing_value=u'',
required=False)
contentType = schema.Choice(
title=_(u'Content Type'),
description=_(u'Content type (format) of the data field'),
values=('text/restructured', 'text/structured', 'text/html',
'text/plain', 'text/xml', 'text/css'),
default='text/restructured',
required=True)
class IDocumentView(IDocumentSchema):
""" Used for accessing a document via a node's target attribute"""
class IDocument(IDocumentSchema, IResource):
""" A resource containing an editable body.
"""
class IMediaAssetSchema(IResourceSchema):
data = schema.Bytes(
title=_(u'Data'),
description=_(u'Media asset file'),
default='',
missing_value='',
required=False)
class IMediaAssetView(IMediaAssetSchema):
""" Used for accessing a media asset via a node's target attribute"""
class IMediaAsset(IMediaAssetSchema, IResource, IBaseAsset):
""" A resource containing a (typically binary) file-like content
or an image.
"""
class IResourceManager(ILoopsObject, IContainer):
""" A manager/container for resources.
"""
contains(IResource)
class IResourceManagerContained(Interface):
containers(IResourceManager)
# view interfaces
class IView(ILoopsObject):
""" A view is a user interface component that provides access to one
or more concepts, resources, or other views.
"""
title = schema.TextLine(
title=_(u'Title'),
description=_(u'Title of the view; this will appear e.g. in menus'),
default=u'',
required=True)
description = schema.Text(
title=_(u'Description'),
description=_(u'Detailed description, e.g. for tooltips or listings'),
default=u'',
required=False)
#target = Attribute('Target object that is referenced by this view')
target = schema.Choice(
title=_(u'Target'),
description=_(u'The target object of this view or node'),
default=None,
source="loops.targetSource",
required=False)
class IBaseNode(IOrderedContainer):
""" Common abstract base class for different types of nodes
"""
def getLoopsRoot():
""" Return the loops root object.
"""
class INode(IView, IBaseNode):
""" A node is a view that may contain other views, thus building a
menu or folder hierarchy.
A node may be a content object on its own; for this reason it
has a body attribute that may be shown e.g. on web pages.
"""
contains(IView)
nodeType = schema.Choice(
title=_(u'Node Type'),
description=_(u'Type of the node'),
source=util.KeywordVocabulary((
('text', _(u'Text')),
('page', _(u'Page')),
('menu', _(u'Menu')),
('info', _(u'Info')),
)),
default='info',
required=True)
body = schema.Text(
title=_(u'Body'),
description=_(u'Textual body that may be shown in addition to '
'or instead of information coming from the target'),
default=u'',
required=False)
contentType = Attribute(_(u'Content type (format) of the body'))
def getParentNode(nodeTypes=None):
""" Return the next node up the node hierarchy. If the nodeTypes
parameter is given, search for the next node that has one of
the types in the nodeTypes list.
Return None if no suitable node can be found.
"""
def getChildNodes(nodeTypes=None):
""" Return a sequence of nodes contained in this node. If the
nodeTypes parameter is given return only nodes of these types.
"""
def getMenu():
""" Return the menu node this node belongs to or None if not found.
"""
def getPage():
""" Return a page node or None if not found.
"""
def getMenuItems():
""" Return the menu items belonging to this object (that should be
a menu).
"""
def getTextItems():
""" Return the text items belonging to this object.
"""
class IViewManager(ILoopsObject, IBaseNode):
""" A manager/container for views.
"""
contains(IView)
class INodeContained(Interface):
containers(INode, IViewManager)
# schemas to be used by forms on view/node objects
class ITargetProperties(Interface):
""" Fields used for specifying a view's or node's target.
"""
targetType = schema.Choice(
title=_(u'Target Type'),
description=_(u'Type of the target'),
values=('loops.resource.Document', 'loops.resource.MediaAsset',
'loops.concept.Concept'),
default=None,
required=False)
targetUri = schema.TextLine(
title=_(u'Target URI'),
description=_(u'An URI being a unique reference to the target'),
required=False)
class INodeConfigSchema(INode, ITargetProperties):
""" All fields that may be shown in the node config form.
"""
createTarget = schema.Bool(
title=_(u'Create Target'),
description=_(u'Should a new target object be created?'),
required=False)
# the loops top-level container
#class ILoops(ILoopsObject, IFolder):
class ILoops(ILoopsObject):
""" The top-level object of a loops site.
"""
contains(IConceptManager, IResourceManager, IViewManager)
def getLoopsUri(obj):
""" Return the relativ path to obj, starting with '.loops/...'.
"""
def loopsTraverse(uri):
""" Retrieve object specified by the loops uri (starting with
'.loops/') given.
"""
def getConceptManager():
""" Return the (default) concept manager.
"""
def getResourceManager():
""" Return the (default) resource manager.
"""
def getViewManager():
""" Return the (default) view manager.
"""
class ILoopsContained(Interface):
containers(ILoops)
# relation interfaces
class ITargetRelation(IRelation):
""" (Marker) interfaces for relations pointing to a target
of a view or node.
"""
class IConceptRelation(IRelation):
""" (Marker) interfaces for relations originating from a concept.
"""
# interfaces for catalog indexes
class IIndexAttributes(Interface):
""" Attributes odr methods providing index values. Typically provided
by an adapter.
"""
def title():
""" Return a text containing title and similar attributes to be
indexed by a full-text index.
"""
def text():
""" Return a text with all parts to be indexed by a full-text index.
"""
def type():
""" Return a string that identifies the type of the object.
"""