Exemple #1
0
 public function act($urlParameters, \Core\Http $http, \Core\Application $app, \Core\Database $db, \DBMappers\AppointmentItem $appMapper, \DBMappers\EmpItem $empItemMapper)
 {
     $appointment = $appMapper->getById($urlParameters[0], $db);
     $chain = $appMapper->getChain($appointment->getChain(), $db);
     $full_chain_count = $chain->count();
     $chain->applyFilter(new \DateTime());
     $can_modify = $chain->count() > 0;
     $values = $this->getValuesArray($appointment);
     $values['apply_chain_proxy'] = 0;
     $detailsErrors = array();
     if ($http->getRequestMethod() == 'GET') {
         $app->setStateDetails(array('details_appointment' => $appointment, 'details_errors' => $detailsErrors, 'details_values' => $values, 'can_modify' => $can_modify, 'is_chain' => $full_chain_count > 1, 'hour_mode' => $app->getHourMode()));
     } else {
         //error_log("\npost:" . print_r($http->post(), true), 3, 'my_errors.txt');
         $values = array_merge(array(), $http->post());
         $bookingData = new \Application\BookingChange();
         $this->validateForm($values, $detailsErrors, $bookingData);
         if ($this->isEmptyValues($detailsErrors)) {
             //error_log("\nBookData:" . print_r($bookingData, true), 3, 'my_errors.txt');
             if ($bookingData->isApplyChain()) {
                 $chain->applyChange($bookingData);
             } else {
                 $chain->applyChangeToMember($appointment->getId(), $bookingData);
             }
             $appMatcher = new \Application\AppointmentMatcher();
             $crossings = $appMatcher->getCrossingAppointments($chain, $appMapper, $db);
             if (count($crossings) > 0) {
                 $message = \Utility\HtmlHelper::MakeCrossingMessage($crossings, $empItemMapper, $db);
                 $app->setStateDetails(array('details_appointment' => $appointment, 'details_errors' => $detailsErrors, 'details_values' => $values, 'can_modify' => $can_modify, 'error_message' => $message, 'is_chain' => $chain->count() > 1, 'hour_mode' => $app->getHourMode()));
             } else {
                 if ($bookingData->isApplyChain()) {
                     foreach ($chain as $member) {
                         $appMapper->save($member, $db);
                     }
                     $chain->rewind();
                     if ($chain->count() > 0) {
                         $appointment = $chain->current();
                     } else {
                         $appointment = null;
                     }
                 } else {
                     $appointment = $chain->get($appointment->getId());
                     if ($chain->isMeetFilter($appointment)) {
                         $appMapper->save($chain->get($appointment->getId()), $db);
                     } else {
                         $appointment = null;
                     }
                 }
                 if (is_null($appointment)) {
                     $message = "No changes were applied.";
                 } else {
                     $message = '<span style="font-weight:normal">The event has been modified to <strong>' . \Utility\DateHelper::FormatTimeAccordingRule($appointment->getTimeStart(), $app->getHourMode()) . ' - ' . \Utility\DateHelper::FormatTimeAccordingRule($appointment->getTimeEnd(), $app->getHourMode()) . '</strong>.<br>' . 'The text for this event is: ' . $appointment->getNotes() . '</span>';
                 }
                 $app->setMessage($message);
                 $app->setStateRedirect(DETAILS_RETURN_URL);
             }
         } else {
             $app->setStateDetails(array('details_appointment' => $appointment, 'details_errors' => $detailsErrors, 'details_values' => $values, 'can_modify' => $can_modify, 'is_chain' => $chain->count() > 1, 'hour_mode' => $app->getHourMode()));
         }
     }
 }