##// END OF EJS Templates
fixes issue #756 cleanup repos didn't properly compose paths of repos to be cleaned up....
fixes issue #756 cleanup repos didn't properly compose paths of repos to be cleaned up. - it just worked on repos on root filesystem

File last commit:

r3289:666fc6ac beta
r3336:f62d8055 beta
Show More
search.py
146 lines | 5.5 KiB | text/x-python | PythonLexer
updated docs on every controller
r861 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.search
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
code garden
r2646 Search controller for RhodeCode
source code cleanup: remove trailing white space, normalize file endings
r1203
updated docs on every controller
r861 :created_on: Aug 7, 2010
:author: marcink
2012 copyrights
r1824 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
updated docs on every controller
r861 :license: GPLv3, see COPYING for more details.
"""
fixed license issue #149
r1206 # 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 3 of the License, or
# (at your option) any later version.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
renamed project to rhodecode
r547 # 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.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
renamed project to rhodecode
r547 # You should have received a copy of the GNU General Public License
fixed license issue #149
r1206 # along with this program. If not, see <http://www.gnu.org/licenses/>.
updated docs on every controller
r861 import logging
import traceback
#589 search urlgenerator didn't properly escape special chars on url
r2913 import urllib
updated docs on every controller
r861 from pylons.i18n.translation import _
bumbed whoosh to 2.3.X series...
r1995 from pylons import request, config, tmpl_context as c
updated docs on every controller
r861
renamed project to rhodecode
r547 from rhodecode.lib.auth import LoginRequired
Mads Kiilerich
search: repo search is a repo thing - show it that way in ui and url
r3289 from rhodecode.lib.base import BaseRepoController, render
code garden
r2646 from rhodecode.lib.indexers import CHGSETS_SCHEMA, SCHEMA, CHGSET_IDX_NAME, \
IDX_NAME, WhooshResultWrapper
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
whoosh errors don't crash entire app now, just display an error and log exception instead
r1303 from whoosh.query import Phrase, Wildcard, Term, Prefix
fixes issue #454 Search results under Windows include preceeding backslash
r2319 from rhodecode.model.repo import RepoModel
failsafe the GET `page` argument
r2845 from rhodecode.lib.utils2 import safe_str, safe_int
renamed project to rhodecode
r547
#589 search urlgenerator didn't properly escape special chars on url
r2913
renamed project to rhodecode
r547 log = logging.getLogger(__name__)
pep8ify
r1212
Mads Kiilerich
search: repo search is a repo thing - show it that way in ui and url
r3289 class SearchController(BaseRepoController):
renamed project to rhodecode
r547
@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
Mads Kiilerich
search: repo search is a repo thing - show it that way in ui and url
r3289 def index(self, repo_name=None):
c.repo_name = repo_name
renamed project to rhodecode
r547 c.formated_results = []
c.runtime = ''
c.cur_query = request.GET.get('q', None)
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 c.cur_type = request.GET.get('type', 'content')
pep8ify
r1212 c.cur_search = search_type = {'content': 'content',
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 'commit': 'message',
pep8ify
r1212 'path': 'path',
code garden
r2646 'repository': 'repository'
}.get(c.cur_type, 'content')
Added searching for file names within the repository in rhodecode
r556
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 index_name = {
'content': IDX_NAME,
'commit': CHGSET_IDX_NAME,
code garden
r2646 'path': IDX_NAME
}.get(c.cur_type, IDX_NAME)
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640
schema_defn = {
'content': SCHEMA,
'commit': CHGSETS_SCHEMA,
code garden
r2646 'path': SCHEMA
}.get(c.cur_type, SCHEMA)
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640
log.debug('IDX: %s' % index_name)
log.debug('SCHEMA: %s' % schema_defn)
renamed project to rhodecode
r547 if c.cur_query:
cur_query = c.cur_query.lower()
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 log.debug(cur_query)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
renamed project to rhodecode
r547 if c.cur_query:
failsafe the GET `page` argument
r2845 p = safe_int(request.params.get('page', 1), 1)
renamed project to rhodecode
r547 highlight_items = set()
try:
pep8ify
r1212 idx = open_dir(config['app_conf']['index_dir'],
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 indexname=index_name)
renamed project to rhodecode
r547 searcher = idx.searcher()
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 qp = QueryParser(search_type, schema=schema_defn)
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))
bumbed whoosh to 2.3.X series...
r1995 # extract words for highlight
renamed project to rhodecode
r547 if isinstance(query, Phrase):
highlight_items.update(query.words)
whoosh errors don't crash entire app now, just display an error and log exception instead
r1303 elif isinstance(query, Prefix):
highlight_items.add(query.text)
renamed project to rhodecode
r547 else:
for i in query.all_terms():
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 if i[0] in ['content', 'message']:
renamed project to rhodecode
r547 highlight_items.add(i[1])
matcher = query.matcher(searcher)
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
Indra Talip
create an index for commit messages and the ability to search them and see results
r2640 log.debug('query: %s' % query)
log.debug('hl terms: %s' % highlight_items)
renamed project to rhodecode
r547 results = searcher.search(query)
res_ln = len(results)
bumbed whoosh to 2.3.X series...
r1995 c.runtime = '%s results (%.3f seconds)' % (
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):
#589 search urlgenerator didn't properly escape special chars on url
r2913 q = urllib.quote(safe_str(c.cur_query))
Added searching for file names within the repository in rhodecode
r556 return update_params("?q=%s&type=%s" \
#589 search urlgenerator didn't properly escape special chars on url
r2913 % (q, safe_str(c.cur_type)), **kw)
fixes issue #454 Search results under Windows include preceeding backslash
r2319 repo_location = RepoModel().repos_path
renamed project to rhodecode
r547 c.formated_results = Page(
fixes issue #454 Search results under Windows include preceeding backslash
r2319 WhooshResultWrapper(search_type, searcher, matcher,
highlight_items, repo_location),
bumbed whoosh to 2.3.X series...
r1995 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')
whoosh errors don't crash entire app now, just display an error and log exception instead
r1303 except (Exception):
log.error(traceback.format_exc())
c.runtime = _('An error occurred during this search operation')
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')