Hybrid property for sort_query

This commit is contained in:
Konsta Vesterinen
2013-08-21 13:18:55 +03:00
parent 863232be79
commit 3ded3ce9c3
3 changed files with 24 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ class QuerySorter(object):
if sort['entity'] and table.name != sort['entity']:
continue
return self.assign_entity_attr_order_by(entity, sort)
return self.query
def assign_entity_attr_order_by(self, entity, sort):
@@ -67,6 +68,11 @@ class QuerySorter(object):
attr = attr.property.columns[0].name
return self.query.order_by(sort['func'](attr))
# Check hybrid properties.
if hasattr(entity, sort['attr']):
return self.query.order_by(getattr(entity, sort['attr']))
return self.query
def parse_sort_arg(self, arg):

View File

@@ -4,6 +4,7 @@ import sqlalchemy as sa
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.ext.hybrid import hybrid_property
from sqlalchemy_utils import InstrumentedList
from sqlalchemy_utils import coercion_listener
@@ -55,6 +56,18 @@ class TestCase(object):
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.Unicode(255))
@hybrid_property
def articles_count(self):
return len(self.articles)
@articles_count.expression
def articles_count(cls):
return (
sa.select([sa.func.count(self.Article.id)])
.where(self.Article.category_id == self.Category.id)
.label('article_count')
)
class Article(self.Base):
__tablename__ = 'article'
id = sa.Column(sa.Integer, primary_key=True)

View File

@@ -93,3 +93,8 @@ class TestSortQuery(TestCase):
query = self.session.query(self.Category)
sorted_query = sort_query(query, '-article_count')
assert 'article_count DESC' in str(sorted_query)
def test_sort_by_hybrid_property(self):
query = self.session.query(self.Category)
query = sort_query(query, 'articles_count')
assert 'ORDER BY (SELECT count(article.id) AS count_1' in str(query)