taskapp/views/user.py
author nishanth
Thu, 25 Feb 2010 18:49:17 +0530
changeset 100 2275886511df
parent 97 3699550991c6
child 101 e2903a92b5e8
permissions -rw-r--r--
now admin can accept a request for assigning credits.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
     1
import os
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
     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
476613c3ab0a Only logged in users can view user profile.
anoop
parents: 28
diff changeset
     6
from django.contrib.auth.decorators import login_required
476613c3ab0a Only logged in users can view user profile.
anoop
parents: 28
diff changeset
     7
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
     8
from pytask.taskapp.models import Task, Profile, Request
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
     9
from pytask.taskapp.events.user import createUser, updateProfile
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
    10
from pytask.taskapp.forms.user import UserProfileEditForm
100
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
    11
from pytask.taskapp.events.request import reply_to_request
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    12
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    13
def show_msg(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
    14
    """ 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
    15
    
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    16
    return render_to_response('show_msg.html',{'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
    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
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
    19
    """ check for authentication and display accordingly. """
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    20
    
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    21
    user = request.user
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    22
    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
    23
    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
    24
    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
    25
    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
    26
    
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    27
    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
    28
        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
    29
        disp_num = 10
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    30
        tasks_count = Task.objects.count()
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    31
        if tasks_count <= disp_num:
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    32
            task_list = Task.objects.order_by('id').reverse()
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    33
        else:
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    34
            task_list = Task.objects.order_by('id').reverse()[:10]
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    35
            
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    36
        return render_to_response('index.html', {'is_guest':is_guest, 'task_list':task_list})
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    37
        
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    38
    else:
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    39
        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
    40
        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
    41
        can_create_task = False if user_profile.rights == u"CT" else True
97
3699550991c6 changed the homepage view as well as index.html.
anoop
parents: 86
diff changeset
    42
        notifications = user.notification_to.filter(deleted=False,is_read=False)
3699550991c6 changed the homepage view as well as index.html.
anoop
parents: 86
diff changeset
    43
        requests = user.request_sent_to.filter(is_replied=False)
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    44
        
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    45
        context = {'user':user,
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    46
                   'is_guest':is_guest,
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    47
                   'is_mentor':is_mentor,
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    48
                   'task_list':task_list,
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    49
                   'can_create_task':can_create_task,
97
3699550991c6 changed the homepage view as well as index.html.
anoop
parents: 86
diff changeset
    50
                   'notifications':notifications,
3699550991c6 changed the homepage view as well as index.html.
anoop
parents: 86
diff changeset
    51
                   'requests':requests,
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    52
                   }
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    53
                   
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 20
diff changeset
    54
        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
    55
39
476613c3ab0a Only logged in users can view user profile.
anoop
parents: 28
diff changeset
    56
@login_required
42
9b5b8c997598 started using django-registration default backend, removed browse users functionality.
anoop
parents: 40
diff changeset
    57
def view_my_profile(request,uid=None):
23
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    58
    """ allows the user to view the profiles of users """
42
9b5b8c997598 started using django-registration default backend, removed browse users functionality.
anoop
parents: 40
diff changeset
    59
    if uid == None:
9b5b8c997598 started using django-registration default backend, removed browse users functionality.
anoop
parents: 40
diff changeset
    60
        edit_profile = True
9b5b8c997598 started using django-registration default backend, removed browse users functionality.
anoop
parents: 40
diff changeset
    61
        profile = Profile.objects.get(user = request.user)
69
49532a0f5071 added user context variable in view_profile and edit_profile.
nishanth
parents: 68
diff changeset
    62
        return render_to_response('user/my_profile.html', {'edit_profile':edit_profile,'profile':profile, 'user':request.user})
23
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    63
    edit_profile = True if request.user == User.objects.get(pk=uid) else False
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    64
    try:
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    65
        profile = Profile.objects.get(user = User.objects.get(pk=uid))
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    66
    except Profile.DoesNotExist:
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    67
        raise Http404
69
49532a0f5071 added user context variable in view_profile and edit_profile.
nishanth
parents: 68
diff changeset
    68
    return render_to_response('user/my_profile.html', {'edit_profile':edit_profile,'profile':profile, 'user':request.user})
23
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    69
45
ab8918e654ae added forgot password in template.
anoop
parents: 42
diff changeset
    70
@login_required
23
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    71
def edit_my_profile(request):
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    72
    """ enables the user to edit his/her user profile """
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    73
    if request.method == 'POST':
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    74
        form = UserProfileEditForm(request.POST)
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    75
#        if not form.is_valid():
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    76
#            edit_profile_form = UserProfileEditForm(instance = form)
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    77
#            return render_to_response('user/edit_profile.html',{'edit_profile_form' : edit_profile_form})
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    78
        if request.user.is_authenticated() == True:
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    79
            profile = Profile.objects.get(user = request.user)
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    80
            data = request.POST#form.cleaned_data
61
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    81
            properties = {'aboutme':data['aboutme'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    82
                          'foss_comm':data['foss_comm'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    83
                          'phonenum':data['phonenum'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    84
                          'homepage':data['homepage'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    85
                          'street':data['street'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    86
                          'city':data['city'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    87
                          'country':data['country'],
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    88
                          'nick':data['nick']}
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    89
            uploaded_photo = request.FILES.get('photo',None)
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    90
            prev_photo = profile.photo
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    91
            if uploaded_photo:
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    92
                if prev_photo:
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    93
                    os.remove(prev_photo.path)
708dd49d531b added custom image storage for profile photo.
nishanth
parents: 60
diff changeset
    94
                properties['photo'] = uploaded_photo
23
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    95
            #fields = ['dob','gender','credits','aboutme','foss_comm','phonenum','homepage','street','city','country','nick']
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    96
            updateProfile(profile,properties)
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    97
            return redirect('/user/view/uid='+str(profile.user_id))
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    98
    else:
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
    99
        profile = Profile.objects.get(user = request.user)
f33084ea1361 added view profile and edit profile functionalities.
anoop
parents: 21
diff changeset
   100
        edit_profile_form = UserProfileEditForm(instance = profile)
69
49532a0f5071 added user context variable in view_profile and edit_profile.
nishanth
parents: 68
diff changeset
   101
        return render_to_response('user/edit_profile.html',{'edit_profile_form' : edit_profile_form, 'user':request.user})
28
e137b605b888 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 27
diff changeset
   102
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   103
@login_required
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   104
def browse_requests(request):
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   105
    
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   106
    user = request.user
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
   107
    active_reqs = user.request_sent_to.filter(is_replied=False)
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   108
    reqs = active_reqs.order_by('creation_date').reverse()
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   109
    for pos, req in enumerate(reversed(reqs)):
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   110
        req.pos = pos
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   111
    context = {
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   112
        'user':user,
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   113
        'reqs':reqs,
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   114
    }
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   115
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   116
    return render_to_response('user/browse_requests.html', context)
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   117
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   118
@login_required
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   119
def view_request(request, rid):
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   120
    """ please note that request variable in this method is that of django.
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   121
    our app request is called user_request.
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   122
    """
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   123
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   124
    user = request.user
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
   125
    reqs = user.request_sent_to.filter(is_replied=False).order_by('creation_date')
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   126
    user_request = reqs[int(rid)]
100
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   127
    user_request.is_read = True
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   128
    user_request.save()
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   129
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   130
    context = {
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   131
        'user':user,
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   132
        'req':user_request,
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
   133
        'sent_users':user_request.sent_to.all()
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   134
    }
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   135
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   136
    return render_to_response('user/view_request.html', context)
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   137
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   138
@login_required
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   139
def process_request(request, rid, reply):
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   140
    """ check if the method is post and then update the request.
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   141
    if it is get, display a 404 error.
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   142
    """
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   143
100
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   144
    user = request.user
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   145
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   146
    if request.method=="POST":
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   147
        browse_request_url= '/user/requests'
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
   148
        reqs = user.request_sent_to.filter(is_replied=False).order_by('creation_date')
100
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   149
        req_obj = reqs[int(rid)]
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   150
        reply = True if reply == "yes" else False
2275886511df now admin can accept a request for assigning credits.
nishanth
parents: 97
diff changeset
   151
        reply_to_request(req_obj, reply, user)
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
   152
        
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   153
        return show_msg("Your reply has been processed", browse_request_url, "view other requests")
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   154
    else:
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents: 69
diff changeset
   155
        return show_msg("You are not authorised to do this", browse_request_url, "view other requests")