summaryrefslogtreecommitdiff
path: root/includes/controller/shifts_controller.php
blob: b29a819f74be9dd3f22af0e34e826760e8a916f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php

function shift_link($shift) {
  return page_link_to('shifts') . '&action=view&shift_id=' . $shift['SID'];
}

function shift_delete_link($shift) {
  return page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'];
}

function shift_edit_link($shift) {
  return page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'];
}

function shift_controller() {
  global $user, $privileges;
  
  if (! in_array('user_shifts', $privileges)) {
    redirect(page_link_to('?'));
  }
  
  if (! isset($_REQUEST['shift_id'])) {
    redirect(page_link_to('user_shifts'));
  }
  
  $shift = Shift($_REQUEST['shift_id']);
  if ($shift === false) {
    engelsystem_error('Unable to load shift.');
  }
  if ($shift == null) {
    error(_('Shift could not be found.'));
    redirect(page_link_to('user_shifts'));
  }
  
  $shifttype = ShiftType($shift['shifttype_id']);
  if ($shifttype === false || $shifttype == null) {
    engelsystem_error('Unable to load shift type.');
  }
  
  $room = Room($shift['RID']);
  if ($room === false || $room == null) {
    engelsystem_error('Unable to load room.');
  }
  
  $angeltypes = AngelTypes();
  if ($angeltypes === false) {
    engelsystem_error('Unable to load angeltypes.');
  }
  
  $user_shifts = Shifts_by_user($user);
  if ($user_shifts === false) {
    engelsystem_error('Unable to load users shifts.');
  }
  
  $signed_up = false;
  foreach ($user_shifts as $user_shift) {
    if ($user_shift['SID'] == $shift['SID']) {
      $signed_up = true;
      break;
    }
  }
  
  return [
      $shift['name'],
      Shift_view($shift, $shifttype, $room, in_array('admin_shifts', $privileges), $angeltypes, in_array('user_shifts_admin', $privileges), in_array('admin_rooms', $privileges), in_array('shifttypes', $privileges), $user_shifts, $signed_up) 
  ];
}

function shifts_controller() {
  if (! isset($_REQUEST['action'])) {
    redirect(page_link_to('user_shifts'));
  }
  
  switch ($_REQUEST['action']) {
    default:
      redirect(page_link_to('?'));
    case 'view':
      return shift_controller();
    case 'next':
      return shift_next_controller();
  }
}

/**
 * Redirects the user to his next shift.
 */
function shift_next_controller() {
  global $user, $privileges;
  
  if (! in_array('user_shifts', $privileges)) {
    redirect(page_link_to('?'));
  }
  
  $upcoming_shifts = ShiftEntries_upcoming_for_user($user);
  if ($upcoming_shifts === false) {
    return false;
  }
  
  if (count($upcoming_shifts) > 0) {
    redirect(shift_link($upcoming_shifts[0]));
  }
  
  redirect(page_link_to('user_shifts'));
}

/**
 * Export all shifts using api-key.
 */
function shifts_json_export_all_controller() {
  global $api_key;
  
  if ($api_key == "") {
    engelsystem_error("Config contains empty apikey.");
  }
  
  if (! isset($_REQUEST['api_key'])) {
    engelsystem_error("Missing parameter api_key.");
  }
  
  if ($_REQUEST['api_key'] != $api_key) {
    engelsystem_error("Invalid api_key.");
  }
  
  $shifts_source = Shifts();
  if ($shifts_source === false) {
    engelsystem_error("Unable to load shifts.");
  }
  
  header("Content-Type: application/json; charset=utf-8");
  raw_output(json_encode($shifts_source));
}

/**
 * Export filtered shifts via JSON.
 * (Like iCal Export or shifts view)
 */
function shifts_json_export_controller() {
  global $ical_shifts, $user;
  
  if (! isset($_REQUEST['key']) || ! preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key'])) {
    engelsystem_error("Missing key.");
  }
  
  $key = $_REQUEST['key'];
  
  $user = User_by_api_key($key);
  if ($user === false) {
    engelsystem_error("Unable to find user.");
  }
  if ($user == null) {
    engelsystem_error("Key invalid.");
  }
  if (! in_array('shifts_json_export', privileges_for_user($user['UID']))) {
    engelsystem_error("No privilege for shifts_json_export.");
  }
  
  $ical_shifts = load_ical_shifts();
  
  header("Content-Type: application/json; charset=utf-8");
  raw_output(json_encode($ical_shifts));
}

/**
 * Returns shifts to export.
 * Users shifts or user_shifts filter based shifts if export=user_shifts is given as param.
 */
function load_ical_shifts() {
  global $user, $ical_shifts;
  
  if (isset($_REQUEST['export']) && $_REQUEST['export'] == 'user_shifts') {
    require_once realpath(__DIR__ . '/user_shifts.php');
    view_user_shifts();
    
    return $ical_shifts;
  }
  
  return Shifts_by_user($user);
}

?>