taskapp/views/task.py
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 00:17:53 +0530
changeset 222 eeef395a4e02
parent 221 a3de0d3c60a3
child 223 b592ed0b12b1
permissions -rw-r--r--
corrected a typo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
     1
from datetime import datetime
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
     2
151
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
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 render_to_response, redirect
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
     5
205
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
     6
from pytask.taskapp.models import User, Task, Comment, Request, Notification
120
aad4e6065d85 moved the getTask method to task_utilities.
nishanth
parents: 114
diff changeset
     7
from pytask.taskapp.utilities.task import getTask
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
     8
from pytask.taskapp.forms.task import TaskCreateForm, AddReviewerForm, AddTaskForm, ChoiceForm, AssignPyntForm, RemoveUserForm, EditTaskForm, ClaimTaskForm, WorkReportForm
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
     9
from pytask.taskapp.events.task import createTask, reqReviewer, publishTask, addSubTask, addDep, addClaim, assignTask, updateTask, removeTask, removeUser, assignPynts, completeTask, closeTask, addReviewer, deleteTask
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
    10
from pytask.taskapp.views.user import show_msg
138
c452c699a8af now all the pages show number of unread beside requests and notifications link in sidebar.
nishanth
parents: 136
diff changeset
    11
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
    12
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
    13
## everywhere if there is no task, django should display 500 message.. but take care of that in sensitive views like add reviewer and all
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
    14
## do not create su user thro syncdb
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
    15
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    16
def browse_tasks(request):
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    17
    """ display all the tasks """
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    18
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
    19
    user = get_user(request.user) if request.user.is_authenticated() else request.user
124
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    20
    task_list = Task.objects.exclude(status="UP").exclude(status="DL").order_by('published_datetime').reverse()
217
307f699e6102 Now browse tasks page does not display textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 215
diff changeset
    21
