コード例 #1
0
ファイル: comment_new.php プロジェクト: rsesek/Bugdar2
 public function Fire()
 {
     if ($this->input->do == 'submit') {
         $bug = new Bug($this->input->bug_id);
         try {
             $bug->FetchInto();
         } catch (phalanx\data\ModelException $e) {
             EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('BUG_ID_NOT_FOUND')));
             return;
         }
         $body = trim($this->input->body);
         if (empty($body)) {
             EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('COMMENT_MISSING_BODY')));
             return;
         }
         $comment = new Comment();
         $comment->bug_id = $bug_id;
         $comment->post_user_id = Bugdar::$auth->current_user();
         $comment->post_date = time();
         $comment->body = $body;
         $comment->Insert();
         $this->comment_id = $comment->comment_id;
         $search = new SearchEngine();
         $search->IndexBug($bug);
         EventPump::Pump()->PostEvent(new StandardSuccessEvent('view_bug/' . $bug_id, l10n::S('USER_REGISTER_SUCCESS')));
     }
 }
コード例 #2
0
ファイル: bug_view.php プロジェクト: rsesek/Bugdar2
 public function Fire()
 {
     $bug = new Bug($this->input->_id);
     try {
         $bug->FetchInto();
     } catch (\phalanx\data\ModelException $e) {
         EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('BUG_ID_NOT_FOUND')));
         return;
     }
     $this->bug = $bug;
     $this->bug_reporter = $bug->FetchReporter();
     $this->attributes = $bug->FetchAttributes();
     $this->comments = $bug->FetchComments();
 }
コード例 #3
0
ファイル: bug_edit.php プロジェクト: rsesek/Bugdar2
 public function Fire()
 {
     $do_insert = $this->input->action == 'insert';
     $do_update = $this->input->action == 'update';
     if ($this->input->_method != 'POST') {
         EventPump::Pump()->RaiseEvent(new StandardErrorEvent('Request must be POSTed'));
         return;
     }
     // Create an empty Model object if creating a new bug, or fetch the data of
     // an existing bug to update.
     if ($do_insert) {
         $bug = new Bug();
     } else {
         if ($do_update) {
             $bug = new Bug($this->input->bug_id);
             try {
                 $bug->FetchInto();
             } catch (\phalanx\data\ModelException $e) {
                 EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('BUG_ID_NOT_FOUND')));
                 return;
             }
         } else {
             EventPump::Pump()->RaiseEvent(new StandardErrorEvent('Invalid bug operation'));
             return;
         }
     }
     $this->action = $this->input->action;
     $user = Bugdar::$auth->current_user();
     $title = trim($this->input->title);
     if (empty($title) && $do_insert) {
         EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('BUG_MISSING_TITLE')));
         return;
     }
     Bugdar::$db->BeginTransaction();
     $now = time();
     if (!empty($title)) {
         $bug->title = $title;
     }
     if ($do_insert) {
         $bug->reporting_user_id = $user->user_id;
         $bug->reporting_date = $now;
         $bug->Insert();
     } else {
         if ($do_update) {
             $bug->Update();
         }
     }
     // Now set the bug_id output value, which will be set after a call to
     // Insert().  Updated bugs will have this set from FetchInto().
     $this->bug_id = $bug->bug_id;
     // Add a comment if one is present.
     $body = trim($this->input->comment_body);
     if (!empty($body) || $do_insert) {
         if ($do_insert && empty($body)) {
             EventPump::Pump()->RaiseEvent(new StandardErrorEvent(l10n::S('COMMENT_MISSING_BODY')));
             return;
         }
         $comment = new Comment();
         $comment->bug_id = $this->bug_id;
         $comment->post_user_id = $user->user_id;
         $comment->post_date = $now;
         $comment->body = $body;
         $comment->Insert();
         $this->comment_id = $comment->comment_id;
         // Update the bug so it can find that first comment easiliy.
         if ($do_insert) {
             $bug = new Bug($bug->bug_id);
             $bug->first_comment_id = $comment->comment_id;
             $bug->Update();
             $bug->FetchInto();
         }
     }
     // Handle tags.
     if (is_array($this->input->tags_new)) {
         foreach ($this->input->tags_new as $tag) {
             $bug->SetAttribute('', $tag);
         }
     }
     if (is_array($this->input->tags_deleted)) {
         foreach ($this->input->tags_deleted as $tag) {
             $bug->RemoveAttribute($tag, TRUE);
         }
     }
     // Create a map of all the set attributes.
     $set_attributes = array();
     if (is_array($this->input->attributes)) {
         foreach ($this->input->attributes as $attr) {
             // If this is an empty attribute, ignore it.
             if (empty($attr['title']) || empty($attr['value'])) {
                 continue;
             }
             $set_attributes[$attr['title']] = $attr['value'];
         }
         // Get all potential attributes; this includes defined tags.
         $attributes = Attribute::FetchGroup();
         foreach ($attributes as $attr) {
             // If the user is allowed to write to this attribute, update the
             // value.
             if ($attr->is_attribute() && $attr->CheckAccess($user, $bug) & Attribute::ACCESS_WRITE) {
                 // If there is no value for this attribute, then it was removed.
                 if (!isset($set_attributes[$attr->title])) {
                     $bug->RemoveAttribute($attr->title, $attr->is_tag());
                     continue;
                 }
                 // Otherwise, update the value.
                 $validate = $attr->Validate($set_attributes[$attr->title]);
                 if ($validate[0]) {
                     $bug->SetAttribute($attr->title, $validate[1]);
                     unset($set_attributes[$attr->title]);
                 }
             }
         }
         // Any remaining set_attributes are not formally defined.  If the user
         // has permission to set ad-hoc attributes, do so.
         if (TRUE) {
             // TODO: check permission
             foreach ($set_attributes as $title => $value) {
                 $bug->SetAttribute($title, $value);
             }
         }
     }
     Bugdar::$db->Commit();
     $search = new SearchEngine();
     $search->IndexBug($bug);
     $string = $do_insert ? l10n::S('BUG_CREATED_SUCCESSFULLY') : l10n::S('BUG_EDIT_SUCCESS');
     EventPump::Pump()->PostEvent(new StandardSuccessEvent('view_bug/' . $this->bug_id, $string));
 }
コード例 #4
0
ファイル: bug_edit_test.php プロジェクト: rsesek/Bugdar2
 public function testNewBug()
 {
     $data = new phalanx\base\PropertyBag(array('_method' => 'POST', 'action' => 'insert', 'title' => 'New Bug', 'comment_body' => 'This is a Test Bug'));
     $event = new BugEditEvent($data);
     $time = time();
     EventPump::Pump()->PostEvent($event);
     $this->assertEquals(EventPump::EVENT_FINISHED, $event->state());
     $bug = new Bug($event->bug_id());
     $bug->FetchInto();
     $this->assertEquals($data->title, $bug->title);
     $this->assertEquals(Bugdar::$auth->current_user()->user_id, $bug->reporting_user_id);
     $this->assertEquals(0, $bug->hidden);
     $this->assertGreaterThanOrEqual($time, $bug->reporting_date);
     $comment = new Comment($event->comment_id());
     $comment->FetchInto();
     $this->assertEquals($bug->bug_id, $comment->bug_id);
     $this->assertEquals($bug->first_comment_id, $comment->comment_id);
     $this->assertEquals(Bugdar::$auth->current_user()->user_id, $comment->post_user_id);
     $this->assertGreaterThanOrEqual($time, $comment->post_date);
     $this->assertEquals($data->comment_body, $comment->body);
 }