|
@@ -1,6 +1,7 @@
|
1
|
1
|
#-*- coding: utf-8 -*-
|
2
|
2
|
|
3
|
3
|
import copy
|
|
4
|
+import re
|
4
|
5
|
|
5
|
6
|
import EditorialModel.fieldtypes.leo as ft_leo
|
6
|
7
|
from . import lecrud
|
|
@@ -81,6 +82,31 @@ class _LeRelation(lecrud._LeCrud):
|
81
|
82
|
ret = cls._datasource.delete(target_class, filters)
|
82
|
83
|
return True if ret == 1 else False
|
83
|
84
|
|
|
85
|
+ @classmethod
|
|
86
|
+ ## @brief checks if a rank value is valid
|
|
87
|
+ # @param rank str|int
|
|
88
|
+ # @return tuple|str|int The tuple is for the case using an operator and a step (i.e. '+x' => ('+','x'))
|
|
89
|
+ # @throw ValueError if the rank value or type is not valid
|
|
90
|
+ def _parse_rank(cls, rank):
|
|
91
|
+ if isinstance(rank, str):
|
|
92
|
+ if rank == 'first' or rank == 'last':
|
|
93
|
+ return rank
|
|
94
|
+ else:
|
|
95
|
+ compiled_regular_expression = re.compile('([+]?)([0-9]+)')
|
|
96
|
+ matching_groups = compiled_regular_expression.search(rank)
|
|
97
|
+ if matching_groups:
|
|
98
|
+ return (matching_groups.group(1), matching_groups.group(2))
|
|
99
|
+ else:
|
|
100
|
+ raise ValueError("Invalid rank value : %s" % rank)
|
|
101
|
+ elif isinstance(rank, int):
|
|
102
|
+ if rank < 1:
|
|
103
|
+ raise ValueError("Invalid rank value : %d" % rank)
|
|
104
|
+ else:
|
|
105
|
+ return rank
|
|
106
|
+ else:
|
|
107
|
+ raise ValueError("Invalid rank type : %s" % type(rank))
|
|
108
|
+
|
|
109
|
+
|
84
|
110
|
## @brief Abstract class to handle hierarchy relations
|
85
|
111
|
class _LeHierarch(_LeRelation):
|
86
|
112
|
|