author | Rémi Cardona <remi.cardona@logilab.fr> |
Tue, 13 Oct 2015 15:09:22 +0200 | |
changeset 10663 | 54b8a1f249fb |
parent 10612 | 84468b90e9c1 |
child 10675 | e0db937f5add |
permissions | -rw-r--r-- |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
1 |
# copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""base application's entities class implementation: `AnyEntity`""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
10612
84468b90e9c1
[py3k] basestring → six.string_types
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10411
diff
changeset
|
22 |
from six import string_types |
0 | 23 |
|
8930
6a02be304486
remove unused import
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8899
diff
changeset
|
24 |
from logilab.common.decorators import classproperty |
0 | 25 |
|
8748
f5027f8d2478
drop typed_eid() in favour of int() (closes #2742462)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8450
diff
changeset
|
26 |
from cubicweb import Unauthorized |
713
5adb6d8e5fa7
update imports of "cubicweb.common.entity" and use the new module path "cubicweb.entity"
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
27 |
from cubicweb.entity import Entity |
0 | 28 |
|
29 |
||
30 |
class AnyEntity(Entity): |
|
31 |
"""an entity instance has e_schema automagically set on the class and |
|
32 |
instances have access to their issuing cursor |
|
33 |
""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
34 |
__regid__ = 'Any' |
0 | 35 |
|
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
36 |
@classproperty |
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
37 |
def cw_etype(cls): |
10095
200bd6a601dc
[warnings] put an end to warnings in the sqlite driver over `str` being sent instead of unicode strings
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
10019
diff
changeset
|
38 |
"""entity type as a unicode string""" |
200bd6a601dc
[warnings] put an end to warnings in the sqlite driver over `str` being sent instead of unicode strings
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
10019
diff
changeset
|
39 |
return unicode(cls.__regid__) |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
40 |
|
6039
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
41 |
@classmethod |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
42 |
def cw_create_url(cls, req, **kwargs): |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
43 |
""" return the url of the entity creation form for this entity type""" |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
44 |
return req.build_url('add/%s' % cls.__regid__, **kwargs) |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
45 |
|
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
46 |
@classmethod |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
47 |
def cw_fti_index_rql_queries(cls, req): |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
48 |
"""return the list of rql queries to fetch entities to FT-index |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
49 |
|
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
50 |
The default is to fetch all entities at once and to prefetch |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
51 |
indexable attributes but one could imagine iterating over |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
52 |
"smaller" resultsets if the table is very big or returning |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
53 |
a subset of entities that match some business-logic condition. |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
54 |
""" |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
55 |
restrictions = ['X is %s' % cls.__regid__] |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
56 |
selected = ['X'] |
10251
2daa5c6dea4d
[entities] make cw_fti_index_rql_queries predictable
Julien Cristau <julien.cristau@logilab.fr>
parents:
10095
diff
changeset
|
57 |
for attrschema in sorted(cls.e_schema.indexable_attributes()): |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
58 |
varname = attrschema.type.upper() |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
59 |
restrictions.append('X %s %s' % (attrschema, varname)) |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
60 |
selected.append(varname) |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
61 |
return ['Any %s WHERE %s' % (', '.join(selected), |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
62 |
', '.join(restrictions))] |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
63 |
|
0 | 64 |
# meta data api ########################################################### |
65 |
||
66 |
def dc_title(self): |
|
67 |
"""return a suitable *unicode* title for this entity""" |
|
68 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
69 |
if rschema.meta: |
|
70 |
continue |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
71 |
value = self.cw_attr_value(rschema.type) |
10396
33e44293b0eb
[entities] fix dc_title output for bool(value) == False
Aurelien Campeas <aurelien.campeas@pythonian.fr>
parents:
10095
diff
changeset
|
72 |
if value is not None: |
0 | 73 |
# make the value printable (dates, floats, bytes, etc.) |
74 |
return self.printable_value(rschema.type, value, attrschema.type, |
|
75 |
format='text/plain') |
|
76 |
return u'%s #%s' % (self.dc_type(), self.eid) |
|
77 |
||
78 |
def dc_long_title(self): |
|
79 |
"""return a more detailled title for this entity""" |
|
80 |
return self.dc_title() |
|
1493 | 81 |
|
0 | 82 |
def dc_description(self, format='text/plain'): |
83 |
"""return a suitable description for this entity""" |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3578
diff
changeset
|
84 |
if 'description' in self.e_schema.subjrels: |
0 | 85 |
return self.printable_value('description', format=format) |
86 |
return u'' |
|
87 |
||
88 |
def dc_authors(self): |
|
89 |
"""return a suitable description for the author(s) of the entity""" |
|
90 |
try: |
|
91 |
return ', '.join(u.name() for u in self.owned_by) |
|
92 |
except Unauthorized: |
|
93 |
return u'' |
|
94 |
||
95 |
def dc_creator(self): |
|
96 |
"""return a suitable description for the creator of the entity""" |
|
97 |
if self.creator: |
|
98 |
return self.creator.name() |
|
99 |
return u'' |
|
100 |
||
101 |
def dc_date(self, date_format=None):# XXX default to ISO 8601 ? |
|
102 |
"""return latest modification date of this entity""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
103 |
return self._cw.format_date(self.modification_date, date_format=date_format) |
0 | 104 |
|
105 |
def dc_type(self, form=''): |
|
106 |
"""return the display name for the type of this entity (translated)""" |
|
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
107 |
return self.e_schema.display_name(self._cw, form) |
0 | 108 |
|
109 |
def dc_language(self): |
|
110 |
"""return language used by this entity (translated)""" |
|
111 |
# check if entities has internationalizable attributes |
|
112 |
# XXX one is enough or check if all String attributes are internationalizable? |
|
113 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
4147
52fe79a98b21
3.6 remove deprecation warning
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
3720
diff
changeset
|
114 |
if rschema.rdef(self.e_schema, attrschema).internationalizable: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
115 |
return self._cw._(self._cw.user.property_value('ui.language')) |
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
116 |
return self._cw._(self._cw.vreg.property_value('ui.language')) |
1493 | 117 |
|
0 | 118 |
@property |
119 |
def creator(self): |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1360
diff
changeset
|
120 |
"""return the CWUser entity which has created this entity, or None if |
0 | 121 |
unknown or if the curent user doesn't has access to this euser |
122 |
""" |
|
123 |
try: |
|
124 |
return self.created_by[0] |
|
125 |
except (Unauthorized, IndexError): |
|
126 |
return None |
|
127 |
||
128 |
# abstractions making the whole things (well, some at least) working ###### |
|
1493 | 129 |
|
0 | 130 |
def sortvalue(self, rtype=None): |
131 |
"""return a value which can be used to sort this entity or given |
|
132 |
entity's attribute |
|
133 |
""" |
|
134 |
if rtype is None: |
|
135 |
return self.dc_title().lower() |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
136 |
value = self.cw_attr_value(rtype) |
0 | 137 |
# do not restrict to `unicode` because Bytes will return a `str` value |
10612
84468b90e9c1
[py3k] basestring → six.string_types
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10411
diff
changeset
|
138 |
if isinstance(value, string_types): |
0 | 139 |
return self.printable_value(rtype, format='text/plain').lower() |
140 |
return value |
|
141 |
||
1493 | 142 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
143 |
def fetch_config(fetchattrs, mainattr=None, pclass=AnyEntity, order='ASC'): |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
144 |
"""function to ease basic configuration of an entity class ORM. Basic usage |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
145 |
is: |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
146 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
147 |
.. sourcecode:: python |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
148 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
149 |
class MyEntity(AnyEntity): |
0 | 150 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
151 |
fetch_attrs, cw_fetch_order = fetch_config(['attr1', 'attr2']) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
152 |
# uncomment line below if you want the same sorting for 'unrelated' entities |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
153 |
# cw_fetch_unrelated_order = cw_fetch_order |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
154 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
155 |
Using this, when using ORM methods retrieving this type of entity, 'attr1' |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
156 |
and 'attr2' will be automatically prefetched and results will be sorted on |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
157 |
'attr1' ascending (ie the first attribute in the list). |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
158 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
159 |
This function will automatically add to fetched attributes those defined in |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
160 |
parent class given using the `pclass` argument. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
161 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
162 |
Also, You can use `mainattr` and `order` argument to have a different |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
163 |
sorting. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
164 |
""" |
0 | 165 |
if pclass is not None: |
166 |
fetchattrs += pclass.fetch_attrs |
|
167 |
if mainattr is None: |
|
168 |
mainattr = fetchattrs[0] |
|
169 |
@classmethod |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
170 |
def fetch_order(cls, select, attr, var): |
0 | 171 |
if attr == mainattr: |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
172 |
select.add_sort_var(var, order=='ASC') |
0 | 173 |
return fetchattrs, fetch_order |