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.. we should share this code with ticketedit really..
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 = 'ticketstate';
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 = 'ticketstate';
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         // we should really use begin/commit to determin if something has changed..
168         // and produce an error..
169         
170         
171         $CS = DB_DataObject::factory('mtrack_change');
172         $CS->begin($this->issue, empty($_POST['comment']) ? '' : $_POST['comment']);
173             
174         
175         //if (!empty($_POST['comment'])) {
176             // create a comment CS..
177             
178         //}
179         $CS->add($this->issue, $old);
180         $this->issue->updated = $CS->id;
181         $this->issue->update($old);
182         
183         // if the owner has changed.. then we should add them to the watch list...
184  
185         // MTrackWatch::watch_object('ticket', $this->issue->tid,  $this->issue->owner);
186         /*         
187         if (!count($this->error)) {
188             if (!empty($_FILES['attachments'])) {
189                 require_once 'MTrack/Attachment.php';
190                 foreach ($_FILES['attachments']['name'] as $fileid => $name) {
191                       
192                     MTrackAttachment::add("ticket:{$this->issue->tid}",
193                         $_FILES['attachments']['tmp_name'][$fileid],
194                         $_FILES['attachments']['name'][$fileid],
195                         $CS
196                     );
197                 }
198             }
199         }
200         if (!count($this->error) && $this->id != 'new') {
201             require_once 'MTrack/Attachment.php';
202             MTrackAttachment::process_delete("ticket:{$this->issue->tid}", $CS);
203         } 
204         */
205         $this->jok("OK");
206         
207     }
208       
209          
210     function initEditForm($params = array())
211     {
212         require_once 'HTML/Template/Flexy/Element.php';
213         require_once 'HTML/Template/Flexy/Factory.php';
214         $this->elements = array();
215         
216         
217          
218         // FIX ME - need to determine who the owner is..
219         // for a new issue it's the person who created it.
220         // later on it's an assignement???
221         DB_DataObject::debugLevel(1);
222         $pd = DB_DataObject::factory('ProjectDirectory');
223         $pd->project_id = $this->currentProject();
224         $pd->joinAdd(DB_DataObject::factory('Person'), 'LEFT');
225         $pd->selectAdd();
226         $pd->selectAdd('distinct(Person.id), distinct(Person.name)');
227         $pd->groupBy('Person.id, Person.name');
228         $pd->orderBy('Person.name');
229         $users = $pd->fetchAll();
230         
231         
232         //$users = array();
233          
234         $this->elements['owner'] = new HTML_Template_Flexy_Element('select');
235         $this->elements['owner']->setOptions($users);
236         
237         
238         
239         // keywords -- in toArray...
240         // milestone 
241           
242     
243     
244         foreach(array(  'resolution', 'ticketstate' ) as $c)  {
245             $d = DB_DataObject::factory('core_enum');
246             $d->etype = $c;
247             $d->orderBy('seqid ASC, name ASC');
248             if (!$d->count()) {
249                 $d->createBaseEntries();
250                 
251             }
252             $this->{$c} =  $d->fetchAll('id','name');
253             
254         }
255         
256     
257            
258         //    unset($ST['closed']);
259         //    unset($ST[$this->issue->status]);
260            
261         //    $this->change_status = empty($ST) ? array() : array_keys($ST);
262         
263         // admin can only change to 'fixed'?
264              
265         $this->elements = HTML_Template_Flexy_Factory::fromArray($this->issue->toArray(), $this->elements);
266  
267         
268
269           
270     }
271    
272      
273     function eq($a,$b) {
274         return $a == $b;
275     }
276     
277 }