author | anoop |
Mon, 08 Mar 2010 13:37:26 +0530 | |
changeset 207 | 2de52334fe6c |
parent 206 | 85660d75683d |
child 208 | ba839dd7c7d7 |
permissions | -rw-r--r-- |
61 | 1 |
import os |
83 | 2 |
|
42
9b5b8c997598
started using django-registration default backend, removed browse users functionality.
anoop
parents:
40
diff
changeset
|
3 |
from django.http import HttpResponse, Http404 |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
4 |
from django.shortcuts import redirect, render_to_response |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
5 |
from django.contrib.auth.models import User |
39 | 6 |
from django.contrib.auth.decorators import login_required |
7 |
||
83 | 8 |
from pytask.taskapp.models import Task, Profile, Request |
123 | 9 |
|
206
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
10 |
from pytask.taskapp.events.user import createUser |
123 | 11 |
from pytask.taskapp.events.request import reply_to_request |
12 |
||
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
13 |
from pytask.taskapp.forms.user import UserProfileEditForm, UserChoiceForm |
123 | 14 |
|
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
15 |
from pytask.taskapp.utilities.request import get_request, create_request |
143
796ff9e279a8
now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents:
141
diff
changeset
|
16 |
from pytask.taskapp.utilities.notification import get_notification, create_notification |
137
e56b95298254
now requests in sidebar shows the no.of unread notifications.
nishanth
parents:
133
diff
changeset
|
17 |
from pytask.taskapp.utilities.user import get_user |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
18 |
|
127
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
19 |
about = { |
184 | 20 |
"addmentors": "about/addmentors.html", |
185 | 21 |
"mentor": "about/mentor.html", |
184 | 22 |
"starthere": "about/starthere.html", |
185 | 23 |
"task": "about/task.html", |
24 |
"tasklife": "about/tasklife.html", |
|
186
c083ebb6f8d7
finished the phase-2 successfully. added all the learnmore templates. hav to look for bugs if any.
nishanth
parents:
185
diff
changeset
|
25 |
"developer": "about/developer.html", |
c083ebb6f8d7
finished the phase-2 successfully. added all the learnmore templates. hav to look for bugs if any.
nishanth
parents:
185
diff
changeset
|
26 |
"notification": "about/notification.html", |
c083ebb6f8d7
finished the phase-2 successfully. added all the learnmore templates. hav to look for bugs if any.
nishanth
parents:
185
diff
changeset
|
27 |
"request": "about/request.html", |
c083ebb6f8d7
finished the phase-2 successfully. added all the learnmore templates. hav to look for bugs if any.
nishanth
parents:
185
diff
changeset
|
28 |
"manager": "about/manager.html", |
c083ebb6f8d7
finished the phase-2 successfully. added all the learnmore templates. hav to look for bugs if any.
nishanth
parents:
185
diff
changeset
|
29 |
"admin": "about/admin.html", |
127
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
30 |
} |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
31 |
|
108
131554cc3434
updated show_msg method to also use the user variable in the context.
nishanth
parents:
104
diff
changeset
|
32 |
def show_msg(user, message, redirect_url=None, url_desc=None): |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
33 |
""" simply redirect to homepage """ |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
34 |
|
111 | 35 |
return render_to_response('show_msg.html',{'user':user, 'message':message, 'redirect_url':redirect_url, 'url_desc':url_desc}) |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
36 |
|
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
37 |
def homepage(request): |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
38 |
""" check for authentication and display accordingly. """ |
137
e56b95298254
now requests in sidebar shows the no.of unread notifications.
nishanth
parents:
133
diff
changeset
|
39 |
|
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
40 |
user = request.user |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
41 |
is_guest = False |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
42 |
is_mentor = False |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
43 |
can_create_task = False |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
44 |
task_list = [] |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
45 |
|
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
46 |
if not user.is_authenticated(): |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
47 |
is_guest = True |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
48 |
disp_num = 10 |
169 | 49 |
task_list = Task.objects.exclude(status="UP").exclude(status="CD").exclude(status="CM").order_by('published_datetime').reverse()[:10] |
137
e56b95298254
now requests in sidebar shows the no.of unread notifications.
nishanth
parents:
133
diff
changeset
|
50 |
return render_to_response('index.html', {'user':user, 'is_guest':is_guest, 'task_list':task_list}) |
21
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
51 |
|
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
52 |
else: |
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
53 |
user = get_user(request.user) |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
54 |
user_profile = user.get_profile() |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
55 |
is_mentor = True if user.task_mentors.all() else False |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
56 |
can_create_task = False if user_profile.rights == u"CT" else True |
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
57 |
|
21
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
58 |
context = {'user':user, |
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
59 |
'is_guest':is_guest, |
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
60 |
'is_mentor':is_mentor, |
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
61 |
'task_list':task_list, |
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
62 |
'can_create_task':can_create_task, |
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
63 |
} |
125 | 64 |
|
65 |
context["unpublished_tasks"] = user.task_mentors.filter(status="UP") |
|
168 | 66 |
context["mentored_tasks"] = user.task_mentors.exclude(status="UP").exclude(status="CM").exclude(status="CD").exclude(status="DL") |
67 |
context["claimed_tasks"] = user.task_claimed_users.exclude(status="UP").exclude(status="CM").exclude(status="CD").exclude(status="DL") |
|
68 |
context["working_tasks"] = user.task_assigned_users.filter(status="WR") |
|
21
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
69 |
|
c28774fe7ffd
implemented "add another mentor" functionality to a task.
nishanth
parents:
20
diff
changeset
|
70 |
return render_to_response('index.html', context) |
17
aa45fec40e7e
renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff
changeset
|
71 |
|
39 | 72 |
@login_required |
127
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
73 |
def learn_more(request, what): |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
74 |
""" depending on what was asked for, we render different pages. |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
75 |
""" |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
76 |
|
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
77 |
user = get_user(request.user) |
127
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
78 |
disp_template = about.get(what, None) |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
79 |
if not disp_template: |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
80 |
raise Http404 |
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
81 |
else: |
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
82 |
return render_to_response(disp_template, {'user':user}) |
127
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
83 |
|
71888e23f323
created a view for about pages and added about pages for mentor and addmentors.
nishanth
parents:
125
diff
changeset
|
84 |
@login_required |
42
9b5b8c997598
started using django-registration default backend, removed browse users functionality.
anoop
parents:
40
diff
changeset
|
85 |
def view_my_profile(request,uid=None): |
23 | 86 |
""" allows the user to view the profiles of users """ |
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
87 |
user = get_user(request.user) |
42
9b5b8c997598
started using django-registration default backend, removed browse users functionality.
anoop
parents:
40
diff
changeset
|
88 |
if uid == None: |
9b5b8c997598
started using django-registration default backend, removed browse users functionality.
anoop
parents:
40
diff
changeset
|
89 |
edit_profile = True |
9b5b8c997598
started using django-registration default backend, removed browse users functionality.
anoop
parents:
40
diff
changeset
|
90 |
profile = Profile.objects.get(user = request.user) |
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
91 |
return render_to_response('user/my_profile.html', {'edit_profile':edit_profile,'profile':profile, 'user':user}) |
23 | 92 |
edit_profile = True if request.user == User.objects.get(pk=uid) else False |
93 |
try: |
|
94 |
profile = Profile.objects.get(user = User.objects.get(pk=uid)) |
|
95 |
except Profile.DoesNotExist: |
|
96 |
raise Http404 |
|
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
97 |
return render_to_response('user/my_profile.html', {'edit_profile':edit_profile,'profile':profile, 'user':user}) |
23 | 98 |
|
45 | 99 |
@login_required |
23 | 100 |
def edit_my_profile(request): |
101 |
""" enables the user to edit his/her user profile """ |
|
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
102 |
|
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
103 |
user = get_user(request.user) |
206
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
104 |
user_profile = user.get_profile() |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
105 |
|
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
106 |
edit_profile_form = UserProfileEditForm(instance = user_profile) |
23 | 107 |
if request.method == 'POST': |
206
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
108 |
|
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
109 |
data = request.POST.copy() |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
110 |
uploaded_photo = request.FILES.get('photo', None) |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
111 |
data.__setitem__('photo', uploaded_photo) |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
112 |
|
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
113 |
edit_profile_form = UserProfileEditForm(data, instance=user_profile) |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
114 |
if edit_profile_form.is_valid(): |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
115 |
edit_profile_form.save() |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
116 |
return redirect('/user/view/uid='+str(user.id)) |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
117 |
else: |
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
118 |
return render_to_response('user/edit_profile.html',{'user':user, 'edit_profile_form' : edit_profile_form}) |
23 | 119 |
else: |
206
85660d75683d
now user profile editing is done thro forms in a more elegant way.
nishanth
parents:
186
diff
changeset
|
120 |
profile = user.get_profile() |
23 | 121 |
edit_profile_form = UserProfileEditForm(instance = profile) |
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
122 |
return render_to_response('user/edit_profile.html',{'edit_profile_form' : edit_profile_form, 'user':user}) |
28
e137b605b888
added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents:
27
diff
changeset
|
123 |
|
83 | 124 |
@login_required |
125 |
def browse_requests(request): |
|
126 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
127 |
user = get_user(request.user) |
122
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
128 |
active_reqs = user.request_sent_to.filter(is_replied=False).exclude(is_valid=False) |
83 | 129 |
reqs = active_reqs.order_by('creation_date').reverse() |
122
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
130 |
|
83 | 131 |
context = { |
132 |
'user':user, |
|
133 |
'reqs':reqs, |
|
134 |
} |
|
135 |
||
136 |
return render_to_response('user/browse_requests.html', context) |
|
137 |
||
138 |
@login_required |
|
139 |
def view_request(request, rid): |
|
140 |
""" please note that request variable in this method is that of django. |
|
141 |
our app request is called user_request. |
|
142 |
""" |
|
143 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
144 |
user = get_user(request.user) |
143
796ff9e279a8
now if a user accepts to be a mentor, all his pending reqs will be made invalid.
nishanth
parents:
141
diff
changeset
|
145 |
user_rights = user.get_profile().rights |
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
146 |
newest, newer, user_request, older, oldest = get_request(rid, user) |
122
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
147 |
if not user_request: |
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
148 |
raise Http404 |
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
149 |
|
100
2275886511df
now admin can accept a request for assigning credits.
nishanth
parents:
97
diff
changeset
|
150 |
user_request.is_read = True |
2275886511df
now admin can accept a request for assigning credits.
nishanth
parents:
97
diff
changeset
|
151 |
user_request.save() |
83 | 152 |
|
153 |
context = { |
|
154 |
'user':user, |
|
155 |
'req':user_request, |
|
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
156 |
'sent_users':user_request.sent_to.all(), |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
157 |
'newest':newest, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
158 |
'newer':newer, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
159 |
'older':older, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
160 |
'oldest':oldest, |
83 | 161 |
} |
162 |
||
163 |
return render_to_response('user/view_request.html', context) |
|
164 |
||
165 |
@login_required |
|
166 |
def process_request(request, rid, reply): |
|
167 |
""" check if the method is post and then update the request. |
|
168 |
if it is get, display a 404 error. |
|
169 |
""" |
|
170 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
171 |
user = get_user(request.user) |
122
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
172 |
browse_request_url= '/user/requests' |
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
173 |
newest, newer, req_obj, older, oldest = get_request(rid, user) |
122
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
174 |
|
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
175 |
if not req_obj: |
daee11bdfbaa
now rid is not the position argument. it is request id.
nishanth
parents:
111
diff
changeset
|
176 |
return show_msg(user, "Your reply has been processed", browse_request_url, "view other requests") |
100
2275886511df
now admin can accept a request for assigning credits.
nishanth
parents:
97
diff
changeset
|
177 |
|
83 | 178 |
if request.method=="POST": |
100
2275886511df
now admin can accept a request for assigning credits.
nishanth
parents:
97
diff
changeset
|
179 |
reply = True if reply == "yes" else False |
104 | 180 |
req_obj.remarks = request.POST.get('remarks', "") |
181 |
req_obj.save() |
|
182 |
||
100
2275886511df
now admin can accept a request for assigning credits.
nishanth
parents:
97
diff
changeset
|
183 |
reply_to_request(req_obj, reply, user) |
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
184 |
|
152
a65e1ef725dd
after replying to a request, you are redirected to browse redirects page.
nishanth
parents:
148
diff
changeset
|
185 |
return redirect('/user/requests/') |
108
131554cc3434
updated show_msg method to also use the user variable in the context.
nishanth
parents:
104
diff
changeset
|
186 |
return show_msg(user, "Your reply has been processed", browse_request_url, "view other requests") |
83 | 187 |
else: |
108
131554cc3434
updated show_msg method to also use the user variable in the context.
nishanth
parents:
104
diff
changeset
|
188 |
return show_msg(user, "You are not authorised to do this", browse_request_url, "view other requests") |
101 | 189 |
|
190 |
@login_required |
|
191 |
def browse_notifications(request): |
|
192 |
""" get the list of notifications that are not deleted and display in datetime order. |
|
193 |
""" |
|
194 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
195 |
user = get_user(request.user) |
101 | 196 |
|
123 | 197 |
active_notifications = user.notification_sent_to.filter(is_deleted=False).order_by('sent_date').reverse() |
101 | 198 |
|
199 |
context = { |
|
200 |
'user':user, |
|
201 |
'notifications':active_notifications, |
|
202 |
} |
|
203 |
||
204 |
return render_to_response('user/browse_notifications.html', context) |
|
103 | 205 |
|
206 |
@login_required |
|
207 |
def view_notification(request, nid): |
|
208 |
""" get the notification depending on nid. |
|
209 |
Display it. |
|
210 |
""" |
|
211 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
212 |
user = get_user(request.user) |
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
213 |
newest, newer, notification, older, oldest = get_notification(nid, user) |
123 | 214 |
if not notification: |
215 |
raise Http404 |
|
216 |
||
103 | 217 |
notification.is_read = True |
218 |
notification.save() |
|
219 |
||
220 |
context = { |
|
221 |
'user':user, |
|
222 |
'notification':notification, |
|
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
223 |
'newest':newest, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
224 |
'newer':newer, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
225 |
'older':older, |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
226 |
'oldest':oldest, |
103 | 227 |
} |
228 |
||
229 |
return render_to_response('user/view_notification.html', context) |
|
230 |
||
231 |
@login_required |
|
232 |
def edit_notification(request, nid, action): |
|
233 |
""" if action is delete, set is_deleted. |
|
234 |
if it is unread, unset is_read. |
|
235 |
save the notification and redirect to browse_notifications. |
|
236 |
""" |
|
237 |
||
138
c452c699a8af
now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents:
137
diff
changeset
|
238 |
user = get_user(request.user) |
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
239 |
newest, newer, notification, older, oldest = get_notification(nid, user) |
123 | 240 |
|
241 |
if not notification: |
|
242 |
raise Http404 |
|
243 |
||
103 | 244 |
notifications_url = "/user/notifications/" |
245 |
||
246 |
if request.method == "POST": |
|
247 |
if action == "delete": |
|
123 | 248 |
notification.is_deleted = True |
103 | 249 |
elif action == "unread": |
250 |
notification.is_read = False |
|
251 |
||
252 |
notification.save() |
|
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
253 |
if older: |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
254 |
return redirect('/user/notifications/nid=%s'%older.id) |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
255 |
else: |
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
127
diff
changeset
|
256 |
return redirect(notifications_url) |
103 | 257 |
else: |
108
131554cc3434
updated show_msg method to also use the user variable in the context.
nishanth
parents:
104
diff
changeset
|
258 |
return show_msg(user, 'This is wrong', notification_url, "view the notification") |
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
259 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
260 |
@login_required |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
261 |
def change_rights(request, role): |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
262 |
""" check if the current user has privileges to do this. |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
263 |
""" |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
264 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
265 |
user = get_user(request.user) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
266 |
role = role.upper() |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
267 |
user_profile = user.get_profile() |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
268 |
user_rights = user_profile.rights |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
269 |
|
145
0c97a02b9bdb
now accepting to be a MG deleted pending DV and MG reqs.
nishanth
parents:
143
diff
changeset
|
270 |
user_can_view = True if user_rights == "AD" or ( user_rights == "MG" and role in ["MG", "DV"] ) else False |
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
271 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
272 |
if user_can_view: |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
273 |
if role == "DV": |
148
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
274 |
current_contributors = list(User.objects.filter(is_active=True,profile__rights="CT")) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
275 |
pending_requests = user.request_sent_by.filter(is_replied=False,is_valid=True) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
276 |
pending_dv_requests = pending_requests.filter(role="DV") |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
277 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
278 |
## one cannot make same request many times |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
279 |
for req in pending_dv_requests: |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
280 |
current_contributors.remove(req.sent_to.all()[0]) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
281 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
282 |
choices = [ (_.id,_.username ) for _ in current_contributors ] |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
283 |
|
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
284 |
elif role == "MG": |
148
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
285 |
active_users = User.objects.filter(is_active=True) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
286 |
dv_ct_users = list(active_users.filter(profile__rights="CT") | active_users.filter(profile__rights="DV")) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
287 |
pending_requests = user.request_sent_by.filter(is_replied=False,is_valid=True) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
288 |
pending_mg_requests = pending_requests.filter(role="MG") |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
289 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
290 |
## same logic here. you cannot make another request exactly the same. |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
291 |
## but iam still not decided whether someone who requests a user to be admin, |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
292 |
## can be given a chance to request the same user to be a manager or developer |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
293 |
for req in pending_mg_requests: |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
294 |
dv_ct_users.remove(req.sent_to.all()[0]) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
295 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
296 |
choices = [ (_.id, _.username ) for _ in dv_ct_users ] |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
297 |
|
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
298 |
elif role == "AD": |
148
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
299 |
active_users = User.objects.filter(is_active=True) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
300 |
non_ad_users = list(active_users.exclude(profile__rights="AD")) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
301 |
pending_requests = user.request_sent_by.filter(is_replied=False,is_valid=True) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
302 |
pending_ad_requests = pending_requests.filter(role="AD") |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
303 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
304 |
## we filter out users who have already been requested by the user to be an admin |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
305 |
for req in pending_ad_requests: |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
306 |
non_ad_users.remove(req.sent_to.all()[0]) |
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
307 |
|
665eaf56e1d0
now a user who was requested to be something cannot be requested to be the same again.
nishanth
parents:
145
diff
changeset
|
308 |
choices = [ (_.id,_.username ) for _ in non_ad_users ] |
141
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
309 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
310 |
form = UserChoiceForm(choices) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
311 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
312 |
context = { |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
313 |
'user':user, |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
314 |
'form':form, |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
315 |
} |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
316 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
317 |
if request.method=="POST": |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
318 |
data = request.POST |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
319 |
form = UserChoiceForm(choices, data) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
320 |
if form.is_valid(): |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
321 |
user_to_change = User.objects.get(id=form.cleaned_data['user']) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
322 |
create_request(sent_by=user, role=role, sent_to=user_to_change) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
323 |
return show_msg(user, "A request has been sent", "/", "return to home page") |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
324 |
else: |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
325 |
raise Http404 |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
326 |
else: |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
327 |
return render_to_response('user/changerole.html', context) |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
328 |
else: |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
329 |
raise Http404 |
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
330 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
331 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
332 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
333 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
334 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
335 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
336 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
337 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
338 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
339 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
340 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
341 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
342 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
343 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
344 |
|
2489392ffb56
added the functionality to request a user to be AD MG DV.
nishanth
parents:
138
diff
changeset
|
345 |