MTrackWeb/Ticket.php
[web.mtrack] / MTrackWeb / Ticket.php
1 <?php # vim:ts=2:sw=2:et:
2 /* For licensing and copyright terms, see the file named LICENSE */
3  
4 //require_once 'MTrack/Captcha.php';
5
6  
7 require_once 'MTrackWeb.php';
8 class MTrackWeb_Ticket extends MTrackWeb 
9 {
10     var $id; // 0 = new
11     var $issue;
12     var $preview;
13     var $error;
14     var $editable;
15     var $tid = 0; // or the MD5 rep.
16     
17      
18     
19      function getAuth() 
20     {
21         parent::getAuth();
22         //require_once 'MTrack/ACL.php';
23      //   MTrackACL::requireAllRights('Browser', 'read');
24         return true;
25   
26     }
27     
28     function get($pi= 0)
29     {
30     
31         if (!isset($_REQUEST['ajax_body'])) {
32             return;
33         }
34         $this->masterTemplate = 'ticket.html';
35         $this->id = $pi ?  $pi: (isset($_GET['id']) ? $_GET['id'] : 0);
36         $this->id  = (int) $this->id;
37         $this->loadIssue();
38         $this->initEditForm();
39
40     }
41     
42    function loadIssue( )
43    {
44      
45         // -- load issue..
46
47         $this->issue = DB_DataObject::factory('mtrack_ticket');
48         $this->issue->autoJoin();
49         if (!$this->id ||  !$this->issue->get($this->id)) {
50             $this->jerr("no such ticket");
51         }
52         
53         if ($this->issue->project_id != $this->currentProject()) {
54             $this->jerr("not in current project");
55         }
56         
57         
58         
59         
60         
61         //$this->issue->augmentFormFields($this->fieldset());
62
63
64         $this->preview = false;
65         $this->error = array();
66        
67        
68         if (!$this->id && !$this->hasPerm('MTrack.Issue','A')) {
69             return HTML_FlexyFramework::run('Noperm');
70         }
71         
72         if ($this->id &&  (  !$this->hasPerm('MTrack.Issue','S')    )) {
73             $this->jerr('no permission');
74         }
75         
76         $this->editable = !$this->hasPerm('MTrack.Issue','E') ;
77          
78         //$this->issue->milestoneURL = $this->baseURL.'/Milestone'; // fix me later..
79     
80         $this->showEditBar = false;
81          
82         if ($this->editable && $this->id   && !$this->preview) {
83             $this->showEditBar = true;
84         }
85          
86  
87         
88       
89     }
90    
91     function post() // handle the post...
92     {
93         
94         $this->id = empty($_POST['id']) ? 0 : $_POST['id'];
95         $this->loadIssue();
96         $old = clone($this->issue);
97          
98         //  $this->preview = isset($_POST['preview']) ? true : false;
99         if (!$this->hasPerm('MTrack.Issue','E') ) {
100             $this->jerr("permission denied");
101         }
102           
103            
104         $comment = empty($_POST['comment']) ? '' : $_POST['comment'];
105          
106         
107         //    $CS = MTrackChangeset::begin("ticket:X", $comment);
108            
109
110         $act= explode('_', $_POST['status'] , 2);
111             //var_dump($act);exit;
112             // input type='radio' id='none' name='status' value='{issue.status}' checked='checked'> 
113             //   <label for='accept'>Assign this ticket to <b style="color:red">ME</b></label><br>
114             // <input type='radio' id='ticketstate_{cid}' name='status' value='change_{cid}' flexy:ignore="yes"> 
115             //           <input type='radio' id='resolution_{cid}' name='status' value='resolution_{cid}'  flexy:ignore="yes"> 
116                
117         switch ($act[0]) {
118           
119                 
120               
121             case 'accept':
122                 // will be applied to the issue further down
123                 $this->issue->owner = $this->authUser->id;
124                 if ($this->issue->status_name == 'new') {
125                     $d = DB_DataObject::factory('core_enum');
126                     $d->etype = 'status';
127                     $d->name = 'open'; // assigned?
128                     $d->find(true); 
129                     $this->issue->status = $d->id;
130                 }
131                 break;
132                 
133                 
134               case 'resolution':
135                 //$this->issue->resolution = $_POST['resolution'];
136                 $this->issue->resolution_id = $act[1];
137                 $d = DB_DataObject::factory('core_enum');
138                 $d->etype = 'status';
139                 $d->name = 'closed'; // assigned?
140                 $d->find(true);
141                 $this->issue->status = $d->id;
142                 //$this->issue->close();
143                 //$_POST['estimated'] = $this->issue->estimated;
144                 break;  
145                 
146             case 'change':
147                 $this->issue->status = $act[1];
148                 break;
149             
150             // default leave - stays tehe same..
151         }
152         
153         // things that we should not allow..
154         foreach(array(
155             'estimated', 'effort', 'owner',
156         ) as $k) {
157             if (isset($_POST[$k])) {
158                 $this->issue->setFrom(array($k => $_POST[$k]));
159             }
160         }
161          
162         //  $this->issue->addEffort(
163         //    empty($_POST['spent']) ? 0 : $_POST['spent'], 
164         //    empty($_POST['estimate']) ? 0 : $_POST['estimate']
165         //);
166         
167         $CS = DB_DataObject::factory('mtrack_change');
168         $CS->begin($this->issue, empty($_POST['comment']) ? '' : $_POST['comment']);
169             
170         
171         //if (!empty($_POST['comment'])) {
172             // create a comment CS..
173             
174         //}
175         $CS->add($old, $this->issue);
176         $CS->update($old);
177         
178         // if the owner has changed.. then we should add them to the watch list...
179  
180         // MTrackWatch::watch_object('ticket', $this->issue->tid,  $this->issue->owner);
181         /*         
182         if (!count($this->error)) {
183             if (!empty($_FILES['attachments'])) {
184                 require_once 'MTrack/Attachment.php';
185                 foreach ($_FILES['attachments']['name'] as $fileid => $name) {
186                       
187                     MTrackAttachment::add("ticket:{$this->issue->tid}",
188                         $_FILES['attachments']['tmp_name'][$fileid],
189                         $_FILES['attachments']['name'][$fileid],
190                         $CS
191                     );
192                 }
193             }
194         }
195         if (!count($this->error) && $this->id != 'new') {
196             require_once 'MTrack/Attachment.php';
197             MTrackAttachment::process_delete("ticket:{$this->issue->tid}", $CS);
198         } 
199         */
200         $this->jok("OK");
201         
202     }
203       
204          
205     function initEditForm($params = array())
206     {
207         require_once 'HTML/Template/Flexy/Element.php';
208         require_once 'HTML/Template/Flexy/Factory.php';
209         $this->elements = array();
210         
211         
212          
213         // FIX ME - need to determine who the owner is..
214         // for a new issue it's the person who created it.
215         // later on it's an assignement???
216         
217         $users = array();
218          
219         $this->elements['owner'] = new HTML_Template_Flexy_Element('select');
220         $this->elements['owner']->setOptions($users);
221         
222         
223         
224         // keywords -- in toArray...
225         // milestone 
226           
227     
228     
229         foreach(array(  'resolution', 'ticketstate' ) as $c)  {
230             $d = DB_DataObject::factory('core_enum');
231             $d->etype = $c;
232             $d->orderBy('seqid ASC, name ASC');
233             if (!$d->count()) {
234                 $d->createBaseEntries();
235                 
236             }
237             $this->{$c} =  $d->fetchAll('id','name');
238             
239         }
240         
241     
242            
243         //    unset($ST['closed']);
244         //    unset($ST[$this->issue->status]);
245            
246         //    $this->change_status = empty($ST) ? array() : array_keys($ST);
247         
248         // admin can only change to 'fixed'?
249              
250         $this->elements = HTML_Template_Flexy_Factory::fromArray($this->issue->toArray(), $this->elements);
251  
252         
253
254           
255     }
256    
257      
258     function eq($a,$b) {
259         return $a == $b;
260     }
261     
262 }