Example #1
0
 /**
  * Handle domain logic for an action.
  *
  * @param array $input
  *
  * @return PayloadInterface
  */
 public function __invoke(array $input)
 {
     $user = $this->user_repository->getFromInputToken($input);
     if ($user->role !== 'manager') {
         throw new AuthException('Only managers have access to do that');
     }
     if (empty($input['id'])) {
         throw new \DomainException('You must supply the shift id');
     }
     if (!empty($input['start_time'])) {
         $input['start_time'] = date('Y-m-d G:i:s', strtotime($input['start_time']));
         if ($input['start_time'] === false) {
             throw new \DomainException("Could not parse 'start time'");
         }
     }
     if (!empty($input['end_time'])) {
         $input['end_time'] = date('Y-m-d G:i:s', strtotime($input['end_time']));
         if ($input['end_time'] === false) {
             throw new \DomainException("Could not parse 'end time'");
         }
     }
     // only grab the necessary fields
     $values = array_intersect_key($input, array_flip(['id', 'manager_id', 'employee_id', 'break', 'start_time', 'end_time']));
     $shift = $this->shift_repository->update($input['id'], $values);
     return $this->payload->withStatus(PayloadInterface::OK)->withOutput([$shift]);
 }
Example #2
0
 /**
  * Handle domain logic for an action.
  *
  * @param array $input
  *
  * @return PayloadInterface
  */
 public function __invoke(array $input)
 {
     $user = $this->user_repository->getFromInputToken($input);
     if ($user->role === 'employee') {
         $shifts = $this->shift_repository->getShiftsForEmployee($user->id, $input);
     } elseif ($user->role === 'manager') {
         $shifts = $this->shift_repository->getShiftsForManager($input);
     } else {
         throw new \DomainException('Unknown user role');
     }
     return $this->payload->withStatus(PayloadInterface::OK)->withOutput($shifts);
 }
Example #3
0
 /**
  * Handle domain logic for an action.
  *
  * @param array $input
  *
  * @return PayloadInterface
  */
 public function __invoke(array $input)
 {
     $user = $this->user_repository->getFromInputToken($input);
     $data = $this->shift_repository->getEmployeeShiftSummary($user->id, !empty($input['year']) ? $input['year'] : null);
     return $this->payload->withStatus(PayloadInterface::OK)->withOutput($data);
 }