Exemplo n.º 1
0
def document():
    """Handles document display requests
    """
    http_status = 200
    root_dir = FULL_INDEX_PATH
    full_path = request.args.get('path')
    is_raw = (request.args.get('raw') == 'true')
    # allow `lines` or `hl` to highlight the target lines
    hl_str = request.args.get('lines') or request.args.get('hl', '')
    # if the full path wasn't appended, then append it (assumes path exist in default index path)
    if root_dir not in full_path:
        full_path = os.path.join(root_dir, full_path)
    search_text = request.args.get('q')
    pagenum = request.args.get('p')

    # perform the text search, get wrapped results
    results = results_from_search_text(full_path, isPath=True)
    if not results:
        app.logger.error('Unable to find document: %s' % full_path)
        abort(404)
    doc = results.items[0]

    # grab contents, if file gone, then send 404 error message
    try:
        doc_contents = read_file(full_path)
    except IOError:
        app.logger.error('Document no longer exists: %s' % full_path)
        doc_contents = "Document does not exist"
        http_status = 404

    if is_raw:
        # dump the document text
        return Response(doc_contents, mimetype='text/plain')
    db_record = db.get_raw_file_record(full_path)

    if http_status == 200:
        # get syntax highlighted html
        trn = transformer.Transformer()
        doc_html = trn.to_html(doc_contents,
                               doc.result.filename,
                               highlight_lines=hl_str)
    else:
        doc_html = doc_contents

    # build response
    response = {
        "title": doc.result.filename,
        'html_css_class': 'document',
        'doc': doc,
        'contents': doc_html,
        'search_text': search_text,
        'page_number': pagenum,
        'last_modified': db_record.get('mod_date'),
        'http_status': http_status
    }
    add_default_response(response)
    return render_template('document.html', **response), http_status
Exemplo n.º 2
0
def results_from_search_text(text, pagenum=1, isPath=False, type=None):
    """Returns the results from the search using the given text, populated with the transformed items
    """
    idx = indexer.get_indexer(writable=False).get_index()
    # find something in the index
    if isPath:
        results = idx.search_path(text)
    else:
        try:
            results = idx.search(text, pagenum, core_settings.RESULTS_PER_PAGE)
        except ValueError as e:
            # This assumes the value error resulted from an page count issue
            app.logger.error('Out of page bounds: %s' % e)
            return []
    # transform the results
    trns = transformer.Transformer()
    return trns.transform_results(results, type)
Exemplo n.º 3
0
 def _test_html_transform(self):
     """Tests the HTML transform operation
     """
     # index a file for the search
     path = os.path.join(self.test_dir, 'text/objc_example.m')
     idxr = indexer.get_indexer(name='test', rebuild_index=True)
     idxr.index_text(path)
     idx = idxr.get_index()
     # find something in the file
     results = idx.search('nsstring')
     self.assertTrue(len(results) == 1, 'bad results count')
     # transform the results
     trns = transformer.Transformer()
     items = trns.transform_results(results)
     self.assertTrue(len(items) == 1, 'no transformed items')
     html = items[0].html
     # debug()
     self.assertTrue(len(html) > 0, 'no HTML returned')
Exemplo n.º 4
0
def results_from_search_text(text, pagenum=1, isPath=False, type=None):
    """Returns the results from the search using the given text, populated with the transformed items
    """
    idx = indexer.get_indexer(writable=False).get_index()
    # find something in the index
    if isPath:
        results = idx.search_path(text)
    else:
        try:
            results = idx.search(text, pagenum, core_settings.RESULTS_PER_PAGE)
        except ValueError, e:
            # This assumes the value error resulted from an page count issue
            app.logger.error('Out of page bounds: %s' % e)
            return []
    # transform the results
    trns = transformer.Transformer()
    return trns.transform_results(results, type)


def add_default_response(response):
    """Adds the default response parameters to the response.
    """
    response['site_banner_text'] = core_settings.SITE_BANNER_TEXT
    response['site_title'] = core_settings.SITE_TITLE
    response['site_banner_color'] = core_settings.SITE_BANNER_COLOR
    response['last_indexed'] = SherlockMeta.get('last_indexed') or 'Never'


@app.route('/')
def index():
    """Handles index requests