author | sylvain.thenault@logilab.fr |
Tue, 12 May 2009 17:39:50 +0200 | |
branch | tls-sprint |
changeset 1750 | 9df5e65c5f79 |
parent 1398 | 5fe84a5f7035 |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
0 | 1 |
"""cubicweb post creation script, set user's workflow""" |
2 |
||
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
3 |
activatedeid = add_state(_('activated'), 'CWUser', initial=True) |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
4 |
deactivatedeid = add_state(_('deactivated'), 'CWUser') |
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
5 |
add_transition(_('deactivate'), 'CWUser', |
0 | 6 |
(activatedeid,), deactivatedeid, |
7 |
requiredgroups=('managers',)) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
8 |
add_transition(_('activate'), 'CWUser', |
0 | 9 |
(deactivatedeid,), activatedeid, |
10 |
requiredgroups=('managers',)) |
|
11 |
||
12 |
# need this since we already have at least one user in the database (the default admin) |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
13 |
rql('SET X in_state S WHERE X is CWUser, S eid %s' % activatedeid) |
0 | 14 |
|
15 |
# create anonymous user if all-in-one config and anonymous user has been specified |
|
16 |
if hasattr(config, 'anonymous_user'): |
|
17 |
anonlogin, anonpwd = config.anonymous_user() |
|
18 |
if anonlogin: |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
19 |
rql('INSERT CWUser X: X login %(login)s, X upassword %(pwd)s,' |
0 | 20 |
'X in_state S, X in_group G WHERE G name "guests", S name "activated"', |
21 |
{'login': unicode(anonlogin), 'pwd': anonpwd}) |
|
22 |
||
23 |
cfg = config.persistent_options_configuration() |
|
24 |
if interactive_mode: |
|
25 |
cfg.input_config(inputlevel=0) |
|
26 |
||
27 |
for section, options in cfg.options_by_section(): |
|
28 |
for optname, optdict, value in options: |
|
29 |
key = '%s.%s' % (section, optname) |
|
30 |
default = cfg.option_default(optname, optdict) |
|
31 |
# only record values differing from default |
|
32 |
if value != default: |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
33 |
rql('INSERT CWProperty X: X pkey %(k)s, X value %(v)s', {'k': key, 'v': value}) |
0 | 34 |
|
35 |
# add PERM_USE_TEMPLATE_FORMAT permission |
|
36 |
from cubicweb.schema import PERM_USE_TEMPLATE_FORMAT |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
37 |
eid = add_entity('CWPermission', name=PERM_USE_TEMPLATE_FORMAT, |
0 | 38 |
label=_('use template languages')) |
39 |
rql('SET X require_group G WHERE G name "managers", X eid %(x)s', |
|
40 |
{'x': eid}, 'x') |