|
@@ -102,40 +102,54 @@ class LeType(object):
|
102
|
102
|
return self._datasource(leo, self, nature)
|
103
|
103
|
|
104
|
104
|
## @brief Get the linked objects lodel_id
|
105
|
|
- # @param rel2type_name str : the name of the relation
|
106
|
|
- # @return an array of lodel_id linked with this object
|
|
105
|
+ # @param letype LeType : Filter the result with LeType child class (not instance)
|
|
106
|
+ # @return a dict with LeType instance as key and dict{attr_name:attr_val...} as value
|
107
|
107
|
# @todo unit tests
|
108
|
|
- def linked(self, rel2type_name):
|
109
|
|
- return [ rel['id_sub'] for rel in self._datasource.get_relations(self.lodel_id) ]
|
110
|
|
-
|
111
|
|
- ## @brief Link this object with a LeObject
|
112
|
|
- # @note rel2type
|
113
|
|
- # @param leo LeObject : The object to be linked with
|
114
|
|
- # @param rel2type_name : The name of the rel2type field (the name of the relation)
|
|
108
|
+ def linked(self, letype):
|
|
109
|
+ if leobject.letype.LeType not in letype.__bases__:
|
|
110
|
+ raise ValueError("letype has to be a child class of LeType (not an instance) but %s found"%type(letype))
|
|
111
|
+
|
|
112
|
+ if letype in self._linked_types.keys():
|
|
113
|
+ get_sub = True
|
|
114
|
+ elif self.__class__ in letype._linked_types.keys():
|
|
115
|
+ get_sub = False
|
|
116
|
+ else:
|
|
117
|
+ raise ValueError("The two LeType classes %s and %s are not linked with a rel2type field"%(self.__class__.__name__, letype.__name__))
|
|
118
|
+
|
|
119
|
+ return self._datasource.get_related(self, letype, get_sub)
|
|
120
|
+
|
|
121
|
+ ## @brief Link this object with a LeObject as subordinate
|
|
122
|
+ # @note shortcut for @ref leobject.leobject._LeObject.link_together()
|
|
123
|
+ # @param lesub LeObject : The object to be linked with as subordinate
|
115
|
124
|
# @param **rel_attr : keywords arguments for relations attributes
|
116
|
125
|
# @return True if success False allready done
|
117
|
|
- # @throw A Leo exception if the link is not allowed
|
118
|
|
- # @todo unit tests
|
119
|
|
- # @todo find a value for depth and rank....
|
120
|
|
- def link_to(self, leo, rel2type_name, **rel_attr):
|
121
|
|
- if leo.__class__ not in self._linked_types.keys():
|
122
|
|
- raise leobject.leobject.LeObjectError("Constraint error : %s cannot be linked with %s"%(self.__class__.__name__, leo.__class__.__name__))
|
123
|
|
-
|
124
|
|
- for attr_name in rel_attr.keys():
|
125
|
|
- if attr_name not in [ f for f,g in self._linked_types[leo.__class__] ]:
|
126
|
|
- raise AttributeError("A rel2type between a %s and a %s doesn't have an attribute %s"%(self.__class__.__name__, leo.__class__.__name__, attr_name))
|
127
|
|
- if not self._linked_types[leo.__class__][1].check(rel_attr[attr_name]):
|
128
|
|
- raise ValueError("Wrong value '%s' for attribute %s"%(rel_attr[attr_name], attr_name))
|
129
|
|
-
|
130
|
|
- return self._datasource.add_relation(self, leo, nature=None, depth=None, rank=None, **rel_attr)#Broken ! need to give the rel2type_name
|
|
126
|
+ # @throw LeObjectError if the link is not valid
|
|
127
|
+ # @throw AttributeError if an non existing relation attribute is given as argument
|
|
128
|
+ # @throw ValueError if the relation attrivute value check fails
|
|
129
|
+ def link(self, leo, **rel_attr):
|
|
130
|
+ leobject.lefactory.LeFactory.leobj_from_name('LeObject').link_together(self, leo, **rel_attr)
|
131
|
131
|
|
132
|
132
|
## @brief Remove a link bewteen this object and another
|
133
|
|
- # @param leo LeObject : A LeObject instance linked with self
|
134
|
|
- # @param rel2type_name : the name of the relation
|
|
133
|
+ # @param leo LeType : LeType child class instance
|
135
|
134
|
# @todo unit tests
|
136
|
|
- def unlink(self, leo, rel2type_name):
|
137
|
|
- return self._datasource.del_relation(self, leo) #Broken ! need to give the rel2type_name
|
|
135
|
+ def unlink(self, leo):
|
|
136
|
+ if leo.__class__ in self._linked_types.keys():
|
|
137
|
+ sup = self
|
|
138
|
+ sub = leo
|
|
139
|
+ elif self.__class__ in leo._linked_types.keys():
|
|
140
|
+ sup = leo
|
|
141
|
+ sub = self
|
|
142
|
+
|
|
143
|
+ return self._datasource.del_related(sup, sub)
|
|
144
|
+
|
|
145
|
+ ## @brief Add a superior
|
|
146
|
+ # @param lesup LeType : LeType child class instance that will be the superior
|
|
147
|
+ # @param nature str : @ref EditorialModel.classtypes
|
|
148
|
+ # @return True if add with no problems
|
|
149
|
+ def add_superior(self, lesup, nature):
|
|
150
|
+ self._datasource.add_superior(lesub, self)
|
138
|
151
|
|
|
152
|
+
|
139
|
153
|
## @brief Delete a LeType from the datasource
|
140
|
154
|
# @param filters list : list of filters (see @ref leobject_filters)
|
141
|
155
|
# @param cls
|