improved form and wizard plugins
[myslice.git] / portal / views.py
1 from portal.portalpage  import PortalPage
2 from plugins.wizard     import Wizard
3 from plugins.form       import CreateForm
4 from plugins.raw.raw    import Raw          # XXX
5
6 from myslice.viewutils  import the_user
7
8 from django.template.loader import render_to_string
9 from django.template import RequestContext
10
11 def index(request):
12
13     WIZARD_TITLE = 'User registration'
14     STEP1_TITLE  = 'Enter your details'
15     STEP2_TITLE  = 'Select your institution'
16     STEP3_TITLE  = 'Authentication'
17     STEP4_TITLE  = 'Request a slice (optional)'
18     STEP5_TITLE  = 'Waiting for validation'
19     STEP6_TITLE  = 'Account validated'
20
21     STEP0 = render_to_string('account_validated.html', context_instance=RequestContext(request))
22     STEP2_HTML   = """
23     coucou
24     """
25     STEP4 = """
26     mede
27     """
28     STEP5 = render_to_string('account_validated.html', context_instance=RequestContext(request))
29
30     p = PortalPage(request)
31
32     # This is redundant with the Wizard title
33     p << "<h3>User registration</h3>"
34
35     sons = []
36     start_step = 1
37
38     # STEP 1
39     # If the user already exists (is logged), let's display a summary of his account details
40     # Otherwise propose a form to fill in
41     if the_user(request):
42         # Fill a disabled form with user info
43         # Please logout to register another user
44         sons.append(Raw(page=p, title=STEP1_TITLE, togglable=False, html=STEP0))
45         start_step += 1
46     else:
47         # XXX This should become local:user
48         # We could pass a list of fields also, instead of retrieving them from metadata
49         # Otherwise we need some heuristics to display nice forms
50         field_list = [{
51             'name'        : 'First name',
52             'field'       : 'firstname',
53             'type'        : 'text',
54             'validate_rx' : '^[a-zA-Z -]+$',
55             'validate_err': 'Your first name must be comprised of letters only',
56             'description' : 'Enter your first name',
57         }, {
58             'name'        : 'Last name',
59             'field'       : 'lastname',
60             'type'        : 'text',
61             'validate_rx' : '^[a-zA-Z -]+$',
62             'validate_err': 'Your last name must be comprised of letters only',
63             'description' : 'Enter your last name',
64         }, { 
65             'name'        : 'Email',
66             'field'       : 'email',
67             'type'        : 'text',
68             'description' : 'Enter your email address',
69         }, {
70             'name'        : 'Password',
71             'field'       : 'password',
72             'type'        : 'password',
73             'description' : 'Enter your password',
74         }, {
75             'name'        : 'Confirm password',
76             'field'       : 'password2',
77             'type'        : 'password',
78             'description' : 'Enter your password again',
79         }]
80         sons.append(CreateForm(page = p, title = STEP1_TITLE, togglable = False, fields = field_list))
81
82     # STEP 2
83     # If the user already exists (is logged), let's display a summary of its institution
84     # Otherwise propose a form to fill in (we should base our selection on the email)
85     if the_user(request):
86         # Fill a disabled form with institution
87         # Please logout to register another user
88         sons.append(Raw(page=p, title=STEP2_TITLE, togglable=False, html="User created"))
89         start_step += 1
90     else:
91         sons.append(CreateForm(page = p, title = STEP2_TITLE, togglable = False, object = 'slice')) #institution'))
92
93     # STEP3
94     # Please should your prefered authentication method
95     # This step should allow the user to either choose the user or managed mode in MySlice
96     sons.append(Raw(page = p, title = STEP3_TITLE, togglable = False, html = STEP2_HTML))
97
98     # Step 4: Request a slice (optional)
99     sons.append(CreateForm(page = p, title = STEP4_TITLE, togglable = False, object = 'slice'))
100
101     # Step 5: Your request is waiting for validation
102     # Periodic refresh
103     sons.append(Raw(page = p, title = STEP5_TITLE, togglable = False, html = STEP4))
104
105     # Step 6: Account validation  = welcome for newly validated users
106     # . delegation
107     # . platforms
108     # . slice
109     # . pointers
110     sons.append(Raw(page = p, title = STEP6_TITLE, togglable = False, html = STEP5))
111
112     wizard = Wizard(
113         page       = p,
114         title      = WIZARD_TITLE,
115         togglable  = False,
116         sons       = sons,
117         start_step = start_step,
118     )
119
120     p << wizard.render(request) # in portal page if possible
121
122     return p.render()