307f699e6102 Now browse tasks page does not display textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 215
diff changeset
    22
    task_list = task_list.exclude(tags_field__icontains="textbook")
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    23
    
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    24
    context = {'user':user,
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':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
    return render_to_response('task/browse.html', context)
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
    28
215
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    29
def show_textbooks(request):
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    30
    """ display all the tasks """
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    31
    
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    32
    user = get_user(request.user) if request.user.is_authenticated() else request.user
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    33
    task_list = Task.objects.exclude(status="UP").exclude(status="DL").order_by('published_datetime').reverse()
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    34
217
307f699e6102 Now browse tasks page does not display textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 215
diff changeset
    35
    task_list = task_list.filter(tags_field__icontains="textbook")
215
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    36
    
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    37
    context = {'user':user,
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    38
               'task_list':task_list,
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    39
               }
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    40
    return render_to_response('task/browse.html', context)
84ec0ca5bc68 Added a page for displaying all the textbooks
Nishanth Amuluru <nishanth@fossee.in>
parents: 205
diff changeset
    41
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    42
def upload_work(request, tid):
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    43
    """ Check if the work is in WR state and the user is in assigned_users.
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    44
    """
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    45
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    46
    task_url = "/task/view/tid=%s"%tid
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    47
    
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    48
    user = get_user(request.user) if request.user.is_authenticated() else request.user
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    49
    task = getTask(tid)
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    50
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    51
    if not task.status == "WR":
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    52
        return show_msg(user, "The task is not in a stage to upload content", task_url, "view the task")
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    53
221
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    54
    can_upload = True if user in task.assigned_users.all() else False
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    55
221
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    56
    old_reports = WorkReport.workreport_report.all()
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    57
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    58
    context = {
221
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    59
        'user': user,
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    60
        'task': task,
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    61
        'old_reports': old_reports,
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    62
    }
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    63
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    64
    if request.method == "POST":
221
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    65
        if not can_upload:
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    66
            return show_msg(user, "You are not authorised to upload data to this task", task_url, "view the task")
a3de0d3c60a3 created form and created basic template for work report
Nishanth Amuluru <nishanth@fossee.in>
parents: 220
diff changeset
    67
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    68
        pass
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    69
    else:
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    70
        form = WorkReportForm()
222
eeef395a4e02 corrected a typo
Nishanth Amuluru <nishanth@fossee.in>
parents: 221
diff changeset
    71
        context.update({"form":form})
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    72
        return render_to_response('task/report.html', context)
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    73
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
    74
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    75
def publish_task(request, tid):
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
    76
    """ check if user is the reviewer and also if the task status is UP.
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    77
    """
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    78
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    79
    task_url = "/task/view/tid=%s"%tid
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    80
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
    81
    user = get_user(request.user) if request.user.is_authenticated() else request.user
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    82
    task = getTask(tid)
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    83
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    84
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
    85
    is_reviewer = True if user in task.reviewers.all() else False
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    86
124
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    87
    if user == task.created_by:
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    88
        context = {
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    89
            'user':user,
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    90
        }
124
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    91
        if task.status == "UP":
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    92
            if request.method == "POST":
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    93
                publishTask(task)
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    94
                return show_msg(user, "The task has been published", task_url, "view the task")
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    95
            else:
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    96
                return render_to_response('task/publish.html', context)
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    97
        else:
124
6d92b7cd2a37 taking care if publish task post request is made again. added published_date field to task.
nishanth
parents: 120
diff changeset
    98
            return show_msg(user, "The task is already published", task_url, "view the task")
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
    99
    else:
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
   100
        return show_msg(user, "You are not authorised to do this", '/task/browse/', "browse tasks")
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
   101
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   102
def view_task(request, tid):
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   103
    """ get the task depending on its tid and display accordingly if it is a get.
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   104
    check for authentication and add a comment if it is a post request.
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   105
    """
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   106
    
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   107
    task_url = "/task/view/tid=%s"%tid
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   108
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   109
    user = get_user(request.user) if request.user.is_authenticated() else request.user
55
ca2486e29178 added a utility called getTask in task events and made changes in task views accordingly
nishanth
parents: 36
diff changeset
   110
    task = getTask(tid)
110
3685c2333448 now deleted tasks cannot be viewed by anyone
nishanth
parents: 109
diff changeset
   111
3685c2333448 now deleted tasks cannot be viewed by anyone
nishanth
parents: 109
diff changeset
   112
    if task.status == "DL":
3685c2333448 now deleted tasks cannot be viewed by anyone
nishanth
parents: 109
diff changeset
   113
        return show_msg(user, 'This task no longer exists', '/task/browse/','browse the tasks')
155
52958289d81f now if a task has subs, it will remain locked forever.
nishanth
parents: 154
diff changeset
   114
    comments = task.comment_set.filter(is_deleted=False).order_by('creation_datetime')
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   115
    reviewers = task.reviewers.all()
90
b2426897ff18 our task model does not meet out needs. so modified it and added a model called map. made the changes in views accordingly.phew!!!. this one took the hell out of me :( .
nishanth
parents: 89
diff changeset
   116
b2426897ff18 our task model does not meet out needs. so modified it and added a model called map. made the changes in views accordingly.phew!!!. this one took the hell out of me :( .
nishanth
parents: 89
diff changeset
   117
    deps, subs = task.deps, task.subs
b2426897ff18 our task model does not meet out needs. so modified it and added a model called map. made the changes in views accordingly.phew!!!. this one took the hell out of me :( .
nishanth
parents: 89
diff changeset
   118
    
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   119
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   120
    is_reviewer = True if user in task.reviewers.all() else 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
   121
    context = {'user':user,
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   122
               'task':task,
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   123
               'comments':comments,
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   124
               'reviewers':reviewers,
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   125
               'subs':subs,
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   126
               'deps':deps,
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   127
               'is_guest':is_guest,
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   128
               'is_reviewer':is_reviewer,
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   129
              }
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   130
160
05157d35d66f imposed a constraint that edit_task url is not displayed if task is OP and has claimed_users.
nishanth
parents: 159
diff changeset
   131
    claimed_users = task.claimed_users.all()
05157d35d66f imposed a constraint that edit_task url is not displayed if task is OP and has claimed_users.
nishanth
parents: 159
diff changeset
   132
192
8c982f517786 fixed a small syntax error .
nishanth
parents: 191
diff changeset
   133
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   134
    is_requested_reviewer = True if user.is_authenticated() and user.request_sent_to.filter(is_valid=True,is_replied=False,role="MT",task=task) else False
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   135
    task_viewable = True if ( task.status != "UP" ) or is_reviewer or is_requested_reviewer else False
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 181
diff changeset
   136
    if not task_viewable:
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 181
diff changeset
   137
        return show_msg(user, "You are not authorised to view this task", "/task/browse/", "browse the tasks")
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   138
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   139
    context['is_requested_reviewer'] = is_requested_reviewer
192
8c982f517786 fixed a small syntax error .
nishanth
parents: 191
diff changeset
   140
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 110
diff changeset
   141
    context['can_publish'] = True if task.status == "UP" and user == task.created_by else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   142
    context['can_edit'] = True if task.status == "UP" and is_reviewer else False
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   143
    context['can_close'] = True if task.status not in ["UP", "CD", "CM"] and is_reviewer else False
167
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   144
    context['can_delete'] = True if task.status == "UP" and user == task.created_by else False
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   145
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   146
    context['can_mod_reviewers'] = True if task.status in ["UP", "OP", "LO", "WR"] and is_reviewer else False
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   147
    context['can_mod_tasks'] = True if task.status in ["UP", "OP", "LO"] and is_reviewer else False
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   148
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   149
    context['can_assign_pynts'] = True if task.status in ["OP", "WR"] and is_reviewer else False
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   150
    context['task_claimable'] = True if task.status in ["OP", "WR"] and not is_guest else False
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   151
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   152
    if task.status == "CD":
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   153
        context['closing_notification'] =  Notification.objects.filter(task=task,role="CD")[0]
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   154
    elif task.status == "CM":
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   155
        context['completed_notification'] =  Notifications.objects.filter(task=task,role="CM")[0]
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   156
    elif task.status == "WR":
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   157
        context['assigned_users'] = task.assigned_users.all()
64
e743fe1f0f99 updated view task in views to suit the new design .
nishanth
parents: 55
diff changeset
   158
   
17
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   159
    if request.method == 'POST':
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   160
        if not is_guest:
176
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 167
diff changeset
   161
            data = request.POST.get("data", "").strip()
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 167
diff changeset
   162
            if not data:
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 167
diff changeset
   163
                context['error_msg'] = "Enter some message to comment"
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 167
diff changeset
   164
                return render_to_response('task/view.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
   165
            new_comment = Comment(task=task, data=data, created_by=user, creation_datetime=datetime.now())
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   166
            new_comment.save()
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   167
            return redirect(task_url)
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   168
        else:
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   169
            errors.append("You must be logged in to post a comment")
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   170
            return render_to_response('task/view.html', context)
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   171
    else:
aa45fec40e7e renamed users.py to user.py and tasks to task in views folder and updated urls.py accordingly .
nishanth
parents:
diff changeset
   172
        return render_to_response('task/view.html', context)
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   173
        
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   174
def create_task(request):
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   175
    """ check for rights and create a task if applicable.
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   176
    if user cannot create a task, redirect to homepage.
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   177
    """
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   178
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   179
    user = get_user(request.user) if request.user.is_authenticated() else request.user
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   180
    is_guest = True if not user.is_authenticated() else False
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   181
    
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   182
    if not is_guest:
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   183
        user_profile = user.get_profile()
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   184
        can_create_task = False if user_profile.rights == "CT" else True
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   185
        if can_create_task:
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   186
            if request.method == "POST":
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   187
                form = TaskCreateForm(request.POST)
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   188
                if form.is_valid():
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   189
                    data = form.cleaned_data
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   190
                    title = data['title']
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   191
                    desc = data['desc']
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   192
                    pynts = data['pynts']
166
ac72d641046e now task can have a title of a deleted task.
nishanth
parents: 165
diff changeset
   193
                    #publish = data['publish'] # just in case if we have to show the option
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   194
                    task = createTask(title,desc,user,pynts)
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   195
                    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   196
                    addReviewer(task, user)
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   197
                    updateTask(task,tags_field=data['tags_field'])
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   198
                    # if publish: publishTask(task)    
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   199
                    task_url = '/task/view/tid=%s'%task.id
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   200
                    return redirect(task_url)
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   201
                else:
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   202
                    return render_to_response('task/create.html',{'user':user, 'form':form})
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   203
            else:
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   204
                form = TaskCreateForm()
177
4a7206176345 create task page now shows a proper side bar.
nishanth
parents: 176
diff changeset
   205
                return render_to_response('task/create.html',{'user':user, 'form':form})
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   206
        else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   207
            return show_msg(user, 'You are not authorised to create a task.')
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   208
    else:
180
972745147e3f fixed a bug in edit_task view.
nishanth
parents: 179
diff changeset
   209
        return show_msg(user, 'You are not authorised to create a task.', "/", "home page")
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   210
        
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   211
def add_reviewer(request, tid):
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   212
    """ check if the current user has the rights to edit the task and add him.
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   213
    if user is not authenticated, redirect him to concerned page. """
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   214
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   215
    task_url = "/task/view/tid=%s"%tid
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   216
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   217
    user = get_user(request.user) if request.user.is_authenticated() else request.user
55
ca2486e29178 added a utility called getTask in task events and made changes in task views accordingly
nishanth
parents: 36
diff changeset
   218
    task = getTask(tid)
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   219
    errors = []
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   220
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   221
    is_guest = True if not user.is_authenticated() else False
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   222
    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   223
    if (not is_guest) and user in task.reviewers.all():
149
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   224
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   225
        pending_requests = Request.objects.filter(is_replied=False,is_valid=True,role="MT",task=task).order_by('creation_date').reverse()
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   226
        user_pending_requests = pending_requests.filter(sent_by=user)
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   227
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   228
        ## now iam going for a brute force method
76
00a41fbf4958 fixed a bug in add_claim view in views/task .
nishanth
parents: 75
diff changeset
   229
        user_list = list(User.objects.filter(is_active=True))
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   230
        for reviewer in task.reviewers.all():
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   231
            user_list.remove(reviewer)
34
22f302094806 fixed a bug in views/task/add_mentor method .
nishanth
parents: 33
diff changeset
   232
            
22f302094806 fixed a bug in views/task/add_mentor method .
nishanth
parents: 33
diff changeset
   233
        for a_user in task.claimed_users.all():
22f302094806 fixed a bug in views/task/add_mentor method .
nishanth
parents: 33
diff changeset
   234
            user_list.remove(a_user)
76
00a41fbf4958 fixed a bug in add_claim view in views/task .
nishanth
parents: 75
diff changeset
   235
00a41fbf4958 fixed a bug in add_claim view in views/task .
nishanth
parents: 75
diff changeset
   236
        for a_user in task.assigned_users.all():
00a41fbf4958 fixed a bug in add_claim view in views/task .
nishanth
parents: 75
diff changeset
   237
            user_list.remove(a_user)
149
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   238
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   239
        for req in user_pending_requests:
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   240
            user_list.remove(req.sent_to.all()[0])
34
22f302094806 fixed a bug in views/task/add_mentor method .
nishanth
parents: 33
diff changeset
   241
            
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   242
        non_reviewers = ((_.id, _.username) for _ in user_list)
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   243
        non_reviewer_ids = [ str(a_user.id) for a_user in user_list ]
34
22f302094806 fixed a bug in views/task/add_mentor method .
nishanth
parents: 33
diff changeset
   244
        ## code till must be made elegant and not brute force like above
149
3395960549e8 now a user cannot make two requests to another user for mentoring a task.
nishanth
parents: 141
diff changeset
   245
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   246
        form = AddReviewerForm(non_reviewers)
151
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   247
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   248
        context = {
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   249
            'user':user,
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 155
diff changeset
   250
            'task':task,
151
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   251
            'pending_requests':pending_requests,
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   252
            'form':form,
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   253
        }
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   254
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   255
        if request.method == "POST":
151
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   256
            data = request.POST
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   257
            uid = data.get('reviewer', None)
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   258
            if uid in non_reviewer_ids:
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   259
                new_reviewer = User.objects.get(id=int(uid))
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   260
                reqReviewer(task, new_reviewer, user)
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   261
                return redirect('/task/addreviewer/tid=%s'%task.id)
151
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   262
            else:
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   263
                ## bogus post request
d0cb85ba462a no bogus post request can be made now in addmentor page.
nishanth
parents: 149
diff changeset
   264
                raise Http404
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   265
        else:
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   266
            return render_to_response('task/addreviewer.html', context)
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   267
    else:
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   268
        return show_msg(user, 'You are not authorised to add reviewers for this task', task_url, 'view the task')
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   269
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   270
def add_tasks(request, tid):
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   271
    """ first display tasks which can be subtasks for the task and do the rest.
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   272
    """
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   273
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   274
    task_url = "/task/view/tid=%s"%tid
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   275
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   276
    user = get_user(request.user) if request.user.is_authenticated() else request.user
55
ca2486e29178 added a utility called getTask in task events and made changes in task views accordingly
nishanth
parents: 36
diff changeset
   277
    task = getTask(tid)
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   278
90
b2426897ff18 our task model does not meet out needs. so modified it and added a model called map. made the changes in views accordingly.phew!!!. this one took the hell out of me :( .
nishanth
parents: 89
diff changeset
   279
    deps, subs = task.deps, task.subs
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   280
    is_plain = False if deps or subs else True
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   281
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   282
    ## again a brute force method
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   283
    valid_tasks = []
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   284
    for a_task in Task.objects.all():
90
b2426897ff18 our task model does not meet out needs. so modified it and added a model called map. made the changes in views accordingly.phew!!!. this one took the hell out of me :( .
nishanth
parents: 89
diff changeset
   285
        if not ( a_task in deps or a_task in subs or a_task.status=="CD" or a_task==task ):
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   286
            valid_tasks.append(a_task)
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   287
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   288
    task_choices = [ (_.id,_.title) for _ in valid_tasks ]
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   289
    errors = []
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   290
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   291
    is_guest = True if not user.is_authenticated() else False
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   292
    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   293
    if (not is_guest) and user in task.reviewers.all():
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   294
        if task.status in ["UP", "OP", "LO"]:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   295
            form = AddTaskForm(task_choices, is_plain)
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   296
            if request.method == "POST":
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   297
                ## first decide if adding subs and deps can be in same page
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   298
                ## only exclude tasks with status deleted
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   299
                data = request.POST
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   300
                if is_plain and not data.get('type', None): errors.append('Please choose which type of task(s) do you want to add.')
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   301
                if not data.get('task', None): errors.append('Please choose a one task')
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   302
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   303
                if not errors:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   304
                    if is_plain:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   305
                        update_method = addDep if data['type'] == "D" else addSubTask
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   306
                    elif deps:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   307
                        update_method = addDep
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   308
                    elif subs:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   309
                        update_method = addSubTask
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   310
                    else:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   311
                        print "Screw you"
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   312
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   313
                    ## we might iterate over a task list later on
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   314
                    task_id = data['task']
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   315
                    sub_or_dep = getTask(task_id)
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   316
                    update_method(task, sub_or_dep)
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   317
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   318
                    return redirect(task_url)
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   319
                else:
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   320
                    return render_to_response('task/addtask.html', {'user':user, 'form':form, 'errors':errors})
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   321
            else:
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   322
                return render_to_response('task/addtask.html', {'user':user, 'form':form, 'errors':errors})
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   323
        else:
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   324
            errors = ["The task cannot be added subtasks or dependencies in this state"]
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   325
#            return render_to_response('task/add.html', {'form':form, 'errors':errors})
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   326
            return show_msg(user, 'The task cannot be added subtasks or dependencies now', task_url, 'view the task')
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   327
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   328
        return show_msg(user, 'You are not authorised to add subtasks or dependencies for this task', task_url, 'view the task')
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   329
    
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   330
def remove_task(request, tid):
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   331
    """ display a list of tasks and remove the selectes ones.
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   332
    """
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 76
diff changeset
   333
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   334
    task_url = "/task/view/tid=%s"%tid
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   335
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   336
    user = get_user(request.user) if request.user.is_authenticated() else request.user
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   337
    task = getTask(tid)
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   338
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   339
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   340
    if (not is_guest) and user in task.reviewers.all():
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   341
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   342
        if task.status in ["UP", "LO", "OP"]:
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   343
            
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   344
            deps, subs = task.deps, task.subs
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   345
            task_list = deps if task.sub_type == "D" else subs
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   346
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   347
            if task_list:
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   348
                choices = [(_.id,_.title) for _ in task_list ]
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   349
                form = ChoiceForm(choices)
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   350
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   351
                errors = []
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   352
                
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   353
                context = {
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   354
                    'user':user,
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   355
                    'task':task,
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   356
                    'form':form,
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   357
                }
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   358
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   359
                if request.method == "POST":
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   360
                    data = request.POST
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   361
                    if not data.get('choice', None):
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   362
                        errors.append("Please choose a task to remove.")
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   363
                        context['errors'] = errors
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   364
                    if not errors:
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   365
                        tid = data['choice']
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   366
                        sub_task = getTask(tid)
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   367
                        removeTask(task, sub_task)
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   368
                        return redirect(task_url)
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   369
                    else:
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   370
                        return render_to_response('task/removetask.html', context)
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   371
                else:
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   372
                    return render_to_response('task/removetask.html', context)
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   373
            else:
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   374
                return show_msg(user, "The task has no subtasks/dependencies to be removed", task_url, "view the task")
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   375
        else:
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   376
            return show_msg(user, "subtasks/dependencies cannot be removed at this stage", task_url, "view the task")
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   377
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   378
        return show_msg(user, "You are not authorised to do this", task_url, "view the task")
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents: 91
diff changeset
   379
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   380
def claim_task(request, tid):
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   381
    """ display a list of claims for get and display submit only if claimable """
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   382
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   383
    ## create claims model and create a new database with required tables for it
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   384
    ## see if that "one to n" or "n to one" relationship has a special field
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   385
    
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   386
    task_url = "/task/view/tid=%s"%tid
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   387
    claim_url = "/task/claim/tid=%s"%tid
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   388
    
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   389
    errors = []
21
c28774fe7ffd implemented "add another mentor" functionality to a task.
nishanth
parents: 18
diff changeset
   390
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   391
    user = get_user(request.user) if request.user.is_authenticated() else request.user
55
ca2486e29178 added a utility called getTask in task events and made changes in task views accordingly
nishanth
parents: 36
diff changeset
   392
    task = getTask(tid)
205
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   393
    
204
fa1da06d25c9 now claims are read from notifications. we can ditchax claims model now.
nishanth
parents: 193
diff changeset
   394
    #claims = task.notifications_task.filter(role="CL",sent_to=task.created_by) 
fa1da06d25c9 now claims are read from notifications. we can ditchax claims model now.
nishanth
parents: 193
diff changeset
   395
    # this is what the next line should be when i re sync the db
fa1da06d25c9 now claims are read from notifications. we can ditchax claims model now.
nishanth
parents: 193
diff changeset
   396
    claims = Notification.objects.filter(task=task, sent_to=task.created_by, role="CL")
72
9fc60a221016 modified claim_task view to suit the new design
nishanth
parents: 66
diff changeset
   397
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   398
    reviewers = task.reviewers.all()
72
9fc60a221016 modified claim_task view to suit the new design
nishanth
parents: 66
diff changeset
   399
    claimed_users = task.claimed_users.all()
76
00a41fbf4958 fixed a bug in add_claim view in views/task .
nishanth
parents: 75
diff changeset
   400
    assigned_users = task.assigned_users.all()
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   401
    
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   402
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   403
    is_reviewer = True if user in reviewers else False
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   404
72
9fc60a221016 modified claim_task view to suit the new design
nishanth
parents: 66
diff changeset
   405
    task_claimable = True if task.status in ["OP", "WR"] else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   406
    user_can_claim = True if  task_claimable and not ( is_guest or is_reviewer ) and ( user not in claimed_users ) and ( user not in assigned_users )  else False
72
9fc60a221016 modified claim_task view to suit the new design
nishanth
parents: 66
diff changeset
   407
    task_claimed = True if claimed_users else False
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   408
    
72
9fc60a221016 modified claim_task view to suit the new design
nishanth
parents: 66
diff changeset
   409
    context = {'user':user,
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   410
               'is_reviewer':is_reviewer,
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   411
               'task':task,
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   412
               'claims':claims,
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   413
               'user_can_claim':user_can_claim,
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   414
               'task_claimable':task_claimable,
33
0d0ea7b188d5 fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents: 25
diff changeset
   415
               'task_claimed':task_claimed,
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   416
               'errors':errors}
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   417
    
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   418
    if not is_guest:
205
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   419
        form = ClaimTaskForm()
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   420
        context['form'] = form
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   421
        if request.method == "POST":
205
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   422
            form = ClaimTaskForm(request.POST)
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   423
            context['form'] = form
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   424
            if form.is_valid():
0c317f68df49 ditchaxed the claims model.
nishanth
parents: 204
diff changeset
   425
                claim_proposal = form.cleaned_data['message']
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   426
                addClaim(task, claim_proposal, user)
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   427
                return redirect(claim_url)
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   428
            else:
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   429
                return render_to_response('task/claim.html', context)
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   430
        else:
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   431
            return render_to_response('task/claim.html', context)
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 21
diff changeset
   432
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   433
        return show_msg(user, 'You are not logged in to view claims for this task', task_url, 'view the task')
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   434
    
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   435
def rem_user(request, tid):
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   436
    """ show a list of working users and ask for a message/reason for removing user.
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   437
    """
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   438
    
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   439
    task_url = "/task/view/tid=%s"%tid
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   440
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   441
    user = get_user(request.user) if request.user.is_authenticated() else request.user
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   442
    task = getTask(tid)
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   443
    
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   444
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   445
    is_reviewer = True if user in task.reviewers.all() else False
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   446
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   447
    if (not is_guest) and is_reviewer:
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   448
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   449
        assigned_users = task.assigned_users.all()
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   450
        choices = [ (_.id,_.username) for _ in assigned_users ]
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   451
        context = {
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   452
            'user':user,
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   453
            'task':task,
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   454
        }
158
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   455
        
162
d378eff02f2e added au ru notifications.
nishanth
parents: 160
diff changeset
   456
        if task.status in ["WR"]:
158
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   457
            if assigned_users:
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   458
                form = RemoveUserForm(choices)
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   459
                context['form'] = form
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   460
                if request.method == "POST":
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   461
                    data = request.POST
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   462
                    form = RemoveUserForm(choices, data)
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   463
                    if form.is_valid():
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   464
                        data = form.cleaned_data
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   465
                        uid = data['user']
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   466
                        reason = data['reason']
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   467
                        rem_user = User.objects.get(id=uid)
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   468
                        removeUser(task, rem_user, user, reason)
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   469
                        return redirect(task_url)
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   470
                    else:
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   471
                        context['form'] = form
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   472
                        return render_to_response('task/remove_user.html', context)
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   473
                else:
158
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   474
                    return render_to_response('task/remove_user.html',context)
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   475
            else:
158
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   476
                return show_msg(user, "There is no one working on this task to be kicked off", task_url, "view the task")
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   477
        else:
158
c43e0114e593 removing user deletes all the pending requests that request giving him pynts.
nishanth
parents: 157
diff changeset
   478
            return show_msg(user, "This is not the stage to remove users", task_url, "view the task")
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   479
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   480
        return show_msg(user, "You are not authorised to do this", task_url, "view the task")
94
d1f59bbc2685 added capability to remove an assigned user.
nishanth
parents: 93
diff changeset
   481
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   482
def assign_task(request, tid):
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   483
    """ first get the status of the task and then assign it to one of claimed users
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   484
    generate list of claimed users by passing it as an argument to a function.
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   485
    """
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   486
    
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   487
    task_url = "/task/view/tid=%s"%tid
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   488
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   489
    user = get_user(request.user) if request.user.is_authenticated() else request.user
55
ca2486e29178 added a utility called getTask in task events and made changes in task views accordingly
nishanth
parents: 36
diff changeset
   490
    task = getTask(tid)
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   491
    
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   492
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   493
    is_reviewer = True if user in task.reviewers.all() else False
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   494
75
fa59955a340b modified the assign task view to suit the new design
nishanth
parents: 72
diff changeset
   495
    claimed_users = task.claimed_users.all()
fa59955a340b modified the assign task view to suit the new design
nishanth
parents: 72
diff changeset
   496
    assigned_users = task.assigned_users.all()
fa59955a340b modified the assign task view to suit the new design
nishanth
parents: 72
diff changeset
   497
fa59955a340b modified the assign task view to suit the new design
nishanth
parents: 72
diff changeset
   498
    task_claimed = True if claimed_users else False
18
a39549bd5b08 implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents: 17
diff changeset
   499
    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   500
    if (not is_guest) and is_reviewer:
157
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   501
        if task.status in ["OP", "WR"]:
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   502
            if task_claimed:
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   503
                user_list = ((user.id,user.username) for user in claimed_users)
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   504
                form = ChoiceForm(user_list)
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   505
        
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   506
                if request.method == "POST":
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   507
                    uid = request.POST['choice']
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   508
                    assigned_user = User.objects.get(id=uid)
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   509
                    assignTask(task, assigned_user, user)
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   510
                    return redirect(task_url)
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   511
                else:
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   512
                    return render_to_response('task/assign.html',{'user':user, 'task':task,'form':form})
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   513
            elif assigned_users:
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   514
                return show_msg(user, 'When the no of users you need for the task is more than the no of users willing to do the task, I\'d say please re consider the task :P',task_url, 'view the task')
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   515
            else:
157
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   516
                return show_msg(user, 'Wait for ppl to claim dude... slow and steady wins the race :)', task_url, 'view the task')
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   517
        else: 
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   518
            return show_msg(user, "The task cannot be assigned to users at this stage", task_url, 'view the task')
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   519
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   520
        return show_msg(user, 'You are not authorised to perform this action', task_url, 'view the task')
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   521
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   522
def assign_pynts(request, tid):
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   523
    """ Check if the user is a reviewer and pynts can be assigned.
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   524
    Then display all the approved pynts.
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   525
    Then see if reviewer can assign pynts to users also or only reviewers.
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   526
    Then put up a form for reviewer to assign pynts accordingly.
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   527
    """
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   528
    
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   529
    task_url = "/task/view/tid=%s"%tid
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   530
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   531
    user = get_user(request.user) if request.user.is_authenticated() else request.user
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   532
    task = getTask(tid)
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   533
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   534
    ## the moment we see that user had requested pynts, it means he had worked and hence we change the status to WR
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   535
    ## we have to discuss on this since, pynts may also be given to reviewer
157
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   536
    task.status = "WR"
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   537
    task.save()
65d5e9737d1c fixed assign_task method to display a not_allowed message if task status not in OP WR.
nishanth
parents: 156
diff changeset
   538
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   539
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   540
    is_reviewer = True if (not is_guest) and user in task.reviewers.all() else False
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   541
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   542
    if is_reviewer:
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   543
        if task.status in ["OP", "WR"]:
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   544
            choices = [(_.id,_.username) for _ in task.reviewers.all()]
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   545
            if task.status == "WR":
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   546
                choices.extend([(_.id, _.username) for _  in task.assigned_users.all() ])
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   547
            prev_pynts = task.request_task.filter(role="PY",is_valid=True,is_replied=True,reply=True).count()
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   548
            pynt_requests = task.request_task.filter(role="PY",is_valid=True).order_by('creation_date').reverse()
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   549
            form = AssignPyntForm(choices)
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   550
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   551
            context = {
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   552
                'user':user,
96
2881ed1c52b0 added events addCredits and assignCredits and modified assign_credits view accordingly.
nishanth
parents: 94
diff changeset
   553
                'task':task,
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   554
                'prev_pynts':prev_pynts,
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   555
                'pynt_requests':pynt_requests,
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   556
                'form':form,
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   557
            }
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   558
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   559
            if request.method == "POST":
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   560
                data = request.POST
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   561
                form = AssignPyntForm(choices, data)
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   562
                if form.is_valid():
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   563
                    data = form.cleaned_data
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   564
                    uid = data['user']
136
8632a44b743d deducing previous credits for a task using the request model. with a few changes, we can ditchax the credits model.
nishanth
parents: 135
diff changeset
   565
                    points = data['pynts']
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   566
                    given_to = User.objects.get(id=uid)
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   567
                    assignPynts(task=task, given_by=user, given_to=given_to, points=points)
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   568
                    return redirect('/task/assignpynts/tid=%s'%task.id)
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   569
                else:
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   570
                    context['form'] = form
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   571
                    return render_to_response('task/assignpynts.html', context)
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   572
            else:
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   573
                return render_to_response('task/assignpynts.html', context)
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   574
        else:
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   575
            return show_msg(user, "Pynts cannot be assigned at this stage", task_url, "view the task")
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   576
    else:
108
131554cc3434 updated show_msg method to also use the user variable in the context.
nishanth
parents: 105
diff changeset
   577
        return show_msg(user, "You are not authorised to perform this action", task_url, "view the task")
93
1a1e712e60fd finished assign_credits view. hav to integrate it with requests now.
nishanth
parents: 92
diff changeset
   578
36
0f10deac0a9b made urls.py look better and added an empty method edit_task to taskViews .
nishanth
parents: 34
diff changeset
   579
def edit_task(request, tid):
0f10deac0a9b made urls.py look better and added an empty method edit_task to taskViews .
nishanth
parents: 34
diff changeset
   580
    """ see what are the attributes that can be edited depending on the current status
0f10deac0a9b made urls.py look better and added an empty method edit_task to taskViews .
nishanth
parents: 34
diff changeset
   581
    and then give the user fields accordingly.
0f10deac0a9b made urls.py look better and added an empty method edit_task to taskViews .
nishanth
parents: 34
diff changeset
   582
    """
25
c0e4fc8b8b5b added the functionality to assign a task to one of the claimed users.
nishanth
parents: 22
diff changeset
   583
    
180
972745147e3f fixed a bug in edit_task view.
nishanth
parents: 179
diff changeset
   584
    task = getTask(tid)
972745147e3f fixed a bug in edit_task view.
nishanth
parents: 179
diff changeset
   585
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   586
    task_url = "/task/view/tid=%s"%tid
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   587
    user = get_user(request.user) if request.user.is_authenticated() else request.user
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   588
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   589
    is_reviewer = True if user in task.reviewers.all() else False
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   590
    can_edit = True if is_reviewer and task.status == "UP" else False
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   591
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   592
    if can_edit:
181
be8ad7e26176 now editing of tasks is done in elegant way.
nishanth
parents: 180
diff changeset
   593
        form = EditTaskForm(instance=task)
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   594
        if request.method=="POST":
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   595
            data = request.POST
181
be8ad7e26176 now editing of tasks is done in elegant way.
nishanth
parents: 180
diff changeset
   596
            form = EditTaskForm(data, instance=task)
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   597
            if form.is_valid():
181
be8ad7e26176 now editing of tasks is done in elegant way.
nishanth
parents: 180
diff changeset
   598
                form.save()
165
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   599
                return redirect(task_url)
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   600
            else:
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   601
                return render_to_response('task/edittask.html',{'user':user, 'form':form})
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   602
        else:
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   603
            return render_to_response('task/edittask.html',{'user':user, 'form':form})
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   604
    else:
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   605
        return show_msg(user, "You cannot edit the task at this stage", task_url, "view the task")
8ea5bcf3bd01 implemented edit_task functionality.
nishanth
parents: 164
diff changeset
   606
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   607
def complete_task(request, tid):
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   608
    """ call the event called complete task.
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   609
    and also pass it the current user to know who marked it as complete. 
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   610
    """
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   611
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   612
    task_url = "/task/view/tid=%s"%tid
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   613
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   614
    user = get_user(request.user) if request.user.is_authenticated() else request.user
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   615
    task = getTask(tid)
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   616
    
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   617
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   618
    is_reviewer = True if user in task.reviewers.all() else False
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   619
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   620
    claimed_users = task.claimed_users.all()
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   621
    assigned_users = task.assigned_users.all()
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   622
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   623
    assign_pynts_url = '/task/assignpynts/tid=%s'%task.id
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   624
    task_assigned_pynts = task.pynt_set.all()
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   625
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   626
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   627
    if is_reviewer:
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   628
        if task.status in ["OP", "WR"]:
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   629
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   630
            context = {
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   631
                'user':user,
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   632
                'task':task,
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   633
            }
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   634
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   635
            if task_assigned_pynts:
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   636
                if request.method=="POST":
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   637
                    completeTask(task, user)
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   638
                    return redirect(task_url)
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   639
                else:
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   640
                    return render_to_response('task/complete.html', context)
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   641
            else:
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   642
                return show_msg(user, "Nobody has been pynted for doing this task.", assign_pynts_url, "assign pynts")
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   643
        else:
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   644
            return show_msg(user, "The task cannot be marked as completed at this stage", task_url, "view the task")
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   645
    else:
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   646
        return show_msg(user, "You are not authorised to do this", task_url, "view the task")
38793914921b mark task as complete functionality is added.
nishanth
parents: 112
diff changeset
   647
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   648
def close_task(request, tid):
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   649
    """ task can be closed only if task is published.
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   650
    call the event close task if everything is fine.
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   651
    """
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   652
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   653
    task_url = "/task/view/tid=%s"%tid
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   654
    
141
2489392ffb56 added the functionality to request a user to be AD MG DV.
nishanth
parents: 138
diff changeset
   655
    user = get_user(request.user) if request.user.is_authenticated() else request.user
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   656
    task = getTask(tid)
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   657
    
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   658
    is_guest = True if not user.is_authenticated() else False
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   659
    is_reviewer = True if user in task.reviewers.all() else False
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   660
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   661
    if is_reviewer:
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   662
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   663
        context = {
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   664
            'user':user,
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   665
            'task':task,
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   666
        }
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   667
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   668
        if not task.status in ["UP", "CD", "DL", "CM"]:
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   669
            if request.method == "POST":
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   670
                data = request.POST
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   671
                if not data.get("reason", None):
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   672
                    context["error"] = "Please enter a reason for closing the task"
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   673
                    return render_to_response('task/close.html', context)
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   674
                else:
153
925af1b4ee65 ditchaxed credit model.
nishanth
parents: 151
diff changeset
   675
                    closeTask(task, user, data['reason'])
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   676
                    return show_msg(user, "The task has been closed.", task_url, "view the task.")
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   677
            else:
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   678
                return render_to_response('task/close.html', context)
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   679
        else:
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 158
diff changeset
   680
            return show_msg(user, "The task is either already closed or cannot be closed at this stage", task_url, "view the task")
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   681
    else:
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 124
diff changeset
   682
        return show_msg(user, "You are not authorised to do this", task_url, "view the task")
167
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   683
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   684
def delete_task(request, tid):
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   685
    """ mark the task status as DL.
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 217
diff changeset
   686
    take a reason from the user and pass on to all the other reviewers.
167
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   687
    """
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   688
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   689
    task_url = "/task/view/tid=%s"%tid
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   690
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   691
    task = getTask(tid)
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   692
    user = get_user(request.user) if request.user.is_authenticated() else request.user
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   693
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   694
    if task.status == "DL":
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   695
        return show_msg(user, "This task no longer exists", '/task/browse/', "to browse other tasks")
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   696
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   697
    can_delete = True if task.status == "UP" and task.created_by == user else False
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   698
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   699
    if can_delete:
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   700
        if request.method == "POST":
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   701
            data = request.POST
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   702
            reason = data.get('reason', None)
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   703
            deleteTask(task, user, reason)
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   704
            return show_msg(user, "The task is deleted", '/', "to return to home page")
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   705
        else:
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   706
            return render_to_response('task/delete.html',{'user':user,})
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   707
    else:
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 166
diff changeset
   708
        return show_msg(user, "You are not authorised to do this at this stage", task_url, "view the task")