@@ -1,6 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | trait Processor |
| 3 | 3 | { |
| 4 | + /** |
|
| 5 | + * @param string $certType |
|
| 6 | + */ |
|
| 4 | 7 | protected function certCheck($requirements, $certs, $certType) |
| 5 | 8 | { |
| 6 | 9 | if(isset($requirements[$certType]) && $requirements[$certType]) |
@@ -254,7 +254,7 @@ |
||
| 254 | 254 | $tmp = $dataTable->read(); |
| 255 | 255 | foreach($tmp as $role) |
| 256 | 256 | { |
| 257 | - $roles[$role['short_name']] = $role; |
|
| 257 | + $roles[$role['short_name']] = $role; |
|
| 258 | 258 | } |
| 259 | 259 | } |
| 260 | 260 | $entry['isAdmin'] = $this->isAdminForShift($entry, $this->user); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | protected function canUpdate($request, $entity) |
| 42 | 42 | { |
| 43 | - if($this->isVolunteerAdmin($request)) |
|
| 43 | + if($this->isVolunteerAdmin($request)) |
|
| 44 | 44 | { |
| 45 | 45 | return true; |
| 46 | 46 | } |
@@ -113,8 +113,8 @@ discard block |
||
| 113 | 113 | $ret = $dataTable->update($filter, $entArray[$i]); |
| 114 | 114 | if($ret === false) |
| 115 | 115 | { |
| 116 | - $myRet = false; |
|
| 117 | - array_push($errors, $array[$i]); |
|
| 116 | + $myRet = false; |
|
| 117 | + array_push($errors, $array[$i]); |
|
| 118 | 118 | } |
| 119 | 119 | } |
| 120 | 120 | if($myRet) |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | $leads = array(); |
| 185 | 185 | for($i = 0; $i < $count; $i++) |
| 186 | 186 | { |
| 187 | - $leads = array_merge($leads, $this->getLeadForDepartment($overlaps[$i]['departmentID'])); |
|
| 187 | + $leads = array_merge($leads, $this->getLeadForDepartment($overlaps[$i]['departmentID'])); |
|
| 188 | 188 | $overlaps[$i]['status'] = 'pending'; |
| 189 | 189 | } |
| 190 | 190 | $leads = array_merge($leads, $this->getLeadForDepartment($entity['departmentID'])); |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | protected function canUpdate($request, $entity) |
| 42 | 42 | { |
| 43 | 43 | if($this->isVolunteerAdmin($request)) |
| 44 | - { |
|
| 44 | + { |
|
| 45 | 45 | return true; |
| 46 | 46 | } |
| 47 | 47 | return $this->isUserDepartmentLead($entity['departmentID'], $this->user); |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | protected function canUpdate($request, $entity) |
| 37 | 37 | { |
| 38 | - if($this->isVolunteerAdmin($request)) |
|
| 38 | + if($this->isVolunteerAdmin($request)) |
|
| 39 | 39 | { |
| 40 | 40 | return true; |
| 41 | 41 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $odata = $request->getAttribute('odata', new \ODataParams(array())); |
| 84 | 84 | $filter = $this->getFilterForPrimaryKey($uid); |
| 85 | 85 | $areas = $dataTable->read($filter, $odata->select, $odata->top, |
| 86 | - $odata->skip, $odata->orderby); |
|
| 86 | + $odata->skip, $odata->orderby); |
|
| 87 | 87 | if(empty($areas)) |
| 88 | 88 | { |
| 89 | 89 | return $response->withStatus(404); |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | protected function canUpdate($request, $entity) |
| 37 | 37 | { |
| 38 | 38 | if($this->isVolunteerAdmin($request)) |
| 39 | - { |
|
| 39 | + { |
|
| 40 | 40 | return true; |
| 41 | 41 | } |
| 42 | 42 | //TODO give access to department lead |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | protected function canUpdate($request, $entity) |
| 39 | 39 | { |
| 40 | - if($this->isVolunteerAdmin($request)) |
|
| 40 | + if($this->isVolunteerAdmin($request)) |
|
| 41 | 41 | { |
| 42 | 42 | return true; |
| 43 | 43 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | } |
| 97 | 97 | } |
| 98 | 98 | $shifts = $dataTable->read($filter, $odata->select, $odata->top, |
| 99 | - $odata->skip, $odata->orderby); |
|
| 99 | + $odata->skip, $odata->orderby); |
|
| 100 | 100 | if($shifts === false) |
| 101 | 101 | { |
| 102 | 102 | $shifts = array(); |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | protected function canUpdate($request, $entity) |
| 39 | 39 | { |
| 40 | 40 | if($this->isVolunteerAdmin($request)) |
| 41 | - { |
|
| 41 | + { |
|
| 42 | 42 | return true; |
| 43 | 43 | } |
| 44 | 44 | return false; |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | class ProcessorUser |
| 6 | 6 | { |
| 7 | - use Processor; |
|
| 7 | + use Processor; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | $processor = new ProcessorUser(); |
@@ -15,9 +15,9 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | if(!isset($_GET['shiftID'])) |
| 17 | 17 | { |
| 18 | - $page->body .= 'Error! Missing Shift ID. You must have followed a bad link!'; |
|
| 19 | - $page->printPage(); |
|
| 20 | - return; |
|
| 18 | + $page->body .= 'Error! Missing Shift ID. You must have followed a bad link!'; |
|
| 19 | + $page->printPage(); |
|
| 20 | + return; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | $shiftID = $_GET['shiftID']; |
@@ -26,9 +26,9 @@ discard block |
||
| 26 | 26 | $shifts = $dataTable->read($filter); |
| 27 | 27 | if(empty($shifts)) |
| 28 | 28 | { |
| 29 | - $page->body .= 'Error! Could not locate shift. You must have followed an old link!'; |
|
| 30 | - $page->printPage(); |
|
| 31 | - return; |
|
| 29 | + $page->body .= 'Error! Could not locate shift. You must have followed an old link!'; |
|
| 30 | + $page->printPage(); |
|
| 31 | + return; |
|
| 32 | 32 | } |
| 33 | 33 | $shift = $shifts[0]; |
| 34 | 34 | |
@@ -36,38 +36,38 @@ discard block |
||
| 36 | 36 | $profiles = $dataTable->read(new \Data\Filter('uid eq '.$page->user->uid)); |
| 37 | 37 | if(empty($profiles)) |
| 38 | 38 | { |
| 39 | - $page->body .= 'Error! Could not locate user profile!'; |
|
| 40 | - $page->printPage(); |
|
| 41 | - return; |
|
| 39 | + $page->body .= 'Error! Could not locate user profile!'; |
|
| 40 | + $page->printPage(); |
|
| 41 | + return; |
|
| 42 | 42 | } |
| 43 | 43 | $profile = $profiles[0]; |
| 44 | 44 | |
| 45 | 45 | if($processor->isAdminForShift($shift, $page->user)) |
| 46 | 46 | { |
| 47 | - if(isset($shift['groupID']) && strlen($shift['groupID'] > 0)) |
|
| 48 | - { |
|
| 47 | + if(isset($shift['groupID']) && strlen($shift['groupID'] > 0)) |
|
| 48 | + { |
|
| 49 | 49 | $page->body .= ' |
| 50 | 50 | <div class="alert alert-info" role="alert"> |
| 51 | 51 | You are an administrator for this shift. You can edit the shift <a href="_admin/shifts.php?shiftID='.$shiftID.'" class="alert-link">here</a>. |
| 52 | 52 | Or you can edit the shift group <a href="_admin/shifts.php?groupID='.$shift['groupID'].'" class="alert-link">here</a>. |
| 53 | 53 | </div> |
| 54 | 54 | '; |
| 55 | - } |
|
| 56 | - else |
|
| 57 | - { |
|
| 55 | + } |
|
| 56 | + else |
|
| 57 | + { |
|
| 58 | 58 | $page->body .= ' |
| 59 | 59 | <div class="alert alert-info" role="alert"> |
| 60 | 60 | You are an administrator for this shift. You can edit the shift <a href="_admin/shifts.php?shiftID='.$shiftID.'" class="alert-link">here</a>. |
| 61 | 61 | </div> |
| 62 | 62 | '; |
| 63 | - } |
|
| 63 | + } |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | //Is shift already taken? |
| 67 | 67 | if(isset($entry['status']) && ($entry['status'] === 'pending' || $entry['status'] === 'filled')) |
| 68 | 68 | { |
| 69 | - if(isset($shift['participant']) && $shift['participant'] === $page->user->uid) |
|
| 70 | - { |
|
| 69 | + if(isset($shift['participant']) && $shift['participant'] === $page->user->uid) |
|
| 70 | + { |
|
| 71 | 71 | $page->body .= '<div class="alert alert-success" role="alert"> |
| 72 | 72 | You already have this shift! |
| 73 | 73 | </div> |
@@ -75,15 +75,15 @@ discard block |
||
| 75 | 75 | <button type="button" class="btn btn-secondary mr-auto" onClick="window.history.back();">Cancel</button> |
| 76 | 76 | <button type="button" class="btn btn-primary" onclick="abandon();">Abandon Shift</button> |
| 77 | 77 | </div>'; |
| 78 | - } |
|
| 79 | - else |
|
| 80 | - { |
|
| 78 | + } |
|
| 79 | + else |
|
| 80 | + { |
|
| 81 | 81 | $page->body .= '<div class="alert alert-danger" role="alert"> |
| 82 | 82 | Someone else took this shift! |
| 83 | 83 | </div>'; |
| 84 | - } |
|
| 85 | - $page->printPage(); |
|
| 86 | - return; |
|
| 84 | + } |
|
| 85 | + $page->printPage(); |
|
| 86 | + return; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | $overlap = false; |
@@ -108,47 +108,47 @@ discard block |
||
| 108 | 108 | $depts = $dataTable->read(new \Data\Filter('departmentID eq '.$shift['departmentID'])); |
| 109 | 109 | if(!empty($depts)) |
| 110 | 110 | { |
| 111 | - $deptName = $depts[0]['departmentName']; |
|
| 111 | + $deptName = $depts[0]['departmentName']; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | $dataTable = DataSetFactory::getDataTableByNames('fvs', 'events'); |
| 115 | 115 | $events = $dataTable->read(new \Data\Filter('_id eq '.$shift['eventID'])); |
| 116 | 116 | if(!empty($events)) |
| 117 | 117 | { |
| 118 | - if($events[0]['tickets']) |
|
| 119 | - { |
|
| 118 | + if($events[0]['tickets']) |
|
| 119 | + { |
|
| 120 | 120 | //TODO... Event requires tickets. Does this account have tickets? |
| 121 | - } |
|
| 121 | + } |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | $dataTable = DataSetFactory::getDataTableByNames('fvs', 'roles'); |
| 125 | 125 | $roles = $dataTable->read(new \Data\Filter('short_name eq '.$shift['roleID'])); |
| 126 | 126 | if(!empty($roles)) |
| 127 | 127 | { |
| 128 | - $roleName = $roles[0]['display_name']; |
|
| 128 | + $roleName = $roles[0]['display_name']; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | //Is user eligible for shift? |
| 132 | 132 | $canDo = $processor->canUserDoRole($profile, $roles[0]); |
| 133 | 133 | if($canDo !== true) |
| 134 | 134 | { |
| 135 | - $page->body .= '<div class="alert alert-danger" role="alert">'; |
|
| 136 | - switch($canDo['whyClass']) |
|
| 137 | - { |
|
| 135 | + $page->body .= '<div class="alert alert-danger" role="alert">'; |
|
| 136 | + switch($canDo['whyClass']) |
|
| 137 | + { |
|
| 138 | 138 | case 'INVITE': |
| 139 | 139 | $page->body .= 'This shift requires an invite from the department lead. If you think you should have recieved such an invite please <a href="https://www.burningflipside.com/contact" class="alert-link">contact the lead</a>.'; |
| 140 | - break; |
|
| 140 | + break; |
|
| 141 | 141 | case 'CERT': |
| 142 | 142 | $page->body .= $canDo['whyMsg'].' If you have this certification it is not recorded in your profile. You can <a href="certiciation.php" class="alert-link">record that certification</a> to sign up.'; |
| 143 | - break; |
|
| 143 | + break; |
|
| 144 | 144 | default: |
| 145 | 145 | $page->body .= 'You are not eligible for this shift because: '.$canDo['whyMsg']; |
| 146 | - break; |
|
| 147 | - } |
|
| 148 | - $page->body .= '</div>'; |
|
| 149 | - $page->printPage(); |
|
| 150 | - return; |
|
| 151 | - var_dump($canDo); die(); |
|
| 146 | + break; |
|
| 147 | + } |
|
| 148 | + $page->body .= '</div>'; |
|
| 149 | + $page->printPage(); |
|
| 150 | + return; |
|
| 151 | + var_dump($canDo); die(); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | $start = new \DateTime($shift['startTime']); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $page->body .= '<div id="signupContent" '; |
| 160 | 160 | if($overlap) |
| 161 | 161 | { |
| 162 | - $page->body .= 'class="d-none" '; |
|
| 162 | + $page->body .= 'class="d-none" '; |
|
| 163 | 163 | } |
| 164 | 164 | $page->body .= '/>'; |
| 165 | 165 | $page->body .= ' |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | //Is group eligible? |
| 201 | 201 | if(isset($shift['groupID']) && isset($roles[0]['groups_allowed']) && $roles[0]['groups_allowed']) |
| 202 | 202 | { |
| 203 | - $page->body .= ' |
|
| 203 | + $page->body .= ' |
|
| 204 | 204 | <div class="row"> |
| 205 | 205 | <div class="alert alert-primary" role="alert"> |
| 206 | 206 | You have selected a group eligible shift. This means you can generate a link for your friends to sign up on the shift with you. Would you like to sign up for the shift and generate that link now? |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $this->isLead = $this->user->isInGroupNamed('Leads'); |
| 33 | 33 | if($this->isLead) |
| 34 | 34 | { |
| 35 | - $this->is_admin = true; |
|
| 35 | + $this->is_admin = true; |
|
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | } |
@@ -1,29 +1,29 @@ |
||
| 1 | 1 | <?php |
| 2 | -function VolunteerAutoload($classname) |
|
| 3 | -{
|
|
| 2 | +function VolunteerAutoload($classname) |
|
| 3 | +{ |
|
| 4 | 4 | $classname = str_replace('/', '\\', $classname);
|
| 5 | 5 | $classname = ltrim($classname, '\\'); |
| 6 | 6 | $filename = ''; |
| 7 | 7 | $namespace = ''; |
| 8 | - if($lastNsPos = strrpos($classname, '\\')) |
|
| 9 | - {
|
|
| 8 | + if($lastNsPos = strrpos($classname, '\\')) |
|
| 9 | + { |
|
| 10 | 10 | $namespace = substr($classname, 0, $lastNsPos); |
| 11 | 11 | $classname = substr($classname, $lastNsPos + 1); |
| 12 | 12 | $filename = str_replace('\\', DIRECTORY_SEPARATOR, $namespace).DIRECTORY_SEPARATOR;
|
| 13 | 13 | } |
| 14 | 14 | $filename = __DIR__.DIRECTORY_SEPARATOR.$filename.'class.'.$classname.'.php'; |
| 15 | - if(is_readable($filename)) |
|
| 16 | - {
|
|
| 15 | + if(is_readable($filename)) |
|
| 16 | + { |
|
| 17 | 17 | require $filename; |
| 18 | 18 | } |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | -if(version_compare(PHP_VERSION, '5.3.0', '>=')) |
|
| 22 | -{
|
|
| 21 | +if(version_compare(PHP_VERSION, '5.3.0', '>=')) |
|
| 22 | +{ |
|
| 23 | 23 | spl_autoload_register('VolunteerAutoload', true, true);
|
| 24 | -} |
|
| 25 | -else |
|
| 26 | -{
|
|
| 24 | +} |
|
| 25 | +else |
|
| 26 | +{ |
|
| 27 | 27 | spl_autoload_register('VolunteerAutoload');
|
| 28 | 28 | } |
| 29 | 29 | /* vim: set tabstop=4 shiftwidth=4 expandtab: */ |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | $timeStr = $start->format('g:i A').' till '.$end->format('g:i A'); |
| 36 | 36 | if(strlen($shifts[$i]['name']) > 0) |
| 37 | 37 | { |
| 38 | - $timeStr .=' - <i>'.$shifts[$i]['name'].'</i>'; |
|
| 38 | + $timeStr .= ' - <i>'.$shifts[$i]['name'].'</i>'; |
|
| 39 | 39 | } |
| 40 | 40 | if(!isset($days[$dateStr])) |
| 41 | 41 | { |
@@ -50,22 +50,22 @@ discard block |
||
| 50 | 50 | ksort($days); |
| 51 | 51 | foreach($days as $dateStr=>$day) |
| 52 | 52 | { |
| 53 | - $html .='<h2>'.$dateStr.'</h2>'; |
|
| 53 | + $html .= '<h2>'.$dateStr.'</h2>'; |
|
| 54 | 54 | uksort($day, array($this, 'groupSort')); |
| 55 | 55 | foreach($day as $shiftStr=>$shifts) |
| 56 | 56 | { |
| 57 | 57 | usort($shifts, array($this, 'shiftSort')); |
| 58 | - $html .='<h3>'.$shiftStr.'</h3>'; |
|
| 59 | - $html .='<table width="100%"><tr><th style="width: 20%">Role</th><th>Volunteer Name</th><th>Volunteer Camp</th></tr>'; |
|
| 58 | + $html .= '<h3>'.$shiftStr.'</h3>'; |
|
| 59 | + $html .= '<table width="100%"><tr><th style="width: 20%">Role</th><th>Volunteer Name</th><th>Volunteer Camp</th></tr>'; |
|
| 60 | 60 | foreach($shifts as $shift) |
| 61 | 61 | { |
| 62 | 62 | //TODO Volunteer info for shift... |
| 63 | - $html .='<tr><td>'.$this->getRoleNameFromID($shift['roleID']).'</td><td></td><td></td></tr>'; |
|
| 63 | + $html .= '<tr><td>'.$this->getRoleNameFromID($shift['roleID']).'</td><td></td><td></td></tr>'; |
|
| 64 | 64 | } |
| 65 | - $html .='</table>'; |
|
| 65 | + $html .= '</table>'; |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | - $html .='</body>'; |
|
| 68 | + $html .= '</body>'; |
|
| 69 | 69 | $this->setPDFFromHTML($html); |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -242,6 +242,9 @@ |
||
| 242 | 242 | return $response; |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | + /** |
|
| 246 | + * @param string $type |
|
| 247 | + */ |
|
| 245 | 248 | public function generateGridSchedule($dept, $shifts, $response, $type) |
| 246 | 249 | { |
| 247 | 250 | $ss = new \Schedules\GridSchedule($dept, $shifts); |
@@ -1,9 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -use PhpOffice\PhpSpreadsheet\Spreadsheet; |
|
| 4 | -use PhpOffice\PhpSpreadsheet\Writer\Xlsx; |
|
| 5 | -use PhpOffice\PhpSpreadsheet\Writer\Pdf\Mpdf; |
|
| 6 | - |
|
| 7 | 3 | class DepartmentAPI extends Http\Rest\DataTableAPI |
| 8 | 4 | { |
| 9 | 5 | use Processor; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $filter = new \Data\Filter("departmentID eq '$deptId'"); |
| 100 | 100 | $odata = $request->getAttribute('odata', new \ODataParams(array())); |
| 101 | 101 | $roles = $dataTable->read($filter, $odata->select, $odata->top, |
| 102 | - $odata->skip, $odata->orderby); |
|
| 102 | + $odata->skip, $odata->orderby); |
|
| 103 | 103 | if($roles === false) |
| 104 | 104 | { |
| 105 | 105 | $roles = array(); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | $filter = new \Data\Filter("departmentID eq '$deptId'"); |
| 124 | 124 | $odata = $request->getAttribute('odata', new \ODataParams(array())); |
| 125 | 125 | $shifts = $dataTable->read($filter, $odata->select, $odata->top, |
| 126 | - $odata->skip, $odata->orderby); |
|
| 126 | + $odata->skip, $odata->orderby); |
|
| 127 | 127 | if($shifts === false) |
| 128 | 128 | { |
| 129 | 129 | $shifts = array(); |