3 * @file mod_roomReservationConfig.inc
4 * Handling of the configuration file
5 * @author Roland Hieber (roland.hieber@wilhelm-gym.net)
8 * Copyright © 2007 Roland Hieber
10 * Permission is hereby granted, free of charge, to any person obtaining
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 require_once("sec/secure.inc");
30 require_once("db.inc");
31 require_once("mod_room-reservation/functions.inc");
32 require_once("mod_room-reservation/mod_roomReservationTimeslice.inc");
33 require_once("mod_room-reservation/mod_roomReservationRoomsManager.inc");
36 * Determines if a privilege has been assigned
37 * @param $sPriv (string) Privilege to test
40 function rrPrivilegeAssigned($sPriv) {
41 $h = db_query("SELECT act FROM privileges_assign WHERE privilege = $1;",
43 return pg_num_rows($h) > 0;
47 * Retrieve all groups that have a privilege assigned
48 * @param $strPriv (string) Privilege to test
51 function rrPrivilegedGroups($strPriv) {
53 $h = db_query("SELECT act FROM privileges_assign WHERE privilege = $1 ".
54 "ORDER BY act;", $strPriv);
55 if(pg_num_rows($h) > 0) {
56 while($a = pg_fetch_array($h)) {
57 $aReturn[] = $a["act"];
64 * User-defined compare function to compare timeslices
65 * @param $oTs1 (mod_roomReservationTimeslice)
66 * @param $oTs2 (mod_roomReservationTimeslice)
67 * @return (int) <tt>-1</tt> if $oTs1 begins before $oTs2,
68 * <tt>0</tt> if the $oTs1 and $oTs2 have the same beginning,
69 * <tt>1</tt> if $oTs1 begins after $oTs2.
71 function rrConfigSortTimeslices(mod_roomReservationTimeslice $oTs1,
72 mod_roomReservationTimeslice $oTs2) {
73 if($oTs1->getBegin() == $oTs2->getBegin()) {
76 return ($oTs1->getBegin() > $oTs2->getBegin()) ? 1 : -1;
80 define("MOD_ROOM_RESERVATION_CONFIGFILE_HEADER", "<?php
82 * configuration file for package iserv-mod-room-reservation
83 * This file is written by the configuration script. Do not change it manually.
86 /*****************************************************************************/
88 * Handling of the configuration file
90 class mod_roomReservationConfig {
92 /** (array of rmTimeslice's) Timeslices */
93 protected $aoTimeslices;
94 /** (bool) Determine if the weekend is shown */
95 protected $bShowWeekend;
96 /** (bool) Determine if the strings "1. lesson", "2. lesson" etc are shown */
97 protected $bShowLessons;
98 /** (array of strings) error messages */
99 protected $asMessages;
101 /***************************************************************************/
106 * @return mod_roomReservationConfig
108 public function __construct() {
109 $this->flushTimeslices();
110 $this->setShowWeekend(false);
111 $this->setShowLessons(true);
112 $this->asMessages = array();
118 * **************************************************************************
120 * @name Access to attributes
125 * Add a timeslice. A check is done that the timeslices do not overlap, and
126 * in this case, an Exception is thrown.
127 * @param $oTs (mod_roomReservationTimeslice)
131 public function addTimeslice(mod_roomReservationTimeslice $oTs) {
132 // Check for overlapping timeslices
133 foreach($this->aoTimeslices as $oOldTs) {
134 if(($oOldTs->getBegin() < $oTs->getEnd() and
135 $oOldTs->getEnd() > $oTs->getBegin())) {
137 MOD_ROOM_RESERVATION_ERROR_CONFIG_OVERLAPPING_TIMESLICE);
140 $this->aoTimeslices[] = $oTs;
141 usort($this->aoTimeslices, "rrConfigSortTimeslices");
147 * @param $oTs (mod_roomReservationTimeslice) the timeslice to delete. If
148 * the timeslice is not found, an Exception is thrown.
152 public function deleteTimeslice(mod_roomReservationTimeslice $oTs) {
153 for($i = 0; $i < count($this->aoTimeslices); $i++) {
154 if($this->aoTimeslices[$i]->getBegin() == $oTs->getBegin() and
155 $this->aoTimeslices[$i]->getEnd() == $oTs->getEnd()) {
156 // use array_splice because it renumbers the keys
157 array_splice($this->aoTimeslices, $i, 1);
161 throw new Exception(MOD_ROOM_RESERVATION_ERROR_CONFIG_NO_SUCH_TIMESLICE);
165 * Delete all timeslices.
168 public function flushTimeslices() { $this->aoTimeslices = array(); }
171 * Add a room to the list of rooms who can be booked. Throws an SQLException
172 * in case of an error.
173 * @param $sRoom (string) The name of the room
174 * @throws SQLException, Exception
177 public function whitelistRoom($sRoom) {
178 if(!$this->isRoomWhitelisted($sRoom)) {
179 $r = db_store("mod_roomreservation_roomswhitelist",
180 array("rrr_name" => $sRoom));
182 throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
184 log_insert(sprintf("Raum „%s“ für Buchungen zur Verfügung gestellt",
191 * Forbid bookings for a room. Throws an SQLException in case of an error.
192 * @param $sRoom The name of the room
193 * @throws SQLException
195 public function unWhitelistRoom($sRoom) {
196 $h = db_query("DELETE FROM mod_roomreservation_roomswhitelist WHERE ".
197 "rrr_name = $1;", $sRoom);
199 throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
201 log_insert(sprintf("Raum „%s“ für Buchungen gesperrt", $sRoom));
206 * Determine if a room is allowed for booking. Throws an SQLException
207 * in case of an error.
208 * @param $sRoom (string) The name of the room
210 * @throws SQLException
212 public function isRoomWhitelisted($sRoom) {
213 $h = db_query("SELECT * FROM mod_roomreservation_roomswhitelist WHERE ".
214 "rrr_name=$1;", $sRoom);
216 throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
218 return (pg_num_rows($h) > 0);
222 * Get all rooms that are allowed for booking. Throws an SQLException
223 * in case of an error.
224 * @throws SQLException
225 * @return array of mod_roomReservationRoomsManager objects
227 public function getWhitelistedRooms() {
228 $aor = mod_roomReservationRoomsManager::getRooms();
230 foreach($aor as $key => $or) {
231 if($this->isRoomWhitelisted($or->getName())) {
239 * Show or hide the weekend
242 public function setShowWeekend($b) { $this->bShowWeekend = ($b == true); }
245 * Show or hide the lesson strings in the booking table
248 public function setShowLessons($b) { $this->bShowLessons = ($b == true); }
251 * Add a message to the internal array of (error) messages
252 * @param $sMessage (string)
254 public function addMessage($sMessage) {
255 array_merge($this->asMessages, array($sMessage));
259 * Get all timeslices in chronological order
260 * @return array of rmTimeslice
262 public function getTimeslices() { return $this->aoTimeslices; }
265 * Return the starting times of every timeslice
266 * @param $bFormat (bool) <tt>true</tt>: Format the times according to the
268 * <tt>false</tt>: return just the timestamps
271 public function getTimesliceBeginnings($bFormat = false) {
272 $aot = $this->getTimeslices();
274 foreach($aot as $ao) {
275 $aRet[] = $bFormat ? gmstrftime(_("%#I:%M %p"), $ao->getBegin()) :
282 * Return the ending times of every timeslice
283 * @param $bFormat (bool) <tt>true</tt>: Format the times according to the
285 * <tt>false</tt>: return just the timestamps
288 public function getTimesliceEndings($bFormat = false) {
289 $aot = $this->getTimeslices();
291 foreach($aot as $ao) {
292 $aRet[] = $bFormat ? gmstrftime(_("%#I:%M %p"), $ao->getEnd()) :
300 * @param $n (int) index of the timeslice in the array
301 * @return rmTimeslice
303 public function getTimeslice($n) { return $this->aoTimeslices[$n]; }
306 * Determine if the weekend is shown
309 public function isShowWeekend() { return ($this->bShowWeekend == true); }
312 * Determine if the lesson strings in the booking table are shown
315 public function isShowLessons() { return ($this->bShowLessons == true); }
318 * Determine if the current user has admin rights. This function tests
319 * if the user is in a group which has the privilege of admin rights.
322 public function userIsAdmin() {
323 return secure_privilege("mod_roomreservation_admin");
327 * Determine if the current user can book rooms. This function tests
328 * if the user is in a group which has the privilege to book rooms.
329 * If no group has this privilege, all users can book.
332 public function userCanBook() {
333 if(!rrPrivilegeAssigned("mod_roomreservation_book")) {
334 // If the privilege is not assigned to any group, all users can book
337 // If user is admin, it makes sense that he can book rooms ;-)
338 return secure_privilege("mod_roomreservation_book") ||
339 secure_privilege("mod_roomreservation_admin");
344 * Determine if the current user can view bookings. This function tests
345 * if the user is in a group which has been configured as a group who
346 * can view bookings. If no groups are configured, any user can view the
350 public function userCanView() {
351 if(!rrPrivilegeAssigned("mod_roomreservation_view")) {
352 // If the privilege is not assigned to any group, all users can view
355 // If user is admin or can book, it makes sense that he can view bookings
356 return secure_privilege("mod_roomreservation_admin") ||
357 secure_privilege("mod_roomreservation_book") ||
358 secure_privilege("mod_roomreservation_view");
363 * Get the messages that have been produced
366 public function getMessages() {
367 return join("\n", $this->asMessages);
370 /***************************************************************************/
378 * Write the current state of this instance to the config file.
379 * @throws IOException
382 public function writeConfig() {
384 $hFile = fopen("mod_room-reservation/config.inc", "w", true);
385 if(!is_resource($hFile)) {
386 throw new IOException(MOD_ROOM_RESERVATION_ERROR_OPEN_FILE);
389 // Try to lock file repeatedly
390 for($n = 0; !flock($hFile, LOCK_EX); $n++) {
392 throw new IOException(MOD_ROOM_RESERVATION_ERROR_OPEN_FILE);
393 return false; // Give up
395 sleep(0.2); // Retry after 100 ms
399 // Create text for config file
400 $strFile = MOD_ROOM_RESERVATION_CONFIGFILE_HEADER;
403 $strFile .= "\$this->flushTimeslices();\n";
404 foreach($this->getTimeslices() as $oTs) {
405 $strFile .= sprintf("\$this->addTimeslice(new ".
406 "mod_roomReservationTimeslice(%d, %d));\n", $oTs->getBegin(),
411 $strFile .= sprintf("\$this->setShowWeekend(%s);\n",
412 $this->isShowWeekend() ? "true" : "false");
415 $strFile .= sprintf("\$this->setShowLessons(%s);\n",
416 $this->isShowLessons() ? "true" : "false");
420 // Write to config file and unlock it
421 if(fwrite($hFile, $strFile) == false) {
422 throw new IOException(MOD_ROOM_RESERVATION_ERROR_WRITE_FILE);
425 if(!flock($hFile, LOCK_UN)) {
426 throw new IOException(MOD_ROOM_RESERVATION_ERROR_UNLOCK_FILE);
430 rrInsertLog("Konfiguration verändert");
435 * Read configuration from file. Returns <tt>false</tt> if an error occured,
436 * in this case getMessages() contains error messages.
439 public function readConfig() {
442 require("mod_room-reservation/config.inc");
443 } catch(Exception $e) {
444 $this->addMessage($e->getMessage());