[7193] | 1 | ## $Id: catalog.py 7321 2011-12-10 06:15:17Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[5090] | 18 | """Components to help cataloging and searching objects. |
---|
| 19 | """ |
---|
[3521] | 20 | import grok |
---|
[5091] | 21 | from grok import index |
---|
[3521] | 22 | from hurry.query import Eq |
---|
[5090] | 23 | from hurry.query.interfaces import IQuery |
---|
| 24 | from hurry.query.query import Query |
---|
| 25 | from zope.catalog.catalog import ResultSet |
---|
[5091] | 26 | from zope.component import getUtility |
---|
[5090] | 27 | from zope.intid.interfaces import IIntIds |
---|
| 28 | |
---|
[4920] | 29 | from waeup.sirp.app import University |
---|
[5007] | 30 | from waeup.sirp.interfaces import IQueryResultItem |
---|
[3521] | 31 | |
---|
[6447] | 32 | # not yet used |
---|
[7321] | 33 | class SIRPQuery(Query): |
---|
[6207] | 34 | """A hurry.query-like query that supports also ``apply``. |
---|
| 35 | """ |
---|
| 36 | grok.implements(IQuery) |
---|
[4789] | 37 | |
---|
[6207] | 38 | def apply(self, query): |
---|
| 39 | """Get a catalog's BTree set of intids conforming to a query. |
---|
| 40 | """ |
---|
| 41 | return query.apply() |
---|
[5090] | 42 | |
---|
[6207] | 43 | def searchResults(self, query): |
---|
| 44 | """Get a set of ZODB objects conforming to a query. |
---|
| 45 | """ |
---|
| 46 | results = self.apply(query) |
---|
| 47 | if results is not None: |
---|
| 48 | uidutil = getUtility(IIntIds) |
---|
| 49 | results = ResultSet(results, uidutil) |
---|
| 50 | return results |
---|
[5090] | 51 | |
---|
[7321] | 52 | grok.global_utility(SIRPQuery) |
---|
[5090] | 53 | |
---|
[6447] | 54 | # not yet used |
---|
[4789] | 55 | class QueryResultItem(object): |
---|
[6207] | 56 | grok.implements(IQueryResultItem) |
---|
| 57 | url = None |
---|
| 58 | title = None |
---|
| 59 | description = None |
---|
[6116] | 60 | |
---|
[6207] | 61 | def __init__(self, context, view): |
---|
| 62 | self.context = context |
---|
| 63 | self.url = view.url(context) |
---|
| 64 | self.title = context.title |
---|
| 65 | self.description = '' |
---|