author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 09 Dec 2009 19:27:24 +0100 | |
changeset 4100 | ca9e014012ef |
parent 4023 | eae23c40627a |
child 4252 | 6c4f109c2b03 |
permissions | -rw-r--r-- |
0 | 1 |
"""Specific views for entities implementing IDownloadable |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
||
9 |
__docformat__ = "restructuredtext en" |
|
10 |
||
11 |
from logilab.common.interface import Interface |
|
12 |
||
13 |
class IEmailable(Interface): |
|
14 |
"""interface for emailable entities""" |
|
1553 | 15 |
|
0 | 16 |
def get_email(self): |
17 |
"""return email address""" |
|
18 |
||
19 |
@classmethod |
|
20 |
def allowed_massmail_keys(cls): |
|
21 |
"""returns a set of allowed email substitution keys |
|
22 |
||
23 |
The default is to return the entity's attribute list but an |
|
24 |
entity class might override this method to allow extra keys. |
|
25 |
For instance, the Person class might want to return a `companyname` |
|
26 |
key. |
|
27 |
""" |
|
28 |
||
29 |
def as_email_context(self): |
|
30 |
"""returns the dictionary as used by the sendmail controller to |
|
31 |
build email bodies. |
|
1553 | 32 |
|
0 | 33 |
NOTE: the dictionary keys should match the list returned by the |
34 |
`allowed_massmail_keys` method. |
|
35 |
""" |
|
36 |
||
37 |
||
38 |
class IWorkflowable(Interface): |
|
39 |
"""interface for entities dealing with a specific workflow""" |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2747
diff
changeset
|
40 |
# XXX to be completed, see cw.entities.wfobjs.WorkflowableMixIn |
0 | 41 |
|
42 |
@property |
|
43 |
def state(self): |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2747
diff
changeset
|
44 |
"""return current state name""" |
0 | 45 |
|
46 |
def change_state(self, stateeid, trcomment=None, trcommentformat=None): |
|
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2747
diff
changeset
|
47 |
"""change the entity's state to the state of the given name in entity's |
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2747
diff
changeset
|
48 |
workflow |
0 | 49 |
""" |
1553 | 50 |
|
0 | 51 |
def latest_trinfo(self): |
52 |
"""return the latest transition information for this entity |
|
53 |
""" |
|
54 |
||
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2747
diff
changeset
|
55 |
|
0 | 56 |
class IProgress(Interface): |
57 |
"""something that has a cost, a state and a progression |
|
58 |
||
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3635
diff
changeset
|
59 |
Take a look at cubicweb.mixins.ProgressMixIn for some |
0 | 60 |
default implementations |
61 |
""" |
|
62 |
||
63 |
@property |
|
64 |
def cost(self): |
|
65 |
"""the total cost""" |
|
66 |
||
67 |
@property |
|
68 |
def done(self): |
|
69 |
"""what is already done""" |
|
70 |
||
71 |
@property |
|
72 |
def todo(self): |
|
73 |
"""what remains to be done""" |
|
1553 | 74 |
|
0 | 75 |
def progress_info(self): |
76 |
"""returns a dictionary describing progress/estimated cost of the |
|
77 |
version. |
|
78 |
||
79 |
mandatory keys are (''estimated', 'done', 'todo') |
|
80 |
optional keys are ('notestimated', 'notestimatedcorrected', |
|
81 |
'estimatedcorrected') |
|
82 |
'noestimated' and 'notestimatedcorrected' should default to 0 |
|
83 |
'estimatedcorrected' should default to 'estimated' |
|
84 |
""" |
|
85 |
||
86 |
def finished(self): |
|
87 |
"""returns True if status is finished""" |
|
88 |
||
89 |
def in_progress(self): |
|
90 |
"""returns True if status is not finished""" |
|
91 |
||
92 |
def progress(self): |
|
93 |
"""returns the % progress of the task item""" |
|
1553 | 94 |
|
95 |
||
0 | 96 |
class IMileStone(IProgress): |
97 |
"""represents an ITask's item""" |
|
1553 | 98 |
|
0 | 99 |
parent_type = None # specify main task's type |
1553 | 100 |
|
0 | 101 |
def get_main_task(self): |
102 |
"""returns the main ITask entity""" |
|
103 |
||
104 |
def initial_prevision_date(self): |
|
105 |
"""returns the initial expected end of the milestone""" |
|
1553 | 106 |
|
0 | 107 |
def eta_date(self): |
108 |
"""returns expected date of completion based on what remains |
|
109 |
to be done |
|
110 |
""" |
|
111 |
||
112 |
def completion_date(self): |
|
113 |
"""returns date on which the subtask has been completed""" |
|
114 |
||
115 |
def contractors(self): |
|
116 |
"""returns the list of persons supposed to work on this task""" |
|
117 |
||
118 |
||
119 |
class ITree(Interface): |
|
120 |
||
121 |
def parent(self): |
|
122 |
"""returns the parent entity""" |
|
123 |
||
124 |
def children(self): |
|
125 |
"""returns the item's children""" |
|
126 |
||
2747
4f9ffcd8d5a2
cleanup docstring, add actually used method to the ITree interface
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2135
diff
changeset
|
127 |
def children_rql(self): |
4f9ffcd8d5a2
cleanup docstring, add actually used method to the ITree interface
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2135
diff
changeset
|
128 |
"""XXX returns RQL to get children""" |
4f9ffcd8d5a2
cleanup docstring, add actually used method to the ITree interface
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2135
diff
changeset
|
129 |
|
3635
a56759c3c99f
do not override __iter__ on entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2920
diff
changeset
|
130 |
def iterchildren(self): |
0 | 131 |
"""iterates over the item's children""" |
1553 | 132 |
|
0 | 133 |
def is_leaf(self): |
134 |
"""returns true if this node as no child""" |
|
135 |
||
136 |
def is_root(self): |
|
137 |
"""returns true if this node has no parent""" |
|
138 |
||
139 |
def root(self): |
|
2747
4f9ffcd8d5a2
cleanup docstring, add actually used method to the ITree interface
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2135
diff
changeset
|
140 |
"""returns the root object""" |
0 | 141 |
|
142 |
||
143 |
## web specific interfaces #################################################### |
|
144 |
||
145 |
||
146 |
class IPrevNext(Interface): |
|
147 |
"""interface for entities which can be linked to a previous and/or next |
|
148 |
entity |
|
149 |
""" |
|
1553 | 150 |
|
0 | 151 |
def next_entity(self): |
152 |
"""return the 'next' entity""" |
|
153 |
def previous_entity(self): |
|
154 |
"""return the 'previous' entity""" |
|
155 |
||
156 |
||
157 |
class IBreadCrumbs(Interface): |
|
158 |
"""interface for entities which can be "located" on some path""" |
|
1553 | 159 |
|
0 | 160 |
def breadcrumbs(self, view, recurs=False): |
161 |
"""return a list containing some: |
|
1553 | 162 |
|
0 | 163 |
* tuple (url, label) |
164 |
* entity |
|
165 |
* simple label string |
|
166 |
||
167 |
defining path from a root to the current view |
|
168 |
||
169 |
the main view is given as argument so breadcrumbs may vary according |
|
170 |
to displayed view (may be None). When recursing on a parent entity, |
|
171 |
the `recurs` argument should be set to True. |
|
172 |
""" |
|
173 |
||
174 |
||
175 |
class IDownloadable(Interface): |
|
176 |
"""interface for downloadable entities""" |
|
1553 | 177 |
|
0 | 178 |
def download_url(self): # XXX not really part of this interface |
179 |
"""return an url to download entity's content""" |
|
180 |
def download_content_type(self): |
|
181 |
"""return MIME type of the downloadable content""" |
|
182 |
def download_encoding(self): |
|
183 |
"""return encoding of the downloadable content""" |
|
184 |
def download_file_name(self): |
|
185 |
"""return file name of the downloadable content""" |
|
186 |
def download_data(self): |
|
187 |
"""return actual data of the downloadable content""" |
|
188 |
||
189 |
||
190 |
class IEmbedable(Interface): |
|
191 |
"""interface for embedable entities""" |
|
1553 | 192 |
|
0 | 193 |
def embeded_url(self): |
194 |
"""embed action interface""" |
|
1553 | 195 |
|
0 | 196 |
class ICalendarable(Interface): |
767 | 197 |
"""interface for items that do have a begin date 'start' and an end date 'stop' |
1553 | 198 |
""" |
199 |
||
2135
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
200 |
@property |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
201 |
def start(self): |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
202 |
"""return start date""" |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
203 |
|
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
204 |
@property |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
205 |
def stop(self): |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
206 |
"""return stop state""" |
55fc8b488907
[interfaces] describe more explicitly what should be implemente in the ICalendarable interface
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
207 |
|
0 | 208 |
class ICalendarViews(Interface): |
209 |
"""calendar views interface""" |
|
210 |
def matching_dates(self, begin, end): |
|
211 |
""" |
|
212 |
:param begin: day considered as begin of the range (`DateTime`) |
|
213 |
:param end: day considered as end of the range (`DateTime`) |
|
1553 | 214 |
|
0 | 215 |
:return: |
216 |
a list of dates (`DateTime`) in the range [`begin`, `end`] on which |
|
217 |
this entity apply |
|
218 |
""" |
|
1553 | 219 |
|
0 | 220 |
class ITimetableViews(Interface): |
221 |
"""timetable views interface""" |
|
222 |
def timetable_date(self): |
|
223 |
"""XXX explain |
|
1553 | 224 |
|
0 | 225 |
:return: date (`DateTime`) |
226 |
""" |
|
227 |
||
228 |
class IGeocodable(Interface): |
|
229 |
"""interface required by geocoding views such as gmap-view""" |
|
230 |
||
231 |
@property |
|
232 |
def latitude(self): |
|
233 |
"""returns the latitude of the entity""" |
|
234 |
||
235 |
@property |
|
236 |
def longitude(self): |
|
237 |
"""returns the longitude of the entity""" |
|
238 |
||
239 |
def marker_icon(self): |
|
240 |
"""returns the icon that should be used as the marker |
|
241 |
(returns None for default) |
|
242 |
""" |
|
1553 | 243 |
|
125
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
0
diff
changeset
|
244 |
class IFeed(Interface): |
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
0
diff
changeset
|
245 |
"""interface for entities with rss flux""" |
1553 | 246 |
|
125
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
0
diff
changeset
|
247 |
def rss_feed_url(self): |
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
0
diff
changeset
|
248 |
"""return an url which layout sub-entities item |
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
0
diff
changeset
|
249 |
""" |
1553 | 250 |
|
990
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
251 |
class ISiocItem(Interface): |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
252 |
"""interface for entities (which are item |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
253 |
in sioc specification) with sioc views""" |
1553 | 254 |
|
993
c1ce4c3a7c8f
removing useless method for interfaces ISiocItem and ISiocContainer.
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
990
diff
changeset
|
255 |
def isioc_content(self): |
990
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
256 |
"""return content entity""" |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
257 |
|
993
c1ce4c3a7c8f
removing useless method for interfaces ISiocItem and ISiocContainer.
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
990
diff
changeset
|
258 |
def isioc_container(self): |
1199
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
259 |
"""return container entity""" |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
260 |
|
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
261 |
def isioc_type(self): |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
262 |
"""return container type (post, BlogPost, MailMessage)""" |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
263 |
|
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
264 |
def isioc_replies(self): |
1553 | 265 |
"""return replies items""" |
1199
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
266 |
|
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
267 |
def isioc_topics(self): |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
268 |
"""return topics items""" |
1553 | 269 |
|
990
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
270 |
class ISiocContainer(Interface): |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
271 |
"""interface for entities (which are container |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
272 |
in sioc specification) with sioc views""" |
5f1ff5b6907a
ISiocItem is an interface that is implemented by 'post' entities (in sioc specification) i.e blogentry, mail ...
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
626
diff
changeset
|
273 |
|
993
c1ce4c3a7c8f
removing useless method for interfaces ISiocItem and ISiocContainer.
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
990
diff
changeset
|
274 |
def isioc_type(self): |
1199
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
275 |
"""return container type (forum, Weblog, MailingList)""" |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
276 |
|
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
277 |
def isioc_items(self): |
7fa66717175b
fixing isioc_type comment
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
994
diff
changeset
|
278 |
"""return contained items""" |