|
@@ -406,36 +406,20 @@ class LeDataSourceSQL(DummyDatasource):
|
406
|
406
|
self._set_relation_rank(id_relation, rank)
|
407
|
407
|
|
408
|
408
|
## @brief Sets a new rank on a relation
|
409
|
|
- # @param id_relation int: relation ID
|
410
|
|
- # @param rank int|str|tuple : 'first', 'last', an integer value or a (operator, value) tuple (for the shifting)
|
411
|
|
- # @throw leapi.leapi.LeObjectQueryError if id_relation doesn't exist
|
412
|
|
- #
|
|
409
|
+ # @param le_relation LeRelation
|
|
410
|
+ # @param new_rank int: integer representing the absolute new rank
|
|
411
|
+ # @return True if success, False if failure
|
413
|
412
|
# TODO Conserver cette méthode dans le datasource du fait des requêtes SQL. Elle est appelée par le set_rank de LeRelation
|
414
|
|
- def update_rank(self, id_relation, rank):
|
415
|
|
- ret = self.get_relation(id_relation, no_attr=True)
|
|
413
|
+ def update_rank(self, le_relation, rank):
|
|
414
|
+ ret = self.get_relation(le_relation.id_relation, no_attr=True)
|
416
|
415
|
if not ret:
|
417
|
|
- raise leapi.leapi.LeObjectQueryError("No relation with id_relation = %d" % id_relation)
|
|
416
|
+ raise leapi.leapi.LeObjectQueryError("No relation with id_relation = %d" % le_relation.id_relation)
|
418
|
417
|
lesup = ret['lesup']
|
419
|
418
|
lesub = ret['lesub']
|
420
|
419
|
current_rank = ret['rank']
|
421
|
420
|
|
422
|
|
- # In case we passed an (operator, value) tuple, we will recalculate the new rank
|
423
|
|
- if isinstance(rank, tuple):
|
424
|
|
- operator = rank[0]
|
425
|
|
- step_value = rank[1]
|
426
|
|
- rank = current_rank + step_value if operator == '+' else current_rank - step_value
|
427
|
|
-
|
428
|
|
- rank = 1 if rank == 'first' or rank < 1 else rank
|
429
|
|
- if current_rank == rank:
|
430
|
|
- return True
|
431
|
|
-
|
432
|
421
|
relations = self.get_related(lesup, lesub.__class__, get_sub=True)
|
433
|
422
|
|
434
|
|
- if rank == 'last' or rank > len(relations):
|
435
|
|
- rank = len(relations)
|
436
|
|
- if current_rank == rank:
|
437
|
|
- return True
|
438
|
|
-
|
439
|
423
|
# insert the relation at the right position considering its new rank
|
440
|
424
|
our_relation = relations.pop(current_rank)
|
441
|
425
|
relations.insert(our_relation, rank)
|