author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Wed, 29 Apr 2009 19:48:27 +0200 | |
branch | tls-sprint |
changeset 1559 | c4d4851bd18b |
parent 1533 | bcd4bfff658b |
child 1545 | 53d3d783370f |
permissions | -rw-r--r-- |
0 | 1 |
"""Specific views for users |
2 |
||
3 |
:organization: Logilab |
|
523 | 4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 |
""" |
|
7 |
__docformat__ = "restructuredtext en" |
|
8 |
||
523 | 9 |
from logilab.mtconverter import html_escape |
0 | 10 |
|
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
688
diff
changeset
|
11 |
from cubicweb.selectors import one_line_rset, implements, match_user_groups |
765
8fda14081686
kill Form, EntityForm and AnyRsetForm
sylvain.thenault@logilab.fr
parents:
753
diff
changeset
|
12 |
from cubicweb.view import EntityView |
1288
0d0f09c36bba
fix some euser rcategories, drop editgroup form which 1. is unused 2. has no advantage vs muledit of users
sylvain.thenault@logilab.fr
parents:
1153
diff
changeset
|
13 |
from cubicweb.web import uicfg, action |
0d0f09c36bba
fix some euser rcategories, drop editgroup form which 1. is unused 2. has no advantage vs muledit of users
sylvain.thenault@logilab.fr
parents:
1153
diff
changeset
|
14 |
from cubicweb.web.views.baseviews import PrimaryView |
557 | 15 |
|
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
16 |
|
1533 | 17 |
uicfg.rcategories.tag_relation('secondary', ('CWUser', 'firstname', '*'), 'subject') |
18 |
uicfg.rcategories.tag_relation('secondary', ('CWUser', 'surname', '*'), 'subject') |
|
19 |
uicfg.rcategories.tag_relation('metadata', ('CWUser', 'last_login_time', '*'), 'subject') |
|
20 |
uicfg.rcategories.tag_relation('primary', ('CWUser', 'in_group', '*'), 'subject') |
|
21 |
uicfg.rcategories.tag_relation('generated', ('*', 'owned_by', 'CWUser'), 'object') |
|
22 |
uicfg.rcategories.tag_relation('generated', ('*', 'created_by', 'CWUser'), 'object') |
|
23 |
uicfg.rcategories.tag_relation('metadata', ('*', 'bookmarked_by', 'CWUser'), 'object') |
|
24 |
uicfg.rinlined.tag_relation(True, ('CWUser', 'use_email', '*'), 'subject') |
|
25 |
uicfg.rmode.tag_relation('create', ('*', 'in_group', 'CWGroup'), 'object') |
|
26 |
uicfg.rmode.tag_relation('link', ('*', 'owned_by', 'CWUser'), 'object') |
|
27 |
uicfg.rmode.tag_relation('link', ('*', 'created_by', 'CWUser'), 'object') |
|
28 |
uicfg.rmode.tag_relation('create', ('*', 'bookmarked_by', 'CWUser'), 'object') |
|
1508 | 29 |
|
1151 | 30 |
|
1288
0d0f09c36bba
fix some euser rcategories, drop editgroup form which 1. is unused 2. has no advantage vs muledit of users
sylvain.thenault@logilab.fr
parents:
1153
diff
changeset
|
31 |
class UserPreferencesEntityAction(action.Action): |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
32 |
id = 'prefs' |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
33 |
__select__ = (one_line_rset() & implements('CWUser') & |
728
a95b284150d1
first pass to use __select__ instead of __selectors__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
34 |
match_user_groups('owners', 'managers')) |
1508 | 35 |
|
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
36 |
title = _('preferences') |
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
37 |
category = 'mainactions' |
1508 | 38 |
|
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
39 |
def url(self): |
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
40 |
login = self.rset.get_entity(self.row or 0, self.col or 0).login |
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
41 |
return self.build_url('euser/%s'%login, vid='epropertiesform') |
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
42 |
|
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
619
diff
changeset
|
43 |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
44 |
class CWUserPrimaryView(PrimaryView): |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
45 |
__select__ = implements('CWUser') |
1508 | 46 |
|
0 | 47 |
skip_attrs = ('firstname', 'surname') |
1508 | 48 |
|
0 | 49 |
def iter_relations(self, entity): |
50 |
# don't want to display user's entities |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
51 |
for rschema, targetschemas, x in super(CWUserPrimaryView, self).iter_relations(entity): |
0 | 52 |
if x == 'object' and rschema.type in ('owned_by', 'for_user'): |
53 |
continue |
|
54 |
yield rschema, targetschemas, x |
|
55 |
||
56 |
def content_title(self, entity): |
|
57 |
return entity.name() |
|
58 |
||
59 |
def is_side_related(self, rschema, eschema): |
|
1517 | 60 |
# XXX only bookmarked_by defined in cw... |
1508 | 61 |
return rschema.type in ['interested_in', 'tags', |
1517 | 62 |
'todo_by', 'bookmarked_by'] |
1288
0d0f09c36bba
fix some euser rcategories, drop editgroup form which 1. is unused 2. has no advantage vs muledit of users
sylvain.thenault@logilab.fr
parents:
1153
diff
changeset
|
63 |
|
1517 | 64 |
|
523 | 65 |
class FoafView(EntityView): |
66 |
id = 'foaf' |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
67 |
__select__ = implements('CWUser') |
1508 | 68 |
|
523 | 69 |
title = _('foaf') |
70 |
templatable = False |
|
71 |
content_type = 'text/xml' |
|
72 |
||
73 |
def call(self): |
|
950 | 74 |
self.w(u'''<?xml version="1.0" encoding="%s"?> |
619
9efa2cc9c02c
adding foaf_usable views to supports reusing foaf fragment in other views (for instance sioc view)
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
586
diff
changeset
|
75 |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
9efa2cc9c02c
adding foaf_usable views to supports reusing foaf fragment in other views (for instance sioc view)
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
586
diff
changeset
|
76 |
xmlns:rdfs="http://www.w3org/2000/01/rdf-schema#" |
9efa2cc9c02c
adding foaf_usable views to supports reusing foaf fragment in other views (for instance sioc view)
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
586
diff
changeset
|
77 |
xmlns:foaf="http://xmlns.com/foaf/0.1/"> '''% self.req.encoding) |
523 | 78 |
for i in xrange(self.rset.rowcount): |
79 |
self.cell_call(i, 0) |
|
80 |
self.w(u'</rdf:RDF>\n') |
|
81 |
||
82 |
def cell_call(self, row, col): |
|
83 |
entity = self.complete_entity(row, col) |
|
555
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
84 |
self.w(u'''<foaf:PersonalProfileDocument rdf:about=""> |
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
85 |
<foaf:maker rdf:resource="%s"/> |
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
86 |
<foaf:primaryTopic rdf:resource="%s"/> |
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
87 |
</foaf:PersonalProfileDocument>''' % (entity.absolute_url(), entity.absolute_url())) |
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
88 |
self.w(u'<foaf:Person rdf:ID="%s">\n' % entity.eid) |
523 | 89 |
self.w(u'<foaf:name>%s</foaf:name>\n' % html_escape(entity.dc_long_title())) |
90 |
if entity.surname: |
|
555
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
91 |
self.w(u'<foaf:family_name>%s</foaf:family_name>\n' |
523 | 92 |
% html_escape(entity.surname)) |
93 |
if entity.firstname: |
|
555
b40d885ba7a4
new foaf version
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
523
diff
changeset
|
94 |
self.w(u'<foaf:givenname>%s</foaf:givenname>\n' |
523 | 95 |
% html_escape(entity.firstname)) |
96 |
emailaddr = entity.get_email() |
|
97 |
if emailaddr: |
|
586 | 98 |
self.w(u'<foaf:mbox>%s</foaf:mbox>\n' % html_escape(emailaddr)) |
99 |
self.w(u'</foaf:Person>\n') |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
100 |
|
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
101 |
from logilab.common.deprecation import class_renamed |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1288
diff
changeset
|
102 |
EUserPrimaryView = class_renamed('EUserPrimaryView', CWUserPrimaryView) |