realms-wiki/realms/modules/search/commands.py

36 lines
1,004 B
Python
Raw Normal View History

2014-11-13 01:06:56 +02:00
import click
from flask import current_app
from realms import search, cli_group
2014-11-13 01:06:56 +02:00
from realms.modules.wiki.models import Wiki
@cli_group(short_help="Search Module")
2014-11-13 01:06:56 +02:00
def cli():
pass
@cli.command()
def rebuild_index():
""" Rebuild search index
"""
if current_app.config.get('SEARCH_TYPE') == 'simple':
2014-11-13 01:06:56 +02:00
click.echo("Search type is simple, try using elasticsearch.")
return
# Wiki
search.delete_index('wiki')
wiki = Wiki(current_app.config['WIKI_PATH'])
for entry in wiki.get_index():
page = wiki.get_page(entry['name'])
if not page:
# Some non-markdown files may have issues
continue
# TODO add email?
body = dict(name=page.name,
content=page.data,
message=page.info['message'],
username=page.info['author'],
updated_on=entry['mtime'],
created_on=entry['ctime'])
search.index_wiki(name, body)