author | Lennard de Rijk <ljvderijk@gmail.com> |
Sun, 08 Feb 2009 23:56:56 +0000 | |
changeset 1256 | 375632e7ec21 |
parent 1221 | 0130e63704ac |
child 1264 | 4d46b09f3751 |
permissions | -rw-r--r-- |
682 | 1 |
#!/usr/bin/python2.5 |
2 |
# |
|
3 |
# Copyright 2008 the Melange authors. |
|
4 |
# |
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
6 |
# you may not use this file except in compliance with the License. |
|
7 |
# You may obtain a copy of the License at |
|
8 |
# |
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
|
10 |
# |
|
11 |
# Unless required by applicable law or agreed to in writing, software |
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS, |
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
14 |
# See the License for the specific language governing permissions and |
|
15 |
# limitations under the License. |
|
16 |
||
17 |
"""Views for Organizations. |
|
18 |
""" |
|
19 |
||
20 |
__authors__ = [ |
|
21 |
'"Sverre Rabbelier" <sverre@rabbelier.nl>', |
|
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
22 |
'"Lennard de Rijk" <ljvderijk@gmail.com>', |
682 | 23 |
] |
24 |
||
25 |
||
26 |
from django import forms |
|
27 |
||
690
14e9f484412c
Fix imports sorting in soc.views.models.organization.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
682
diff
changeset
|
28 |
from soc.logic import cleaning |
682 | 29 |
from soc.logic import dicts |
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
30 |
from soc.logic.models import org_app as org_app_logic |
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
31 |
from soc.views.helper import access |
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
32 |
from soc.views.helper import dynaform |
682 | 33 |
from soc.views.helper import redirects |
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
34 |
from soc.views.helper import widgets |
682 | 35 |
from soc.views.models import group |
36 |
from soc.views.models import program as program_view |
|
37 |
||
38 |
import soc.models.organization |
|
39 |
import soc.logic.models.organization |
|
40 |
||
41 |
||
42 |
class View(group.View): |
|
43 |
"""View methods for the Organization model. |
|
44 |
""" |
|
45 |
||
46 |
def __init__(self, params=None): |
|
47 |
"""Defines the fields and methods required for the base View class |
|
48 |
to provide the user with list, public, create, edit and delete views. |
|
49 |
||
50 |
Params: |
|
51 |
original_params: a dict with params for this View |
|
52 |
""" |
|
53 |
||
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
54 |
# TODO do the proper access checks |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
55 |
rights = access.Checker(params) |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
56 |
rights['create'] = ['checkIsDeveloper'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
57 |
rights['edit'] = ['checkIsDeveloper'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
58 |
rights['delete'] = ['checkIsDeveloper'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
59 |
rights['home'] = ['allow'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
60 |
rights['list'] = ['checkIsDeveloper'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
61 |
rights['list_requests'] = ['checkIsDeveloper'] |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
62 |
rights['list_roles'] = ['checkIsDeveloper'] |
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
63 |
rights['applicant'] = ['checkIsDeveloper'] |
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
64 |
|
682 | 65 |
new_params = {} |
66 |
new_params['logic'] = soc.logic.models.organization.logic |
|
67 |
||
68 |
new_params['scope_view'] = program_view |
|
69 |
new_params['scope_redirect'] = redirects.getCreateRedirect |
|
70 |
||
71 |
new_params['name'] = "Organization" |
|
72 |
new_params['url_name'] = "org" |
|
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
73 |
new_params['sidebar_grouping'] = 'Organizations' |
682 | 74 |
|
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
75 |
new_params['public_template'] = 'soc/organization/public.html' |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
76 |
new_params['list_row'] = 'soc/organization/list/row.html' |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
77 |
new_params['list_heading'] = 'soc/organization/list/heading.html' |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
78 |
|
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
79 |
new_params['application_logic'] = org_app_logic |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
80 |
new_params['group_applicant_url'] = True |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
81 |
|
682 | 82 |
new_params['create_extra_dynafields'] = { |
83 |
'scope_path': forms.CharField(widget=forms.HiddenInput, |
|
84 |
required=True), |
|
1221
0130e63704ac
Remove extra whitespaces in soc.views.models.organization module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
1205
diff
changeset
|
85 |
'clean': cleaning.validate_new_group('link_id', 'scope_path', |
1205
2e88261aba72
Added validate_new_group to cleaning and removed clean_new_club_link_id.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1154
diff
changeset
|
86 |
soc.logic.models.organization, org_app_logic)} |
2e88261aba72
Added validate_new_group to cleaning and removed clean_new_club_link_id.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1154
diff
changeset
|
87 |
|
2e88261aba72
Added validate_new_group to cleaning and removed clean_new_club_link_id.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1154
diff
changeset
|
88 |
# get rid of the clean method |
2e88261aba72
Added validate_new_group to cleaning and removed clean_new_club_link_id.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1154
diff
changeset
|
89 |
new_params['edit_extra_dynafields'] = { |
1221
0130e63704ac
Remove extra whitespaces in soc.views.models.organization module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
1205
diff
changeset
|
90 |
'clean': (lambda x: x.cleaned_data)} |
682 | 91 |
|
92 |
params = dicts.merge(params, new_params) |
|
93 |
||
94 |
super(View, self).__init__(params=params) |
|
95 |
||
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
96 |
# create and store the special form for applicants |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
97 |
updated_fields = { |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
98 |
'link_id': forms.CharField(widget=widgets.ReadOnlyInput(), |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
99 |
required=False), |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
100 |
'clean_link_id': cleaning.clean_link_id('link_id')} |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
101 |
|
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
102 |
applicant_create_form = dynaform.extendDynaForm( |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
103 |
dynaform = self._params['create_form'], |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
104 |
dynafields = updated_fields) |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
105 |
|
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
106 |
params['applicant_create_form'] = applicant_create_form |
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
107 |
|
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
108 |
|
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
109 |
# TODO(ljvderijk) define several menu items for organizations |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
110 |
#def _getExtraMenuItems(self, role_description, params=None): |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
111 |
|
682 | 112 |
|
113 |
view = View() |
|
114 |
||
1154
77276e2c46f7
Implement the last step in the org application process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1126
diff
changeset
|
115 |
applicant = view.applicant |
682 | 116 |
create = view.create |
117 |
delete = view.delete |
|
118 |
edit = view.edit |
|
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
119 |
home = view.home |
682 | 120 |
list = view.list |
1126
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
121 |
list_requests = view.listRequests |
4fc86db70a76
Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1079
diff
changeset
|
122 |
list_roles = view.listRoles |
682 | 123 |
public = view.public |
858
e79e7a22326f
Add an export() view, and implement it as text/text for Document.
Todd Larsen <tlarsen@google.com>
parents:
799
diff
changeset
|
124 |
export = view.export |
934
9fcc08971efe
Add a 'pick' view to the appropriate views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
858
diff
changeset
|
125 |
pick = view.pick |