case-insensitive search for non-ASCII - improved
This commit is contained in:
parent
d2ea3a6c19
commit
4a04ec898e
23
cps/db.py
23
cps/db.py
|
@ -26,8 +26,11 @@ def title_sort(title):
|
||||||
title = title.replace(prep, '') + ', ' + prep
|
title = title.replace(prep, '') + ', ' + prep
|
||||||
return title.strip()
|
return title.strip()
|
||||||
|
|
||||||
def lowercase(string):
|
def lcase(s):
|
||||||
return string.lower()
|
return s.lower()
|
||||||
|
|
||||||
|
def ucase(s):
|
||||||
|
return s.upper()
|
||||||
|
|
||||||
Base = declarative_base()
|
Base = declarative_base()
|
||||||
|
|
||||||
|
@ -128,7 +131,7 @@ class Tags(Base):
|
||||||
__tablename__ = 'tags'
|
__tablename__ = 'tags'
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True, autoincrement=True)
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
||||||
name = Column(String(collation = 'NOCASE'))
|
name = Column(String)
|
||||||
|
|
||||||
def __init__(self, name):
|
def __init__(self, name):
|
||||||
self.name = name
|
self.name = name
|
||||||
|
@ -141,7 +144,7 @@ class Authors(Base):
|
||||||
__tablename__ = 'authors'
|
__tablename__ = 'authors'
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True)
|
id = Column(Integer, primary_key=True)
|
||||||
name = Column(String(collation = 'U_NOCASE'))
|
name = Column(String)
|
||||||
sort = Column(String)
|
sort = Column(String)
|
||||||
link = Column(String)
|
link = Column(String)
|
||||||
|
|
||||||
|
@ -158,7 +161,7 @@ class Series(Base):
|
||||||
__tablename__ = 'series'
|
__tablename__ = 'series'
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True)
|
id = Column(Integer, primary_key=True)
|
||||||
name = Column(String(collation = 'U_NOCASE'))
|
name = Column(String)
|
||||||
sort = Column(String)
|
sort = Column(String)
|
||||||
|
|
||||||
def __init__(self, name, sort):
|
def __init__(self, name, sort):
|
||||||
|
@ -198,7 +201,7 @@ class Publishers(Base):
|
||||||
__tablename__ = 'publishers'
|
__tablename__ = 'publishers'
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True)
|
id = Column(Integer, primary_key=True)
|
||||||
name = Column(String(collation = 'U_NOCASE'))
|
name = Column(String)
|
||||||
sort = Column(String)
|
sort = Column(String)
|
||||||
|
|
||||||
def __init__(self, name,sort):
|
def __init__(self, name,sort):
|
||||||
|
@ -235,7 +238,7 @@ class Books(Base):
|
||||||
DEFAULT_PUBDATE = "0101-01-01 00:00:00+00:00"
|
DEFAULT_PUBDATE = "0101-01-01 00:00:00+00:00"
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True)
|
id = Column(Integer, primary_key=True)
|
||||||
title = Column(String(collation = 'U_NOCASE'))
|
title = Column(String)
|
||||||
sort = Column(String)
|
sort = Column(String)
|
||||||
author_sort = Column(String)
|
author_sort = Column(String)
|
||||||
timestamp = Column(String)
|
timestamp = Column(String)
|
||||||
|
@ -296,7 +299,6 @@ def setup_db():
|
||||||
global engine
|
global engine
|
||||||
global session
|
global session
|
||||||
global cc_classes
|
global cc_classes
|
||||||
global conn
|
|
||||||
|
|
||||||
if config.config_calibre_dir is None or config.config_calibre_dir == u'':
|
if config.config_calibre_dir is None or config.config_calibre_dir == u'':
|
||||||
content = ub.session.query(ub.Settings).first()
|
content = ub.session.query(ub.Settings).first()
|
||||||
|
@ -322,7 +324,8 @@ def setup_db():
|
||||||
ub.session.commit()
|
ub.session.commit()
|
||||||
config.loadSettings()
|
config.loadSettings()
|
||||||
conn.connection.create_function('title_sort', 1, title_sort)
|
conn.connection.create_function('title_sort', 1, title_sort)
|
||||||
conn.connection.create_function('lower', 1, lowercase)
|
conn.connection.create_function('lower', 1, lcase)
|
||||||
|
conn.connection.create_function('upper', 1, ucase)
|
||||||
|
|
||||||
if not cc_classes:
|
if not cc_classes:
|
||||||
cc = conn.execute("SELECT id, datatype FROM custom_columns")
|
cc = conn.execute("SELECT id, datatype FROM custom_columns")
|
||||||
|
@ -369,6 +372,6 @@ def setup_db():
|
||||||
|
|
||||||
# Base.metadata.create_all(engine)
|
# Base.metadata.create_all(engine)
|
||||||
Session = sessionmaker()
|
Session = sessionmaker()
|
||||||
Session.configure(bind=conn)
|
Session.configure(bind=engine)
|
||||||
session = Session()
|
session = Session()
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -659,6 +659,7 @@ def feed_normal_search():
|
||||||
|
|
||||||
def feed_search(term):
|
def feed_search(term):
|
||||||
if term:
|
if term:
|
||||||
|
db.session.connection().connection.connection.create_function("lower", 1, db.lcase)
|
||||||
entries = db.session.query(db.Books).filter(db.or_(db.Books.tags.any(db.Tags.name.ilike("%" + term + "%")),
|
entries = db.session.query(db.Books).filter(db.or_(db.Books.tags.any(db.Tags.name.ilike("%" + term + "%")),
|
||||||
db.Books.series.any(db.Series.name.ilike("%" + term + "%")),
|
db.Books.series.any(db.Series.name.ilike("%" + term + "%")),
|
||||||
db.Books.authors.any(db.Authors.name.ilike("%" + term + "%")),
|
db.Books.authors.any(db.Authors.name.ilike("%" + term + "%")),
|
||||||
|
@ -1576,9 +1577,10 @@ def update():
|
||||||
@app.route("/search", methods=["GET"])
|
@app.route("/search", methods=["GET"])
|
||||||
@login_required_if_no_ano
|
@login_required_if_no_ano
|
||||||
def search():
|
def search():
|
||||||
term = request.args.get("query").strip()
|
term = request.args.get("query").strip().lower()
|
||||||
|
|
||||||
if term:
|
if term:
|
||||||
|
db.session.connection().connection.connection.create_function("lower", 1, db.lcase)
|
||||||
entries = db.session.query(db.Books).filter(db.or_(db.Books.tags.any(db.Tags.name.ilike("%" + term + "%")),
|
entries = db.session.query(db.Books).filter(db.or_(db.Books.tags.any(db.Tags.name.ilike("%" + term + "%")),
|
||||||
db.Books.series.any(db.Series.name.ilike("%" + term + "%")),
|
db.Books.series.any(db.Series.name.ilike("%" + term + "%")),
|
||||||
db.Books.authors.any(db.Authors.name.ilike("%" + term + "%")),
|
db.Books.authors.any(db.Authors.name.ilike("%" + term + "%")),
|
||||||
|
@ -1598,6 +1600,7 @@ def search():
|
||||||
@login_required_if_no_ano
|
@login_required_if_no_ano
|
||||||
def advanced_search():
|
def advanced_search():
|
||||||
if request.method == 'GET':
|
if request.method == 'GET':
|
||||||
|
db.session.connection().connection.connection.create_function("lower", 1, db.lcase)
|
||||||
q = db.session.query(db.Books)
|
q = db.session.query(db.Books)
|
||||||
include_tag_inputs = request.args.getlist('include_tag')
|
include_tag_inputs = request.args.getlist('include_tag')
|
||||||
exclude_tag_inputs = request.args.getlist('exclude_tag')
|
exclude_tag_inputs = request.args.getlist('exclude_tag')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user