JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
really added the padding this time
[contractor-progress.git] / tasks.php
index 395d995..f47e240 100644 (file)
--- a/tasks.php
+++ b/tasks.php
@@ -1,5 +1,20 @@
 <?php
 
+#  Copyright (C) 2008  Jason Woofenden
+#
+#  This program is free software: you can redistribute it and/or modify
+#  it under the terms of the GNU Affero General Public License as published by
+#  the Free Software Foundation, either version 3 of the License, or
+#  (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU Affero General Public License for more details.
+#
+#  You should have received a copy of the GNU Affero General Public License
+#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 require_once('code/tasks.php');
 
 $GLOBALS['tasks_form_recipient'] = "fixme@example.com";
@@ -16,15 +31,11 @@ function description_has_fixmes($description) {
        return (strpos($description, 'FIXME') !== false);
 }
 
-# replace every character in $str with "&nbsp;"
-function tonbsp($matches) {
-       return str_repeat('&nbsp;', strlen($matches[0]) * 2);
-}
-
 # encode as html, make it display newlines and leading spaces
 function enc_htmlbrtab($str) {
        $str = enc_htmlbr($str);
-       $str = preg_replace_callback("|^ *|m", tonbsp, $str);
+       $space_to_nbsp = create_function('$matches', 'return str_repeat(\'&nbsp;\', strlen($matches[0]) * 2);');
+       $str = preg_replace_callback("|^ *|m", $space_to_nbsp, $str);
        return $str;
 }
 
@@ -73,12 +84,12 @@ function tasks_display_main() {
        $task_id = format_int($_REQUEST['tasks_id']);;
        $client_id = logged_in();
        if(logged_in_as_contractor()) {
-               $row = db_get_row('tasks', 'title,url,description,state,price', 'where id=%i', $task_id);
+               $row = db_get_row('tasks', 'title,url,description,state,price,client_id', 'where id=%i', $task_id);
        } else {
-               $row = db_get_row('tasks', 'title,url,description,state,price', 'where id=%i && client_id=%i', $task_id, $client_id);
+               $row = db_get_row('tasks', 'title,url,description,state,price,client_id', 'where id=%i && client_id=%i', $task_id, $client_id);
        }
        if($row) {
-               list($title, $url, $description, $state, $price) = $row;
+               list($title, $url, $description, $state, $price, $owner_id) = $row;
                tem_set('task_id', $task_id);
                tem_set('title', $title);
                tem_set('url', $url);
@@ -96,7 +107,10 @@ function tasks_display_main() {
                                case TASK_NEEDS_CLARIFICATION:
                                case TASK_NEEDS_QUOTE:
                                case TASK_BUG:
+                                       tem_show('normal_edit_link');
+                               break;
                                case TASK_NEEDS_GO_AHEAD:
+                                       tem_show('approve_price_link');
                                        tem_show('normal_edit_link');
                                        tem_show('price_row');
                                break;
@@ -104,13 +118,19 @@ function tasks_display_main() {
                                        tem_show('normal_edit_link');
                                        tem_show('working_link');
                                        tem_show('price_row');
+                               break;
                                case TASK_WORKING:
                                        tem_show('price_row');
                                        tem_show('needs_testing_link');
                                break;
                                case TASK_NEEDS_TESTING:
+                                       if($owner_id == logged_in()) {
+                                               tem_show('finished_link');
+                                       }
+                                       # FALL THROUGH
                                case TASK_FINISHED:
                                        tem_show('price_row');
+                                       tem_show('mark_paid_link'); # FIXME
                                break;
                        }
                } else {
@@ -173,9 +193,20 @@ function tasks_edit_main() {
                $state = TASK_BUG;
        }
 
+       if(isset($_REQUEST['tasks_mark_paid_id'])) {
+               if(!logged_in_as_contractor()) {
+                       message("Error: only Jason can mark tasks as paid.");
+                       return './';
+               }
+               $id = $_REQUEST['tasks_mark_paid_id'];
+               db_update('tasks', 'paid', 1, 'where id=%i', $id);
+               message('Marked as paid.');
+               return './';
+       }
+
        if(isset($_REQUEST['tasks_approve_price_id'])) {
                $id = $_REQUEST['tasks_approve_price_id'];
-               $owner = db_get_value('tasks', 'client_id', 'where id=%i', $id);;
+               $owner = db_get_value('tasks', 'client_id', 'where id=%i', $id);
                if(logged_in() != $owner) {
                        message("Error: can't approve a task entered by/for another client.");
                        return './';
@@ -202,7 +233,7 @@ function tasks_edit_main() {
                        message("Error: only Jason can say when he's done.");
                        return './';
                }
-               db_update('tasks', 'state', TASK_NEEDS_TESTING, 'where id=%i', $id);
+               db_update('tasks', 'state,finished_at', TASK_NEEDS_TESTING, date('Y-m-d'), 'where id=%i', $id);
                message('Task awaits testing.');
                return './';
        }
@@ -239,7 +270,7 @@ function tasks_edit_main() {
                        $state = TASK_BUG;
                } elseif(isset($_REQUEST['save_price']) && logged_in_as_contractor()) {
                        $tiny_agreement = db_get_value('people', 'tiny_agreement', 'where id=%i', $client_id);
-                       if($price < $tiny_agreement) {
+                       if($price <= $tiny_agreement) {
                                $state = TASK_QUEUED;
                        } else {
                                $state = TASK_NEEDS_GO_AHEAD;
@@ -255,7 +286,7 @@ function tasks_edit_main() {
                        }
                }
 
-               if("you're happy with the POSTed values") {
+               if("you're happy with the POSTed values") { # if you change this change the one above
                        if($edit_id) {
                                if(isset($_REQUEST['price']) && logged_in_as_contractor()) {
                                        db_update('tasks', 'title,url,description,state,price', $title, $url, $description, $state, $price, 'where id=%i', $edit_id);
@@ -267,6 +298,9 @@ function tasks_edit_main() {
                                # new task
                                $paid = 0;
                                $client_id = logged_in();
+                               if(logged_in_as_contractor() && $_REQUEST['client_id']) {
+                                       $client_id = format_int($_REQUEST['client_id']);
+                               }
                                db_insert('tasks', 'client_id,title,url,description,state,paid', $client_id, $title, $url, $description, $state, $paid);
                                message('Task saved.');
                        }
@@ -313,6 +347,11 @@ function tasks_edit_main() {
                tem_show('bug_msg');
        } else {
                tem_show('new_msg');
+               if(logged_in_as_contractor()) {
+                       pulldown('client_id', db_get_rows('people', 'id,name', 'where id > 1'), PULLDOWN_2D);
+                       tem_set('client_id', format_int($_REQUEST['client_id']));
+                       tem_show('client_row');
+               }
        }
 
        # display instructions