|
@@ -154,8 +154,26 @@ class _LeObject(object):
|
154
|
154
|
raise AttributeError("A rel2type between a %s and a %s doesn't have an attribute %s"%(lesup.__class__.__name__, lesub.__class__.__name__))
|
155
|
155
|
if not sup._linked_types[lesub.__class__][1].check(rel_attr[attr_name]):
|
156
|
156
|
raise ValueError("Wrong value '%s' for attribute %s"%(rel_attr[attr_name], attr_name))
|
157
|
|
- return self._datasource.add_related(lesup, lesub, **rel_attr)
|
|
157
|
+ return cls._datasource.add_related(lesup, lesub, **rel_attr)
|
|
158
|
+
|
|
159
|
+ ## @brief Get related objects
|
|
160
|
+ # @param leo LeType(instance) : LeType child class instance
|
|
161
|
+ # @param letype LeType(class) : the wanted LeType child class (not instance)
|
|
162
|
+ # @param leo_is_superior bool : if True leo is the superior in the relation
|
|
163
|
+ # @return A dict with LeType child class instance as key and dict {rel_attr_name:rel_attr_value, ...}
|
|
164
|
+ # @throw LeObjectError if the relation is not possible
|
|
165
|
+ @classmethod
|
|
166
|
+ def linked_together(cls, leo, letype, leo_is_superior = True):
|
|
167
|
+ valid_link = letype in leo._linked_types.keys() if leo_is_superior else leo.__class__ in letype._linked_types.keys()
|
158
|
168
|
|
|
169
|
+ if not valid_link:
|
|
170
|
+ raise LeObjectError("Relation error : %s have no links with %s"%(
|
|
171
|
+ leo.__class__ if leo_is_superior else letype,
|
|
172
|
+ letype if leo_is_superior else leo.__class__
|
|
173
|
+ ))
|
|
174
|
+
|
|
175
|
+ return cls._datasource.get_related(leo, letype, leo_is_superior)
|
|
176
|
+
|
159
|
177
|
## @brief Prepare a field_list
|
160
|
178
|
# @param field_list list : List of string representing fields
|
161
|
179
|
# @param letype LeType : LeType child class
|