1 | ## $Id: catalog.py 7819 2012-03-08 22:28:46Z 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 | ## |
---|
18 | """Components to help cataloging and searching objects. |
---|
19 | """ |
---|
20 | import grok |
---|
21 | from grok import index |
---|
22 | from hurry.query import Eq |
---|
23 | from hurry.query.interfaces import IQuery |
---|
24 | from hurry.query.query import Query |
---|
25 | from zope.catalog.catalog import ResultSet |
---|
26 | from zope.component import getUtility |
---|
27 | from zope.intid.interfaces import IIntIds |
---|
28 | |
---|
29 | from waeup.kofa.app import University |
---|
30 | from waeup.kofa.interfaces import IQueryResultItem |
---|
31 | |
---|
32 | # not yet used |
---|
33 | class KofaQuery(Query): |
---|
34 | """A hurry.query-like query that supports also ``apply``. |
---|
35 | """ |
---|
36 | grok.implements(IQuery) |
---|
37 | |
---|
38 | def apply(self, query): |
---|
39 | """Get a catalog's BTree set of intids conforming to a query. |
---|
40 | """ |
---|
41 | return query.apply() |
---|
42 | |
---|
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 |
---|
51 | |
---|
52 | grok.global_utility(KofaQuery) |
---|
53 | |
---|
54 | # not yet used |
---|
55 | class QueryResultItem(object): |
---|
56 | grok.implements(IQueryResultItem) |
---|
57 | url = None |
---|
58 | title = None |
---|
59 | description = None |
---|
60 | |
---|
61 | def __init__(self, context, view): |
---|
62 | self.context = context |
---|
63 | self.url = view.url(context) |
---|
64 | self.title = context.title |
---|
65 | self.description = '' |
---|