mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
125 lines
4.4 KiB
Python
125 lines
4.4 KiB
Python
|
#!/usr/bin/env python2
|
||
|
# -*-coding:UTF-8 -*
|
||
|
|
||
|
'''
|
||
|
Flask functions and routes for the trending modules page
|
||
|
'''
|
||
|
import redis
|
||
|
import json
|
||
|
import os
|
||
|
import flask
|
||
|
from flask import Flask, render_template, jsonify, request
|
||
|
|
||
|
import Paste
|
||
|
|
||
|
# ============ VARIABLES ============
|
||
|
import Flask_config
|
||
|
|
||
|
app = Flask_config.app
|
||
|
cfg = Flask_config.cfg
|
||
|
r_serv_pasteName = Flask_config.r_serv_pasteName
|
||
|
max_preview_char = Flask_config.max_preview_char
|
||
|
max_preview_modal = Flask_config.max_preview_modal
|
||
|
# ============ FUNCTIONS ============
|
||
|
|
||
|
|
||
|
# ============ ROUTES ============
|
||
|
|
||
|
@app.route("/search", methods=['POST'])
|
||
|
def search():
|
||
|
query = request.form['query']
|
||
|
q = []
|
||
|
q.append(query)
|
||
|
r = [] #complete path
|
||
|
c = [] #preview of the paste content
|
||
|
paste_date = []
|
||
|
paste_size = []
|
||
|
num_elem_to_get = 50
|
||
|
|
||
|
# Search filename
|
||
|
for path in r_serv_pasteName.smembers(q[0]):
|
||
|
r.append(path)
|
||
|
paste = Paste.Paste(path)
|
||
|
content = paste.get_p_content().decode('utf8', 'ignore')
|
||
|
content_range = max_preview_char if len(content)>max_preview_char else len(content)-1
|
||
|
c.append(content[0:content_range])
|
||
|
curr_date = str(paste._get_p_date())
|
||
|
curr_date = curr_date[0:4]+'/'+curr_date[4:6]+'/'+curr_date[6:]
|
||
|
paste_date.append(curr_date)
|
||
|
paste_size.append(paste._get_p_size())
|
||
|
|
||
|
# Search full line
|
||
|
from whoosh import index
|
||
|
from whoosh.fields import Schema, TEXT, ID
|
||
|
schema = Schema(title=TEXT(stored=True), path=ID(stored=True), content=TEXT)
|
||
|
|
||
|
indexpath = os.path.join(os.environ['AIL_HOME'], cfg.get("Indexer", "path"))
|
||
|
ix = index.open_dir(indexpath)
|
||
|
from whoosh.qparser import QueryParser
|
||
|
with ix.searcher() as searcher:
|
||
|
query = QueryParser("content", ix.schema).parse(" ".join(q))
|
||
|
results = searcher.search_page(query, 1, pagelen=num_elem_to_get)
|
||
|
for x in results:
|
||
|
r.append(x.items()[0][1])
|
||
|
paste = Paste.Paste(x.items()[0][1])
|
||
|
content = paste.get_p_content().decode('utf8', 'ignore')
|
||
|
content_range = max_preview_char if len(content)>max_preview_char else len(content)-1
|
||
|
c.append(content[0:content_range])
|
||
|
curr_date = str(paste._get_p_date())
|
||
|
curr_date = curr_date[0:4]+'/'+curr_date[4:6]+'/'+curr_date[6:]
|
||
|
paste_date.append(curr_date)
|
||
|
paste_size.append(paste._get_p_size())
|
||
|
results = searcher.search(query)
|
||
|
num_res = len(results)
|
||
|
|
||
|
return render_template("search.html", r=r, c=c, query=request.form['query'], paste_date=paste_date, paste_size=paste_size, char_to_display=max_preview_modal, num_res=num_res)
|
||
|
|
||
|
|
||
|
@app.route("/get_more_search_result", methods=['POST'])
|
||
|
def get_more_search_result():
|
||
|
query = request.form['query']
|
||
|
q = []
|
||
|
q.append(query)
|
||
|
page_offset = int(request.form['page_offset'])
|
||
|
num_elem_to_get = 50
|
||
|
|
||
|
path_array = []
|
||
|
preview_array = []
|
||
|
date_array = []
|
||
|
size_array = []
|
||
|
|
||
|
from whoosh import index
|
||
|
from whoosh.fields import Schema, TEXT, ID
|
||
|
schema = Schema(title=TEXT(stored=True), path=ID(stored=True), content=TEXT)
|
||
|
|
||
|
indexpath = os.path.join(os.environ['AIL_HOME'], cfg.get("Indexer", "path"))
|
||
|
ix = index.open_dir(indexpath)
|
||
|
from whoosh.qparser import QueryParser
|
||
|
with ix.searcher() as searcher:
|
||
|
query = QueryParser("content", ix.schema).parse(" ".join(q))
|
||
|
results = searcher.search_page(query, page_offset, num_elem_to_get)
|
||
|
for x in results:
|
||
|
path_array.append(x.items()[0][1])
|
||
|
paste = Paste.Paste(x.items()[0][1])
|
||
|
content = paste.get_p_content().decode('utf8', 'ignore')
|
||
|
content_range = max_preview_char if len(content)>max_preview_char else len(content)-1
|
||
|
preview_array.append(content[0:content_range])
|
||
|
curr_date = str(paste._get_p_date())
|
||
|
curr_date = curr_date[0:4]+'/'+curr_date[4:6]+'/'+curr_date[6:]
|
||
|
date_array.append(curr_date)
|
||
|
size_array.append(paste._get_p_size())
|
||
|
to_return = {}
|
||
|
to_return["path_array"] = path_array
|
||
|
to_return["preview_array"] = preview_array
|
||
|
to_return["date_array"] = date_array
|
||
|
to_return["size_array"] = size_array
|
||
|
print "len(path_array)="+str(len(path_array))
|
||
|
if len(path_array) < num_elem_to_get: #pagelength
|
||
|
to_return["moreData"] = False
|
||
|
else:
|
||
|
to_return["moreData"] = True
|
||
|
|
||
|
return jsonify(to_return)
|
||
|
|
||
|
|