/usr/share/z-push/lib/request/settings.php is in z-push-common 2.3.8-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | <?php
/***********************************************
* File : settings.php
* Project : Z-Push
* Descr : Provides the SETTINGS command
*
* Created : 16.02.2012
*
* Copyright 2007 - 2016 Zarafa Deutschland GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Consult LICENSE file for details
************************************************/
class Settings extends RequestProcessor {
/**
* Handles the Settings command
*
* @param int $commandCode
*
* @access public
* @return boolean
*/
public function Handle($commandCode) {
if (!self::$decoder->getElementStartTag(SYNC_SETTINGS_SETTINGS))
return false;
// always add capability header - define the supported capabilites
$cap = array();
if (defined('KOE_CAPABILITY_GAB') && KOE_CAPABILITY_GAB) $cap[] = "gab";
if (defined('KOE_CAPABILITY_RECEIVEFLAGS') && KOE_CAPABILITY_RECEIVEFLAGS) $cap[] = "receiveflags";
if (defined('KOE_CAPABILITY_SENDFLAGS') && KOE_CAPABILITY_SENDFLAGS) $cap[] = "sendflags";
if (defined('KOE_CAPABILITY_OOFTIMES') && KOE_CAPABILITY_OOFTIMES) $cap[] = "ooftime";
elseif(defined('KOE_CAPABILITY_OOF') && KOE_CAPABILITY_OOF) $cap[] = "oof"; // 'ooftime' superseeds 'oof'. If 'ooftime' is set, 'oof' should not be defined.
if (defined('KOE_CAPABILITY_NOTES') && KOE_CAPABILITY_NOTES) $cap[] = "notes";
if (defined('KOE_CAPABILITY_SHAREDFOLDER') && KOE_CAPABILITY_SHAREDFOLDER) $cap[] = "sharedfolder";
if (defined('KOE_CAPABILITY_SENDAS') && KOE_CAPABILITY_SENDAS) $cap[] = "sendas";
if (defined('KOE_CAPABILITY_SECONDARYCONTACTS') && KOE_CAPABILITY_SECONDARYCONTACTS) $cap[] = "secondarycontacts";
if (defined('KOE_CAPABILITY_SIGNATURES') && KOE_CAPABILITY_SIGNATURES) $cap[] = "signatures";
if (defined('KOE_CAPABILITY_RECEIPTS') && KOE_CAPABILITY_RECEIPTS) $cap[] = "receipts";
self::$specialHeaders = array();
self::$specialHeaders[] = "X-Push-Capabilities: ". implode(",", $cap);
if(self::$deviceManager->IsKoe()) {
self::$specialHeaders[] = "X-Push-GAB-Name: ". bin2hex(KOE_GAB_NAME);
if (defined('KOE_CAPABILITY_SIGNATURES') && KOE_CAPABILITY_SIGNATURES) {
self::$specialHeaders[] = "X-Push-Signatures-Hash: ". self::$backend->GetKoeSignatures()->GetHash();
}
}
//save the request parameters
$request = array();
// Loop through properties. Possible are:
// - Out of office
// - DevicePassword
// - DeviceInformation
// - UserInformation
// Each of them should only be once per request. Each property must be processed in order.
WBXMLDecoder::ResetInWhile("settingsMain");
while(WBXMLDecoder::InWhile("settingsMain")) {
$propertyName = "";
if (self::$decoder->getElementStartTag(SYNC_SETTINGS_OOF)) {
$propertyName = SYNC_SETTINGS_OOF;
}
if (self::$decoder->getElementStartTag(SYNC_SETTINGS_DEVICEPW)) {
$propertyName = SYNC_SETTINGS_DEVICEPW;
}
if (self::$decoder->getElementStartTag(SYNC_SETTINGS_DEVICEINFORMATION)) {
$propertyName = SYNC_SETTINGS_DEVICEINFORMATION;
}
if (self::$decoder->getElementStartTag(SYNC_SETTINGS_USERINFORMATION)) {
$propertyName = SYNC_SETTINGS_USERINFORMATION;
}
//TODO - check if it is necessary
//no property name available - break
if (!$propertyName)
break;
//the property name is followed by either get or set
if (self::$decoder->getElementStartTag(SYNC_SETTINGS_GET)) {
//get is only available for OOF and user information
switch ($propertyName) {
case SYNC_SETTINGS_OOF:
$oofGet = new SyncOOF();
$oofGet->Decode(self::$decoder);
if(!self::$decoder->getElementEndTag())
return false; // SYNC_SETTINGS_GET
break;
case SYNC_SETTINGS_USERINFORMATION:
$userInformation = new SyncUserInformation();
break;
default:
//TODO: a special status code needed?
ZLog::Write(LOGLEVEL_WARN, sprintf ("This property ('%s') is not allowed to use get in request", $propertyName));
}
}
elseif (self::$decoder->getElementStartTag(SYNC_SETTINGS_SET)) {
//set is available for OOF, device password and device information
switch ($propertyName) {
case SYNC_SETTINGS_OOF:
$oofSet = new SyncOOF();
$oofSet->Decode(self::$decoder);
//TODO check - do it after while(1) finished?
break;
case SYNC_SETTINGS_DEVICEPW:
//TODO device password
$devicepassword = new SyncDevicePassword();
$devicepassword->Decode(self::$decoder);
break;
case SYNC_SETTINGS_DEVICEINFORMATION:
$deviceinformation = new SyncDeviceInformation();
$deviceinformation->Decode(self::$decoder);
$deviceinformation->Status = SYNC_SETTINGSSTATUS_SUCCESS;
self::$deviceManager->SaveDeviceInformation($deviceinformation);
break;
default:
//TODO: a special status code needed?
ZLog::Write(LOGLEVEL_WARN, sprintf ("This property ('%s') is not allowed to use set in request", $propertyName));
}
if(!self::$decoder->getElementEndTag())
return false; // SYNC_SETTINGS_SET
}
else {
ZLog::Write(LOGLEVEL_WARN, sprintf("Neither get nor set found for property '%s'", $propertyName));
return false;
}
if(!self::$decoder->getElementEndTag())
return false; // SYNC_SETTINGS_OOF or SYNC_SETTINGS_DEVICEPW or SYNC_SETTINGS_DEVICEINFORMATION or SYNC_SETTINGS_USERINFORMATION
//break if it reached the endtag
$e = self::$decoder->peek();
if($e[EN_TYPE] == EN_TYPE_ENDTAG) {
self::$decoder->getElementEndTag(); //SYNC_SETTINGS_SETTINGS
break;
}
}
$status = SYNC_SETTINGSSTATUS_SUCCESS;
//TODO put it in try catch block
//TODO implement Settings in the backend
//TODO save device information in device manager
//TODO status handling
// $data = self::$backend->Settings($request);
self::$encoder->startWBXML();
self::$encoder->startTag(SYNC_SETTINGS_SETTINGS);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
//get oof settings
if (isset($oofGet)) {
$oofGet = self::$backend->Settings($oofGet);
self::$encoder->startTag(SYNC_SETTINGS_OOF);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($oofGet->Status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
self::$encoder->startTag(SYNC_SETTINGS_GET);
$oofGet->Encode(self::$encoder);
self::$encoder->endTag(); //SYNC_SETTINGS_GET
self::$encoder->endTag(); //SYNC_SETTINGS_OOF
}
//get user information
//TODO none email address found
if (isset($userInformation)) {
self::$backend->Settings($userInformation);
self::$encoder->startTag(SYNC_SETTINGS_USERINFORMATION);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($userInformation->Status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
self::$encoder->startTag(SYNC_SETTINGS_GET);
$userInformation->Encode(self::$encoder);
self::$encoder->endTag(); //SYNC_SETTINGS_GET
self::$encoder->endTag(); //SYNC_SETTINGS_USERINFORMATION
}
//set out of office
if (isset($oofSet)) {
$oofSet = self::$backend->Settings($oofSet);
self::$encoder->startTag(SYNC_SETTINGS_OOF);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($oofSet->Status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
self::$encoder->endTag(); //SYNC_SETTINGS_OOF
}
//set device passwort
if (isset($devicepassword)) {
self::$encoder->startTag(SYNC_SETTINGS_DEVICEPW);
self::$encoder->startTag(SYNC_SETTINGS_SET);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($devicepassword->Status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
self::$encoder->endTag(); //SYNC_SETTINGS_SET
self::$encoder->endTag(); //SYNC_SETTINGS_DEVICEPW
}
//set device information
if (isset($deviceinformation)) {
self::$encoder->startTag(SYNC_SETTINGS_DEVICEINFORMATION);
self::$encoder->startTag(SYNC_SETTINGS_STATUS);
self::$encoder->content($deviceinformation->Status);
self::$encoder->endTag(); //SYNC_SETTINGS_STATUS
self::$encoder->endTag(); //SYNC_SETTINGS_DEVICEINFORMATION
}
self::$encoder->endTag(); //SYNC_SETTINGS_SETTINGS
return true;
}
}
|