##// END OF EJS Templates
added repo creation filesystem test
added repo creation filesystem test

File last commit:

r902:07a6e8c6 beta
r1037:b1d6478d beta
Show More
search.py
120 lines | 4.5 KiB | text/x-python | PythonLexer
updated docs on every controller
r861 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.search
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Search controller for rhodecode
:created_on: Aug 7, 2010
:author: marcink
fixed copyright year to 2011
r902 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
updated docs on every controller
r861 :license: GPLv3, see COPYING for more details.
"""
renamed project to rhodecode
r547 # 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; version 2
# of the License or (at your opinion) any later version of the license.
#
# 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., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
updated docs on every controller
r861 import logging
import traceback
from pylons.i18n.translation import _
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 from pylons import request, response, config, session, tmpl_context as c, url
renamed project to rhodecode
r547 from pylons.controllers.util import abort, redirect
updated docs on every controller
r861
renamed project to rhodecode
r547 from rhodecode.lib.auth import LoginRequired
from rhodecode.lib.base import BaseController, render
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 from rhodecode.lib.indexers import SCHEMA, IDX_NAME, ResultWrapper
updated docs on every controller
r861
renamed project to rhodecode
r547 from webhelpers.paginate import Page
from webhelpers.util import update_params
updated docs on every controller
r861
renamed project to rhodecode
r547 from whoosh.index import open_dir, EmptyIndexError
from whoosh.qparser import QueryParser, QueryParserError
from whoosh.query import Phrase
log = logging.getLogger(__name__)
class SearchController(BaseController):
@LoginRequired()
def __before__(self):
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 super(SearchController, self).__before__()
renamed project to rhodecode
r547
def index(self, search_repo=None):
c.repo_name = search_repo
c.formated_results = []
c.runtime = ''
c.cur_query = request.GET.get('q', None)
Added searching for file names within the repository in rhodecode
r556 c.cur_type = request.GET.get('type', 'source')
c.cur_search = search_type = {'content':'content',
'commit':'content',
'path':'path',
'repository':'repository'}\
.get(c.cur_type, 'content')
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 if c.cur_query:
cur_query = c.cur_query.lower()
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 if c.cur_query:
p = int(request.params.get('page', 1))
highlight_items = set()
try:
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 idx = open_dir(config['app_conf']['index_dir']
, indexname=IDX_NAME)
renamed project to rhodecode
r547 searcher = idx.searcher()
Added searching for file names within the repository in rhodecode
r556 qp = QueryParser(search_type, schema=SCHEMA)
renamed project to rhodecode
r547 if c.repo_name:
cur_query = u'repository:%s %s' % (c.repo_name, cur_query)
try:
query = qp.parse(unicode(cur_query))
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 if isinstance(query, Phrase):
highlight_items.update(query.words)
else:
for i in query.all_terms():
if i[0] == 'content':
highlight_items.add(i[1])
matcher = query.matcher(searcher)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 log.debug(query)
log.debug(highlight_items)
results = searcher.search(query)
res_ln = len(results)
c.runtime = '%s results (%.3f seconds)' \
Added searching for file names within the repository in rhodecode
r556 % (res_ln, results.runtime)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 def url_generator(**kw):
Added searching for file names within the repository in rhodecode
r556 return update_params("?q=%s&type=%s" \
% (c.cur_query, c.cur_search), **kw)
renamed project to rhodecode
r547
c.formated_results = Page(
Added searching for file names within the repository in rhodecode
r556 ResultWrapper(search_type, searcher, matcher,
highlight_items),
renamed project to rhodecode
r547 page=p, item_count=res_ln,
items_per_page=10, url=url_generator)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 except QueryParserError:
c.runtime = _('Invalid search query. Try quoting it.')
searcher.close()
except (EmptyIndexError, IOError):
log.error(traceback.format_exc())
log.error('Empty Index data')
updated docs on every controller
r861 c.runtime = _('There is no index to search in. '
'Please run whoosh indexer')
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 # Return a rendered template
return render('/search/search.html')