Test Failed
Push — master ( 19e7e7...e85ccb )
by
unknown
07:48
created

Operations::getFavoritesFolders()   F

Complexity

Conditions 19
Paths 180

Size

Total Lines 95
Code Lines 53

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 2 Features 0
Metric Value
cc 19
eloc 53
c 3
b 2
f 0
nc 180
nop 2
dl 0
loc 95
rs 3.85

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * General operations.
5
 *
6
 * All mapi operations, like create, change and delete, are set in this class.
7
 * A module calls one of these methods.
8
 *
9
 * Note: All entryids in this class are binary
10
 *
11
 * @todo This class is bloated. It also returns data in various arbitrary formats
12
 * that other functions depend on, making lots of code almost completely unreadable.
13
 */
14
class Operations {
15
	/**
16
	 * Gets the hierarchy list of all required stores.
17
	 *
18
	 * getHierarchyList builds an entire hierarchy list of all folders that should be shown in various places. Most importantly,
19
	 * it generates the list of folders to be show in the hierarchylistmodule (left-hand folder browser) on the client.
20
	 *
21
	 * It is also used to generate smaller hierarchy lists, for example for the 'create folder' dialog.
22
	 *
23
	 * The returned array is a flat array of folders, so if the caller wishes to build a tree, it is up to the caller to correlate
24
	 * the entryids and the parent_entryids of all the folders to build the tree.
25
	 *
26
	 * The return value is an associated array with the following keys:
27
	 * - store: array of stores
28
	 *
29
	 * Each store contains:
30
	 * - array("store_entryid" => entryid of store, name => name of store, subtree => entryid of viewable root, type => default|public|other, folder_type => "all")
31
	 * - folder: array of folders with each an array of properties (see Operations::setFolder() for properties)
32
	 *
33
	 * @param array  $properties   MAPI property mapping for folders
34
	 * @param int    $type         Which stores to fetch (HIERARCHY_GET_ALL | HIERARCHY_GET_DEFAULT | HIERARCHY_GET_ONE)
35
	 * @param object $store        Only when $type == HIERARCHY_GET_ONE
36
	 * @param array  $storeOptions Only when $type == HIERARCHY_GET_ONE, this overrides the  loading options which is normally
37
	 *                             obtained from the settings for loading the store (e.g. only load calendar).
38
	 * @param string $username     The username
39
	 *
40
	 * @return array Return structure
41
	 */
42
	public function getHierarchyList($properties, $type = HIERARCHY_GET_ALL, $store = null, $storeOptions = null, $username = null) {
43
		switch ($type) {
44
			case HIERARCHY_GET_ALL:
45
				$storelist = $GLOBALS["mapisession"]->getAllMessageStores();
46
				break;
47
48
			case HIERARCHY_GET_DEFAULT:
49
				$storelist = [$GLOBALS["mapisession"]->getDefaultMessageStore()];
50
				break;
51
52
			case HIERARCHY_GET_ONE:
53
				// Get single store and it's archive store as well
54
				$storelist = $GLOBALS["mapisession"]->getSingleMessageStores($store, $storeOptions, $username);
55
				break;
56
		}
57
58
		$data = [];
59
		$data["item"] = [];
60
61
		// Get the other store options
62
		if (isset($storeOptions)) {
63
			$otherUsers = $storeOptions;
64
		}
65
		else {
66
			$otherUsers = $GLOBALS["mapisession"]->retrieveOtherUsersFromSettings();
67
		}
68
69
		foreach ($storelist as $store) {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $storelist does not seem to be defined for all execution paths leading up to this point.
Loading history...
70
			$msgstore_props = mapi_getprops($store, [PR_ENTRYID, PR_DISPLAY_NAME, PR_IPM_SUBTREE_ENTRYID, PR_IPM_OUTBOX_ENTRYID, PR_IPM_SENTMAIL_ENTRYID, PR_IPM_WASTEBASKET_ENTRYID, PR_MDB_PROVIDER, PR_IPM_PUBLIC_FOLDERS_ENTRYID, PR_IPM_FAVORITES_ENTRYID, PR_OBJECT_TYPE, PR_STORE_SUPPORT_MASK, PR_MAILBOX_OWNER_ENTRYID, PR_MAILBOX_OWNER_NAME, PR_USER_ENTRYID, PR_USER_NAME, PR_QUOTA_WARNING_THRESHOLD, PR_QUOTA_SEND_THRESHOLD, PR_QUOTA_RECEIVE_THRESHOLD, PR_MESSAGE_SIZE_EXTENDED, PR_COMMON_VIEWS_ENTRYID, PR_FINDER_ENTRYID]);
71
72
			$inboxProps = [];
73
			$storeType = $msgstore_props[PR_MDB_PROVIDER];
74
75
			/*
76
			 * storetype is public and if public folder is disabled
77
			 * then continue in loop for next store.
78
			 */
79
			if ($storeType == ZARAFA_STORE_PUBLIC_GUID && ENABLE_PUBLIC_FOLDERS === false) {
80
				continue;
81
			}
82
83
			// Obtain the real username for the store when dealing with a shared store
84
			if ($storeType == ZARAFA_STORE_DELEGATE_GUID) {
85
				$storeUserName = $GLOBALS["mapisession"]->getUserNameOfStore($msgstore_props[PR_ENTRYID]);
86
			}
87
			else {
88
				$storeUserName = $msgstore_props[PR_USER_NAME] ?? $GLOBALS["mapisession"]->getUserName();
89
			}
90
91
			$storeData = [
92
				"store_entryid" => bin2hex($msgstore_props[PR_ENTRYID]),
93
				"props" => [
94
					// Showing the store as 'Inbox - Name' is confusing, so we strip the 'Inbox - ' part.
95
					"display_name" => str_replace('Inbox - ', '', $msgstore_props[PR_DISPLAY_NAME]),
96
					"subtree_entryid" => bin2hex($msgstore_props[PR_IPM_SUBTREE_ENTRYID]),
97
					"mdb_provider" => bin2hex($msgstore_props[PR_MDB_PROVIDER]),
98
					"object_type" => $msgstore_props[PR_OBJECT_TYPE],
99
					"store_support_mask" => $msgstore_props[PR_STORE_SUPPORT_MASK],
100
					"user_name" => $storeUserName,
101
					"store_size" => round($msgstore_props[PR_MESSAGE_SIZE_EXTENDED] / 1024),
102
					"quota_warning" => isset($msgstore_props[PR_QUOTA_WARNING_THRESHOLD]) ? $msgstore_props[PR_QUOTA_WARNING_THRESHOLD] : 0,
103
					"quota_soft" => isset($msgstore_props[PR_QUOTA_SEND_THRESHOLD]) ? $msgstore_props[PR_QUOTA_SEND_THRESHOLD] : 0,
104
					"quota_hard" => isset($msgstore_props[PR_QUOTA_RECEIVE_THRESHOLD]) ? $msgstore_props[PR_QUOTA_RECEIVE_THRESHOLD] : 0,
105
					"common_view_entryid" => isset($msgstore_props[PR_COMMON_VIEWS_ENTRYID]) ? bin2hex($msgstore_props[PR_COMMON_VIEWS_ENTRYID]) : "",
106
					"finder_entryid" => isset($msgstore_props[PR_FINDER_ENTRYID]) ? bin2hex($msgstore_props[PR_FINDER_ENTRYID]) : "",
107
					"todolist_entryid" => bin2hex(TodoList::getEntryId()),
108
				],
109
			];
110
111
			// these properties doesn't exist in public store
112
			if (isset($msgstore_props[PR_MAILBOX_OWNER_ENTRYID], $msgstore_props[PR_MAILBOX_OWNER_NAME])) {
113
				$storeData["props"]["mailbox_owner_entryid"] = bin2hex($msgstore_props[PR_MAILBOX_OWNER_ENTRYID]);
114
				$storeData["props"]["mailbox_owner_name"] = $msgstore_props[PR_MAILBOX_OWNER_NAME];
115
			}
116
117
			// public store doesn't have inbox
118
			try {
119
				$inbox = mapi_msgstore_getreceivefolder($store);
120
				$inboxProps = mapi_getprops($inbox, [PR_ENTRYID]);
121
			}
122
			catch (MAPIException $e) {
123
				// don't propagate this error to parent handlers, if store doesn't support it
124
				if ($e->getCode() === MAPI_E_NO_SUPPORT) {
125
					$e->setHandled();
126
				}
127
			}
128
129
			$root = mapi_msgstore_openentry($store);
130
			$rootProps = mapi_getprops($root, [PR_IPM_APPOINTMENT_ENTRYID, PR_IPM_CONTACT_ENTRYID, PR_IPM_DRAFTS_ENTRYID, PR_IPM_JOURNAL_ENTRYID, PR_IPM_NOTE_ENTRYID, PR_IPM_TASK_ENTRYID, PR_ADDITIONAL_REN_ENTRYIDS]);
131
132
			$additional_ren_entryids = [];
133
			if (isset($rootProps[PR_ADDITIONAL_REN_ENTRYIDS])) {
134
				$additional_ren_entryids = $rootProps[PR_ADDITIONAL_REN_ENTRYIDS];
135
			}
136
137
			$defaultfolders = [
138
				"default_folder_inbox" => ["inbox" => PR_ENTRYID],
139
				"default_folder_outbox" => ["store" => PR_IPM_OUTBOX_ENTRYID],
140
				"default_folder_sent" => ["store" => PR_IPM_SENTMAIL_ENTRYID],
141
				"default_folder_wastebasket" => ["store" => PR_IPM_WASTEBASKET_ENTRYID],
142
				"default_folder_favorites" => ["store" => PR_IPM_FAVORITES_ENTRYID],
143
				"default_folder_publicfolders" => ["store" => PR_IPM_PUBLIC_FOLDERS_ENTRYID],
144
				"default_folder_calendar" => ["root" => PR_IPM_APPOINTMENT_ENTRYID],
145
				"default_folder_contact" => ["root" => PR_IPM_CONTACT_ENTRYID],
146
				"default_folder_drafts" => ["root" => PR_IPM_DRAFTS_ENTRYID],
147
				"default_folder_journal" => ["root" => PR_IPM_JOURNAL_ENTRYID],
148
				"default_folder_note" => ["root" => PR_IPM_NOTE_ENTRYID],
149
				"default_folder_task" => ["root" => PR_IPM_TASK_ENTRYID],
150
				"default_folder_junk" => ["additional" => 4],
151
				"default_folder_syncissues" => ["additional" => 1],
152
				"default_folder_conflicts" => ["additional" => 0],
153
				"default_folder_localfailures" => ["additional" => 2],
154
				"default_folder_serverfailures" => ["additional" => 3],
155
			];
156
157
			foreach ($defaultfolders as $key => $prop) {
158
				$tag = reset($prop);
159
				$from = key($prop);
160
161
				switch ($from) {
162
					case "inbox":
163
						if (isset($inboxProps[$tag])) {
164
							$storeData["props"][$key] = bin2hex($inboxProps[$tag]);
165
						}
166
						break;
167
168
					case "store":
169
						if (isset($msgstore_props[$tag])) {
170
							$storeData["props"][$key] = bin2hex($msgstore_props[$tag]);
171
						}
172
						break;
173
174
					case "root":
175
						if (isset($rootProps[$tag])) {
176
							$storeData["props"][$key] = bin2hex($rootProps[$tag]);
177
						}
178
						break;
179
180
					case "additional":
181
						if (isset($additional_ren_entryids[$tag])) {
182
							$storeData["props"][$key] = bin2hex($additional_ren_entryids[$tag]);
183
						}
184
						break;
185
				}
186
			}
187
188
			$storeData["folders"] = ["item" => []];
189
190
			if (isset($msgstore_props[PR_IPM_SUBTREE_ENTRYID])) {
191
				$subtreeFolderEntryID = $msgstore_props[PR_IPM_SUBTREE_ENTRYID];
192
193
				$openWholeStore = true;
194
				if ($storeType == ZARAFA_STORE_DELEGATE_GUID) {
195
					$username = strtolower($storeData["props"]["user_name"]);
196
					$sharedFolders = [];
197
198
					// Check whether we should open the whole store or just single folders
199
					if (isset($otherUsers[$username])) {
200
						$sharedFolders = $otherUsers[$username];
201
						if (!isset($otherUsers[$username]['all'])) {
202
							$openWholeStore = false;
203
						}
204
					}
205
206
					// Update the store properties when this function was called to
207
					// only open a particular shared store.
208
					if (is_array($storeOptions)) {
209
						// Update the store properties to mark previously opened
210
						$prevSharedFolders = $GLOBALS["settings"]->get("zarafa/v1/contexts/hierarchy/shared_stores/" . $username, null);
211
						if (!empty($prevSharedFolders)) {
212
							foreach ($prevSharedFolders as $type => $prevSharedFolder) {
213
								// Update the store properties to refer to the shared folder,
214
								// note that we don't care if we have access to the folder or not.
215
								$type = $prevSharedFolder["folder_type"];
216
								if ($type == "all") {
217
									$propname = "subtree_entryid";
218
								}
219
								else {
220
									$propname = "default_folder_" . $prevSharedFolder["folder_type"];
221
								}
222
223
								if (isset($storeData["props"][$propname])) {
224
									$folderEntryID = hex2bin($storeData["props"][$propname]);
225
									$storeData["props"]["shared_folder_" . $prevSharedFolder["folder_type"]] = bin2hex($folderEntryID);
226
								}
227
							}
228
						}
229
					}
230
				}
231
232
				// Get the IPMSUBTREE object
233
				$storeAccess = true;
234
235
				try {
236
					$subtreeFolder = mapi_msgstore_openentry($store, $subtreeFolderEntryID);
237
					// Add root folder
238
					$subtree = $this->setFolder(mapi_getprops($subtreeFolder, $properties));
239
					if (!$openWholeStore) {
240
						$subtree['props']['access'] = 0;
241
					}
242
					array_push($storeData["folders"]["item"], $subtree);
243
				}
244
				catch (MAPIException $e) {
245
					if ($openWholeStore) {
246
						/*
247
						 * if we are going to open whole store and we are not able to open the subtree folder
248
						 * then it should be considered as an error
249
						 * but if we are only opening single folder then it could be possible that we don't have
250
						 * permission to open subtree folder so add a dummy subtree folder in the response and don't consider this as an error
251
						 */
252
						$storeAccess = false;
253
254
						// Add properties to the store response to indicate to the client
255
						// that the store could not be loaded.
256
						$this->invalidateResponseStore($storeData, 'all', $subtreeFolderEntryID);
257
					}
258
					else {
259
						// Add properties to the store response to add a placeholder IPMSubtree.
260
						$this->getDummyIPMSubtreeFolder($storeData, $subtreeFolderEntryID);
261
					}
262
263
					// We've handled the event
264
					$e->setHandled();
265
				}
266
267
				if ($storeAccess) {
268
					// Open the whole store and be done with it
269
					if ($openWholeStore) {
270
						try {
271
							// Update the store properties to refer to the shared folder,
272
							// note that we don't care if we have access to the folder or not.
273
							$storeData["props"]["shared_folder_all"] = bin2hex($subtreeFolderEntryID);
274
							$this->getSubFolders($subtreeFolder, $store, $properties, $storeData);
275
276
							if ($storeType == ZARAFA_SERVICE_GUID) {
277
								// If store type ZARAFA_SERVICE_GUID (own store) then get the
278
								// IPM_COMMON_VIEWS folder and set it to folders array.
279
								$storeData["favorites"] = ["item" => []];
280
								$commonViewFolderEntryid = $msgstore_props[PR_COMMON_VIEWS_ENTRYID];
281
282
								$this->setDefaultFavoritesFolder($commonViewFolderEntryid, $store, $storeData);
283
284
								$commonViewFolder = mapi_msgstore_openentry($store, $commonViewFolderEntryid);
285
								$this->getFavoritesFolders($commonViewFolder, $storeData);
286
287
								$commonViewFolderProps = mapi_getprops($commonViewFolder);
288
								array_push($storeData["folders"]["item"], $this->setFolder($commonViewFolderProps));
289
290
								// Get the To-do list folder and add it to the hierarchy
291
								$todoSearchFolder = todoList::getTodoSearchFolder($store);
292
								if ($todoSearchFolder) {
293
									$todoSearchFolderProps = mapi_getprops($todoSearchFolder);
294
295
									// Change the parent so the folder will be shown in the hierarchy
296
									$todoSearchFolderProps[PR_PARENT_ENTRYID] = $subtreeFolderEntryID;
297
									// Change the display name of the folder
298
									$todoSearchFolderProps[PR_DISPLAY_NAME] = _('To-Do List');
299
									// Never show unread content for the To-do list
300
									$todoSearchFolderProps[PR_CONTENT_UNREAD] = 0;
301
									$todoSearchFolderProps[PR_CONTENT_COUNT] = 0;
302
									array_push($storeData["folders"]["item"], $this->setFolder($todoSearchFolderProps));
303
									$storeData["props"]['default_folder_todolist'] = bin2hex($todoSearchFolderProps[PR_ENTRYID]);
304
								}
305
							}
306
						}
307
						catch (MAPIException $e) {
308
							// Add properties to the store response to indicate to the client
309
							// that the store could not be loaded.
310
							$this->invalidateResponseStore($storeData, 'all', $subtreeFolderEntryID);
311
312
							// We've handled the event
313
							$e->setHandled();
314
						}
315
316
					// Open single folders under the store object
317
					}
318
					else {
319
						foreach ($sharedFolders as $type => $sharedFolder) {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $sharedFolders does not seem to be defined for all execution paths leading up to this point.
Loading history...
320
							$openSubFolders = ($sharedFolder["show_subfolders"] == true);
321
322
							// See if the folders exists by checking if it is in the default folders entryid list
323
							$store_access = true;
324
							if (!isset($storeData["props"]["default_folder_" . $sharedFolder["folder_type"]])) {
325
								// Create a fake folder entryid which must be used for referencing this folder
326
								$folderEntryID = "default_folder_" . $sharedFolder["folder_type"];
327
328
								// Add properties to the store response to indicate to the client
329
								// that the store could not be loaded.
330
								$this->invalidateResponseStore($storeData, $type, $folderEntryID);
0 ignored issues
show
Bug introduced by
$folderEntryID of type string is incompatible with the type array expected by parameter $folderEntryID of Operations::invalidateResponseStore(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

330
								$this->invalidateResponseStore($storeData, $type, /** @scrutinizer ignore-type */ $folderEntryID);
Loading history...
331
332
								// Update the store properties to refer to the shared folder,
333
								// note that we don't care if we have access to the folder or not.
334
								$storeData["props"]["shared_folder_" . $sharedFolder["folder_type"]] = bin2hex($folderEntryID);
335
336
								// Indicate that we don't have access to the store,
337
								// so no more attempts to read properties or open entries.
338
								$store_access = false;
339
340
							// If you access according to the above check, go ahead and retrieve the MAPIFolder object
341
							}
342
							else {
343
								$folderEntryID = hex2bin($storeData["props"]["default_folder_" . $sharedFolder["folder_type"]]);
344
345
								// Update the store properties to refer to the shared folder,
346
								// note that we don't care if we have access to the folder or not.
347
								$storeData["props"]["shared_folder_" . $sharedFolder["folder_type"]] = bin2hex($folderEntryID);
348
349
								try {
350
									// load folder props
351
									$folder = mapi_msgstore_openentry($store, $folderEntryID);
352
								}
353
								catch (MAPIException $e) {
354
									// Add properties to the store response to indicate to the client
355
									// that the store could not be loaded.
356
									$this->invalidateResponseStore($storeData, $type, $folderEntryID);
357
358
									// Indicate that we don't have access to the store,
359
									// so no more attempts to read properties or open entries.
360
									$store_access = false;
361
362
									// We've handled the event
363
									$e->setHandled();
364
								}
365
							}
366
367
							// Check if a error handler already inserted a error folder,
368
							// or if we can insert the real folders here.
369
							if ($store_access === true) {
370
								// check if we need subfolders or not
371
								if ($openSubFolders === true) {
372
									// add folder data (with all subfolders recursively)
373
									// get parent folder's properties
374
									$folderProps = mapi_getprops($folder, $properties);
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $folder does not seem to be defined for all execution paths leading up to this point.
Loading history...
375
									$tempFolderProps = $this->setFolder($folderProps);
376
377
									array_push($storeData["folders"]["item"], $tempFolderProps);
378
379
									// get subfolders
380
									if ($tempFolderProps["props"]["has_subfolder"] != false) {
381
										$subfoldersData = [];
382
										$subfoldersData["folders"]["item"] = [];
383
										$this->getSubFolders($folder, $store, $properties, $subfoldersData);
384
385
										$storeData["folders"]["item"] = array_merge($storeData["folders"]["item"], $subfoldersData["folders"]["item"]);
386
									}
387
								}
388
								else {
389
									$folderProps = mapi_getprops($folder, $properties);
390
									$tempFolderProps = $this->setFolder($folderProps);
391
									// We don't load subfolders, this means the user isn't allowed
392
									// to create subfolders, as they should normally be hidden immediately.
393
									$tempFolderProps["props"]["access"] = ($tempFolderProps["props"]["access"] & ~MAPI_ACCESS_CREATE_HIERARCHY);
394
									// We don't load subfolders, so force the 'has_subfolder' property
395
									// to be false, so the UI will not consider loading subfolders.
396
									$tempFolderProps["props"]["has_subfolder"] = false;
397
									array_push($storeData["folders"]["item"], $tempFolderProps);
398
								}
399
							}
400
						}
401
					}
402
				}
403
				array_push($data["item"], $storeData);
404
			}
405
		}
406
407
		return $data;
408
	}
409
410
	/**
411
	 * Helper function to get the subfolders of a Personal Store.
412
	 *
413
	 * @param object $folder        mapi Folder Object
414
	 * @param object $store         Message Store Object
415
	 * @param array  $properties    MAPI property mappings for folders
416
	 * @param array  $storeData     Reference to an array. The folder properties are added to this array.
417
	 * @param mixed  $parentEntryid
418
	 */
419
	public function getSubFolders($folder, $store, $properties, &$storeData, $parentEntryid = false) {
420
		/**
421
		 * remove hidden folders, folders with PR_ATTR_HIDDEN property set
422
		 * should not be shown to the client.
423
		 */
424
		$restriction = [RES_OR, [
425
			[RES_PROPERTY,
426
				[
427
					RELOP => RELOP_EQ,
428
					ULPROPTAG => PR_ATTR_HIDDEN,
429
					VALUE => [PR_ATTR_HIDDEN => false],
430
				],
431
			],
432
			[RES_NOT,
433
				[
434
					[RES_EXIST,
435
						[
436
							ULPROPTAG => PR_ATTR_HIDDEN,
437
						],
438
					],
439
				],
440
			],
441
		]];
442
443
		$hierarchyTable = mapi_folder_gethierarchytable($folder, CONVENIENT_DEPTH | MAPI_DEFERRED_ERRORS);
444
		mapi_table_restrict($hierarchyTable, $restriction, TBL_BATCH);
445
446
		// Also request PR_DEPTH
447
		$columns = array_merge($properties, [PR_DEPTH]);
448
449
		mapi_table_setcolumns($hierarchyTable, $columns);
450
		$columns = null;
451
452
		// Load the hierarchy in bulks
453
		$rows = mapi_table_queryrows($hierarchyTable, $columns, 0, 0x7FFFFFFF);
454
455
		foreach ($rows as $subfolder) {
456
			if ($parentEntryid !== false && isset($subfolder[PR_DEPTH]) && $subfolder[PR_DEPTH] === 1) {
457
				$subfolder[PR_PARENT_ENTRYID] = $parentEntryid;
458
			}
459
			array_push($storeData["folders"]["item"], $this->setFolder($subfolder));
460
		}
461
	}
462
463
	/**
464
	 * Convert MAPI properties into useful XML properties for a folder.
465
	 *
466
	 * @param array $folderProps Properties of a folder
467
	 *
468
	 * @return array List of properties of a folder
469
	 *
470
	 * @todo The name of this function is misleading because it doesn't 'set' anything, it just reads some properties.
471
	 */
472
	public function setFolder($folderProps) {
473
		$props = [
474
			// Identification properties
475
			"entryid" => bin2hex($folderProps[PR_ENTRYID]),
476
			"parent_entryid" => bin2hex($folderProps[PR_PARENT_ENTRYID]),
477
			"store_entryid" => bin2hex($folderProps[PR_STORE_ENTRYID]),
478
			// Scalar properties
479
			"props" => [
480
				"display_name" => $folderProps[PR_DISPLAY_NAME],
481
				"object_type" => isset($folderProps[PR_OBJECT_TYPE]) ? $folderProps[PR_OBJECT_TYPE] : MAPI_FOLDER, // FIXME: Why isn't this always set?
482
				"content_count" => isset($folderProps[PR_CONTENT_COUNT]) ? $folderProps[PR_CONTENT_COUNT] : 0,
483
				"content_unread" => isset($folderProps[PR_CONTENT_UNREAD]) ? $folderProps[PR_CONTENT_UNREAD] : 0,
484
				"has_subfolder" => isset($folderProps[PR_SUBFOLDERS]) ? $folderProps[PR_SUBFOLDERS] : false,
485
				"container_class" => isset($folderProps[PR_CONTAINER_CLASS]) ? $folderProps[PR_CONTAINER_CLASS] : "IPF.Note",
486
				"access" => $folderProps[PR_ACCESS],
487
				"rights" => isset($folderProps[PR_RIGHTS]) ? $folderProps[PR_RIGHTS] : ecRightsNone,
488
				"assoc_content_count" => isset($folderProps[PR_ASSOC_CONTENT_COUNT]) ? $folderProps[PR_ASSOC_CONTENT_COUNT] : 0,
489
			],
490
		];
491
492
		$this->setExtendedFolderFlags($folderProps, $props);
493
494
		return $props;
495
	}
496
497
	/**
498
	 * Function is used to retrieve the favorites and search folders from
499
	 * respective favorites(IPM.Microsoft.WunderBar.Link) and search (IPM.Microsoft.WunderBar.SFInfo)
500
	 * link messages which belongs to associated contains table of IPM_COMMON_VIEWS folder.
501
	 *
502
	 * @param object $commonViewFolder MAPI Folder Object in which the favorites link messages lives
503
	 * @param array  $storeData        Reference to an array. The favorites folder properties are added to this array.
504
	 */
505
	public function getFavoritesFolders($commonViewFolder, &$storeData) {
506
		$table = mapi_folder_getcontentstable($commonViewFolder, MAPI_ASSOCIATED);
507
508
		$restriction = [RES_OR,
509
			[
510
				[RES_PROPERTY,
511
					[
512
						RELOP => RELOP_EQ,
513
						ULPROPTAG => PR_MESSAGE_CLASS,
514
						VALUE => [PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.Link"],
515
					],
516
				],
517
				[RES_PROPERTY,
518
					[
519
						RELOP => RELOP_EQ,
520
						ULPROPTAG => PR_MESSAGE_CLASS,
521
						VALUE => [PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.SFInfo"],
522
					],
523
				],
524
			],
525
		];
526
527
		// Get hierarchy table from all FINDERS_ROOT folders of
528
		// all message stores.
529
		$stores = $GLOBALS["mapisession"]->getAllMessageStores();
530
		$finderHierarchyTables = [];
531
		foreach ($stores as $entryid => $store) {
532
			$props = mapi_getprops($store, [PR_DEFAULT_STORE, PR_FINDER_ENTRYID]);
533
			if (!$props[PR_DEFAULT_STORE]) {
534
				continue;
535
			}
536
537
			try {
538
				$finderFolder = mapi_msgstore_openentry($store, $props[PR_FINDER_ENTRYID]);
539
				$hierarchyTable = mapi_folder_gethierarchytable($finderFolder, MAPI_DEFERRED_ERRORS);
540
				$finderHierarchyTables[$props[PR_FINDER_ENTRYID]] = $hierarchyTable;
541
			}
542
			catch (MAPIException $e) {
543
				$e->setHandled();
544
				$props = mapi_getprops($store, [PR_DISPLAY_NAME]);
545
				error_log(sprintf(
546
					"Unable to open FINDER_ROOT for store \"%s\": %s (%s)",
547
					$props[PR_DISPLAY_NAME],
548
					mapi_strerror($e->getCode()),
549
					get_mapi_error_name($e->getCode())
550
				));
551
			}
552
		}
553
554
		$rows = mapi_table_queryallrows($table, $GLOBALS["properties"]->getFavoritesFolderProperties(), $restriction);
555
		$faultyLinkMsg = [];
556
		foreach ($rows as $row) {
557
			if (isset($row[PR_WLINK_TYPE]) && $row[PR_WLINK_TYPE] > wblSharedFolder) {
558
				continue;
559
			}
560
561
			try {
562
				if ($row[PR_MESSAGE_CLASS] === "IPM.Microsoft.WunderBar.Link") {
563
					// Find faulty link messages which does not linked to any message. if link message
564
					// does not contains store entryid in which actual message is located then it consider as
565
					// faulty link message.
566
					if (isset($row[PR_WLINK_STORE_ENTRYID]) && empty($row[PR_WLINK_STORE_ENTRYID]) ||
0 ignored issues
show
introduced by
Consider adding parentheses for clarity. Current Interpretation: (IssetNode && empty($row...TRYID])) || ! IssetNode, Probably Intended Meaning: IssetNode && (empty($row...TRYID]) || ! IssetNode)
Loading history...
567
						!isset($row[PR_WLINK_STORE_ENTRYID])) {
568
						// Outlook apparently doesn't set PR_WLINK_STORE_ENTRYID
569
						// for with free/busy permission only opened shared calenders,
570
						// so do not remove them from the IPM_COMMON_VIEWS
571
						if ((isset($row[PR_WLINK_SECTION]) && $row[PR_WLINK_SECTION] != wbsidCalendar) ||
572
						    !isset($row[PR_WLINK_SECTION])) {
573
							array_push($faultyLinkMsg, $row[PR_ENTRYID]);
574
						}
575
576
						continue;
577
					}
578
					$props = $this->getFavoriteLinkedFolderProps($row);
579
					if (empty($props)) {
580
						continue;
581
					}
582
				}
583
				elseif ($row[PR_MESSAGE_CLASS] === "IPM.Microsoft.WunderBar.SFInfo") {
584
					$props = $this->getFavoritesLinkedSearchFolderProps($row[PR_WB_SF_ID], $finderHierarchyTables);
585
					if (empty($props)) {
586
						continue;
587
					}
588
				}
589
			}
590
			catch (MAPIException $e) {
591
				continue;
592
			}
593
594
			array_push($storeData['favorites']['item'], $this->setFavoritesFolder($props));
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $props does not seem to be defined for all execution paths leading up to this point.
Loading history...
595
		}
596
597
		if (!empty($faultyLinkMsg)) {
598
			// remove faulty link messages from common view folder.
599
			mapi_folder_deletemessages($commonViewFolder, $faultyLinkMsg);
600
		}
601
	}
602
603
	/**
604
	 * Function which checks whether given linked Message is faulty or not.
605
	 * It will store faulty linked messages in given &$faultyLinkMsg array.
606
	 * Returns true if linked message of favorite item is faulty.
607
	 *
608
	 * @param array  &$faultyLinkMsg   reference in which faulty linked messages will be stored
609
	 * @param array  $allMessageStores Associative array with entryid -> mapistore of all open stores (private, public, delegate)
610
	 * @param object $linkedMessage    link message which belongs to associated contains table of IPM_COMMON_VIEWS folder
611
	 *
612
	 * @return true if linked message of favorite item is faulty or false
613
	 */
614
	public function checkFaultyFavoritesLinkedFolder(&$faultyLinkMsg, $allMessageStores, $linkedMessage) {
615
		// Find faulty link messages which does not linked to any message. if link message
616
		// does not contains store entryid in which actual message is located then it consider as
617
		// faulty link message.
618
		if (isset($linkedMessage[PR_WLINK_STORE_ENTRYID]) && empty($linkedMessage[PR_WLINK_STORE_ENTRYID])) {
619
			array_push($faultyLinkMsg, $linkedMessage[PR_ENTRYID]);
620
621
			return true;
622
		}
623
624
		// Check if store of a favorite Item does not exist in Hierarchy then
625
		// delete link message of that favorite item.
626
		// i.e. If a user is unhooked then remove its favorite items.
627
		$storeExist = array_key_exists($linkedMessage[PR_WLINK_STORE_ENTRYID], $allMessageStores);
628
		if (!$storeExist) {
629
			array_push($faultyLinkMsg, $linkedMessage[PR_ENTRYID]);
630
631
			return true;
632
		}
633
634
		return false;
0 ignored issues
show
Bug Best Practice introduced by
The expression return false returns the type false which is incompatible with the documented return type true.
Loading history...
635
	}
636
637
	/**
638
	 * Function which get the favorites marked folders from favorites link message
639
	 * which belongs to associated contains table of IPM_COMMON_VIEWS folder.
640
	 *
641
	 * @param array $linkMessageProps properties of link message which belongs to
642
	 *                                associated contains table of IPM_COMMON_VIEWS folder
643
	 *
644
	 * @return array List of properties of a folder
645
	 */
646
	public function getFavoriteLinkedFolderProps($linkMessageProps) {
647
		// In webapp we use IPM_SUBTREE as root folder for the Hierarchy but OL is use IMsgStore as a
648
		// Root folder. OL never mark favorites to IPM_SUBTREE. So to make favorites compatible with OL
649
		// we need this check.
650
		// Here we check PR_WLINK_STORE_ENTRYID and PR_WLINK_ENTRYID is same. Which same only in one case
651
		// where some user has mark favorites to root(Inbox-<user name>) folder from OL. So here if condition
652
		// gets true we get the IPM_SUBTREE and send it to response as favorites folder to webapp.
653
		try {
654
			if ($GLOBALS['entryid']->compareEntryIds($linkMessageProps[PR_WLINK_STORE_ENTRYID], $linkMessageProps[PR_WLINK_ENTRYID])) {
655
				$storeObj = $GLOBALS["mapisession"]->openMessageStore($linkMessageProps[PR_WLINK_STORE_ENTRYID]);
656
				$subTreeEntryid = mapi_getprops($storeObj, [PR_IPM_SUBTREE_ENTRYID]);
657
				$folderObj = mapi_msgstore_openentry($storeObj, $subTreeEntryid[PR_IPM_SUBTREE_ENTRYID]);
658
			}
659
			else {
660
				$storeObj = $GLOBALS["mapisession"]->openMessageStore($linkMessageProps[PR_WLINK_STORE_ENTRYID]);
661
				if (!is_resource($storeObj)) {
662
					return false;
0 ignored issues
show
Bug Best Practice introduced by
The expression return false returns the type false which is incompatible with the documented return type array.
Loading history...
663
				}
664
				$folderObj = mapi_msgstore_openentry($storeObj, $linkMessageProps[PR_WLINK_ENTRYID]);
665
			}
666
667
			return mapi_getprops($folderObj, $GLOBALS["properties"]->getFavoritesFolderProperties());
668
		}
669
		catch (Exception $e) {
670
			// in some cases error_log was causing an endless loop, so disable it for now
671
			// error_log($e);
672
		}
673
674
		return false;
0 ignored issues
show
Bug Best Practice introduced by
The expression return false returns the type false which is incompatible with the documented return type array.
Loading history...
675
	}
676
677
	/**
678
	 * Function which retrieve the search folder from FINDERS_ROOT folder of all open
679
	 * message store.
680
	 *
681
	 * @param string $searchFolderId        contains a GUID that identifies the search folder.
682
	 *                                      The value of this property MUST NOT change.
683
	 * @param array  $finderHierarchyTables hierarchy tables which belongs to FINDERS_ROOT
684
	 *                                      folder of message stores
685
	 *
686
	 * @return array list of search folder properties
687
	 */
688
	public function getFavoritesLinkedSearchFolderProps($searchFolderId, $finderHierarchyTables) {
689
		$restriction = [RES_EXIST,
690
			[
691
				ULPROPTAG => PR_EXTENDED_FOLDER_FLAGS,
692
			],
693
		];
694
695
		foreach ($finderHierarchyTables as $finderEntryid => $hierarchyTable) {
696
			$rows = mapi_table_queryallrows($hierarchyTable, $GLOBALS["properties"]->getFavoritesFolderProperties(), $restriction);
697
			foreach ($rows as $row) {
698
				$flags = unpack("H2ExtendedFlags-Id/H2ExtendedFlags-Cb/H8ExtendedFlags-Data/H2SearchFolderTag-Id/H2SearchFolderTag-Cb/H8SearchFolderTag-Data/H2SearchFolderId-Id/H2SearchFolderId-Cb/H32SearchFolderId-Data", $row[PR_EXTENDED_FOLDER_FLAGS]);
699
				if ($flags["SearchFolderId-Data"] === bin2hex($searchFolderId)) {
700
					return $row;
701
				}
702
			}
703
		}
704
	}
705
706
	/**
707
	 * Create link messages for default favorites(Inbox and Sent Items) folders in associated contains table of IPM_COMMON_VIEWS folder
708
	 * and remove all other link message from the same.
709
	 *
710
	 * @param string $commonViewFolderEntryid IPM_COMMON_VIEWS folder entryid
711
	 * @param object $store                   Message Store Object
712
	 * @param array  $storeData               the store data which use to create restriction
713
	 */
714
	public function setDefaultFavoritesFolder($commonViewFolderEntryid, $store, $storeData) {
715
		if ($GLOBALS["settings"]->get("zarafa/v1/contexts/hierarchy/show_default_favorites") !== false) {
716
			$commonViewFolder = mapi_msgstore_openentry($store, $commonViewFolderEntryid);
717
718
			$inboxFolderEntryid = hex2bin($storeData["props"]["default_folder_inbox"]);
719
			$sentFolderEntryid = hex2bin($storeData["props"]["default_folder_sent"]);
720
721
			$table = mapi_folder_getcontentstable($commonViewFolder, MAPI_ASSOCIATED);
722
723
			// Restriction for get all link message(IPM.Microsoft.WunderBar.Link)
724
			// and search link message (IPM.Microsoft.WunderBar.SFInfo) from
725
			// Associated contains table of IPM_COMMON_VIEWS folder.
726
			$findLinkMsgRestriction = [RES_OR,
727
				[
728
					[RES_PROPERTY,
729
						[
730
							RELOP => RELOP_EQ,
731
							ULPROPTAG => PR_MESSAGE_CLASS,
732
							VALUE => [PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.Link"],
733
						],
734
					],
735
					[RES_PROPERTY,
736
						[
737
							RELOP => RELOP_EQ,
738
							ULPROPTAG => PR_MESSAGE_CLASS,
739
							VALUE => [PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.SFInfo"],
740
						],
741
					],
742
				],
743
			];
744
745
			// Restriction for find Inbox and/or Sent folder link message from
746
			// Associated contains table of IPM_COMMON_VIEWS folder.
747
			$findInboxOrSentLinkMessage = [RES_OR,
748
				[
749
					[RES_PROPERTY,
750
						[
751
							RELOP => RELOP_EQ,
752
							ULPROPTAG => PR_WLINK_ENTRYID,
753
							VALUE => [PR_WLINK_ENTRYID => $inboxFolderEntryid],
754
						],
755
					],
756
					[RES_PROPERTY,
757
						[
758
							RELOP => RELOP_EQ,
759
							ULPROPTAG => PR_WLINK_ENTRYID,
760
							VALUE => [PR_WLINK_ENTRYID => $sentFolderEntryid],
761
						],
762
					],
763
				],
764
			];
765
766
			// Restriction to get all link messages except Inbox and Sent folder's link messages from
767
			// Associated contains table of IPM_COMMON_VIEWS folder, if exist in it.
768
			$restriction = [RES_AND,
769
				[
770
					$findLinkMsgRestriction,
771
					[RES_NOT,
772
						[
773
							$findInboxOrSentLinkMessage,
774
						],
775
					],
776
				],
777
			];
778
779
			$rows = mapi_table_queryallrows($table, [PR_ENTRYID], $restriction);
780
			if (!empty($rows)) {
781
				$deleteMessages = [];
782
				foreach ($rows as $row) {
783
					array_push($deleteMessages, $row[PR_ENTRYID]);
784
				}
785
				mapi_folder_deletemessages($commonViewFolder, $deleteMessages);
786
			}
787
788
			// We need to remove all search folder from FIND_ROOT(search root folder)
789
			// when reset setting was triggered because on reset setting we remove all
790
			// link messages from common view folder which are linked with either
791
			// favorites or search folder.
792
			$finderFolderEntryid = hex2bin($storeData["props"]["finder_entryid"]);
793
			$finderFolder = mapi_msgstore_openentry($store, $finderFolderEntryid);
794
			$hierarchyTable = mapi_folder_gethierarchytable($finderFolder, MAPI_DEFERRED_ERRORS);
795
			$folders = mapi_table_queryallrows($hierarchyTable, [PR_ENTRYID]);
796
			foreach ($folders as $folder) {
797
				try {
798
					mapi_folder_deletefolder($finderFolder, $folder[PR_ENTRYID]);
799
				}
800
				catch (MAPIException $e) {
801
					$msg = "Problem in deleting search folder while reset settings. MAPI Error %s.";
802
					$formattedMsg = sprintf($msg, get_mapi_error_name($e->getCode()));
803
					error_log($formattedMsg);
804
					Log::Write(LOGLEVEL_ERROR, "Operations:setDefaultFavoritesFolder() " . $formattedMsg);
805
				}
806
			}
807
			// Restriction used to find only Inbox and Sent folder's link messages from
808
			// Associated contains table of IPM_COMMON_VIEWS folder, if exist in it.
809
			$restriction = [RES_AND,
810
				[
811
					$findLinkMsgRestriction,
812
					$findInboxOrSentLinkMessage,
813
				],
814
			];
815
816
			$rows = mapi_table_queryallrows($table, [PR_WLINK_ENTRYID], $restriction);
817
818
			// If Inbox and Sent folder's link messages are not exist then create the
819
			// link message for those in associated contains table of IPM_COMMON_VIEWS folder.
820
			if (empty($rows)) {
821
				$defaultFavFoldersKeys = ["inbox", "sent"];
822
				foreach ($defaultFavFoldersKeys as $folderKey) {
823
					$folderObj = $GLOBALS["mapisession"]->openMessage(hex2bin($storeData["props"]["default_folder_" . $folderKey]));
824
					$props = mapi_getprops($folderObj, [PR_ENTRYID, PR_STORE_ENTRYID, PR_DISPLAY_NAME]);
825
					$this->createFavoritesLink($commonViewFolder, $props);
826
				}
827
			}
828
			elseif (count($rows) < 2) {
829
				// If rows count is less than 2 it means associated contains table of IPM_COMMON_VIEWS folder
830
				// can have either Inbox or Sent folder link message in it. So we have to create link message
831
				// for Inbox or Sent folder which ever not exist in associated contains table of IPM_COMMON_VIEWS folder
832
				// to maintain default favorites folder.
833
				$row = $rows[0];
834
				$wlinkEntryid = $row[PR_WLINK_ENTRYID];
835
836
				$isInboxFolder = $GLOBALS['entryid']->compareEntryIds($wlinkEntryid, $inboxFolderEntryid);
837
838
				if (!$isInboxFolder) {
839
					$folderObj = $GLOBALS["mapisession"]->openMessage($inboxFolderEntryid);
840
				}
841
				else {
842
					$folderObj = $GLOBALS["mapisession"]->openMessage($sentFolderEntryid);
843
				}
844
845
				$props = mapi_getprops($folderObj, [PR_ENTRYID, PR_STORE_ENTRYID, PR_DISPLAY_NAME]);
846
				$this->createFavoritesLink($commonViewFolder, $props);
847
			}
848
			$GLOBALS["settings"]->set("zarafa/v1/contexts/hierarchy/show_default_favorites", false, true);
849
		}
850
	}
851
852
	/**
853
	 * Create favorites link message (IPM.Microsoft.WunderBar.Link) or
854
	 * search link message ("IPM.Microsoft.WunderBar.SFInfo") in associated
855
	 * contains table of IPM_COMMON_VIEWS folder.
856
	 *
857
	 * @param object      $commonViewFolder MAPI Message Folder Object
858
	 * @param array       $folderProps      Properties of a folder
859
	 * @param bool|string $searchFolderId   search folder id which is used to identify the
860
	 *                                      linked search folder from search link message. by default it is false.
861
	 */
862
	public function createFavoritesLink($commonViewFolder, $folderProps, $searchFolderId = false) {
863
		if ($searchFolderId) {
864
			$props = [
865
				PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.SFInfo",
866
				PR_WB_SF_ID => $searchFolderId,
867
				PR_WLINK_TYPE => wblSearchFolder,
868
			];
869
		}
870
		else {
871
			$defaultStoreEntryId = hex2bin($GLOBALS['mapisession']->getDefaultMessageStoreEntryId());
872
			$props = [
873
				PR_MESSAGE_CLASS => "IPM.Microsoft.WunderBar.Link",
874
				PR_WLINK_ENTRYID => $folderProps[PR_ENTRYID],
875
				PR_WLINK_STORE_ENTRYID => $folderProps[PR_STORE_ENTRYID],
876
				PR_WLINK_TYPE => $GLOBALS['entryid']->compareEntryIds($defaultStoreEntryId, $folderProps[PR_STORE_ENTRYID]) ? wblNormalFolder : wblSharedFolder,
877
			];
878
		}
879
880
		$favoritesLinkMsg = mapi_folder_createmessage($commonViewFolder, MAPI_ASSOCIATED);
881
		mapi_setprops($favoritesLinkMsg, $props);
882
		mapi_savechanges($favoritesLinkMsg);
883
	}
884
885
	/**
886
	 * Convert MAPI properties into useful and human readable string for favorites folder.
887
	 *
888
	 * @param array $folderProps Properties of a folder
889
	 *
890
	 * @return array List of properties of a folder
891
	 */
892
	public function setFavoritesFolder($folderProps) {
893
		$props = $this->setFolder($folderProps);
894
		// Add and Make isFavorites to true, this allows the client to properly
895
		// indicate to the user that this is a favorites item/folder.
896
		$props["props"]["isFavorites"] = true;
897
		$props["props"]["folder_type"] = $folderProps[PR_FOLDER_TYPE];
898
899
		return $props;
900
	}
901
902
	/**
903
	 * Fetches extended flags for folder. If PR_EXTENDED_FLAGS is not set then we assume that client
904
	 * should handle which property to display.
905
	 *
906
	 * @param array $folderProps Properties of a folder
907
	 * @param array $props       properties in which flags should be set
908
	 */
909
	public function setExtendedFolderFlags($folderProps, &$props) {
910
		if (isset($folderProps[PR_EXTENDED_FOLDER_FLAGS])) {
911
			$flags = unpack("Cid/Cconst/Cflags", $folderProps[PR_EXTENDED_FOLDER_FLAGS]);
912
913
			// ID property is '1' this means 'Data' property contains extended flags
914
			if ($flags["id"] == 1) {
915
				$props["props"]["extended_flags"] = $flags["flags"];
916
			}
917
		}
918
	}
919
920
	/**
921
	 * Used to update the storeData with a folder and properties that will
922
	 * inform the user that the store could not be opened.
923
	 *
924
	 * @param array  &$storeData    The store data which will be updated
925
	 * @param string $folderType    The foldertype which was attempted to be loaded
926
	 * @param array  $folderEntryID The entryid of the which was attempted to be opened
927
	 */
928
	public function invalidateResponseStore(&$storeData, $folderType, $folderEntryID) {
929
		$folderName = "Folder";
930
		$containerClass = "IPF.Note";
931
932
		switch ($folderType) {
933
			case "all":
934
				$folderName = "IPM_SUBTREE";
935
				$containerClass = "IPF.Note";
936
				break;
937
938
			case "calendar":
939
				$folderName = _("Calendar");
940
				$containerClass = "IPF.Appointment";
941
				break;
942
943
			case "contact":
944
				$folderName = _("Contacts");
945
				$containerClass = "IPF.Contact";
946
				break;
947
948
			case "inbox":
949
				$folderName = _("Inbox");
950
				$containerClass = "IPF.Note";
951
				break;
952
953
			case "note":
954
				$folderName = _("Notes");
955
				$containerClass = "IPF.StickyNote";
956
				break;
957
958
			case "task":
959
				$folderName = _("Tasks");
960
				$containerClass = "IPF.Task";
961
				break;
962
		}
963
964
		// Insert a fake folder which will be shown to the user
965
		// to acknowledge that he has a shared store, but also
966
		// to indicate that he can't open it.
967
		$tempFolderProps = $this->setFolder([
968
			PR_ENTRYID => $folderEntryID,
969
			PR_PARENT_ENTRYID => hex2bin($storeData["props"]["subtree_entryid"]),
970
			PR_STORE_ENTRYID => hex2bin($storeData["store_entryid"]),
971
			PR_DISPLAY_NAME => $folderName,
972
			PR_OBJECT_TYPE => MAPI_FOLDER,
973
			PR_SUBFOLDERS => false,
974
			PR_CONTAINER_CLASS => $containerClass,
975
			PR_ACCESS => 0,
976
		]);
977
978
		// Mark the folder as unavailable, this allows the client to properly
979
		// indicate to the user that this is a fake entry.
980
		$tempFolderProps['props']['is_unavailable'] = true;
981
982
		array_push($storeData["folders"]["item"], $tempFolderProps);
983
984
		/* TRANSLATORS: This indicates that the opened folder belongs to a particular user,
985
		 * for example: 'Calendar of Holiday', in this case %1$s is 'Calendar' (the foldername)
986
		 * and %2$s is 'Holiday' (the username).
987
		 */
988
		$storeData["props"]["display_name"] = ($folderType === "all") ? $storeData["props"]["display_name"] : sprintf(_('%1$s of %2$s'), $folderName, $storeData["props"]["mailbox_owner_name"]);
989
		$storeData["props"]["subtree_entryid"] = $tempFolderProps["parent_entryid"];
990
		$storeData["props"]["folder_type"] = $folderType;
991
	}
992
993
	/**
994
	 * Used to update the storeData with a folder and properties that will function as a
995
	 * placeholder for the IPMSubtree that could not be opened.
996
	 *
997
	 * @param array &$storeData    The store data which will be updated
998
	 * @param array $folderEntryID The entryid of the which was attempted to be opened
999
	 */
1000
	public function getDummyIPMSubtreeFolder(&$storeData, $folderEntryID) {
1001
		// Insert a fake folder which will be shown to the user
1002
		// to acknowledge that he has a shared store.
1003
		$tempFolderProps = $this->setFolder([
1004
			PR_ENTRYID => $folderEntryID,
1005
			PR_PARENT_ENTRYID => hex2bin($storeData["props"]["subtree_entryid"]),
1006
			PR_STORE_ENTRYID => hex2bin($storeData["store_entryid"]),
1007
			PR_DISPLAY_NAME => "IPM_SUBTREE",
1008
			PR_OBJECT_TYPE => MAPI_FOLDER,
1009
			PR_SUBFOLDERS => true,
1010
			PR_CONTAINER_CLASS => "IPF.Note",
1011
			PR_ACCESS => 0,
1012
		]);
1013
1014
		array_push($storeData["folders"]["item"], $tempFolderProps);
1015
		$storeData["props"]["subtree_entryid"] = $tempFolderProps["parent_entryid"];
1016
	}
1017
1018
	/**
1019
	 * Create a MAPI folder.
1020
	 *
1021
	 * This function simply creates a MAPI folder at a specific location with a specific folder
1022
	 * type.
1023
	 *
1024
	 * @param object $store         MAPI Message Store Object in which the folder lives
1025
	 * @param string $parententryid The parent entryid in which the new folder should be created
1026
	 * @param string $name          The name of the new folder
1027
	 * @param string $type          The type of the folder (PR_CONTAINER_CLASS, so value should be 'IPM.Appointment', etc)
1028
	 * @param array  $folderProps   reference to an array which will be filled with PR_ENTRYID and PR_STORE_ENTRYID of new folder
1029
	 *
1030
	 * @return bool true if action succeeded, false if not
1031
	 */
1032
	public function createFolder($store, $parententryid, $name, $type, &$folderProps) {
1033
		$result = false;
1034
		$folder = mapi_msgstore_openentry($store, $parententryid);
1035
1036
		if ($folder) {
1037
			/**
1038
			 * @TODO: If parent folder has any sub-folder with the same name than this will return
1039
			 * MAPI_E_COLLISION error, so show this error to client and don't close the dialog.
1040
			 */
1041
			$new_folder = mapi_folder_createfolder($folder, $name);
1042
1043
			if ($new_folder) {
1044
				mapi_setprops($new_folder, [PR_CONTAINER_CLASS => $type]);
1045
				$result = true;
1046
1047
				$folderProps = mapi_getprops($new_folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1048
			}
1049
		}
1050
1051
		return $result;
1052
	}
1053
1054
	/**
1055
	 * Rename a folder.
1056
	 *
1057
	 * This function renames the specified folder. However, a conflict situation can arise
1058
	 * if the specified folder name already exists. In this case, the folder name is postfixed with
1059
	 * an ever-higher integer to create a unique folder name.
1060
	 *
1061
	 * @param object $store       MAPI Message Store Object
1062
	 * @param string $entryid     The entryid of the folder to rename
1063
	 * @param string $name        The new name of the folder
1064
	 * @param array  $folderProps reference to an array which will be filled with PR_ENTRYID and PR_STORE_ENTRYID
1065
	 *
1066
	 * @return bool true if action succeeded, false if not
1067
	 */
1068
	public function renameFolder($store, $entryid, $name, &$folderProps) {
1069
		$folder = mapi_msgstore_openentry($store, $entryid);
1070
		if (!$folder) {
1071
			return false;
1072
		}
1073
		$result = false;
0 ignored issues
show
Unused Code introduced by
The assignment to $result is dead and can be removed.
Loading history...
1074
		$folderProps = mapi_getprops($folder, [PR_ENTRYID, PR_STORE_ENTRYID, PR_DISPLAY_NAME]);
1075
1076
		/*
1077
		 * If parent folder has any sub-folder with the same name than this will return
1078
		 * MAPI_E_COLLISION error while renaming folder, so show this error to client,
1079
		 * and revert changes in view.
1080
		 */
1081
		try {
1082
			mapi_setprops($folder, [PR_DISPLAY_NAME => $name]);
1083
			mapi_savechanges($folder);
1084
			$result = true;
1085
		}
1086
		catch (MAPIException $e) {
1087
			if ($e->getCode() == MAPI_E_COLLISION) {
1088
				/*
1089
				 * revert folder name to original one
1090
				 * There is a bug in php-mapi that updates folder name in hierarchy table with null value
1091
				 * so we need to revert those change by again setting the old folder name
1092
				 * (ZCP-11586)
1093
				 */
1094
				mapi_setprops($folder, [PR_DISPLAY_NAME => $folderProps[PR_DISPLAY_NAME]]);
1095
				mapi_savechanges($folder);
1096
			}
1097
1098
			// rethrow exception so we will send error to client
1099
			throw $e;
1100
		}
1101
1102
		return $result;
1103
	}
1104
1105
	/**
1106
	 * Check if a folder is 'special'.
1107
	 *
1108
	 * All default MAPI folders such as 'inbox', 'outbox', etc have special permissions; you can not rename them for example. This
1109
	 * function returns TRUE if the specified folder is 'special'.
1110
	 *
1111
	 * @param object $store   MAPI Message Store Object
1112
	 * @param string $entryid The entryid of the folder
1113
	 *
1114
	 * @return bool true if folder is a special folder, false if not
1115
	 */
1116
	public function isSpecialFolder($store, $entryid) {
1117
		$msgstore_props = mapi_getprops($store, [PR_MDB_PROVIDER]);
1118
1119
		// "special" folders don't exists in public store
1120
		if ($msgstore_props[PR_MDB_PROVIDER] == ZARAFA_STORE_PUBLIC_GUID) {
1121
			return false;
1122
		}
1123
1124
		// Check for the Special folders which are provided on the store
1125
		$msgstore_props = mapi_getprops($store, [
1126
			PR_IPM_SUBTREE_ENTRYID,
1127
			PR_IPM_OUTBOX_ENTRYID,
1128
			PR_IPM_SENTMAIL_ENTRYID,
1129
			PR_IPM_WASTEBASKET_ENTRYID,
1130
			PR_IPM_PUBLIC_FOLDERS_ENTRYID,
1131
			PR_IPM_FAVORITES_ENTRYID,
1132
		]);
1133
1134
		if (array_search($entryid, $msgstore_props)) {
1135
			return true;
1136
		}
1137
1138
		// Check for the Special folders which are provided on the root folder
1139
		$root = mapi_msgstore_openentry($store);
1140
		$rootProps = mapi_getprops($root, [
1141
			PR_IPM_APPOINTMENT_ENTRYID,
1142
			PR_IPM_CONTACT_ENTRYID,
1143
			PR_IPM_DRAFTS_ENTRYID,
1144
			PR_IPM_JOURNAL_ENTRYID,
1145
			PR_IPM_NOTE_ENTRYID,
1146
			PR_IPM_TASK_ENTRYID,
1147
			PR_ADDITIONAL_REN_ENTRYIDS,
1148
		]);
1149
1150
		if (array_search($entryid, $rootProps)) {
1151
			return true;
1152
		}
1153
1154
		// The PR_ADDITIONAL_REN_ENTRYIDS are a bit special
1155
		if (isset($rootProps[PR_ADDITIONAL_REN_ENTRYIDS]) && is_array($rootProps[PR_ADDITIONAL_REN_ENTRYIDS])) {
1156
			if (array_search($entryid, $rootProps[PR_ADDITIONAL_REN_ENTRYIDS])) {
1157
				return true;
1158
			}
1159
		}
1160
1161
		// Check if the given folder is the inbox, note that we are unsure
1162
		// if we have permissions on that folder, so we need a try catch.
1163
		try {
1164
			$inbox = mapi_msgstore_getreceivefolder($store);
1165
			$props = mapi_getprops($inbox, [PR_ENTRYID]);
1166
1167
			if ($props[PR_ENTRYID] == $entryid) {
1168
				return true;
1169
			}
1170
		}
1171
		catch (MAPIException $e) {
1172
			if ($e->getCode() !== MAPI_E_NO_ACCESS) {
1173
				throw $e;
1174
			}
1175
		}
1176
1177
		return false;
1178
	}
1179
1180
	/**
1181
	 * Delete a folder.
1182
	 *
1183
	 * Deleting a folder normally just moves the folder to the wastebasket, which is what this function does. However,
1184
	 * if the folder was already in the wastebasket, then the folder is really deleted.
1185
	 *
1186
	 * @param object $store         MAPI Message Store Object
1187
	 * @param string $parententryid The parent in which the folder should be deleted
1188
	 * @param string $entryid       The entryid of the folder which will be deleted
1189
	 * @param array  $folderProps   reference to an array which will be filled with PR_ENTRYID, PR_STORE_ENTRYID of the deleted object
1190
	 * @param bool   $softDelete    flag for indicating that folder should be soft deleted which can be recovered from
1191
	 *                              restore deleted items
1192
	 * @param bool   $hardDelete    flag for indicating that folder should be hard deleted from system and can not be
1193
	 *                              recovered from restore soft deleted items
1194
	 *
1195
	 * @return bool true if action succeeded, false if not
1196
	 *
1197
	 * @todo subfolders of folders in the wastebasket should also be hard-deleted
1198
	 */
1199
	public function deleteFolder($store, $parententryid, $entryid, &$folderProps, $softDelete = false, $hardDelete = false) {
1200
		$result = false;
1201
		$msgprops = mapi_getprops($store, [PR_IPM_WASTEBASKET_ENTRYID]);
1202
		$folder = mapi_msgstore_openentry($store, $parententryid);
1203
1204
		if ($folder && !$this->isSpecialFolder($store, $entryid)) {
1205
			if ($hardDelete === true) {
1206
				// hard delete the message if requested
1207
				// beware that folder can not be recovered after this and will be deleted from system entirely
1208
				if (mapi_folder_deletefolder($folder, $entryid, DEL_MESSAGES | DEL_FOLDERS | DELETE_HARD_DELETE)) {
1209
					$result = true;
1210
1211
					// if exists, also delete settings made for this folder (client don't need an update for this)
1212
					$GLOBALS["settings"]->delete("zarafa/v1/state/folders/" . bin2hex($entryid));
1213
				}
1214
			}
1215
			else {
1216
				if (isset($msgprops[PR_IPM_WASTEBASKET_ENTRYID])) {
1217
					// TODO: check if not only $parententryid=wastebasket, but also the parents of that parent...
1218
					// if folder is already in wastebasket or softDelete is requested then delete the message
1219
					if ($msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid || $softDelete === true) {
1220
						if (mapi_folder_deletefolder($folder, $entryid, DEL_MESSAGES | DEL_FOLDERS)) {
1221
							$result = true;
1222
1223
							// if exists, also delete settings made for this folder (client don't need an update for this)
1224
							$GLOBALS["settings"]->delete("zarafa/v1/state/folders/" . bin2hex($entryid));
1225
						}
1226
					}
1227
					else {
1228
						// move the folder to wastebasket
1229
						$wastebasket = mapi_msgstore_openentry($store, $msgprops[PR_IPM_WASTEBASKET_ENTRYID]);
1230
1231
						$deleted_folder = mapi_msgstore_openentry($store, $entryid);
1232
						$props = mapi_getprops($deleted_folder, [PR_DISPLAY_NAME]);
1233
1234
						try {
1235
							/*
1236
							 * To decrease overload of checking for conflicting folder names on modification of every folder
1237
							 * we should first try to copy folder and if it returns MAPI_E_COLLISION then
1238
							 * only we should check for the conflicting folder names and generate a new name
1239
							 * and copy folder with the generated name.
1240
							 */
1241
							mapi_folder_copyfolder($folder, $entryid, $wastebasket, $props[PR_DISPLAY_NAME], FOLDER_MOVE);
1242
							$folderProps = mapi_getprops($deleted_folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1243
							$result = true;
1244
						}
1245
						catch (MAPIException $e) {
1246
							if ($e->getCode() == MAPI_E_COLLISION) {
1247
								$foldername = $this->checkFolderNameConflict($store, $wastebasket, $props[PR_DISPLAY_NAME]);
1248
1249
								mapi_folder_copyfolder($folder, $entryid, $wastebasket, $foldername, FOLDER_MOVE);
1250
								$folderProps = mapi_getprops($deleted_folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1251
								$result = true;
1252
							}
1253
							else {
1254
								// all other errors should be propagated to higher level exception handlers
1255
								throw $e;
1256
							}
1257
						}
1258
					}
1259
				}
1260
				else {
1261
					if (mapi_folder_deletefolder($folder, $entryid, DEL_MESSAGES | DEL_FOLDERS)) {
1262
						$result = true;
1263
1264
						// if exists, also delete settings made for this folder (client don't need an update for this)
1265
						$GLOBALS["settings"]->delete("zarafa/v1/state/folders/" . bin2hex($entryid));
1266
					}
1267
				}
1268
			}
1269
		}
1270
1271
		return $result;
1272
	}
1273
1274
	/**
1275
	 * Empty folder.
1276
	 *
1277
	 * Removes all items from a folder. This is a real delete, not a move.
1278
	 *
1279
	 * @param object $store           MAPI Message Store Object
1280
	 * @param string $entryid         The entryid of the folder which will be emptied
1281
	 * @param array  $folderProps     reference to an array which will be filled with PR_ENTRYID and PR_STORE_ENTRYID of the emptied folder
1282
	 * @param bool   $hardDelete      flag to indicate if messages will be hard deleted and can not be recoved using restore soft deleted items
1283
	 * @param bool   $emptySubFolders true to remove all messages with child folders of selected folder else false will
1284
	 *                                remove only message of selected folder
1285
	 *
1286
	 * @return bool true if action succeeded, false if not
1287
	 */
1288
	public function emptyFolder($store, $entryid, &$folderProps, $hardDelete = false, $emptySubFolders = true) {
1289
		$result = false;
1290
		$folder = mapi_msgstore_openentry($store, $entryid);
1291
1292
		if ($folder) {
1293
			$flag = DEL_ASSOCIATED;
1294
1295
			if ($hardDelete) {
1296
				$flag |= DELETE_HARD_DELETE;
1297
			}
1298
1299
			if ($emptySubFolders) {
1300
				$result = mapi_folder_emptyfolder($folder, $flag);
0 ignored issues
show
Unused Code introduced by
The assignment to $result is dead and can be removed.
Loading history...
1301
			}
1302
			else {
1303
				// Delete all items of selected folder without
1304
				// removing child folder and it's content.
1305
				// FIXME: it is effecting performance because mapi_folder_emptyfolder function not provide facility to
1306
				// remove only selected folder items without touching child folder and it's items.
1307
				// for more check KC-1268
1308
				$table = mapi_folder_getcontentstable($folder, MAPI_DEFERRED_ERRORS);
1309
				$rows = mapi_table_queryallrows($table, [PR_ENTRYID]);
1310
				$messages = [];
1311
				foreach ($rows as $row) {
1312
					array_push($messages, $row[PR_ENTRYID]);
1313
				}
1314
				$result = mapi_folder_deletemessages($folder, $messages, $flag);
1315
			}
1316
1317
			$folderProps = mapi_getprops($folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1318
			$result = true;
1319
		}
1320
1321
		return $result;
1322
	}
1323
1324
	/**
1325
	 * Copy or move a folder.
1326
	 *
1327
	 * @param object $store               MAPI Message Store Object
1328
	 * @param string $parentfolderentryid The parent entryid of the folder which will be copied or moved
1329
	 * @param string $sourcefolderentryid The entryid of the folder which will be copied or moved
1330
	 * @param string $destfolderentryid   The entryid of the folder which the folder will be copied or moved to
1331
	 * @param bool   $moveFolder          true - move folder, false - copy folder
1332
	 * @param array  $folderProps         reference to an array which will be filled with entryids
1333
	 * @param mixed  $deststore
1334
	 *
1335
	 * @return bool true if action succeeded, false if not
1336
	 */
1337
	public function copyFolder($store, $parentfolderentryid, $sourcefolderentryid, $destfolderentryid, $deststore, $moveFolder, &$folderProps) {
1338
		$result = false;
1339
		$sourceparentfolder = mapi_msgstore_openentry($store, $parentfolderentryid);
1340
		$destfolder = mapi_msgstore_openentry($deststore, $destfolderentryid);
1341
		if (!$this->isSpecialFolder($store, $sourcefolderentryid) && $sourceparentfolder && $destfolder && $deststore) {
1342
			$folder = mapi_msgstore_openentry($store, $sourcefolderentryid);
1343
			$props = mapi_getprops($folder, [PR_DISPLAY_NAME]);
1344
1345
			try {
1346
				/*
1347
				  * To decrease overload of checking for conflicting folder names on modification of every folder
1348
				  * we should first try to copy/move folder and if it returns MAPI_E_COLLISION then
1349
				  * only we should check for the conflicting folder names and generate a new name
1350
				  * and copy/move folder with the generated name.
1351
				  */
1352
				if ($moveFolder) {
1353
					mapi_folder_copyfolder($sourceparentfolder, $sourcefolderentryid, $destfolder, $props[PR_DISPLAY_NAME], FOLDER_MOVE);
1354
					$folderProps = mapi_getprops($folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1355
					// In some cases PR_PARENT_ENTRYID is not available in mapi_getprops, add it manually
1356
					$folderProps[PR_PARENT_ENTRYID] = $destfolderentryid;
1357
					$result = true;
1358
				}
1359
				else {
1360
					mapi_folder_copyfolder($sourceparentfolder, $sourcefolderentryid, $destfolder, $props[PR_DISPLAY_NAME], COPY_SUBFOLDERS);
1361
					$result = true;
1362
				}
1363
			}
1364
			catch (MAPIException $e) {
1365
				if ($e->getCode() == MAPI_E_COLLISION) {
1366
					$foldername = $this->checkFolderNameConflict($deststore, $destfolder, $props[PR_DISPLAY_NAME]);
1367
					if ($moveFolder) {
1368
						mapi_folder_copyfolder($sourceparentfolder, $sourcefolderentryid, $destfolder, $foldername, FOLDER_MOVE);
1369
						$folderProps = mapi_getprops($folder, [PR_ENTRYID, PR_STORE_ENTRYID]);
1370
						$result = true;
1371
					}
1372
					else {
1373
						mapi_folder_copyfolder($sourceparentfolder, $sourcefolderentryid, $destfolder, $foldername, COPY_SUBFOLDERS);
1374
						$result = true;
1375
					}
1376
				}
1377
				else {
1378
					// all other errors should be propagated to higher level exception handlers
1379
					throw $e;
1380
				}
1381
			}
1382
		}
1383
1384
		return $result;
1385
	}
1386
1387
	/**
1388
	 * Read MAPI table.
1389
	 *
1390
	 * This function performs various operations to open, setup, and read all rows from a MAPI table.
1391
	 *
1392
	 * The output from this function is an XML array structure which can be sent directly to XML serialisation.
1393
	 *
1394
	 * @param object $store        MAPI Message Store Object
1395
	 * @param string $entryid      The entryid of the folder to read the table from
1396
	 * @param array  $properties   The set of properties which will be read
1397
	 * @param array  $sort         The set properties which the table will be sort on (formatted as a MAPI sort order)
1398
	 * @param int    $start        Starting row at which to start reading rows
1399
	 * @param int    $rowcount     Number of rows which should be read
1400
	 * @param array  $restriction  Table restriction to apply to the table (formatted as MAPI restriction)
1401
	 * @param mixed  $getHierarchy
1402
	 * @param mixed  $flags
1403
	 *
1404
	 * @return array XML array structure with row data
1405
	 */
1406
	public function getTable($store, $entryid, $properties, $sort, $start, $rowcount = false, $restriction = false, $getHierarchy = false, $flags = MAPI_DEFERRED_ERRORS) {
1407
		$data = [];
1408
		$folder = mapi_msgstore_openentry($store, $entryid);
1409
1410
		if (!$folder) {
1411
			return $data;
1412
		}
1413
1414
		$table = $getHierarchy ? mapi_folder_gethierarchytable($folder, $flags) : mapi_folder_getcontentstable($folder, $flags);
1415
1416
		if (!$rowcount) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $rowcount of type false|integer is loosely compared to false; this is ambiguous if the integer can be 0. You might want to explicitly use === false instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
1417
			$rowcount = $GLOBALS['settings']->get('zarafa/v1/main/page_size', 50);
1418
		}
1419
1420
		if (is_array($restriction)) {
1421
			mapi_table_restrict($table, $restriction, TBL_BATCH);
1422
		}
1423
1424
		if (is_array($sort) && !empty($sort)) {
1425
			/*
1426
			 * If the sort array contains the PR_SUBJECT column we should change this to
1427
			 * PR_NORMALIZED_SUBJECT to make sure that when sorting on subjects: "sweet" and
1428
			 * "RE: sweet", the first one is displayed before the latter one. If the subject
1429
			 * is used for sorting the PR_MESSAGE_DELIVERY_TIME must be added as well as
1430
			 * Outlook behaves the same way in this case.
1431
			 */
1432
			if (isset($sort[PR_SUBJECT])) {
1433
				$sortReplace = [];
1434
				foreach ($sort as $key => $value) {
1435
					if ($key == PR_SUBJECT) {
1436
						$sortReplace[PR_NORMALIZED_SUBJECT] = $value;
1437
						$sortReplace[PR_MESSAGE_DELIVERY_TIME] = TABLE_SORT_DESCEND;
1438
					}
1439
					else {
1440
						$sortReplace[$key] = $value;
1441
					}
1442
				}
1443
				$sort = $sortReplace;
1444
			}
1445
1446
			mapi_table_sort($table, $sort, TBL_BATCH);
1447
		}
1448
1449
		$data["item"] = [];
1450
1451
		$rows = mapi_table_queryrows($table, $properties, $start, $rowcount);
1452
		foreach ($rows as $row) {
1453
			$itemData = Conversion::mapMAPI2XML($properties, $row);
1454
1455
			// For ZARAFA type users the email_address properties are filled with the username
1456
			// Here we will copy that property to the *_username property for consistency with
1457
			// the getMessageProps() function
1458
			// We will not retrieve the real email address (like the getMessageProps function does)
1459
			// for all items because that would be a performance decrease!
1460
			if (isset($itemData['props']["sent_representing_email_address"])) {
1461
				$itemData['props']["sent_representing_username"] = $itemData['props']["sent_representing_email_address"];
1462
			}
1463
			if (isset($itemData['props']["sender_email_address"])) {
1464
				$itemData['props']["sender_username"] = $itemData['props']["sender_email_address"];
1465
			}
1466
			if (isset($itemData['props']["received_by_email_address"])) {
1467
				$itemData['props']["received_by_username"] = $itemData['props']["received_by_email_address"];
1468
			}
1469
1470
			array_push($data["item"], $itemData);
1471
		}
1472
1473
		// Update the page information
1474
		$data["page"] = [];
1475
		$data["page"]["start"] = $start;
1476
		$data["page"]["rowcount"] = $rowcount;
1477
		$data["page"]["totalrowcount"] = mapi_table_getrowcount($table);
1478
1479
		return $data;
1480
	}
1481
1482
	/**
1483
	 * Returns TRUE of the MAPI message only has inline attachments.
1484
	 *
1485
	 * @param mapimessage $message The MAPI message object to check
0 ignored issues
show
Bug introduced by
The type mapimessage was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
1486
	 *
1487
	 * @return bool TRUE if the item contains only inline attachments, FALSE otherwise
1488
	 *
1489
	 * @deprecated This function is not used, because it is much too slow to run on all messages in your inbox
1490
	 */
1491
	public function hasOnlyInlineAttachments($message) {
1492
		$attachmentTable = mapi_message_getattachmenttable($message);
1493
		if ($attachmentTable) {
1494
			$attachments = mapi_table_queryallrows($attachmentTable, [PR_ATTACHMENT_HIDDEN]);
1495
			foreach ($attachments as $attachmentRow) {
1496
				if (!isset($attachmentRow[PR_ATTACHMENT_HIDDEN]) || !$attachmentRow[PR_ATTACHMENT_HIDDEN]) {
1497
					return false;
1498
				}
1499
			}
1500
		}
1501
1502
		return true;
1503
	}
1504
1505
	/**
1506
	 * Read message properties.
1507
	 *
1508
	 * Reads a message and returns the data as an XML array structure with all data from the message that is needed
1509
	 * to show a message (for example in the preview pane)
1510
	 *
1511
	 * @param object $store      MAPI Message Store Object
1512
	 * @param object $message    The MAPI Message Object
1513
	 * @param array  $properties Mapping of properties that should be read
1514
	 * @param bool   $html2text  true - body will be converted from html to text, false - html body will be returned
1515
	 *
1516
	 * @return array item properties
1517
	 *
1518
	 * @todo Function name is misleading as it doesn't just get message properties
1519
	 */
1520
	public function getMessageProps($store, $message, $properties, $html2text = false) {
1521
		$props = [];
1522
1523
		if ($message) {
0 ignored issues
show
introduced by
$message is of type object, thus it always evaluated to true.
Loading history...
1524
			$itemprops = mapi_getprops($message, $properties);
1525
1526
			/* If necessary stream the property, if it's > 8KB */
1527
			if (isset($itemprops[PR_TRANSPORT_MESSAGE_HEADERS]) || propIsError(PR_TRANSPORT_MESSAGE_HEADERS, $itemprops) == MAPI_E_NOT_ENOUGH_MEMORY) {
1528
				$itemprops[PR_TRANSPORT_MESSAGE_HEADERS] = mapi_openproperty($message, PR_TRANSPORT_MESSAGE_HEADERS);
1529
			}
1530
1531
			$props = Conversion::mapMAPI2XML($properties, $itemprops);
1532
1533
			// Get actual SMTP address for sent_representing_email_address and received_by_email_address
1534
			$smtpprops = mapi_getprops($message, [PR_SENT_REPRESENTING_ENTRYID, PR_RECEIVED_BY_ENTRYID, PR_SENDER_ENTRYID]);
1535
1536
			if (isset($smtpprops[PR_SENT_REPRESENTING_ENTRYID])) {
1537
				try {
1538
					$user = mapi_ab_openentry($GLOBALS['mapisession']->getAddressbook(true), $smtpprops[PR_SENT_REPRESENTING_ENTRYID]);
1539
					if (isset($user)) {
1540
						$user_props = mapi_getprops($user, [PR_EMS_AB_THUMBNAIL_PHOTO]);
1541
						if (isset($user_props[PR_EMS_AB_THUMBNAIL_PHOTO])) {
1542
							$props["props"]['thumbnail_photo'] = "data:image/jpeg;base64," . base64_encode($user_props[PR_EMS_AB_THUMBNAIL_PHOTO]);
1543
						}
1544
					}
1545
				}
1546
				catch (MAPIException $e) {
1547
					// do nothing
1548
				}
1549
			}
1550
1551
			/*
1552
			 * Check that we have PR_SENT_REPRESENTING_ENTRYID for the item, and also
1553
			 * Check that we have sent_representing_email_address property there in the message,
1554
			 * but for contacts we are not using sent_representing_* properties so we are not
1555
			 * getting it from the message. So basically this will be used for mail items only
1556
			 */
1557
			if (isset($smtpprops[PR_SENT_REPRESENTING_ENTRYID], $props["props"]["sent_representing_email_address"])) {
1558
				$props["props"]["sent_representing_username"] = $props["props"]["sent_representing_email_address"];
1559
				$sentRepresentingSearchKey = isset($props['props']['sent_representing_search_key']) ? hex2bin($props['props']['sent_representing_search_key']) : false;
1560
				$props["props"]["sent_representing_email_address"] = $this->getEmailAddress($smtpprops[PR_SENT_REPRESENTING_ENTRYID], $sentRepresentingSearchKey);
1561
			}
1562
1563
			if (isset($smtpprops[PR_SENDER_ENTRYID], $props["props"]["sender_email_address"])) {
1564
				$props["props"]["sender_username"] = $props["props"]["sender_email_address"];
1565
				$senderSearchKey = isset($props['props']['sender_search_key']) ? hex2bin($props['props']['sender_search_key']) : false;
1566
				$props["props"]["sender_email_address"] = $this->getEmailAddress($smtpprops[PR_SENDER_ENTRYID], $senderSearchKey);
1567
			}
1568
1569
			if (isset($smtpprops[PR_RECEIVED_BY_ENTRYID], $props["props"]["received_by_email_address"])) {
1570
				$props["props"]["received_by_username"] = $props["props"]["received_by_email_address"];
1571
				$receivedSearchKey = isset($props['props']['received_by_search_key']) ? hex2bin($props['props']['received_by_search_key']) : false;
1572
				$props["props"]["received_by_email_address"] = $this->getEmailAddress($smtpprops[PR_RECEIVED_BY_ENTRYID], $receivedSearchKey);
1573
			}
1574
1575
			// Get body content
1576
			// TODO: Move retrieving the body to a separate function.
1577
			$plaintext = $this->isPlainText($message);
1578
			$tmpProps = mapi_getprops($message, [PR_BODY, PR_HTML]);
1579
1580
			if (empty($tmpProps[PR_HTML])) {
1581
				$tmpProps = mapi_getprops($message, [PR_BODY, PR_RTF_COMPRESSED]);
1582
				if (isset($tmpProps[PR_RTF_COMPRESSED])) {
1583
					$tmpProps[PR_HTML] = mapi_decompressrtf($tmpProps[PR_RTF_COMPRESSED]);
1584
				}
1585
			}
1586
1587
			$htmlcontent = '';
1588
			$plaincontent = '';
1589
			if (!$plaintext && isset($tmpProps[PR_HTML])) {
1590
				$cpprops = mapi_message_getprops($message, [PR_INTERNET_CPID]);
1591
				$codepage = isset($cpprops[PR_INTERNET_CPID]) ? $cpprops[PR_INTERNET_CPID] : 65001;
1592
				$htmlcontent = Conversion::convertCodepageStringToUtf8($codepage, $tmpProps[PR_HTML]);
1593
				if (!empty($htmlcontent)) {
1594
					if ($html2text) {
1595
						$htmlcontent = '';
1596
					}
1597
					else {
1598
						$props["props"]["isHTML"] = true;
1599
					}
1600
				}
1601
1602
				$htmlcontent = trim($htmlcontent, "\0");
1603
			}
1604
1605
			if (isset($tmpProps[PR_BODY])) {
1606
				// only open property if it exists
1607
				$plaincontent = mapi_message_openproperty($message, PR_BODY);
1608
				$plaincontent = trim($plaincontent, "\0");
1609
			}
1610
			else {
1611
				if ($html2text && isset($tmpProps[PR_HTML])) {
1612
					$plaincontent = strip_tags($tmpProps[PR_HTML]);
1613
				}
1614
			}
1615
1616
			if (!empty($htmlcontent)) {
1617
				$props["props"]["html_body"] = $htmlcontent;
1618
				$props["props"]["isHTML"] = true;
1619
			}
1620
			else {
1621
				$props["props"]["isHTML"] = false;
1622
			}
1623
			$props["props"]["body"] = $plaincontent;
1624
1625
			// Get reply-to information, otherwise consider the sender to be the reply-to person.
1626
			$props['reply-to'] = ['item' => []];
1627
			$messageprops = mapi_getprops($message, [PR_REPLY_RECIPIENT_ENTRIES]);
1628
			if (isset($messageprops[PR_REPLY_RECIPIENT_ENTRIES])) {
1629
				$props['reply-to']['item'] = $this->readReplyRecipientEntry($messageprops[PR_REPLY_RECIPIENT_ENTRIES]);
1630
			}
1631
			if (!isset($messageprops[PR_REPLY_RECIPIENT_ENTRIES]) || count($props['reply-to']['item']) === 0) {
1632
				if (isset($props['props']['sent_representing_email_address']) && !empty($props['props']['sent_representing_email_address'])) {
1633
					$props['reply-to']['item'][] = [
1634
						'rowid' => 0,
1635
						'props' => [
1636
							'entryid' => $props['props']['sent_representing_entryid'],
1637
							'display_name' => $props['props']['sent_representing_name'],
1638
							'smtp_address' => $props['props']['sent_representing_email_address'],
1639
							'address_type' => $props['props']['sent_representing_address_type'],
1640
							'object_type' => MAPI_MAILUSER,
1641
							'search_key' => isset($props['props']['sent_representing_search_key']) ? $props['props']['sent_representing_search_key'] : '',
1642
						],
1643
					];
1644
				}
1645
				elseif (!empty($props['props']['sender_email_address'])) {
1646
					$props['reply-to']['item'][] = [
1647
						'rowid' => 0,
1648
						'props' => [
1649
							'entryid' => $props['props']['sender_entryid'],
1650
							'display_name' => $props['props']['sender_name'],
1651
							'smtp_address' => $props['props']['sender_email_address'],
1652
							'address_type' => $props['props']['sender_address_type'],
1653
							'object_type' => MAPI_MAILUSER,
1654
							'search_key' => $props['props']['sender_search_key'],
1655
						],
1656
					];
1657
				}
1658
			}
1659
1660
			// Get recipients
1661
			$recipients = $GLOBALS["operations"]->getRecipientsInfo($message);
1662
			if (!empty($recipients)) {
1663
				$props["recipients"] = [
1664
					"item" => $recipients,
1665
				];
1666
			}
1667
1668
			// Get attachments
1669
			$attachments = $GLOBALS["operations"]->getAttachmentsInfo($message);
1670
			if (!empty($attachments)) {
1671
				$props["attachments"] = [
1672
					"item" => $attachments,
1673
				];
1674
				$cid_found = false;
1675
				foreach ($attachments as $attachement) {
1676
					if (isset($attachement["props"]["cid"])) {
1677
						$cid_found = true;
1678
					}
1679
				}
1680
				if ($cid_found === true && isset($htmlcontent)) {
1681
					preg_match_all('/src="cid:(.*)"/Uims', $htmlcontent, $matches);
1682
					if (count($matches) > 0) {
1683
						$search = [];
1684
						$replace = [];
1685
						foreach ($matches[1] as $match) {
1686
							$idx = -1;
1687
							foreach ($attachments as $key => $attachement) {
1688
								if (isset($attachement["props"]["cid"]) &&
1689
									strcasecmp($match, $attachement["props"]["cid"]) == 0) {
1690
									$idx = $key;
1691
									$num = $attachement["props"]["attach_num"];
1692
								}
1693
							}
1694
							if ($idx == -1) {
1695
								continue;
1696
							}
1697
							$attach = mapi_message_openattach($message, $num);
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $num does not seem to be defined for all execution paths leading up to this point.
Loading history...
1698
							if (empty($attach)) {
1699
								continue;
1700
							}
1701
							$attachprop = mapi_getprops($attach, [PR_ATTACH_DATA_BIN, PR_ATTACH_MIME_TAG]);
1702
							if (empty($attachprop) || !isset($attachprop[PR_ATTACH_DATA_BIN])) {
1703
								continue;
1704
							}
1705
							if (!isset($attachprop[PR_ATTACH_MIME_TAG])) {
1706
								$mime_tag = "text/plain";
1707
							}
1708
							else {
1709
								$mime_tag = $attachprop[PR_ATTACH_MIME_TAG];
1710
							}
1711
							$search[] = "src=\"cid:{$match}\"";
1712
							$replace[] = "src=\"data:{$mime_tag};base64," . base64_encode($attachprop[PR_ATTACH_DATA_BIN]) . "\"";
1713
							unset($props["attachments"]["item"][$idx]);
1714
						}
1715
						$props["attachments"]["item"] = array_values($props["attachments"]["item"]);
1716
						$htmlcontent = str_replace($search, $replace, $htmlcontent);
1717
						$props["props"]["html_body"] = $htmlcontent;
1718
					}
1719
				}
1720
			}
1721
1722
			// for distlists, we need to get members data
1723
			if (isset($props["props"]["oneoff_members"], $props["props"]["members"])) {
1724
				// remove non-client props
1725
				unset($props["props"]["members"], $props["props"]["oneoff_members"]);
1726
1727
				// get members
1728
				$members = $GLOBALS["operations"]->getMembersFromDistributionList($store, $message, $properties);
1729
				if (!empty($members)) {
1730
					$props["members"] = [
1731
						"item" => $members,
1732
					];
1733
				}
1734
			}
1735
		}
1736
1737
		return $props;
1738
	}
1739
1740
	/**
1741
	 * Get the email address either from entryid or search key. Function is helpful
1742
	 * to retrieve the email address of already deleted contact which is use as a
1743
	 * recipient in message.
1744
	 *
1745
	 * @param string      $entryId   the entryId of an item/recipient
1746
	 * @param bool|string $searchKey then search key of an item/recipient
1747
	 *
1748
	 * @return string email address if found else return empty string
1749
	 */
1750
	public function getEmailAddress($entryId, $searchKey = false) {
1751
		$emailAddress = $this->getEmailAddressFromEntryID($entryId);
1752
		if (empty($emailAddress) && $searchKey !== false) {
1753
			$emailAddress = $this->getEmailAddressFromSearchKey($searchKey);
0 ignored issues
show
Bug introduced by
It seems like $searchKey can also be of type true; however, parameter $searchKey of Operations::getEmailAddressFromSearchKey() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

1753
			$emailAddress = $this->getEmailAddressFromSearchKey(/** @scrutinizer ignore-type */ $searchKey);
Loading history...
1754
		}
1755
1756
		return $emailAddress;
1757
	}
1758
1759
	/**
1760
	 * Get and convert properties of a message into an XML array structure.
1761
	 *
1762
	 * @param object $item       The MAPI Object
1763
	 * @param array  $properties Mapping of properties that should be read
1764
	 *
1765
	 * @return array XML array structure
1766
	 *
1767
	 * @todo Function name is misleading, especially compared to getMessageProps()
1768
	 */
1769
	public function getProps($item, $properties) {
1770
		$props = [];
1771
1772
		if ($item) {
0 ignored issues
show
introduced by
$item is of type object, thus it always evaluated to true.
Loading history...
1773
			$itemprops = mapi_getprops($item, $properties);
1774
			$props = Conversion::mapMAPI2XML($properties, $itemprops);
1775
		}
1776
1777
		return $props;
1778
	}
1779
1780
	/**
1781
	 * Get embedded message data.
1782
	 *
1783
	 * Returns the same data as getMessageProps, but then for a specific sub/sub/sub message
1784
	 * of a MAPI message.
1785
	 *
1786
	 * @param object $store         MAPI Message Store Object
1787
	 * @param object $message       MAPI Message Object
1788
	 * @param array  $properties    a set of properties which will be selected
1789
	 * @param array  $parentMessage MAPI Message Object of parent
1790
	 * @param array  $attach_num    a list of attachment numbers (aka 2,1 means 'attachment nr 1 of attachment nr 2')
1791
	 *
1792
	 * @return array item XML array structure of the embedded message
1793
	 */
1794
	public function getEmbeddedMessageProps($store, $message, $properties, $parentMessage, $attach_num) {
1795
		$msgprops = mapi_getprops($message, [PR_MESSAGE_CLASS]);
1796
1797
		switch ($msgprops[PR_MESSAGE_CLASS]) {
1798
			case 'IPM.Note':
1799
				$html2text = false;
1800
				break;
1801
1802
			default:
1803
				$html2text = true;
1804
		}
1805
1806
		$props = $this->getMessageProps($store, $message, $properties, $html2text);
1807
1808
		// sub message will not be having entryid, so use parent's entryid
1809
		$parentProps = mapi_getprops($parentMessage, [PR_ENTRYID, PR_PARENT_ENTRYID, PR_STORE_ENTRYID]);
1810
		$props['entryid'] = bin2hex($parentProps[PR_ENTRYID]);
1811
		$props['parent_entryid'] = bin2hex($parentProps[PR_PARENT_ENTRYID]);
1812
		$props['store_entryid'] = bin2hex($parentProps[PR_STORE_ENTRYID]);
1813
		$props['attach_num'] = $attach_num;
1814
1815
		return $props;
1816
	}
1817
1818
	/**
1819
	 * Create a MAPI message.
1820
	 *
1821
	 * @param object $store         MAPI Message Store Object
1822
	 * @param string $parententryid The entryid of the folder in which the new message is to be created
1823
	 *
1824
	 * @return mapimessage Created MAPI message resource
1825
	 */
1826
	public function createMessage($store, $parententryid) {
1827
		$folder = mapi_msgstore_openentry($store, $parententryid);
1828
1829
		return mapi_folder_createmessage($folder);
1830
	}
1831
1832
	/**
1833
	 * Open a MAPI message.
1834
	 *
1835
	 * @param object $store       MAPI Message Store Object
1836
	 * @param string $entryid     entryid of the message
1837
	 * @param array  $attach_num  a list of attachment numbers (aka 2,1 means 'attachment nr 1 of attachment nr 2')
1838
	 * @param bool   $parse_smime (optional) call parse_smime on the opened message or not
1839
	 *
1840
	 * @return object MAPI Message
1841
	 */
1842
	public function openMessage($store, $entryid, $attach_num = false, $parse_smime = false) {
1843
		$message = mapi_msgstore_openentry($store, $entryid);
1844
1845
		// Needed for S/MIME messages with embedded message attachments
1846
		if ($parse_smime) {
1847
			parse_smime($store, $message);
1848
		}
1849
1850
		if ($message && $attach_num) {
1851
			for ($index = 0, $count = count($attach_num); $index < $count; ++$index) {
1852
				// attach_num cannot have value of -1
1853
				// if we get that then we are trying to open an embedded message which
1854
				// is not present in the attachment table to parent message (because parent message is unsaved yet)
1855
				// so return the message which is opened using entryid which will point to actual message which is
1856
				// attached as embedded message
1857
				if ($attach_num[$index] === -1) {
1858
					return $message;
1859
				}
1860
1861
				$attachment = mapi_message_openattach($message, $attach_num[$index]);
1862
1863
				if ($attachment) {
1864
					$message = mapi_attach_openobj($attachment);
1865
				}
1866
				else {
1867
					return false;
0 ignored issues
show
Bug Best Practice introduced by
The expression return false returns the type false which is incompatible with the documented return type object.
Loading history...
1868
				}
1869
			}
1870
		}
1871
1872
		return $message;
1873
	}
1874
1875
	/**
1876
	 * Save a MAPI message.
1877
	 *
1878
	 * The to-be-saved message can be of any type, including e-mail items, appointments, contacts, etc. The message may be pre-existing
1879
	 * or it may be a new message.
1880
	 *
1881
	 * The dialog_attachments parameter represents a unique ID which for the dialog in the client for which this function was called; This
1882
	 * is used as follows; Whenever a user uploads an attachment, the attachment is stored in a temporary place on the server. At the same time,
1883
	 * the temporary server location of the attachment is saved in the session information, accompanied by the $dialog_attachments unique ID. This
1884
	 * way, when we save the message into MAPI, we know which attachment was previously uploaded ready for this message, because when the user saves
1885
	 * the message, we pass the same $dialog_attachments ID as when we uploaded the file.
1886
	 *
1887
	 * @param object      $store                     MAPI Message Store Object
1888
	 * @param binary      $entryid                   entryid of the message
0 ignored issues
show
Bug introduced by
The type binary was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
1889
	 * @param binary      $parententryid             Parent entryid of the message
1890
	 * @param array       $props                     The MAPI properties to be saved
1891
	 * @param array       $messageProps              reference to an array which will be filled with PR_ENTRYID and PR_STORE_ENTRYID of the saved message
1892
	 * @param array       $recipients                XML array structure of recipients for the recipient table
1893
	 * @param array       $attachments               attachments array containing unique check number which checks if attachments should be added
1894
	 * @param array       $propertiesToDelete        Properties specified in this array are deleted from the MAPI message
1895
	 * @param MAPIMessage $copyFromMessage           resource of the message from which we should
0 ignored issues
show
Bug introduced by
The type MAPIMessage was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
1896
	 *                                               copy attachments and/or recipients to the current message
1897
	 * @param bool        $copyAttachments           if set we copy all attachments from the $copyFromMessage
1898
	 * @param bool        $copyRecipients            if set we copy all recipients from the $copyFromMessage
1899
	 * @param bool        $copyInlineAttachmentsOnly if true then copy only inline attachments
1900
	 * @param bool        $saveChanges               if true then save all change in mapi message
1901
	 * @param bool        $send                      true if this function is called from submitMessage else false
1902
	 * @param bool        $isPlainText               if true then message body will be generated using PR_BODY otherwise PR_HTML will be used in saveMessage() function
1903
	 *
1904
	 * @return mapimessage Saved MAPI message resource
1905
	 */
1906
	public function saveMessage($store, $entryid, $parententryid, $props, &$messageProps, $recipients = [], $attachments = [], $propertiesToDelete = [], $copyFromMessage = false, $copyAttachments = false, $copyRecipients = false, $copyInlineAttachmentsOnly = false, $saveChanges = true, $send = false, $isPlainText = false) {
1907
		$message = false;
1908
1909
		// Check if an entryid is set, otherwise create a new message
1910
		if ($entryid && !empty($entryid)) {
1911
			$message = $this->openMessage($store, $entryid);
1912
		}
1913
		else {
1914
			$message = $this->createMessage($store, $parententryid);
1915
		}
1916
1917
		if ($message) {
1918
			$property = false;
1919
			$body = "";
1920
1921
			// Check if the body is set.
1922
			if (isset($props[PR_BODY])) {
1923
				$body = $props[PR_BODY];
1924
				$property = PR_BODY;
1925
				$bodyPropertiesToDelete = [PR_HTML, PR_RTF_COMPRESSED];
1926
1927
				if (isset($props[PR_HTML])) {
1928
					$subject = '';
1929
					if (isset($props[PR_SUBJECT])) {
1930
						$subject = $props[PR_SUBJECT];
1931
					// If subject is not updated we need to get it from the message
1932
					}
1933
					else {
1934
						$subjectProp = mapi_getprops($message, [PR_SUBJECT]);
1935
						if (isset($subjectProp[PR_SUBJECT])) {
1936
							$subject = $subjectProp[PR_SUBJECT];
1937
						}
1938
					}
1939
					$body = $this->generateBodyHTML($isPlainText ? $props[PR_BODY] : $props[PR_HTML], $subject);
1940
					$property = PR_HTML;
1941
					$bodyPropertiesToDelete = [PR_BODY, PR_RTF_COMPRESSED];
1942
					unset($props[PR_HTML]);
1943
				}
1944
				unset($props[PR_BODY]);
1945
1946
				$propertiesToDelete = array_unique(array_merge($propertiesToDelete, $bodyPropertiesToDelete));
1947
			}
1948
1949
			if (!isset($props[PR_SENT_REPRESENTING_ENTRYID]) &&
1950
			   isset($props[PR_SENT_REPRESENTING_EMAIL_ADDRESS]) && !empty($props[PR_SENT_REPRESENTING_EMAIL_ADDRESS]) &&
1951
			   isset($props[PR_SENT_REPRESENTING_ADDRTYPE]) && !empty($props[PR_SENT_REPRESENTING_ADDRTYPE]) &&
1952
			   isset($props[PR_SENT_REPRESENTING_NAME]) && !empty($props[PR_SENT_REPRESENTING_NAME])) {
1953
				// Set FROM field properties
1954
				$props[PR_SENT_REPRESENTING_ENTRYID] = mapi_createoneoff($props[PR_SENT_REPRESENTING_NAME], $props[PR_SENT_REPRESENTING_ADDRTYPE], $props[PR_SENT_REPRESENTING_EMAIL_ADDRESS]);
1955
			}
1956
1957
			/*
1958
			 * Delete PR_SENT_REPRESENTING_ENTRYID and PR_SENT_REPRESENTING_SEARCH_KEY properties, if PR_SENT_REPRESENTING_* properties are configured with empty string.
1959
			 * Because, this is the case while user removes recipient from FROM field and send that particular draft without saving it.
1960
			 */
1961
			if (isset($props[PR_SENT_REPRESENTING_EMAIL_ADDRESS]) && empty($props[PR_SENT_REPRESENTING_EMAIL_ADDRESS]) &&
1962
			   isset($props[PR_SENT_REPRESENTING_ADDRTYPE]) && empty($props[PR_SENT_REPRESENTING_ADDRTYPE]) &&
1963
			   isset($props[PR_SENT_REPRESENTING_NAME]) && empty($props[PR_SENT_REPRESENTING_NAME])) {
1964
				array_push($propertiesToDelete, PR_SENT_REPRESENTING_ENTRYID, PR_SENT_REPRESENTING_SEARCH_KEY);
1965
			}
1966
1967
			// remove mv properties when needed
1968
			foreach ($props as $propTag => $propVal) {
1969
				switch (mapi_prop_type($propTag)) {
1970
					case PT_SYSTIME:
1971
						// Empty PT_SYSTIME values mean they should be deleted (there is no way to set an empty PT_SYSTIME)
1972
						// case PT_STRING8:	// not enabled at this moment
1973
						// Empty Strings
1974
					case PT_MV_LONG:
1975
						// Empty multivalued long
1976
						if (empty($propVal)) {
1977
							$propertiesToDelete[] = $propTag;
1978
						}
1979
						break;
1980
					case PT_MV_STRING8:
1981
						// Empty multivalued string
1982
						if (empty($propVal)) {
1983
							$props[$propTag] = [];
1984
						}
1985
						break;
1986
				}
1987
			}
1988
1989
			foreach ($propertiesToDelete as $prop) {
1990
				unset($props[$prop]);
1991
			}
1992
1993
			// Set the properties
1994
			mapi_setprops($message, $props);
1995
1996
			// Delete the properties we don't need anymore
1997
			mapi_deleteprops($message, $propertiesToDelete);
1998
1999
			if ($property != false) {
2000
				// Stream the body to the PR_BODY or PR_HTML property
2001
				$stream = mapi_openproperty($message, $property, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
2002
				mapi_stream_setsize($stream, strlen($body));
2003
				mapi_stream_write($stream, $body);
2004
				mapi_stream_commit($stream);
2005
			}
2006
2007
			/*
2008
			 * Save recipients
2009
			 *
2010
			 * If we are sending mail from delegator's folder, then we need to copy
2011
			 * all recipients from original message first - need to pass message
2012
			 *
2013
			 * if delegate has added or removed any recipients then they will be
2014
			 * added/removed using recipients array.
2015
			 */
2016
			if ($copyRecipients !== false && $copyFromMessage !== false) {
2017
				$this->copyRecipients($message, $copyFromMessage);
2018
			}
2019
2020
			$this->setRecipients($message, $recipients, $send);
2021
2022
			// Save the attachments with the $dialog_attachments, for attachments we have to obtain
2023
			// some additional information from the state.
2024
			if (!empty($attachments)) {
2025
				$attachment_state = new AttachmentState();
2026
				$attachment_state->open();
2027
2028
				if ($copyFromMessage !== false) {
2029
					$this->copyAttachments($message, $attachments, $copyFromMessage, $copyInlineAttachmentsOnly, $attachment_state);
0 ignored issues
show
Bug introduced by
$attachments of type array is incompatible with the type string expected by parameter $attachments of Operations::copyAttachments(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

2029
					$this->copyAttachments($message, /** @scrutinizer ignore-type */ $attachments, $copyFromMessage, $copyInlineAttachmentsOnly, $attachment_state);
Loading history...
2030
				}
2031
2032
				$this->setAttachments($message, $attachments, $attachment_state);
2033
2034
				$attachment_state->close();
2035
			}
2036
2037
			// Set 'hideattachments' if message has only inline attachments.
2038
			$properties = $GLOBALS['properties']->getMailProperties();
2039
			if ($this->hasOnlyInlineAttachments($message)) {
0 ignored issues
show
Deprecated Code introduced by
The function Operations::hasOnlyInlineAttachments() has been deprecated: This function is not used, because it is much too slow to run on all messages in your inbox ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

2039
			if (/** @scrutinizer ignore-deprecated */ $this->hasOnlyInlineAttachments($message)) {

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
2040
				mapi_setprops($message, [$properties['hide_attachments'] => true]);
2041
			}
2042
			else {
2043
				mapi_deleteprops($message, [$properties['hide_attachments']]);
2044
			}
2045
2046
			$this->convertInlineImage($message);
2047
			// Save changes
2048
			if ($saveChanges) {
2049
				mapi_savechanges($message);
2050
			}
2051
2052
			// Get the PR_ENTRYID, PR_PARENT_ENTRYID and PR_STORE_ENTRYID properties of this message
2053
			$messageProps = mapi_getprops($message, [PR_ENTRYID, PR_PARENT_ENTRYID, PR_STORE_ENTRYID]);
2054
		}
2055
2056
		return $message;
2057
	}
2058
2059
	/**
2060
	 * Save an appointment item.
2061
	 *
2062
	 * This is basically the same as saving any other type of message with the added complexity that
2063
	 * we support saving exceptions to recurrence here. This means that if the client sends a basedate
2064
	 * in the action, that we will attempt to open an existing exception and change that, and if that
2065
	 * fails, create a new exception with the specified data.
2066
	 *
2067
	 * @param mapistore $store                       MAPI store of the message
0 ignored issues
show
Bug introduced by
The type mapistore was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
2068
	 * @param string    $entryid                     entryid of the message
2069
	 * @param string    $parententryid               Parent entryid of the message (folder entryid, NOT message entryid)
2070
	 * @param array     $action                      Action array containing XML request
2071
	 * @param string    $actionType                  The action type which triggered this action
2072
	 * @param bool      $directBookingMeetingRequest Indicates if a Meeting Request should use direct booking or not. Defaults to true.
2073
	 *
2074
	 * @return array of PR_ENTRYID, PR_PARENT_ENTRYID and PR_STORE_ENTRYID properties of modified item
2075
	 */
2076
	public function saveAppointment($store, $entryid, $parententryid, $action, $actionType = 'save', $directBookingMeetingRequest = true) {
2077
		$messageProps = [];
2078
		// It stores the values that is exception allowed or not false -> not allowed
2079
		$isExceptionAllowed = true;
2080
		$delete = $actionType == 'delete';	// Flag for MeetingRequest Class whether to send update or cancel mail.
2081
		$basedate = false;	// Flag for MeetingRequest Class whether to send an exception or not.
2082
		$isReminderTimeAllowed = true;	// Flag to check reminder minutes is in range of the occurrences
2083
		$properties = $GLOBALS['properties']->getAppointmentProperties();
2084
		$send = false;
2085
		$oldProps = [];
2086
		$pasteRecord = false;
2087
2088
		if (isset($action['message_action'], $action['message_action']['send'])) {
2089
			$send = $action['message_action']['send'];
2090
		}
2091
2092
		if (isset($action['message_action'], $action['message_action']['paste'])) {
2093
			$pasteRecord = true;
2094
		}
2095
2096
		if (!empty($action['recipients'])) {
2097
			$recips = $action['recipients'];
2098
		}
2099
		else {
2100
			$recips = false;
2101
		}
2102
2103
		// Set PidLidAppointmentTimeZoneDefinitionStartDisplay and
2104
		// PidLidAppointmentTimeZoneDefinitionEndDisplay so that the allday
2105
		// events are displayed correctly
2106
		if (!empty($action['props']['timezone_iana'])) {
2107
			try {
2108
				$tzdef = mapi_ianatz_to_tzdef($action['props']['timezone_iana']);
2109
			}
2110
			catch (Exception $e) {
0 ignored issues
show
Coding Style Comprehensibility introduced by
Consider adding a comment why this CATCH block is empty.
Loading history...
2111
			}
2112
			if ($tzdef !== false) {
2113
				$action['props']['tzdefstart'] = $action['props']['tzdefend'] = bin2hex($tzdef);
2114
				if (isset($action['props']['recurring']) && $action['props']['recurring'] == true) {
2115
					$action['props']['tzdefrecur'] = $action['props']['tzdefstart'];
2116
				}
2117
			}
2118
		}
2119
2120
		if ($store && $parententryid) {
2121
			// @FIXME: check for $action['props'] array
2122
			if (isset($entryid) && $entryid) {
2123
				// Modify existing or add/change exception
2124
				$message = mapi_msgstore_openentry($store, $entryid);
2125
2126
				if ($message) {
2127
					$props = mapi_getprops($message, $properties);
0 ignored issues
show
Unused Code introduced by
The assignment to $props is dead and can be removed.
Loading history...
2128
					// Do not update timezone information if the appointment times haven't changed
2129
					if (!isset($action['props']['commonstart']) &&
2130
						!isset($action['props']['commonend']) &&
2131
						!isset($action['props']['startdate']) &&
2132
						!isset($action['props']['enddate'])
2133
					) {
2134
						unset($action['props']['tzdefstart'], $action['props']['tzdefend'], $action['props']['tzdefrecur']);
2135
					}
2136
					// Check if appointment is an exception to a recurring item
2137
					if (isset($action['basedate']) && $action['basedate'] > 0) {
2138
						// Create recurrence object
2139
						$recurrence = new Recurrence($store, $message);
0 ignored issues
show
Bug introduced by
The type Recurrence was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
2140
2141
						$basedate = $action['basedate'];
2142
						$exceptionatt = $recurrence->getExceptionAttachment($basedate);
2143
						if ($exceptionatt) {
2144
							// get properties of existing exception.
2145
							$exceptionattProps = mapi_getprops($exceptionatt, [PR_ATTACH_NUM]);
2146
							$attach_num = $exceptionattProps[PR_ATTACH_NUM];
2147
						}
2148
2149
						if ($delete === true) {
2150
							$isExceptionAllowed = $recurrence->createException([], $basedate, true);
2151
						}
2152
						else {
2153
							$exception_recips = [];
2154
							if (isset($recips['add'])) {
2155
								$savedUnsavedRecipients = [];
2156
								foreach ($recips["add"] as $recip) {
2157
									$savedUnsavedRecipients["unsaved"][] = $recip;
2158
								}
2159
								// convert all local distribution list members to ideal recipient.
2160
								$members = $this->convertLocalDistlistMembersToRecipients($savedUnsavedRecipients);
2161
2162
								$recips['add'] = $members['add'];
2163
								$exception_recips['add'] = $this->createRecipientList($recips['add'], 'add', true, true);
2164
							}
2165
							if (isset($recips['remove'])) {
2166
								$exception_recips['remove'] = $this->createRecipientList($recips['remove'], 'remove');
2167
							}
2168
							if (isset($recips['modify'])) {
2169
								$exception_recips['modify'] = $this->createRecipientList($recips['modify'], 'modify', true, true);
2170
							}
2171
2172
							if (isset($action['props']['reminder_minutes'], $action['props']['startdate'])) {
2173
								$isReminderTimeAllowed = $recurrence->isValidReminderTime($basedate, $action['props']['reminder_minutes'], $action['props']['startdate']);
2174
							}
2175
2176
							// As the reminder minutes occurs before other occurrences don't modify the item.
2177
							if ($isReminderTimeAllowed) {
2178
								if ($recurrence->isException($basedate)) {
2179
									$oldProps = $recurrence->getExceptionProperties($recurrence->getChangeException($basedate));
2180
2181
									$isExceptionAllowed = $recurrence->modifyException(Conversion::mapXML2MAPI($properties, $action['props']), $basedate, $exception_recips);
2182
								}
2183
								else {
2184
									$oldProps[$properties['startdate']] = $recurrence->getOccurrenceStart($basedate);
2185
									$oldProps[$properties['duedate']] = $recurrence->getOccurrenceEnd($basedate);
2186
2187
									$isExceptionAllowed = $recurrence->createException(Conversion::mapXML2MAPI($properties, $action['props']), $basedate, false, $exception_recips);
2188
								}
2189
								mapi_savechanges($message);
2190
							}
2191
						}
2192
					}
2193
					else {
2194
						$oldProps = mapi_getprops($message, [$properties['startdate'], $properties['duedate']]);
2195
						// Modifying non-exception (the series) or normal appointment item
2196
						$message = $GLOBALS['operations']->saveMessage($store, $entryid, $parententryid, Conversion::mapXML2MAPI($properties, $action['props']), $messageProps, $recips ? $recips : [], isset($action['attachments']) ? $action['attachments'] : [], [], false, false, false, false, false, false, $send);
2197
2198
						$recurrenceProps = mapi_getprops($message, [$properties['startdate_recurring'], $properties['enddate_recurring'], $properties["recurring"]]);
2199
						// Check if the meeting is recurring
2200
						if ($recips && $recurrenceProps[$properties["recurring"]] && isset($recurrenceProps[$properties['startdate_recurring']], $recurrenceProps[$properties['enddate_recurring']])) {
2201
							// If recipient of meeting is modified than that modification needs to be applied
2202
							// to recurring exception as well, if any.
2203
							$exception_recips = [];
2204
							if (isset($recips['add'])) {
2205
								$exception_recips['add'] = $this->createRecipientList($recips['add'], 'add', true, true);
2206
							}
2207
							if (isset($recips['remove'])) {
2208
								$exception_recips['remove'] = $this->createRecipientList($recips['remove'], 'remove');
2209
							}
2210
							if (isset($recips['modify'])) {
2211
								$exception_recips['modify'] = $this->createRecipientList($recips['modify'], 'modify', true, true);
2212
							}
2213
2214
							// Create recurrence object
2215
							$recurrence = new Recurrence($store, $message);
2216
2217
							$recurItems = $recurrence->getItems($recurrenceProps[$properties['startdate_recurring']], $recurrenceProps[$properties['enddate_recurring']]);
2218
2219
							foreach ($recurItems as $recurItem) {
2220
								if (isset($recurItem["exception"])) {
2221
									$recurrence->modifyException([], $recurItem["basedate"], $exception_recips);
2222
								}
2223
							}
2224
						}
2225
2226
						// Only save recurrence if it has been changed by the user (because otherwise we'll reset
2227
						// the exceptions)
2228
						if (isset($action['props']['recurring_reset']) && $action['props']['recurring_reset'] == true) {
2229
							$recur = new Recurrence($store, $message);
2230
2231
							if (isset($action['props']['timezone'])) {
2232
								$tzprops = ['timezone', 'timezonedst', 'dststartmonth', 'dststartweek', 'dststartday', 'dststarthour', 'dstendmonth', 'dstendweek', 'dstendday', 'dstendhour'];
2233
2234
								// Get timezone info
2235
								$tz = [];
2236
								foreach ($tzprops as $tzprop) {
2237
									$tz[$tzprop] = $action['props'][$tzprop];
2238
								}
2239
							}
2240
2241
							/**
2242
							 * Check if any recurrence property is missing, if yes then prepare
2243
							 * the set of properties required to update the recurrence. For more info
2244
							 * please refer detailed description of parseRecurrence function of
2245
							 * BaseRecurrence class".
2246
							 *
2247
							 * Note : this is a special case of changing the time of
2248
							 * recurrence meeting from scheduling tab.
2249
							 */
2250
							$recurrence = $recur->getRecurrence();
2251
							if (isset($recurrence)) {
2252
								unset($recurrence['changed_occurrences'], $recurrence['deleted_occurrences']);
2253
2254
								foreach ($recurrence as $key => $value) {
2255
									if (!isset($action['props'][$key])) {
2256
										$action['props'][$key] = $value;
2257
									}
2258
								}
2259
							}
2260
							// Act like the 'props' are the recurrence pattern; it has more information but that
2261
							// is ignored
2262
							$recur->setRecurrence(isset($tz) ? $tz : false, $action['props']);
2263
						}
2264
					}
2265
2266
					// Get the properties of the main object of which the exception was changed, and post
2267
					// that message as being modified. This will cause the update function to update all
2268
					// occurrences of the item to the client
2269
					$messageProps = mapi_getprops($message, [PR_ENTRYID, PR_PARENT_ENTRYID, PR_STORE_ENTRYID]);
2270
2271
					// if opened appointment is exception then it will add
2272
					// the attach_num and basedate in messageProps.
2273
					if (isset($attach_num)) {
2274
						$messageProps[PR_ATTACH_NUM] = [$attach_num];
2275
						$messageProps[$properties["basedate"]] = $action['basedate'];
2276
					}
2277
				}
2278
			}
2279
			else {
2280
				$tz = null;
2281
				$hasRecipient = false;
2282
				$copyAttachments = false;
2283
				$sourceRecord = false;
2284
				if (isset($action['message_action'], $action['message_action']['source_entryid'])) {
2285
					$sourceEntryId = $action['message_action']['source_entryid'];
2286
					$sourceStoreEntryId = $action['message_action']['source_store_entryid'];
2287
2288
					$sourceStore = $GLOBALS['mapisession']->openMessageStore(hex2bin($sourceStoreEntryId));
2289
					$sourceRecord = mapi_msgstore_openentry($sourceStore, hex2bin($sourceEntryId));
2290
					if ($pasteRecord) {
2291
						$sourceRecordProps = mapi_getprops($sourceRecord, [$properties["meeting"], $properties["responsestatus"]]);
2292
						// Don't copy recipient if source record is received message.
2293
						if ($sourceRecordProps[$properties["meeting"]] === olMeeting &&
2294
							$sourceRecordProps[$properties["meeting"]] === olResponseOrganized) {
2295
							$table = mapi_message_getrecipienttable($sourceRecord);
2296
							$hasRecipient = mapi_table_getrowcount($table) > 0;
2297
						}
2298
					}
2299
					else {
2300
						$copyAttachments = true;
2301
						// Set sender of new Appointment.
2302
						$this->setSenderAddress($store, $action);
2303
					}
2304
				}
2305
				else {
2306
					// Set sender of new Appointment.
2307
					$this->setSenderAddress($store, $action);
2308
				}
2309
2310
				$message = $this->saveMessage($store, $entryid, $parententryid, Conversion::mapXML2MAPI($properties, $action['props']), $messageProps, $recips ? $recips : [], isset($action['attachments']) ? $action['attachments'] : [], [], $sourceRecord, $copyAttachments, $hasRecipient, false, false, false, $send);
0 ignored issues
show
Bug introduced by
$parententryid of type string is incompatible with the type binary expected by parameter $parententryid of Operations::saveMessage(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

2310
				$message = $this->saveMessage($store, $entryid, /** @scrutinizer ignore-type */ $parententryid, Conversion::mapXML2MAPI($properties, $action['props']), $messageProps, $recips ? $recips : [], isset($action['attachments']) ? $action['attachments'] : [], [], $sourceRecord, $copyAttachments, $hasRecipient, false, false, false, $send);
Loading history...
2311
2312
				if (isset($action['props']['timezone'])) {
2313
					$tzprops = ['timezone', 'timezonedst', 'dststartmonth', 'dststartweek', 'dststartday', 'dststarthour', 'dstendmonth', 'dstendweek', 'dstendday', 'dstendhour'];
2314
2315
					// Get timezone info
2316
					$tz = [];
2317
					foreach ($tzprops as $tzprop) {
2318
						$tz[$tzprop] = $action['props'][$tzprop];
2319
					}
2320
				}
2321
2322
				// Set recurrence
2323
				if (isset($action['props']['recurring']) && $action['props']['recurring'] == true) {
2324
					$recur = new Recurrence($store, $message);
2325
					$recur->setRecurrence($tz, $action['props']);
2326
				}
2327
			}
2328
		}
2329
2330
		$result = false;
2331
		// Check to see if it should be sent as a meeting request
2332
		if ($send === true && $isExceptionAllowed) {
2333
			$savedUnsavedRecipients = [];
2334
			$remove = [];
2335
			if (!isset($action['basedate'])) {
2336
				// retrieve recipients from saved message
2337
				$savedRecipients = $GLOBALS['operations']->getRecipientsInfo($message);
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $message does not seem to be defined for all execution paths leading up to this point.
Loading history...
2338
				foreach ($savedRecipients as $recipient) {
2339
					$savedUnsavedRecipients["saved"][] = $recipient['props'];
2340
				}
2341
2342
				// retrieve removed recipients.
2343
				if (!empty($recips) && !empty($recips["remove"])) {
2344
					$remove = $recips["remove"];
2345
				}
2346
2347
				// convert all local distribution list members to ideal recipient.
2348
				$members = $this->convertLocalDistlistMembersToRecipients($savedUnsavedRecipients, $remove);
2349
2350
				// Before sending meeting request we set the recipient to message
2351
				// which are converted from local distribution list members.
2352
				$this->setRecipients($message, $members);
2353
			}
2354
2355
			$request = new Meetingrequest($store, $message, $GLOBALS['mapisession']->getSession(), $directBookingMeetingRequest);
0 ignored issues
show
Bug introduced by
The type Meetingrequest was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
2356
2357
			/*
2358
			 * check write access for delegate, make sure that we will not send meeting request
2359
			 * if we don't have permission to save calendar item
2360
			 */
2361
			if ($request->checkFolderWriteAccess($parententryid, $store) !== true) {
2362
				// Throw an exception that we don't have write permissions on calendar folder,
2363
				// error message will be filled by module
2364
				throw new MAPIException(null, MAPI_E_NO_ACCESS);
2365
			}
2366
2367
			$request->updateMeetingRequest($basedate);
2368
2369
			$isRecurrenceChanged = isset($action['props']['recurring_reset']) && $action['props']['recurring_reset'] == true;
2370
			$request->checkSignificantChanges($oldProps, $basedate, $isRecurrenceChanged);
2371
2372
			// Update extra body information
2373
			if (isset($action['message_action']['meetingTimeInfo']) && !empty($action['message_action']['meetingTimeInfo'])) {
2374
				// Append body if the request action requires this
2375
				if (isset($action['message_action'], $action['message_action']['append_body'])) {
2376
					$bodyProps = mapi_getprops($message, [PR_BODY]);
2377
					if (isset($bodyProps[PR_BODY]) || propIsError(PR_BODY, $bodyProps) == MAPI_E_NOT_ENOUGH_MEMORY) {
2378
						$bodyProps[PR_BODY] = streamProperty($message, PR_BODY);
2379
					}
2380
2381
					if (isset($action['message_action']['meetingTimeInfo'], $bodyProps[PR_BODY])) {
2382
						$action['message_action']['meetingTimeInfo'] .= $bodyProps[PR_BODY];
2383
					}
2384
				}
2385
2386
				$request->setMeetingTimeInfo($action['message_action']['meetingTimeInfo']);
2387
				unset($action['message_action']['meetingTimeInfo']);
2388
			}
2389
2390
			$modifiedRecipients = false;
2391
			$deletedRecipients = false;
2392
			if ($recips) {
2393
				if (isset($action['message_action']['send_update']) && $action['message_action']['send_update'] == 'modified') {
2394
					if (isset($recips['add']) && !empty($recips['add'])) {
2395
						$modifiedRecipients = $modifiedRecipients ? $modifiedRecipients : [];
0 ignored issues
show
introduced by
The condition $modifiedRecipients is always false.
Loading history...
2396
						$modifiedRecipients = array_merge($modifiedRecipients, $this->createRecipientList($recips['add'], 'add'));
2397
					}
2398
2399
					if (isset($recips['modify']) && !empty($recips['modify'])) {
2400
						$modifiedRecipients = $modifiedRecipients ? $modifiedRecipients : [];
2401
						$modifiedRecipients = array_merge($modifiedRecipients, $this->createRecipientList($recips['modify'], 'modify'));
2402
					}
2403
				}
2404
2405
				// lastUpdateCounter is represent that how many times this message is updated(send)
2406
				$lastUpdateCounter = $request->getLastUpdateCounter();
2407
				if ($lastUpdateCounter !== false && $lastUpdateCounter > 0) {
2408
					if (isset($recips['remove']) && !empty($recips['remove'])) {
2409
						$deletedRecipients = $deletedRecipients ? $deletedRecipients : [];
0 ignored issues
show
introduced by
The condition $deletedRecipients is always false.
Loading history...
2410
						$deletedRecipients = array_merge($deletedRecipients, $this->createRecipientList($recips['remove'], 'remove'));
2411
						if (isset($action['message_action']['send_update']) && $action['message_action']['send_update'] != 'all') {
2412
							$modifiedRecipients = $modifiedRecipients ? $modifiedRecipients : [];
2413
						}
2414
					}
2415
				}
2416
			}
2417
2418
			$sendMeetingRequestResult = $request->sendMeetingRequest($delete, false, $basedate, $modifiedRecipients, $deletedRecipients);
2419
2420
			$this->addRecipientsToRecipientHistory($this->getRecipientsInfo($message));
2421
2422
			if ($sendMeetingRequestResult === true) {
2423
				$this->parseDistListAndAddToRecipientHistory($savedUnsavedRecipients, $remove);
2424
2425
				mapi_savechanges($message);
2426
2427
				// We want to sent the 'request_sent' property, to have it properly
2428
				// deserialized we must also send some type properties.
2429
				$props = mapi_getprops($message, [PR_MESSAGE_CLASS, PR_OBJECT_TYPE]);
2430
				$messageProps[PR_MESSAGE_CLASS] = $props[PR_MESSAGE_CLASS];
2431
				$messageProps[PR_OBJECT_TYPE] = $props[PR_OBJECT_TYPE];
2432
2433
				// Indicate that the message was correctly sent
2434
				$messageProps[$properties['request_sent']] = true;
2435
2436
				// Return message properties that can be sent to the bus to notify changes
2437
				$result = $messageProps;
2438
			}
2439
			else {
2440
				$sendMeetingRequestResult[PR_ENTRYID] = $messageProps[PR_ENTRYID];
2441
				$sendMeetingRequestResult[PR_PARENT_ENTRYID] = $messageProps[PR_PARENT_ENTRYID];
2442
				$sendMeetingRequestResult[PR_STORE_ENTRYID] = $messageProps[PR_STORE_ENTRYID];
2443
				$result = $sendMeetingRequestResult;
2444
			}
2445
		}
2446
		else {
2447
			mapi_savechanges($message);
2448
2449
			if (isset($isExceptionAllowed)) {
2450
				if ($isExceptionAllowed === false) {
2451
					$messageProps['isexceptionallowed'] = false;
2452
				}
2453
			}
2454
2455
			if (isset($isReminderTimeAllowed)) {
2456
				if ($isReminderTimeAllowed === false) {
2457
					$messageProps['remindertimeerror'] = false;
2458
				}
2459
			}
2460
			// Return message properties that can be sent to the bus to notify changes
2461
			$result = $messageProps;
2462
		}
2463
2464
		return $result;
2465
	}
2466
2467
	/**
2468
	 * Function is used to identify the local distribution list from all recipients and
2469
	 * convert all local distribution list members to recipients.
2470
	 *
2471
	 * @param array $recipients array of recipients either saved or add
2472
	 * @param array $remove     array of recipients that was removed
2473
	 *
2474
	 * @return array $newRecipients a list of recipients as XML array structure
2475
	 */
2476
	public function convertLocalDistlistMembersToRecipients($recipients, $remove = []) {
2477
		$addRecipients = [];
2478
		$removeRecipients = [];
2479
2480
		foreach ($recipients as $key => $recipient) {
2481
			foreach ($recipient as $recipientItem) {
2482
				$recipientEntryid = $recipientItem["entryid"];
2483
				$isExistInRemove = $this->isExistInRemove($recipientEntryid, $remove);
2484
2485
				/*
2486
				 * Condition is only gets true, if recipient is distribution list and it`s belongs
2487
				 * to shared/internal(belongs in contact folder) folder.
2488
				 */
2489
				if ($recipientItem['address_type'] == 'MAPIPDL') {
2490
					if (!$isExistInRemove) {
2491
						$recipientItems = $GLOBALS["operations"]->expandDistList($recipientEntryid, true);
2492
						foreach ($recipientItems as $recipient) {
0 ignored issues
show
Comprehensibility Bug introduced by
$recipient is overwriting a variable from outer foreach loop.
Loading history...
2493
							// set recipient type of each members as per the distribution list recipient type
2494
							$recipient['recipient_type'] = $recipientItem['recipient_type'];
2495
							array_push($addRecipients, $recipient);
2496
						}
2497
2498
						if ($key === "saved") {
2499
							array_push($removeRecipients, $recipientItem);
2500
						}
2501
					}
2502
				}
2503
				else {
2504
					/*
2505
					 * Only Add those recipients which are not saved earlier in message and
2506
					 * not present in remove array.
2507
					 */
2508
					if (!$isExistInRemove && $key === "unsaved") {
2509
						array_push($addRecipients, $recipientItem);
2510
					}
2511
				}
2512
			}
2513
		}
2514
		$newRecipients["add"] = $addRecipients;
0 ignored issues
show
Comprehensibility Best Practice introduced by
$newRecipients was never initialized. Although not strictly required by PHP, it is generally a good practice to add $newRecipients = array(); before regardless.
Loading history...
2515
		$newRecipients["remove"] = $removeRecipients;
2516
2517
		return $newRecipients;
2518
	}
2519
2520
	/**
2521
	 * Function used to identify given recipient was already available in remove array of recipients array or not.
2522
	 * which was sent from client side. If it is found the entry in the $remove array will be deleted, since
2523
	 * we do not want to find it again for other recipients. (if a user removes and adds an user again it
2524
	 * should be added once!).
2525
	 *
2526
	 * @param string $recipientEntryid recipient entryid
2527
	 * @param array  $remove           removed recipients array
2528
	 *
2529
	 * @return bool return false if recipient not exist in remove array else return true
2530
	 */
2531
	public function isExistInRemove($recipientEntryid, &$remove) {
2532
		if (!empty($remove)) {
2533
			foreach ($remove as $index => $removeItem) {
2534
				if (array_search($recipientEntryid, $removeItem, true)) {
2535
					unset($remove[$index]);
2536
2537
					return true;
2538
				}
2539
			}
2540
		}
2541
2542
		return false;
2543
	}
2544
2545
	/**
2546
	 * Function is used to identify the local distribution list from all recipients and
2547
	 * Add distribution list to recipient history.
2548
	 *
2549
	 * @param array $savedUnsavedRecipients array of recipients either saved or add
2550
	 * @param array $remove                 array of recipients that was removed
2551
	 */
2552
	public function parseDistListAndAddToRecipientHistory($savedUnsavedRecipients, $remove) {
2553
		$distLists = [];
2554
		foreach ($savedUnsavedRecipients as $key => $recipient) {
2555
			foreach ($recipient as $recipientItem) {
2556
				if ($recipientItem['address_type'] == 'MAPIPDL') {
2557
					$isExistInRemove = $this->isExistInRemove($recipientItem['entryid'], $remove);
2558
					if (!$isExistInRemove) {
2559
						array_push($distLists, ["props" => $recipientItem]);
2560
					}
2561
				}
2562
			}
2563
		}
2564
2565
		$this->addRecipientsToRecipientHistory($distLists);
2566
	}
2567
2568
	/**
2569
	 * Set sent_representing_email_address property of Appointment.
2570
	 *
2571
	 * Before saving any new appointment, sent_representing_email_address property of appointment
2572
	 * should contain email_address of user, who is the owner of store(in which the appointment
2573
	 * is created).
2574
	 *
2575
	 * @param mapistore $store  MAPI store of the message
2576
	 * @param array     $action reference to action array containing XML request
2577
	 */
2578
	public function setSenderAddress($store, &$action) {
2579
		$storeProps = mapi_getprops($store, [PR_MAILBOX_OWNER_ENTRYID]);
2580
		// check for public store
2581
		if (!isset($storeProps[PR_MAILBOX_OWNER_ENTRYID])) {
2582
			$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
2583
			$storeProps = mapi_getprops($store, [PR_MAILBOX_OWNER_ENTRYID]);
2584
		}
2585
		$mailuser = mapi_ab_openentry($GLOBALS["mapisession"]->getAddressbook(), $storeProps[PR_MAILBOX_OWNER_ENTRYID]);
2586
		if ($mailuser) {
2587
			$userprops = mapi_getprops($mailuser, [PR_ADDRTYPE, PR_DISPLAY_NAME, PR_EMAIL_ADDRESS, PR_SMTP_ADDRESS]);
2588
			$action["props"]["sent_representing_entryid"] = bin2hex($storeProps[PR_MAILBOX_OWNER_ENTRYID]);
2589
			// we do conversion here, because before passing props to saveMessage() props are converted from utf8-to-w
2590
			$action["props"]["sent_representing_name"] = $userprops[PR_DISPLAY_NAME];
2591
			$action["props"]["sent_representing_address_type"] = $userprops[PR_ADDRTYPE];
2592
			if ($userprops[PR_ADDRTYPE] == 'SMTP') {
2593
				$emailAddress = $userprops[PR_SMTP_ADDRESS];
2594
			}
2595
			else {
2596
				$emailAddress = $userprops[PR_EMAIL_ADDRESS];
2597
			}
2598
			$action["props"]["sent_representing_email_address"] = $emailAddress;
2599
			$action["props"]["sent_representing_search_key"] = bin2hex(strtoupper($userprops[PR_ADDRTYPE] . ':' . $emailAddress)) . '00';
2600
		}
2601
	}
2602
2603
	/**
2604
	 * Submit a message for sending.
2605
	 *
2606
	 * This function is an extension of the saveMessage() function, with the extra functionality
2607
	 * that the item is actually sent and queued for moving to 'Sent Items'. Also, the e-mail addresses
2608
	 * used in the message are processed for later auto-suggestion.
2609
	 *
2610
	 * @see Operations::saveMessage() for more information on the parameters, which are identical.
2611
	 *
2612
	 * @param mapistore   $store                     MAPI Message Store Object
2613
	 * @param binary      $entryid                   Entryid of the message
2614
	 * @param array       $props                     The properties to be saved
2615
	 * @param array       $messageProps              reference to an array which will be filled with PR_ENTRYID, PR_PARENT_ENTRYID and PR_STORE_ENTRYID
2616
	 * @param array       $recipients                XML array structure of recipients for the recipient table
2617
	 * @param array       $attachments               array of attachments consisting unique ID of attachments for this message
2618
	 * @param MAPIMessage $copyFromMessage           resource of the message from which we should
2619
	 *                                               copy attachments and/or recipients to the current message
2620
	 * @param bool        $copyAttachments           if set we copy all attachments from the $copyFromMessage
2621
	 * @param bool        $copyRecipients            if set we copy all recipients from the $copyFromMessage
2622
	 * @param bool        $copyInlineAttachmentsOnly if true then copy only inline attachments
2623
	 * @param bool        $isPlainText               if true then message body will be generated using PR_BODY otherwise PR_HTML will be used in saveMessage() function
2624
	 *
2625
	 * @return bool false if action succeeded, anything else indicates an error (e.g. a string)
2626
	 */
2627
	public function submitMessage($store, $entryid, $props, &$messageProps, $recipients = [], $attachments = [], $copyFromMessage = false, $copyAttachments = false, $copyRecipients = false, $copyInlineAttachmentsOnly = false, $isPlainText = false) {
2628
		$message = false;
2629
		$origStore = $store;
2630
		$reprMessage = false;
2631
		$saveBoth = $saveRepresentee = false;
0 ignored issues
show
Unused Code introduced by
The assignment to $saveBoth is dead and can be removed.
Loading history...
2632
2633
		// Get the outbox and sent mail entryid, ignore the given $store, use the default store for submitting messages
2634
		$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
2635
		$storeprops = mapi_getprops($store, [PR_IPM_OUTBOX_ENTRYID, PR_IPM_SENTMAIL_ENTRYID, PR_ENTRYID]);
2636
		$origStoreprops = mapi_getprops($origStore, [PR_ENTRYID, PR_IPM_SENTMAIL_ENTRYID]);
2637
2638
		if (!isset($storeprops[PR_IPM_OUTBOX_ENTRYID])) {
2639
			return false;
2640
		}
2641
		if (isset($storeprops[PR_IPM_SENTMAIL_ENTRYID])) {
2642
			$props[PR_SENTMAIL_ENTRYID] = $storeprops[PR_IPM_SENTMAIL_ENTRYID];
2643
		}
2644
2645
		// Check if replying then set PR_INTERNET_REFERENCES and PR_IN_REPLY_TO_ID properties in props.
2646
		// flag is probably used wrong here but the same flag indicates if this is reply or replyall
2647
		if ($copyInlineAttachmentsOnly) {
2648
			$origMsgProps = mapi_getprops($copyFromMessage, [PR_INTERNET_MESSAGE_ID, PR_INTERNET_REFERENCES]);
2649
			if (isset($origMsgProps[PR_INTERNET_MESSAGE_ID])) {
2650
				// The references header should indicate the message-id of the original
2651
				// header plus any of the references which were set on the previous mail.
2652
				$props[PR_INTERNET_REFERENCES] = $origMsgProps[PR_INTERNET_MESSAGE_ID];
2653
				if (isset($origMsgProps[PR_INTERNET_REFERENCES])) {
2654
					$props[PR_INTERNET_REFERENCES] = $origMsgProps[PR_INTERNET_REFERENCES] . ' ' . $props[PR_INTERNET_REFERENCES];
2655
				}
2656
				$props[PR_IN_REPLY_TO_ID] = $origMsgProps[PR_INTERNET_MESSAGE_ID];
2657
			}
2658
		}
2659
2660
		if (!$GLOBALS["entryid"]->compareEntryIds(bin2hex($origStoreprops[PR_ENTRYID]), bin2hex($storeprops[PR_ENTRYID]))) {
2661
			// set properties for "on behalf of" mails
2662
			$origStoreProps = mapi_getprops($origStore, [PR_MAILBOX_OWNER_ENTRYID, PR_MDB_PROVIDER, PR_IPM_SENTMAIL_ENTRYID]);
2663
2664
			// set PR_SENDER_* properties, which contains currently logged users data
2665
			$ab = $GLOBALS['mapisession']->getAddressbook();
2666
			$abitem = mapi_ab_openentry($ab, $GLOBALS["mapisession"]->getUserEntryID());
2667
			$abitemprops = mapi_getprops($abitem, [PR_DISPLAY_NAME, PR_EMAIL_ADDRESS, PR_SEARCH_KEY]);
2668
2669
			$props[PR_SENDER_ENTRYID] = $GLOBALS["mapisession"]->getUserEntryID();
2670
			$props[PR_SENDER_NAME] = $abitemprops[PR_DISPLAY_NAME];
2671
			$props[PR_SENDER_EMAIL_ADDRESS] = $abitemprops[PR_EMAIL_ADDRESS];
2672
			$props[PR_SENDER_ADDRTYPE] = "EX";
2673
			$props[PR_SENDER_SEARCH_KEY] = $abitemprops[PR_SEARCH_KEY];
2674
2675
			/*
2676
			 * if delegate store then set PR_SENT_REPRESENTING_* properties
2677
			 * based on delegate store's owner data
2678
			 * if public store then set PR_SENT_REPRESENTING_* properties based on
2679
			 * default store's owner data
2680
			 */
2681
			if ($origStoreProps[PR_MDB_PROVIDER] === ZARAFA_STORE_DELEGATE_GUID) {
2682
				$abitem = mapi_ab_openentry($ab, $origStoreProps[PR_MAILBOX_OWNER_ENTRYID]);
2683
				$abitemprops = mapi_getprops($abitem, [PR_DISPLAY_NAME, PR_EMAIL_ADDRESS, PR_SEARCH_KEY]);
2684
2685
				$props[PR_SENT_REPRESENTING_ENTRYID] = $origStoreProps[PR_MAILBOX_OWNER_ENTRYID];
2686
				$props[PR_SENT_REPRESENTING_NAME] = $abitemprops[PR_DISPLAY_NAME];
2687
				$props[PR_SENT_REPRESENTING_EMAIL_ADDRESS] = $abitemprops[PR_EMAIL_ADDRESS];
2688
				$props[PR_SENT_REPRESENTING_ADDRTYPE] = "EX";
2689
				$props[PR_SENT_REPRESENTING_SEARCH_KEY] = $abitemprops[PR_SEARCH_KEY];
2690
			}
2691
			elseif ($origStoreProps[PR_MDB_PROVIDER] === ZARAFA_STORE_PUBLIC_GUID) {
2692
				$props[PR_SENT_REPRESENTING_ENTRYID] = $props[PR_SENDER_ENTRYID];
2693
				$props[PR_SENT_REPRESENTING_NAME] = $props[PR_SENDER_NAME];
2694
				$props[PR_SENT_REPRESENTING_EMAIL_ADDRESS] = $props[PR_SENDER_EMAIL_ADDRESS];
2695
				$props[PR_SENT_REPRESENTING_ADDRTYPE] = $props[PR_SENDER_ADDRTYPE];
2696
				$props[PR_SENT_REPRESENTING_SEARCH_KEY] = $props[PR_SEARCH_KEY];
2697
			}
2698
2699
			/**
2700
			 * we are sending mail from delegate's account, so we can't use delegate's outbox and sent items folder
2701
			 * so we have to copy the mail from delegate's store to logged user's store and in outbox folder and then
2702
			 * we can send mail from logged user's outbox folder.
2703
			 *
2704
			 * if we set $entryid to false before passing it to saveMessage function then it will assume
2705
			 * that item doesn't exist and it will create a new item (in outbox of logged in user)
2706
			 */
2707
			if ($entryid) {
0 ignored issues
show
introduced by
$entryid is of type binary, thus it always evaluated to true.
Loading history...
2708
				$oldEntryId = $entryid;
2709
				$entryid = false;
2710
2711
				// if we are sending mail from drafts folder then we have to copy
2712
				// its recipients and attachments also. $origStore and $oldEntryId points to mail
2713
				// saved in delegators draft folder
2714
				if ($copyFromMessage === false) {
2715
					$copyFromMessage = mapi_msgstore_openentry($origStore, $oldEntryId);
2716
					$copyRecipients = true;
2717
2718
					// Decode smime signed messages on this message
2719
					parse_smime($origStore, $copyFromMessage);
2720
				}
2721
			}
2722
2723
			if ($copyFromMessage) {
2724
				// Get properties of original message, to copy recipients and attachments in new message
2725
				$copyMessageProps = mapi_getprops($copyFromMessage);
2726
				$oldParentEntryId = $copyMessageProps[PR_PARENT_ENTRYID];
2727
2728
				// unset id properties before merging the props, so we will be creating new item instead of sending same item
2729
				unset($copyMessageProps[PR_ENTRYID], $copyMessageProps[PR_PARENT_ENTRYID], $copyMessageProps[PR_STORE_ENTRYID], $copyMessageProps[PR_SEARCH_KEY]);
2730
2731
				// grommunio generates PR_HTML on the fly, but it's necessary to unset it
2732
				// if the original message didn't have PR_HTML property.
2733
				if (!isset($props[PR_HTML]) && isset($copyMessageProps[PR_HTML])) {
2734
					unset($copyMessageProps[PR_HTML]);
2735
				}
2736
				/* New EMAIL_ADDRESSes were set (various cases above), kill off old SMTP_ADDRESS. */
2737
				unset($copyMessageProps[PR_SENDER_SMTP_ADDRESS], $copyMessageProps[PR_SENT_REPRESENTING_SMTP_ADDRESS]);
2738
2739
				// Merge original message props with props sent by client
2740
				$props = $props + $copyMessageProps;
2741
			}
2742
2743
			// Save the new message properties
2744
			$message = $this->saveMessage($store, $entryid, $storeprops[PR_IPM_OUTBOX_ENTRYID], $props, $messageProps, $recipients, $attachments, [], $copyFromMessage, $copyAttachments, $copyRecipients, $copyInlineAttachmentsOnly, true, true, $isPlainText);
0 ignored issues
show
Bug introduced by
$entryid of type false is incompatible with the type binary expected by parameter $entryid of Operations::saveMessage(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

2744
			$message = $this->saveMessage($store, /** @scrutinizer ignore-type */ $entryid, $storeprops[PR_IPM_OUTBOX_ENTRYID], $props, $messageProps, $recipients, $attachments, [], $copyFromMessage, $copyAttachments, $copyRecipients, $copyInlineAttachmentsOnly, true, true, $isPlainText);
Loading history...
2745
2746
			// FIXME: currently message is deleted from original store and new message is created
2747
			// in current user's store, but message should be moved
2748
2749
			// delete message from it's original location
2750
			if (!empty($oldEntryId) && !empty($oldParentEntryId)) {
2751
				$folder = mapi_msgstore_openentry($origStore, $oldParentEntryId);
2752
				mapi_folder_deletemessages($folder, [$oldEntryId], DELETE_HARD_DELETE);
2753
			}
2754
			$delegateSentItemsStyle = $GLOBALS['settings']->get('zarafa/v1/contexts/mail/delegate_sent_items_style');
2755
			$saveBoth = strcasecmp($delegateSentItemsStyle, 'both') == 0;
2756
			$saveRepresentee = strcasecmp($delegateSentItemsStyle, 'representee') == 0;
2757
			if ($saveBoth || $saveRepresentee) {
2758
				$destfolder = mapi_msgstore_openentry($origStore, $origStoreprops[PR_IPM_SENTMAIL_ENTRYID]);
2759
				$reprMessage = mapi_folder_createmessage($destfolder);
2760
				mapi_copyto($message, [], [], $reprMessage, 0);
2761
			}
2762
		}
2763
		else {
2764
			// When the message is in your own store, just move it to your outbox. We move it manually so we know the new entryid after it has been moved.
2765
			$outbox = mapi_msgstore_openentry($store, $storeprops[PR_IPM_OUTBOX_ENTRYID]);
2766
2767
			// Open the old and the new message
2768
			$newmessage = mapi_folder_createmessage($outbox);
2769
			$oldEntryId = $entryid;
2770
2771
			// Remember the new entryid
2772
			$newprops = mapi_getprops($newmessage, [PR_ENTRYID]);
2773
			$entryid = $newprops[PR_ENTRYID];
2774
2775
			if (!empty($oldEntryId)) {
2776
				$message = mapi_msgstore_openentry($store, $oldEntryId);
2777
				// Copy the entire message
2778
				mapi_copyto($message, [], [], $newmessage);
2779
				$tmpProps = mapi_getprops($message);
2780
				$oldParentEntryId = $tmpProps[PR_PARENT_ENTRYID];
2781
				if ($storeprops[PR_IPM_OUTBOX_ENTRYID] == $oldParentEntryId) {
2782
					$folder = $outbox;
2783
				}
2784
				else {
2785
					$folder = mapi_msgstore_openentry($store, $oldParentEntryId);
2786
				}
2787
2788
				// Copy message_class for S/MIME plugin
2789
				if (isset($tmpProps[PR_MESSAGE_CLASS])) {
2790
					$props[PR_MESSAGE_CLASS] = $tmpProps[PR_MESSAGE_CLASS];
2791
				}
2792
				// Delete the old message
2793
				mapi_folder_deletemessages($folder, [$oldEntryId]);
2794
			}
2795
2796
			// save changes to new message created in outbox
2797
			mapi_savechanges($newmessage);
2798
2799
			$reprProps = mapi_getprops($newmessage, [PR_SENT_REPRESENTING_EMAIL_ADDRESS, PR_SENDER_EMAIL_ADDRESS, PR_SENT_REPRESENTING_ENTRYID]);
2800
			if (isset($reprProps[PR_SENT_REPRESENTING_EMAIL_ADDRESS], $reprProps[PR_SENDER_EMAIL_ADDRESS], $reprProps[PR_SENT_REPRESENTING_ENTRYID]) &&
2801
				strcasecmp($reprProps[PR_SENT_REPRESENTING_EMAIL_ADDRESS], $reprProps[PR_SENDER_EMAIL_ADDRESS]) != 0) {
2802
				$ab = $GLOBALS['mapisession']->getAddressbook();
2803
				$abitem = mapi_ab_openentry($ab, $reprProps[PR_SENT_REPRESENTING_ENTRYID]);
2804
				$abitemprops = mapi_getprops($abitem, [PR_DISPLAY_NAME, PR_EMAIL_ADDRESS, PR_SEARCH_KEY]);
2805
2806
				$props[PR_SENT_REPRESENTING_NAME] = $abitemprops[PR_DISPLAY_NAME];
2807
				$props[PR_SENT_REPRESENTING_EMAIL_ADDRESS] = $abitemprops[PR_EMAIL_ADDRESS];
2808
				$props[PR_SENT_REPRESENTING_ADDRTYPE] = "EX";
2809
				$props[PR_SENT_REPRESENTING_SEARCH_KEY] = $abitemprops[PR_SEARCH_KEY];
2810
			}
2811
			// Save the new message properties
2812
			$message = $this->saveMessage($store, $entryid, $storeprops[PR_IPM_OUTBOX_ENTRYID], $props, $messageProps, $recipients, $attachments, [], $copyFromMessage, $copyAttachments, $copyRecipients, $copyInlineAttachmentsOnly, true, true, $isPlainText);
0 ignored issues
show
Bug introduced by
It seems like $copyFromMessage can also be of type false; however, parameter $copyFromMessage of Operations::saveMessage() does only seem to accept MAPIMessage, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

2812
			$message = $this->saveMessage($store, $entryid, $storeprops[PR_IPM_OUTBOX_ENTRYID], $props, $messageProps, $recipients, $attachments, [], /** @scrutinizer ignore-type */ $copyFromMessage, $copyAttachments, $copyRecipients, $copyInlineAttachmentsOnly, true, true, $isPlainText);
Loading history...
2813
		}
2814
2815
		if (!$message) {
0 ignored issues
show
introduced by
$message is of type mapimessage, thus it always evaluated to true.
Loading history...
2816
			return false;
2817
		}
2818
		// Allowing to hook in just before the data sent away to be sent to the client
2819
		$GLOBALS['PluginManager']->triggerHook('server.core.operations.submitmessage', [
2820
			'moduleObject' => $this,
2821
			'store' => $store,
2822
			'entryid' => $entryid,
2823
			'message' => &$message,
2824
		]);
2825
2826
		// Submit the message (send)
2827
		try {
2828
			mapi_message_submitmessage($message);
2829
		}
2830
		catch (MAPIException $e) {
2831
			$username = $GLOBALS["mapisession"]->getUserName();
2832
			$errorName = get_mapi_error_name($e->getCode());
2833
			error_log(sprintf(
2834
				'Unable to submit message for %s, MAPI error: %s. ' .
2835
				'SMTP server may be down or it refused the message or the message' .
2836
				' is too large to submit or user does not have the permission ...',
2837
				$username,
2838
				$errorName
2839
			));
2840
2841
			return $errorName;
2842
		}
2843
2844
		$tmp_props = mapi_getprops($message, [PR_PARENT_ENTRYID, PR_MESSAGE_DELIVERY_TIME, PR_CLIENT_SUBMIT_TIME, PR_SEARCH_KEY]);
2845
		$messageProps[PR_PARENT_ENTRYID] = $tmp_props[PR_PARENT_ENTRYID];
2846
		if ($reprMessage !== false) {
2847
			mapi_setprops($reprMessage, [
2848
				PR_CLIENT_SUBMIT_TIME => $tmp_props[PR_CLIENT_SUBMIT_TIME] ?? time(),
2849
				PR_MESSAGE_DELIVERY_TIME => $tmp_props[PR_MESSAGE_DELIVERY_TIME] ?? time(),
2850
			]);
2851
			mapi_savechanges($reprMessage);
2852
			if ($saveRepresentee) {
2853
				// delete the message in the delegate's Sent Items folder
2854
				$sentFolder = mapi_msgstore_openentry($store, $storeprops[PR_IPM_SENTMAIL_ENTRYID]);
2855
				$sentTable = mapi_folder_getcontentstable($sentFolder, MAPI_DEFERRED_ERRORS);
2856
				$restriction = [RES_PROPERTY, [
2857
					RELOP => RELOP_EQ,
2858
					ULPROPTAG => PR_SEARCH_KEY,
2859
					VALUE => $tmp_props[PR_SEARCH_KEY]
2860
				]];
2861
				mapi_table_restrict($sentTable, $restriction);
2862
				$sentMessageProps = mapi_table_queryallrows($sentTable, [PR_ENTRYID, PR_SEARCH_KEY]);
2863
				if (mapi_table_getrowcount($sentTable) == 1) {
2864
					mapi_folder_deletemessages($sentFolder, [$sentMessageProps[0][PR_ENTRYID]], DELETE_HARD_DELETE);
2865
				}
2866
				else {
2867
					error_log(sprintf(
2868
						"Found multiple entries in Sent Items with the same PR_SEARCH_KEY (%d)." .
2869
						" Impossible to delete email from the delegate's Sent Items folder.",
2870
						mapi_table_getrowcount($sentTable)
2871
					));
2872
				}
2873
			}
2874
		}
2875
2876
		$this->addRecipientsToRecipientHistory($this->getRecipientsInfo($message));
2877
2878
		return false;
2879
	}
2880
2881
	/**
2882
	 * Delete messages.
2883
	 *
2884
	 * This function does what is needed when a user presses 'delete' on a MAPI message. This means that:
2885
	 *
2886
	 * - Items in the own store are moved to the wastebasket
2887
	 * - Items in the wastebasket are deleted
2888
	 * - Items in other users stores are moved to our own wastebasket
2889
	 * - Items in the public store are deleted
2890
	 *
2891
	 * @param mapistore $store         MAPI Message Store Object
2892
	 * @param string    $parententryid parent entryid of the messages to be deleted
2893
	 * @param array     $entryids      a list of entryids which will be deleted
2894
	 * @param bool      $softDelete    flag for soft-deleteing (when user presses Shift+Del)
2895
	 * @param bool      $unread        message is unread
2896
	 *
2897
	 * @return bool true if action succeeded, false if not
2898
	 */
2899
	public function deleteMessages($store, $parententryid, $entryids, $softDelete = false, $unread = false) {
2900
		$result = false;
2901
		if (!is_array($entryids)) {
0 ignored issues
show
introduced by
The condition is_array($entryids) is always true.
Loading history...
2902
			$entryids = [$entryids];
2903
		}
2904
2905
		$folder = mapi_msgstore_openentry($store, $parententryid);
2906
		$flags = $unread ? GX_DELMSG_NOTIFY_UNREAD : 0;
2907
		$msgprops = mapi_getprops($store, [PR_IPM_WASTEBASKET_ENTRYID, PR_MDB_PROVIDER, PR_IPM_OUTBOX_ENTRYID]);
2908
2909
		switch ($msgprops[PR_MDB_PROVIDER]) {
2910
			case ZARAFA_STORE_DELEGATE_GUID:
2911
				$softDelete = $softDelete || defined('ENABLE_DEFAULT_SOFT_DELETE') ? ENABLE_DEFAULT_SOFT_DELETE : false;
2912
				// with a store from an other user we need our own waste basket...
2913
				if (isset($msgprops[PR_IPM_WASTEBASKET_ENTRYID]) && $msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid || $softDelete) {
0 ignored issues
show
introduced by
Consider adding parentheses for clarity. Current Interpretation: (IssetNode && $msgprops[...entryid) || $softDelete, Probably Intended Meaning: IssetNode && ($msgprops[...entryid || $softDelete)
Loading history...
2914
					// except when it is the waste basket itself
2915
					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2916
					break;
2917
				}
2918
				$defaultstore = $GLOBALS["mapisession"]->getDefaultMessageStore();
2919
				$msgprops = mapi_getprops($defaultstore, [PR_IPM_WASTEBASKET_ENTRYID, PR_MDB_PROVIDER]);
2920
2921
				if (!isset($msgprops[PR_IPM_WASTEBASKET_ENTRYID]) ||
2922
					$msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid) {
2923
					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2924
					break;
2925
				}
2926
2927
				try {
2928
					$result = $this->copyMessages($store, $parententryid, $defaultstore, $msgprops[PR_IPM_WASTEBASKET_ENTRYID], $entryids, [], true);
2929
				}
2930
				catch (MAPIException $e) {
2931
					$e->setHandled();
2932
					// if moving fails, try normal delete
2933
					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2934
				}
2935
				break;
2936
2937
			case ZARAFA_STORE_ARCHIVER_GUID:
2938
			case ZARAFA_STORE_PUBLIC_GUID:
2939
				// always delete in public store and archive store
2940
				$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2941
				break;
2942
2943
			case ZARAFA_SERVICE_GUID:
2944
				// delete message when in your own waste basket, else move it to the waste basket
2945
				if (isset($msgprops[PR_IPM_WASTEBASKET_ENTRYID]) && $msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid || $softDelete === true) {
0 ignored issues
show
introduced by
Consider adding parentheses for clarity. Current Interpretation: (IssetNode && $msgprops[...|| $softDelete === true, Probably Intended Meaning: IssetNode && ($msgprops[...| $softDelete === true)
Loading history...
2946
					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2947
					break;
2948
				}
2949
2950
				try {
2951
					// if the message is deleting from outbox then first delete the
2952
					// message from an outgoing queue.
2953
					if (function_exists("mapi_msgstore_abortsubmit") && isset($msgprops[PR_IPM_OUTBOX_ENTRYID]) && $msgprops[PR_IPM_OUTBOX_ENTRYID] === $parententryid) {
2954
						foreach ($entryids as $entryid) {
2955
							$message = mapi_msgstore_openentry($store, $entryid);
2956
							$messageProps = mapi_getprops($message, [PR_DEFERRED_SEND_TIME]);
2957
							if (isset($messageProps[PR_DEFERRED_SEND_TIME])) {
2958
								mapi_msgstore_abortsubmit($store, $entryid);
2959
							}
2960
						}
2961
					}
2962
					$result = $this->copyMessages($store, $parententryid, $store, $msgprops[PR_IPM_WASTEBASKET_ENTRYID], $entryids, [], true);
2963
				}
2964
				catch (MAPIException $e) {
2965
					if ($e->getCode() === MAPI_E_NOT_IN_QUEUE || $e->getCode() === MAPI_E_UNABLE_TO_ABORT) {
2966
						throw $e;
2967
					}
2968
2969
					$e->setHandled();
2970
					// if moving fails, try normal delete
2971
					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2972
				}
2973
				break;
2974
		}
2975
2976
		return $result;
2977
	}
2978
2979
	/**
2980
	 * Copy or move messages.
2981
	 *
2982
	 * @param object $store         MAPI Message Store Object
2983
	 * @param string $parententryid parent entryid of the messages
2984
	 * @param string $destentryid   destination folder
2985
	 * @param array  $entryids      a list of entryids which will be copied or moved
2986
	 * @param array  $ignoreProps   a list of proptags which should not be copied over
2987
	 *                              to the new message
2988
	 * @param bool   $moveMessages  true - move messages, false - copy messages
2989
	 * @param array  $props         a list of proptags which should set in new messages
2990
	 * @param mixed  $destStore
2991
	 *
2992
	 * @return bool true if action succeeded, false if not
2993
	 */
2994
	public function copyMessages($store, $parententryid, $destStore, $destentryid, $entryids, $ignoreProps, $moveMessages, $props = []) {
2995
		$sourcefolder = mapi_msgstore_openentry($store, $parententryid);
2996
		$destfolder = mapi_msgstore_openentry($destStore, $destentryid);
2997
2998
		if (!$sourcefolder || !$destfolder) {
2999
			error_log("Could not open source or destination folder. Aborting.");
3000
3001
			return false;
3002
		}
3003
3004
		if (!is_array($entryids)) {
0 ignored issues
show
introduced by
The condition is_array($entryids) is always true.
Loading history...
3005
			$entryids = [$entryids];
3006
		}
3007
3008
		/*
3009
		 * If there are no properties to ignore as well as set then we can use mapi_folder_copymessages instead
3010
		 * of mapi_copyto. mapi_folder_copymessages is much faster then copyto since it executes
3011
		 * the copying on the server instead of in client.
3012
		 */
3013
		if (empty($ignoreProps) && empty($props)) {
3014
			try {
3015
				mapi_folder_copymessages($sourcefolder, $entryids, $destfolder, $moveMessages ? MESSAGE_MOVE : 0);
3016
			}
3017
			catch (MAPIException $e) {
3018
				error_log(sprintf("mapi_folder_copymessages failed with code: 0x%08X. Wait 250ms and try again", mapi_last_hresult()));
3019
				// wait 250ms before trying again
3020
				usleep(250000);
3021
3022
				try {
3023
					mapi_folder_copymessages($sourcefolder, $entryids, $destfolder, $moveMessages ? MESSAGE_MOVE : 0);
3024
				}
3025
				catch (MAPIException $e) {
3026
					error_log(sprintf("2nd attempt of mapi_folder_copymessages also failed with code: 0x%08X. Abort.", mapi_last_hresult()));
3027
3028
					return false;
3029
				}
3030
			}
3031
		}
3032
		else {
3033
			foreach ($entryids as $entryid) {
3034
				$oldmessage = mapi_msgstore_openentry($store, $entryid);
3035
				$newmessage = mapi_folder_createmessage($destfolder);
3036
3037
				mapi_copyto($oldmessage, [], $ignoreProps, $newmessage, 0);
3038
				if (!empty($props)) {
3039
					mapi_setprops($newmessage, $props);
3040
				}
3041
				mapi_savechanges($newmessage);
3042
			}
3043
			if ($moveMessages) {
3044
				// while moving message we actually copy that particular message into
3045
				// destination folder, and remove it from source folder. so we must have
3046
				// to hard delete the message.
3047
				mapi_folder_deletemessages($sourcefolder, $entryids, DELETE_HARD_DELETE);
3048
			}
3049
		}
3050
3051
		return true;
3052
	}
3053
3054
	/**
3055
	 * Set message read flag.
3056
	 *
3057
	 * @param object $store      MAPI Message Store Object
3058
	 * @param string $entryid    entryid of the message
3059
	 * @param int    $flags      Bitmask of values (read, has attachment etc.)
3060
	 * @param array  $props      properties of the message
3061
	 * @param mixed  $msg_action
3062
	 *
3063
	 * @return bool true if action succeeded, false if not
3064
	 */
3065
	public function setMessageFlag($store, $entryid, $flags, $msg_action = false, &$props = false) {
3066
		$message = $this->openMessage($store, $entryid);
3067
3068
		if ($message) {
0 ignored issues
show
introduced by
$message is of type object, thus it always evaluated to true.
Loading history...
3069
			/**
3070
			 * convert flags of PR_MESSAGE_FLAGS property to flags that is
3071
			 * used in mapi_message_setreadflag.
3072
			 */
3073
			$flag = MAPI_DEFERRED_ERRORS;		// set unread flag, read receipt will be sent
3074
3075
			if (($flags & MSGFLAG_RN_PENDING) && isset($msg_action['send_read_receipt']) && $msg_action['send_read_receipt'] == false) {
3076
				$flag |= SUPPRESS_RECEIPT;
3077
			}
3078
			else {
3079
				if (!($flags & MSGFLAG_READ)) {
3080
					$flag |= CLEAR_READ_FLAG;
3081
				}
3082
			}
3083
3084
			mapi_message_setreadflag($message, $flag);
3085
3086
			if (is_array($props)) {
3087
				$props = mapi_getprops($message, [PR_ENTRYID, PR_STORE_ENTRYID, PR_PARENT_ENTRYID]);
3088
			}
3089
		}
3090
3091
		return true;
3092
	}
3093
3094
	/**
3095
	 * Create a unique folder name based on a provided new folder name.
3096
	 *
3097
	 * checkFolderNameConflict() checks if a folder name conflict is caused by the given $foldername.
3098
	 * This function is used for copying of moving a folder to another folder. It returns
3099
	 * a unique foldername.
3100
	 *
3101
	 * @param object $store      MAPI Message Store Object
3102
	 * @param object $folder     MAPI Folder Object
3103
	 * @param string $foldername the folder name
3104
	 *
3105
	 * @return string correct foldername
3106
	 */
3107
	public function checkFolderNameConflict($store, $folder, $foldername) {
3108
		$folderNames = [];
3109
3110
		$hierarchyTable = mapi_folder_gethierarchytable($folder, MAPI_DEFERRED_ERRORS);
3111
		mapi_table_sort($hierarchyTable, [PR_DISPLAY_NAME => TABLE_SORT_ASCEND], TBL_BATCH);
3112
3113
		$subfolders = mapi_table_queryallrows($hierarchyTable, [PR_ENTRYID]);
3114
3115
		if (is_array($subfolders)) {
3116
			foreach ($subfolders as $subfolder) {
3117
				$folderObject = mapi_msgstore_openentry($store, $subfolder[PR_ENTRYID]);
3118
				$folderProps = mapi_getprops($folderObject, [PR_DISPLAY_NAME]);
3119
3120
				array_push($folderNames, strtolower($folderProps[PR_DISPLAY_NAME]));
3121
			}
3122
		}
3123
3124
		if (array_search(strtolower($foldername), $folderNames) !== false) {
3125
			$i = 2;
3126
			while (array_search(strtolower($foldername) . " ({$i})", $folderNames) !== false) {
3127
				++$i;
3128
			}
3129
			$foldername .= " ({$i})";
3130
		}
3131
3132
		return $foldername;
3133
	}
3134
3135
	/**
3136
	 * Set the recipients of a MAPI message.
3137
	 *
3138
	 * @param object $message    MAPI Message Object
3139
	 * @param array  $recipients XML array structure of recipients
3140
	 * @param bool   $send       true if we are going to send this message else false
3141
	 */
3142
	public function setRecipients($message, $recipients, $send = false) {
3143
		if (empty($recipients)) {
3144
			// no recipients are sent from client
3145
			return;
3146
		}
3147
3148
		$newRecipients = [];
3149
		$removeRecipients = [];
3150
		$modifyRecipients = [];
3151
3152
		if (isset($recipients['add']) && !empty($recipients['add'])) {
3153
			$newRecipients = $this->createRecipientList($recipients['add'], 'add', false, $send);
3154
		}
3155
3156
		if (isset($recipients['remove']) && !empty($recipients['remove'])) {
3157
			$removeRecipients = $this->createRecipientList($recipients['remove'], 'remove');
3158
		}
3159
3160
		if (isset($recipients['modify']) && !empty($recipients['modify'])) {
3161
			$modifyRecipients = $this->createRecipientList($recipients['modify'], 'modify', false, $send);
3162
		}
3163
3164
		if (!empty($removeRecipients)) {
3165
			mapi_message_modifyrecipients($message, MODRECIP_REMOVE, $removeRecipients);
3166
		}
3167
3168
		if (!empty($modifyRecipients)) {
3169
			mapi_message_modifyrecipients($message, MODRECIP_MODIFY, $modifyRecipients);
3170
		}
3171
3172
		if (!empty($newRecipients)) {
3173
			mapi_message_modifyrecipients($message, MODRECIP_ADD, $newRecipients);
3174
		}
3175
	}
3176
3177
	/**
3178
	 * Copy recipients from original message.
3179
	 *
3180
	 * If we are sending mail from a delegator's folder, we need to copy all recipients from the original message
3181
	 *
3182
	 * @param object      $message         MAPI Message Object
3183
	 * @param MAPIMessage $copyFromMessage If set we copy all recipients from this message
3184
	 */
3185
	public function copyRecipients($message, $copyFromMessage = false) {
3186
		$recipienttable = mapi_message_getrecipienttable($copyFromMessage);
3187
		$messageRecipients = mapi_table_queryallrows($recipienttable, $GLOBALS["properties"]->getRecipientProperties());
3188
		if (!empty($messageRecipients)) {
3189
			mapi_message_modifyrecipients($message, MODRECIP_ADD, $messageRecipients);
3190
		}
3191
	}
3192
3193
	/**
3194
	 * Set attachments in a MAPI message.
3195
	 *
3196
	 * This function reads any attachments that have been previously uploaded and copies them into
3197
	 * the passed MAPI message resource. For a description of the dialog_attachments variable and
3198
	 * generally how attachments work when uploading, see Operations::saveMessage()
3199
	 *
3200
	 * @see Operations::saveMessage()
3201
	 *
3202
	 * @param object          $message          MAPI Message Object
3203
	 * @param array           $attachments      XML array structure of attachments
3204
	 * @param AttachmentState $attachment_state the state object in which the attachments are saved
3205
	 *                                          between different requests
3206
	 */
3207
	public function setAttachments($message, $attachments, $attachment_state) {
3208
		// Check if attachments should be deleted. This is set in the "upload_attachment.php" file
3209
		if (isset($attachments['dialog_attachments'])) {
3210
			$deleted = $attachment_state->getDeletedAttachments($attachments['dialog_attachments']);
3211
			if ($deleted) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $deleted of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
3212
				foreach ($deleted as $attach_num) {
3213
					try {
3214
						mapi_message_deleteattach($message, (int) $attach_num);
3215
					}
3216
					catch (Exception $e) {
3217
						continue;
3218
					}
3219
				}
3220
				$attachment_state->clearDeletedAttachments($attachments['dialog_attachments']);
3221
			}
3222
		}
3223
3224
		$addedInlineAttachmentCidMapping = [];
3225
		if (is_array($attachments) && !empty($attachments)) {
3226
			// Set contentId to saved attachments.
3227
			if (isset($attachments['add']) && is_array($attachments['add']) && !empty($attachments['add'])) {
3228
				foreach ($attachments['add'] as $key => $attach) {
3229
					if ($attach && isset($attach['inline']) && $attach['inline']) {
3230
						$addedInlineAttachmentCidMapping[$attach['attach_num']] = $attach['cid'];
3231
						$msgattachment = mapi_message_openattach($message, $attach['attach_num']);
3232
						if ($msgattachment) {
3233
							$props = [PR_ATTACH_CONTENT_ID => $attach['cid'], PR_ATTACHMENT_HIDDEN => true];
3234
							mapi_setprops($msgattachment, $props);
3235
							mapi_savechanges($msgattachment);
3236
						}
3237
					}
3238
				}
3239
			}
3240
3241
			// Delete saved inline images if removed from body.
3242
			if (isset($attachments['remove']) && is_array($attachments['remove']) && !empty($attachments['remove'])) {
3243
				foreach ($attachments['remove'] as $key => $attach) {
3244
					if ($attach && isset($attach['inline']) && $attach['inline']) {
3245
						$msgattachment = mapi_message_openattach($message, $attach['attach_num']);
3246
						if ($msgattachment) {
3247
							mapi_message_deleteattach($message, $attach['attach_num']);
3248
							mapi_savechanges($message);
3249
						}
3250
					}
3251
				}
3252
			}
3253
		}
3254
3255
		if ($attachments['dialog_attachments']) {
3256
			$dialog_attachments = $attachments['dialog_attachments'];
3257
		}
3258
		else {
3259
			return;
3260
		}
3261
3262
		$files = $attachment_state->getAttachmentFiles($dialog_attachments);
3263
		if ($files) {
3264
			// Loop through the uploaded attachments
3265
			foreach ($files as $tmpname => $fileinfo) {
3266
				if ($fileinfo['sourcetype'] === 'embedded') {
3267
					// open message which needs to be embedded
3268
					$copyFromStore = $GLOBALS['mapisession']->openMessageStore(hex2bin($fileinfo['store_entryid']));
3269
					$copyFrom = mapi_msgstore_openentry($copyFromStore, hex2bin($fileinfo['entryid']));
3270
3271
					$msgProps = mapi_getprops($copyFrom, [PR_SUBJECT]);
3272
3273
					// get message and copy it to attachment table as embedded attachment
3274
					$props = [];
3275
					$props[PR_EC_WA_ATTACHMENT_ID] = $fileinfo['attach_id'];
3276
					$props[PR_ATTACH_METHOD] = ATTACH_EMBEDDED_MSG;
3277
					$props[PR_DISPLAY_NAME] = !empty($msgProps[PR_SUBJECT]) ? $msgProps[PR_SUBJECT] : _('Untitled');
3278
3279
					// Create new attachment.
3280
					$attachment = mapi_message_createattach($message);
3281
					mapi_setprops($attachment, $props);
3282
3283
					$imessage = mapi_attach_openobj($attachment, MAPI_CREATE | MAPI_MODIFY);
3284
3285
					// Copy the properties from the source message to the attachment
3286
					mapi_copyto($copyFrom, [], [], $imessage, 0); // includes attachments and recipients
3287
3288
					// save changes in the embedded message and the final attachment
3289
					mapi_savechanges($imessage);
3290
					mapi_savechanges($attachment);
3291
				}
3292
				elseif ($fileinfo['sourcetype'] === 'icsfile') {
3293
					$messageStore = $GLOBALS['mapisession']->openMessageStore(hex2bin($fileinfo['store_entryid']));
3294
					$copyFrom = mapi_msgstore_openentry($messageStore, hex2bin($fileinfo['entryid']));
3295
3296
					// Get addressbook for current session
3297
					$addrBook = $GLOBALS['mapisession']->getAddressbook();
3298
3299
					// get message properties.
3300
					$messageProps = mapi_getprops($copyFrom, [PR_SUBJECT]);
3301
3302
					// Read the appointment as RFC2445-formatted ics stream.
3303
					$appointmentStream = mapi_mapitoical($GLOBALS['mapisession']->getSession(), $addrBook, $copyFrom, []);
3304
3305
					$filename = (!empty($messageProps[PR_SUBJECT])) ? $messageProps[PR_SUBJECT] : _('Untitled');
3306
					$filename .= '.ics';
3307
3308
					$props = [
3309
						PR_ATTACH_LONG_FILENAME => $filename,
3310
						PR_DISPLAY_NAME => $filename,
3311
						PR_ATTACH_METHOD => ATTACH_BY_VALUE,
3312
						PR_ATTACH_DATA_BIN => "",
3313
						PR_ATTACH_MIME_TAG => "application/octet-stream",
3314
						PR_ATTACHMENT_HIDDEN => false,
3315
						PR_EC_WA_ATTACHMENT_ID => isset($fileinfo["attach_id"]) && !empty($fileinfo["attach_id"]) ? $fileinfo["attach_id"] : uniqid(),
3316
						PR_ATTACH_EXTENSION => pathinfo($filename, PATHINFO_EXTENSION),
3317
					];
3318
3319
					$attachment = mapi_message_createattach($message);
3320
					mapi_setprops($attachment, $props);
3321
3322
					// Stream the file to the PR_ATTACH_DATA_BIN property
3323
					$stream = mapi_openproperty($attachment, PR_ATTACH_DATA_BIN, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
3324
					mapi_stream_write($stream, $appointmentStream);
3325
3326
					// Commit the stream and save changes
3327
					mapi_stream_commit($stream);
3328
					mapi_savechanges($attachment);
3329
				}
3330
				else {
3331
					$filepath = $attachment_state->getAttachmentPath($tmpname);
3332
					if (is_file($filepath)) {
3333
						// Set contentId if attachment is inline
3334
						$cid = '';
3335
						if (isset($addedInlineAttachmentCidMapping[$tmpname])) {
3336
							$cid = $addedInlineAttachmentCidMapping[$tmpname];
3337
						}
3338
3339
						// If a .p7m file was manually uploaded by the user, we must change the mime type because
3340
						// otherwise mail applications will think the containing email is an encrypted email.
3341
						// That will make Outlook crash, and it will make grommunio Web show the original mail as encrypted
3342
						// without showing the attachment
3343
						$mimeType = $fileinfo["type"];
3344
						$smimeTags = ['multipart/signed', 'application/pkcs7-mime', 'application/x-pkcs7-mime'];
3345
						if (in_array($mimeType, $smimeTags)) {
3346
							$mimeType = "application/octet-stream";
3347
						}
3348
3349
						// Set attachment properties
3350
						$props = [
3351
							PR_ATTACH_LONG_FILENAME => $fileinfo["name"],
3352
							PR_DISPLAY_NAME => $fileinfo["name"],
3353
							PR_ATTACH_METHOD => ATTACH_BY_VALUE,
3354
							PR_ATTACH_DATA_BIN => "",
3355
							PR_ATTACH_MIME_TAG => $mimeType,
3356
							PR_ATTACHMENT_HIDDEN => !empty($cid) ? true : false,
3357
							PR_EC_WA_ATTACHMENT_ID => isset($fileinfo["attach_id"]) && !empty($fileinfo["attach_id"]) ? $fileinfo["attach_id"] : uniqid(),
3358
							PR_ATTACH_EXTENSION => pathinfo($fileinfo["name"], PATHINFO_EXTENSION),
3359
						];
3360
3361
						if (isset($fileinfo['sourcetype']) && $fileinfo['sourcetype'] === 'contactphoto') {
3362
							$props[PR_ATTACHMENT_HIDDEN] = true;
3363
							$props[PR_ATTACHMENT_CONTACTPHOTO] = true;
3364
						}
3365
3366
						if (!empty($cid)) {
3367
							$props[PR_ATTACH_CONTENT_ID] = $cid;
3368
						}
3369
3370
						// Create attachment and set props
3371
						$attachment = mapi_message_createattach($message);
3372
						mapi_setprops($attachment, $props);
3373
3374
						// Stream the file to the PR_ATTACH_DATA_BIN property
3375
						$stream = mapi_openproperty($attachment, PR_ATTACH_DATA_BIN, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
3376
						$handle = fopen($filepath, "r");
3377
						while (!feof($handle)) {
3378
							$contents = fread($handle, BLOCK_SIZE);
3379
							mapi_stream_write($stream, $contents);
3380
						}
3381
3382
						// Commit the stream and save changes
3383
						mapi_stream_commit($stream);
3384
						mapi_savechanges($attachment);
3385
						fclose($handle);
3386
						unlink($filepath);
3387
					}
3388
				}
3389
			}
3390
3391
			// Delete all the files in the state.
3392
			$attachment_state->clearAttachmentFiles($dialog_attachments);
3393
		}
3394
	}
3395
3396
	/**
3397
	 * Copy attachments from original message.
3398
	 *
3399
	 * @see Operations::saveMessage()
3400
	 *
3401
	 * @param object          $message                   MAPI Message Object
3402
	 * @param string          $attachments
3403
	 * @param MAPIMessage     $copyFromMessage           if set, copy the attachments from this message in addition to the uploaded attachments
3404
	 * @param bool            $copyInlineAttachmentsOnly if true then copy only inline attachments
3405
	 * @param AttachmentState $attachment_state          the state object in which the attachments are saved
3406
	 *                                                   between different requests
3407
	 */
3408
	public function copyAttachments($message, $attachments, $copyFromMessage, $copyInlineAttachmentsOnly, $attachment_state) {
3409
		$attachmentTable = mapi_message_getattachmenttable($copyFromMessage);
3410
		if ($attachmentTable && isset($attachments['dialog_attachments'])) {
3411
			$existingAttachments = mapi_table_queryallrows($attachmentTable, [PR_ATTACH_NUM, PR_ATTACH_SIZE, PR_ATTACH_LONG_FILENAME, PR_ATTACHMENT_HIDDEN, PR_DISPLAY_NAME, PR_ATTACH_METHOD, PR_ATTACH_CONTENT_ID]);
3412
			$deletedAttachments = $attachment_state->getDeletedAttachments($attachments['dialog_attachments']);
3413
3414
			$plainText = $this->isPlainText($message);
3415
3416
			$properties = $GLOBALS['properties']->getMailProperties();
3417
			$blockStatus = mapi_getprops($copyFromMessage, [PR_BLOCK_STATUS]);
3418
			$blockStatus = Conversion::mapMAPI2XML($properties, $blockStatus);
3419
			$isSafeSender = false;
3420
3421
			// Here if message is HTML and block status is empty then and then call isSafeSender function
3422
			// to check that sender or sender's domain of original message was part of safe sender list.
3423
			if (!$plainText && empty($blockStatus)) {
3424
				$isSafeSender = $this->isSafeSender($copyFromMessage);
3425
			}
3426
3427
			$body = false;
3428
			foreach ($existingAttachments as $props) {
3429
				// check if this attachment is "deleted"
3430
3431
				if ($deletedAttachments && in_array($props[PR_ATTACH_NUM], $deletedAttachments)) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $deletedAttachments of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
3432
					// skip attachment, remove reference from state as it no longer applies.
3433
					$attachment_state->removeDeletedAttachment($attachments['dialog_attachments'], $props[PR_ATTACH_NUM]);
3434
3435
					continue;
3436
				}
3437
3438
				$old = mapi_message_openattach($copyFromMessage, $props[PR_ATTACH_NUM]);
3439
				$isInlineAttachment = $attachment_state->isInlineAttachment($old);
3440
3441
				/*
3442
				 * If reply/reply all message, then copy only inline attachments.
3443
				 */
3444
				if ($copyInlineAttachmentsOnly) {
3445
					/*
3446
					 * if message is reply/reply all and format is plain text than ignore inline attachments
3447
					 * and normal attachments to copy from original mail.
3448
					 */
3449
					if ($plainText || !$isInlineAttachment) {
3450
						continue;
3451
					}
3452
				}
3453
				elseif ($plainText && $isInlineAttachment) {
3454
					/*
3455
					 * If message is forward and format of message is plain text then ignore only inline attachments from the
3456
					 * original mail.
3457
					 */
3458
					continue;
3459
				}
3460
3461
				/*
3462
				 * If the inline attachment is referenced with an content-id,
3463
				 * manually check if it's still referenced in the body otherwise remove it
3464
				 */
3465
				if ($isInlineAttachment) {
3466
					// Cache body, so we stream it once
3467
					if ($body === false) {
3468
						$body = streamProperty($message, PR_HTML);
3469
					}
3470
3471
					$contentID = $props[PR_ATTACH_CONTENT_ID];
3472
					if (strpos($body, $contentID) === false) {
0 ignored issues
show
Bug introduced by
It seems like $body can also be of type false; however, parameter $haystack of strpos() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

3472
					if (strpos(/** @scrutinizer ignore-type */ $body, $contentID) === false) {
Loading history...
3473
						continue;
3474
					}
3475
				}
3476
3477
				/*
3478
				 * if message is reply/reply all or forward and format of message is HTML but
3479
				 * - inline attachments are not downloaded from external source
3480
				 * - sender of original message is not safe sender
3481
				 * - domain of sender is not part of safe sender list
3482
				 * then ignore inline attachments from original message.
3483
				 *
3484
				 * NOTE : blockStatus is only generated when user has download inline image from external source.
3485
				 * it should remains empty if user add the sender in to safe sender list.
3486
				 */
3487
				if (!$plainText && $isInlineAttachment && empty($blockStatus) && !$isSafeSender) {
3488
					continue;
3489
				}
3490
3491
				$new = mapi_message_createattach($message);
3492
3493
				try {
3494
					mapi_copyto($old, [], [], $new, 0);
3495
					mapi_savechanges($new);
3496
				}
3497
				catch (MAPIException $e) {
3498
					// This is a workaround for the grommunio-web issue 75
3499
					// Remove it after gromox issue 253 is resolved
3500
					if ($e->getCode() == ecMsgCycle) {
3501
						$oldstream = mapi_openproperty($old, PR_ATTACH_DATA_BIN, IID_IStream, 0, 0);
3502
						$stat = mapi_stream_stat($oldstream);
3503
						$props = mapi_attach_getprops($old, [PR_ATTACH_LONG_FILENAME, PR_ATTACH_MIME_TAG, PR_DISPLAY_NAME, PR_ATTACH_METHOD, PR_ATTACH_FILENAME, PR_ATTACHMENT_HIDDEN, PR_ATTACH_EXTENSION, PR_ATTACH_FLAGS]);
3504
3505
						mapi_setprops($new, [
3506
							PR_ATTACH_LONG_FILENAME => $props[PR_ATTACH_LONG_FILENAME] ?? '',
3507
							PR_ATTACH_MIME_TAG => $props[PR_ATTACH_MIME_TAG] ?? "application/octet-stream",
3508
							PR_DISPLAY_NAME => $props[PR_DISPLAY_NAME] ?? '',
3509
							PR_ATTACH_METHOD => $props[PR_ATTACH_METHOD] ?? ATTACH_BY_VALUE,
3510
							PR_ATTACH_FILENAME => $props[PR_ATTACH_FILENAME] ?? '',
3511
							PR_ATTACH_DATA_BIN => "",
3512
							PR_ATTACHMENT_HIDDEN => $props[PR_ATTACHMENT_HIDDEN] ?? false,
3513
							PR_ATTACH_EXTENSION => $props[PR_ATTACH_EXTENSION] ?? '',
3514
							PR_ATTACH_FLAGS => $props[PR_ATTACH_FLAGS] ?? 0,
3515
						]);
3516
						$newstream = mapi_openproperty($new, PR_ATTACH_DATA_BIN, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
3517
						mapi_stream_setsize($newstream, $stat['cb']);
3518
						for ($i = 0; $i < $stat['cb']; $i += BLOCK_SIZE) {
3519
							mapi_stream_write($newstream, mapi_stream_read($oldstream, BLOCK_SIZE));
3520
						}
3521
						mapi_stream_commit($newstream);
3522
						mapi_savechanges($new);
3523
					}
3524
				}
3525
			}
3526
		}
3527
	}
3528
3529
	/**
3530
	 * Function was used to identify the sender or domain of original mail in safe sender list.
3531
	 *
3532
	 * @param MAPIMessage $copyFromMessage resource of the message from which we should get
3533
	 *                                     the sender of message
3534
	 *
3535
	 * @return bool true if sender of original mail was safe sender else false
3536
	 */
3537
	public function isSafeSender($copyFromMessage) {
3538
		$safeSenderList = $GLOBALS['settings']->get('zarafa/v1/contexts/mail/safe_senders_list');
3539
		$senderEntryid = mapi_getprops($copyFromMessage, [PR_SENT_REPRESENTING_ENTRYID]);
3540
		$senderEntryid = $senderEntryid[PR_SENT_REPRESENTING_ENTRYID];
3541
3542
		// If sender is user himself (which happens in case of "Send as New message") consider sender as safe
3543
		if ($GLOBALS['entryid']->compareEntryIds($senderEntryid, $GLOBALS["mapisession"]->getUserEntryID())) {
3544
			return true;
3545
		}
3546
3547
		try {
3548
			$mailuser = mapi_ab_openentry($GLOBALS["mapisession"]->getAddressbook(), $senderEntryid);
3549
		}
3550
		catch (MAPIException $e) {
3551
			// The user might have a new uidNumber, which makes the user not resolve, see WA-7673
3552
			// FIXME: Lookup the user by PR_SENDER_NAME or another attribute if PR_SENDER_ADDRTYPE is "EX"
3553
			return false;
3554
		}
3555
3556
		$addressType = mapi_getprops($mailuser, [PR_ADDRTYPE]);
3557
3558
		// Here it will check that sender of original mail was address book user.
3559
		// If PR_ADDRTYPE is ZARAFA, it means sender of original mail was address book contact.
3560
		if ($addressType[PR_ADDRTYPE] === 'EX') {
3561
			$address = mapi_getprops($mailuser, [PR_SMTP_ADDRESS]);
3562
			$address = $address[PR_SMTP_ADDRESS];
3563
		}
3564
		elseif ($addressType[PR_ADDRTYPE] === 'SMTP') {
3565
			// If PR_ADDRTYPE is SMTP, it means sender of original mail was external sender.
3566
			$address = mapi_getprops($mailuser, [PR_EMAIL_ADDRESS]);
3567
			$address = $address[PR_EMAIL_ADDRESS];
3568
		}
3569
3570
		// Obtain the Domain address from smtp/email address.
3571
		$domain = substr($address, strpos($address, "@") + 1);
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $address does not seem to be defined for all execution paths leading up to this point.
Loading history...
3572
3573
		if (!empty($safeSenderList)) {
3574
			foreach ($safeSenderList as $safeSender) {
3575
				if ($safeSender === $address || $safeSender === $domain) {
3576
					return true;
3577
				}
3578
			}
3579
		}
3580
3581
		return false;
3582
	}
3583
3584
	/**
3585
	 * get attachments information of a particular message.
3586
	 *
3587
	 * @param MapiMessage $message       MAPI Message Object
0 ignored issues
show
Bug introduced by
The type MapiMessage was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
3588
	 * @param bool        $excludeHidden exclude hidden attachments
3589
	 */
3590
	public function getAttachmentsInfo($message, $excludeHidden = false) {
3591
		$attachmentsInfo = [];
3592
3593
		$hasattachProp = mapi_getprops($message, [PR_HASATTACH]);
3594
		if (isset($hasattachProp[PR_HASATTACH]) && $hasattachProp[PR_HASATTACH]) {
3595
			$attachmentTable = mapi_message_getattachmenttable($message);
3596
3597
			$attachments = mapi_table_queryallrows($attachmentTable, [PR_ATTACH_NUM, PR_ATTACH_SIZE, PR_ATTACH_LONG_FILENAME,
3598
				PR_ATTACH_FILENAME, PR_ATTACHMENT_HIDDEN, PR_DISPLAY_NAME, PR_ATTACH_METHOD,
3599
				PR_ATTACH_CONTENT_ID, PR_ATTACH_MIME_TAG,
3600
				PR_ATTACHMENT_CONTACTPHOTO, PR_RECORD_KEY, PR_EC_WA_ATTACHMENT_ID, PR_OBJECT_TYPE, PR_ATTACH_EXTENSION, ]);
3601
			foreach ($attachments as $attachmentRow) {
3602
				$props = [];
3603
3604
				if (isset($attachmentRow[PR_ATTACH_MIME_TAG])) {
3605
					if ($attachmentRow[PR_ATTACH_MIME_TAG]) {
3606
						$props["filetype"] = $attachmentRow[PR_ATTACH_MIME_TAG];
3607
					}
3608
3609
					$smimeTags = ['multipart/signed', 'application/pkcs7-mime', 'application/x-pkcs7-mime'];
3610
					if (in_array($attachmentRow[PR_ATTACH_MIME_TAG], $smimeTags)) {
3611
						// Ignore the message with attachment types set as smime as they are for smime
3612
						continue;
3613
					}
3614
				}
3615
3616
				$attach_id = '';
3617
				if (isset($attachmentRow[PR_EC_WA_ATTACHMENT_ID])) {
3618
					$attach_id = $attachmentRow[PR_EC_WA_ATTACHMENT_ID];
3619
				}
3620
				elseif (isset($attachmentRow[PR_RECORD_KEY])) {
3621
					$attach_id = bin2hex($attachmentRow[PR_RECORD_KEY]);
3622
				}
3623
				else {
3624
					$attach_id = uniqid();
3625
				}
3626
3627
				$props["object_type"] = $attachmentRow[PR_OBJECT_TYPE];
3628
				$props["attach_id"] = $attach_id;
3629
				$props["attach_num"] = $attachmentRow[PR_ATTACH_NUM];
3630
				$props["attach_method"] = $attachmentRow[PR_ATTACH_METHOD];
3631
				$props["size"] = $attachmentRow[PR_ATTACH_SIZE];
3632
3633
				if (isset($attachmentRow[PR_ATTACH_CONTENT_ID]) && $attachmentRow[PR_ATTACH_CONTENT_ID]) {
3634
					$props["cid"] = $attachmentRow[PR_ATTACH_CONTENT_ID];
3635
				}
3636
3637
				$props["hidden"] = isset($attachmentRow[PR_ATTACHMENT_HIDDEN]) ? $attachmentRow[PR_ATTACHMENT_HIDDEN] : false;
3638
				if ($excludeHidden && $props["hidden"]) {
3639
					continue;
3640
				}
3641
3642
				if (isset($attachmentRow[PR_ATTACH_LONG_FILENAME])) {
3643
					$props["name"] = $attachmentRow[PR_ATTACH_LONG_FILENAME];
3644
				}
3645
				elseif (isset($attachmentRow[PR_ATTACH_FILENAME])) {
3646
					$props["name"] = $attachmentRow[PR_ATTACH_FILENAME];
3647
				}
3648
				elseif (isset($attachmentRow[PR_DISPLAY_NAME])) {
3649
					$props["name"] = $attachmentRow[PR_DISPLAY_NAME];
3650
				}
3651
				else {
3652
					$props["name"] = "untitled";
3653
				}
3654
3655
				if (isset($attachmentRow[PR_ATTACH_EXTENSION]) && $attachmentRow[PR_ATTACH_EXTENSION]) {
3656
					$props["extension"] = $attachmentRow[PR_ATTACH_EXTENSION];
3657
				}
3658
				else {
3659
					// For backward compatibility where attachments doesn't have the extension property
3660
					$props["extension"] = pathinfo($props["name"], PATHINFO_EXTENSION);
3661
				}
3662
3663
				if (isset($attachmentRow[PR_ATTACHMENT_CONTACTPHOTO]) && $attachmentRow[PR_ATTACHMENT_CONTACTPHOTO]) {
3664
					$props["attachment_contactphoto"] = $attachmentRow[PR_ATTACHMENT_CONTACTPHOTO];
3665
					$props["hidden"] = true;
3666
3667
					// Open contact photo attachement in binary format.
3668
					$attach = mapi_message_openattach($message, $props["attach_num"]);
0 ignored issues
show
Unused Code introduced by
The assignment to $attach is dead and can be removed.
Loading history...
3669
				}
3670
3671
				if ($props["attach_method"] == ATTACH_EMBEDDED_MSG) {
3672
					// open attachment to get the message class
3673
					$attach = mapi_message_openattach($message, $props["attach_num"]);
3674
					$embMessage = mapi_attach_openobj($attach);
3675
					$embProps = mapi_getprops($embMessage, [PR_MESSAGE_CLASS]);
3676
					if (isset($embProps[PR_MESSAGE_CLASS])) {
3677
						$props["attach_message_class"] = $embProps[PR_MESSAGE_CLASS];
3678
					}
3679
				}
3680
3681
				array_push($attachmentsInfo, ["props" => $props]);
3682
			}
3683
		}
3684
3685
		return $attachmentsInfo;
3686
	}
3687
3688
	/**
3689
	 * get recipients information of a particular message.
3690
	 *
3691
	 * @param MapiMessage $message        MAPI Message Object
3692
	 * @param bool        $excludeDeleted exclude deleted recipients
3693
	 */
3694
	public function getRecipientsInfo($message, $excludeDeleted = true) {
3695
		$recipientsInfo = [];
3696
3697
		$recipientTable = mapi_message_getrecipienttable($message);
3698
		if ($recipientTable) {
3699
			$recipients = mapi_table_queryallrows($recipientTable, $GLOBALS['properties']->getRecipientProperties());
3700
3701
			foreach ($recipients as $recipientRow) {
3702
				if ($excludeDeleted && isset($recipientRow[PR_RECIPIENT_FLAGS]) && (($recipientRow[PR_RECIPIENT_FLAGS] & recipExceptionalDeleted) == recipExceptionalDeleted)) {
3703
					continue;
3704
				}
3705
3706
				$props = [];
3707
				$props['rowid'] = $recipientRow[PR_ROWID];
3708
				$props['search_key'] = isset($recipientRow[PR_SEARCH_KEY]) ? bin2hex($recipientRow[PR_SEARCH_KEY]) : '';
3709
				$props['display_name'] = $recipientRow[PR_DISPLAY_NAME] ?? '';
3710
				$props['email_address'] = $recipientRow[PR_EMAIL_ADDRESS] ?? '';
3711
				$props['smtp_address'] = $recipientRow[PR_SMTP_ADDRESS] ?? '';
3712
				$props['address_type'] = $recipientRow[PR_ADDRTYPE] ?? '';
3713
				$props['object_type'] = $recipientRow[PR_OBJECT_TYPE] ?? MAPI_MAILUSER;
3714
				$props['recipient_type'] = $recipientRow[PR_RECIPIENT_TYPE];
3715
				$props['display_type'] = $recipientRow[PR_DISPLAY_TYPE] ?? DT_MAILUSER;
3716
				$props['display_type_ex'] = $recipientRow[PR_DISPLAY_TYPE_EX] ?? DT_MAILUSER;
3717
3718
				if (isset($recipientRow[PR_RECIPIENT_FLAGS])) {
3719
					$props['recipient_flags'] = $recipientRow[PR_RECIPIENT_FLAGS];
3720
				}
3721
3722
				if (isset($recipientRow[PR_ENTRYID])) {
3723
					$props['entryid'] = bin2hex($recipientRow[PR_ENTRYID]);
3724
3725
					// Get the SMTP address from the addressbook if no address is found
3726
					if (empty($props['smtp_address']) && ($recipientRow[PR_ADDRTYPE] == 'EX' || $props['address_type'] === 'ZARAFA')) {
3727
						$recipientSearchKey = isset($recipientRow[PR_SEARCH_KEY]) ? $recipientRow[PR_SEARCH_KEY] : false;
3728
						$props['smtp_address'] = $this->getEmailAddress($recipientRow[PR_ENTRYID], $recipientSearchKey);
3729
					}
3730
				}
3731
3732
				// smtp address is still empty(in case of external email address) than
3733
				// value of email address is copied into smtp address.
3734
				if ($props['address_type'] == 'SMTP' && empty($props['smtp_address'])) {
3735
					$props['smtp_address'] = $props['email_address'];
3736
				}
3737
3738
				// PST importer imports items without an entryid and as SMTP recipient, this causes issues for
3739
				// opening meeting requests with removed users as recipient.
3740
				// gromox-kdb2mt might import items without an entryid and
3741
				// PR_ADDRTYPE 'ZARAFA' which causes issues when opening such messages.
3742
				if (empty($props['entryid']) && ($props['address_type'] === 'SMTP' || $props['address_type'] === 'ZARAFA')) {
3743
					$props['entryid'] = bin2hex(mapi_createoneoff($props['display_name'], $props['address_type'], $props['smtp_address'], MAPI_UNICODE));
3744
				}
3745
3746
				// Set propose new time properties
3747
				if (isset($recipientRow[PR_RECIPIENT_PROPOSED], $recipientRow[PR_RECIPIENT_PROPOSEDSTARTTIME], $recipientRow[PR_RECIPIENT_PROPOSEDENDTIME])) {
3748
					$props['proposednewtime_start'] = $recipientRow[PR_RECIPIENT_PROPOSEDSTARTTIME];
3749
					$props['proposednewtime_end'] = $recipientRow[PR_RECIPIENT_PROPOSEDENDTIME];
3750
					$props['proposednewtime'] = $recipientRow[PR_RECIPIENT_PROPOSED];
3751
				}
3752
				else {
3753
					$props['proposednewtime'] = false;
3754
				}
3755
3756
				$props['recipient_trackstatus'] = $recipientRow[PR_RECIPIENT_TRACKSTATUS] ?? olRecipientTrackStatusNone;
3757
				$props['recipient_trackstatus_time'] = $recipientRow[PR_RECIPIENT_TRACKSTATUS_TIME] ?? null;
3758
3759
				array_push($recipientsInfo, ["props" => $props]);
3760
			}
3761
		}
3762
3763
		return $recipientsInfo;
3764
	}
3765
3766
	/**
3767
	 * Extracts email address from PR_SEARCH_KEY property if possible.
3768
	 *
3769
	 * @param string $searchKey The PR_SEARCH_KEY property
3770
	 *
3771
	 * @return string email address if possible else return empty string
3772
	 */
3773
	public function getEmailAddressFromSearchKey($searchKey) {
3774
		if (strpos($searchKey, ':') !== false && strpos($searchKey, '@') !== false) {
3775
			return trim(strtolower(explode(':', $searchKey)[1]));
3776
		}
3777
3778
		return "";
3779
	}
3780
3781
	/**
3782
	 * Create a MAPI recipient list from an XML array structure.
3783
	 *
3784
	 * This functions is used for setting the recipient table of a message.
3785
	 *
3786
	 * @param array  $recipientList a list of recipients as XML array structure
3787
	 * @param string $opType        the type of operation that will be performed on this recipient list (add, remove, modify)
3788
	 * @param bool   $send          true if we are going to send this message else false
3789
	 * @param mixed  $isException
3790
	 *
3791
	 * @return array list of recipients with the correct MAPI properties ready for mapi_message_modifyrecipients()
3792
	 */
3793
	public function createRecipientList($recipientList, $opType = 'add', $isException = false, $send = false) {
3794
		$recipients = [];
3795
		$addrbook = $GLOBALS["mapisession"]->getAddressbook();
3796
3797
		foreach ($recipientList as $recipientItem) {
3798
			if ($isException) {
3799
				// We do not add organizer to exception msg in organizer's calendar.
3800
				if (isset($recipientItem[PR_RECIPIENT_FLAGS]) && $recipientItem[PR_RECIPIENT_FLAGS] == (recipSendable | recipOrganizer)) {
3801
					continue;
3802
				}
3803
3804
				$recipient[PR_RECIPIENT_FLAGS] = (recipSendable | recipExceptionalResponse | recipReserved);
3805
			}
3806
3807
			if (!empty($recipientItem["smtp_address"]) && empty($recipientItem["email_address"])) {
3808
				$recipientItem["email_address"] = $recipientItem["smtp_address"];
3809
			}
3810
3811
			// When saving a mail we can allow an empty email address or entryid, but not when sending it
3812
			if ($send && empty($recipientItem["email_address"]) && empty($recipientItem['entryid'])) {
3813
				return;
3814
			}
3815
3816
			// to modify or remove recipients we need PR_ROWID property
3817
			if ($opType !== 'add' && (!isset($recipientItem['rowid']) || !is_numeric($recipientItem['rowid']))) {
3818
				continue;
3819
			}
3820
3821
			if (isset($recipientItem['search_key']) && !empty($recipientItem['search_key'])) {
3822
				// search keys sent from client are in hex format so convert it to binary format
3823
				$recipientItem['search_key'] = hex2bin($recipientItem['search_key']);
3824
			}
3825
3826
			if (isset($recipientItem["entryid"]) && !empty($recipientItem["entryid"])) {
3827
				// entryids sent from client are in hex format so convert it to binary format
3828
				$recipientItem["entryid"] = hex2bin($recipientItem["entryid"]);
3829
3830
			// Only resolve the recipient when no entryid is set
3831
			}
3832
			else {
3833
				/**
3834
				 * For external contacts (DT_REMOTE_MAILUSER) email_address contains display name of contact
3835
				 * which is obviously not unique so for that we need to resolve address based on smtp_address
3836
				 * if provided.
3837
				 */
3838
				$addressToResolve = $recipientItem["email_address"];
3839
				if (!empty($recipientItem["smtp_address"])) {
3840
					$addressToResolve = $recipientItem["smtp_address"];
3841
				}
3842
3843
				// Resolve the recipient
3844
				$user = [[PR_DISPLAY_NAME => $addressToResolve]];
3845
3846
				try {
3847
					// resolve users based on email address with strict matching
3848
					$user = mapi_ab_resolvename($addrbook, $user, EMS_AB_ADDRESS_LOOKUP);
3849
					$recipientItem["display_name"] = $user[0][PR_DISPLAY_NAME];
3850
					$recipientItem["entryid"] = $user[0][PR_ENTRYID];
3851
					$recipientItem["search_key"] = $user[0][PR_SEARCH_KEY];
3852
					$recipientItem["email_address"] = $user[0][PR_EMAIL_ADDRESS];
3853
					$recipientItem["address_type"] = $user[0][PR_ADDRTYPE];
3854
				}
3855
				catch (MAPIException $e) {
3856
					// recipient is not resolved or it got multiple matches,
3857
					// so ignore this error and continue with normal processing
3858
					$e->setHandled();
3859
				}
3860
			}
3861
3862
			$recipient = [];
3863
			$recipient[PR_DISPLAY_NAME] = $recipientItem["display_name"];
3864
			$recipient[PR_DISPLAY_TYPE] = $recipientItem["display_type"];
3865
			$recipient[PR_DISPLAY_TYPE_EX] = $recipientItem["display_type_ex"];
3866
			$recipient[PR_EMAIL_ADDRESS] = $recipientItem["email_address"];
3867
			$recipient[PR_SMTP_ADDRESS] = $recipientItem["smtp_address"];
3868
			if (isset($recipientItem["search_key"])) {
3869
				$recipient[PR_SEARCH_KEY] = $recipientItem["search_key"];
3870
			}
3871
			$recipient[PR_ADDRTYPE] = $recipientItem["address_type"];
3872
			$recipient[PR_OBJECT_TYPE] = $recipientItem["object_type"];
3873
			$recipient[PR_RECIPIENT_TYPE] = $recipientItem["recipient_type"];
3874
			if ($opType != 'add') {
3875
				$recipient[PR_ROWID] = $recipientItem["rowid"];
3876
			}
3877
3878
			if (isset($recipientItem["recipient_status"]) && !empty($recipientItem["recipient_status"])) {
3879
				$recipient[PR_RECIPIENT_TRACKSTATUS] = $recipientItem["recipient_status"];
3880
			}
3881
3882
			if (isset($recipientItem["recipient_flags"]) && !empty($recipient["recipient_flags"])) {
3883
				$recipient[PR_RECIPIENT_FLAGS] = $recipientItem["recipient_flags"];
3884
			}
3885
			else {
3886
				$recipient[PR_RECIPIENT_FLAGS] = recipSendable;
3887
			}
3888
3889
			if (isset($recipientItem["proposednewtime"]) && !empty($recipientItem["proposednewtime"]) && isset($recipientItem["proposednewtime_start"], $recipientItem["proposednewtime_end"])) {
3890
				$recipient[PR_RECIPIENT_PROPOSED] = $recipientItem["proposednewtime"];
3891
				$recipient[PR_RECIPIENT_PROPOSEDSTARTTIME] = $recipientItem["proposednewtime_start"];
3892
				$recipient[PR_RECIPIENT_PROPOSEDENDTIME] = $recipientItem["proposednewtime_end"];
3893
			}
3894
			else {
3895
				$recipient[PR_RECIPIENT_PROPOSED] = false;
3896
			}
3897
3898
			// Use given entryid if possible, otherwise create a one-off entryid
3899
			if (isset($recipientItem["entryid"]) && !empty($recipientItem["entryid"])) {
3900
				$recipient[PR_ENTRYID] = $recipientItem["entryid"];
3901
			}
3902
			elseif ($send) {
3903
				// only create one-off entryid when we are actually sending the message not saving it
3904
				$recipient[PR_ENTRYID] = mapi_createoneoff($recipient[PR_DISPLAY_NAME], $recipient[PR_ADDRTYPE], $recipient[PR_EMAIL_ADDRESS]);
3905
			}
3906
3907
			array_push($recipients, $recipient);
3908
		}
3909
3910
		return $recipients;
3911
	}
3912
3913
	/**
3914
	 * Function which is get store of external resource from entryid.
3915
	 *
3916
	 * @param string $entryid entryid of the shared folder record
3917
	 *
3918
	 * @return object/boolean $store store of shared folder if found otherwise false
0 ignored issues
show
Documentation Bug introduced by
The doc comment object/boolean at position 0 could not be parsed: Unknown type name 'object/boolean' at position 0 in object/boolean.
Loading history...
3919
	 *
3920
	 * FIXME: this function is pretty inefficient, since it opens the store for every
3921
	 * shared user in the worst case. Might be that we could extract the guid from
3922
	 * the $entryid and compare it and fetch the guid from the userentryid.
3923
	 * C++ has a GetStoreGuidFromEntryId() function.
3924
	 */
3925
	public function getOtherStoreFromEntryid($entryid) {
3926
		// Get all external user from settings
3927
		$otherUsers = $GLOBALS['mapisession']->retrieveOtherUsersFromSettings();
3928
3929
		// Fetch the store of each external user and
3930
		// find the record with given entryid
3931
		foreach ($otherUsers as $sharedUser => $values) {
3932
			$userEntryid = mapi_msgstore_createentryid($GLOBALS['mapisession']->getDefaultMessageStore(), $sharedUser);
3933
			$store = $GLOBALS['mapisession']->openMessageStore($userEntryid);
3934
			if ($GLOBALS['entryid']->hasContactProviderGUID($entryid)) {
3935
				$entryid = $GLOBALS["entryid"]->unwrapABEntryIdObj($entryid);
3936
			}
3937
3938
			try {
3939
				$record = mapi_msgstore_openentry($store, hex2bin($entryid));
3940
				if ($record) {
3941
					return $store;
3942
				}
3943
			}
3944
			catch (MAPIException $e) {
0 ignored issues
show
Coding Style Comprehensibility introduced by
Consider adding a comment why this CATCH block is empty.
Loading history...
3945
			}
3946
		}
3947
3948
		return false;
3949
	}
3950
3951
	/**
3952
	 * Function which is use to check the contact item (distribution list / contact)
3953
	 * belongs to any external folder or not.
3954
	 *
3955
	 * @param string $entryid entryid of contact item
3956
	 *
3957
	 * @return bool true if contact item from external folder otherwise false.
3958
	 *
3959
	 * FIXME: this function is broken and returns true if the user is a contact in a shared store.
3960
	 * Also research if we cannot just extract the GUID and compare it with our own GUID.
3961
	 * FIXME This function should be renamed, because it's also meant for normal shared folder contacts.
3962
	 */
3963
	public function isExternalContactItem($entryid) {
3964
		try {
3965
			if (!$GLOBALS['entryid']->hasContactProviderGUID(bin2hex($entryid))) {
3966
				$entryid = hex2bin($GLOBALS['entryid']->wrapABEntryIdObj(bin2hex($entryid), MAPI_DISTLIST));
3967
			}
3968
			mapi_ab_openentry($GLOBALS["mapisession"]->getAddressbook(), $entryid);
3969
		}
3970
		catch (MAPIException $e) {
3971
			return true;
3972
		}
3973
3974
		return false;
3975
	}
3976
3977
	/**
3978
	 * Get object type from distlist type of member of distribution list.
3979
	 *
3980
	 * @param int $distlistType distlist type of distribution list
3981
	 *
3982
	 * @return int object type of distribution list
3983
	 */
3984
	public function getObjectTypeFromDistlistType($distlistType) {
3985
		switch ($distlistType) {
3986
			case DL_DIST :
3987
			case DL_DIST_AB :
3988
				return MAPI_DISTLIST;
3989
3990
			case DL_USER :
3991
			case DL_USER2 :
3992
			case DL_USER3 :
3993
			case DL_USER_AB :
3994
			default:
3995
				return MAPI_MAILUSER;
3996
		}
3997
	}
3998
3999
	/**
4000
	 * Function which fetches all members of shared/internal(Local Contact Folder)
4001
	 * folder's distribution list.
4002
	 *
4003
	 * @param string $distlistEntryid entryid of distribution list
4004
	 * @param bool   $isRecursive     if there is/are distribution list(s) inside the distlist
4005
	 *                                to expand all the members, pass true to expand distlist recursively, false to not expand
4006
	 *
4007
	 * @return array $members all members of a distribution list
4008
	 */
4009
	public function expandDistList($distlistEntryid, $isRecursive = false) {
4010
		$properties = $GLOBALS['properties']->getDistListProperties();
4011
		$eidObj = $GLOBALS['entryid']->createABEntryIdObj($distlistEntryid);
4012
		$extidObj = $GLOBALS['entryid']->createMessageEntryIdObj($eidObj['extid']);
4013
4014
		$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
4015
		$contactFolderId = $this->getPropertiesFromStoreRoot($store, [PR_IPM_CONTACT_ENTRYID]);
4016
		$contactFolderidObj = $GLOBALS['entryid']->createFolderEntryIdObj(bin2hex($contactFolderId[PR_IPM_CONTACT_ENTRYID]));
4017
4018
		if ($contactFolderidObj['providerguid'] != $extidObj['providerguid'] && $contactFolderidObj['folderdbguid'] != $extidObj['folderdbguid']) {
4019
			$storelist = $GLOBALS["mapisession"]->getAllMessageStores();
4020
			foreach ($storelist as $storeObj) {
4021
				$contactFolderId = $this->getPropertiesFromStoreRoot($storeObj, [PR_IPM_CONTACT_ENTRYID]);
4022
				$contactFolderidObj = $GLOBALS['entryid']->createFolderEntryIdObj(bin2hex($contactFolderId[PR_IPM_CONTACT_ENTRYID]));
4023
				if ($contactFolderidObj['providerguid'] == $extidObj['providerguid'] && $contactFolderidObj['folderdbguid'] == $extidObj['folderdbguid']) {
4024
					$store = $storeObj;
4025
					break;
4026
				}
4027
			}
4028
		}
4029
4030
		$distlistEntryid = $GLOBALS["entryid"]->unwrapABEntryIdObj($distlistEntryid);
4031
4032
		try {
4033
			$distlist = $this->openMessage($store, hex2bin($distlistEntryid));
4034
		}
4035
		catch (Exception $e) {
4036
			// the distribution list is in a public folder
4037
			$distlist = $this->openMessage($GLOBALS["mapisession"]->getPublicMessageStore(), hex2bin($distlistEntryid));
4038
		}
4039
4040
		// Retrieve the members from distribution list.
4041
		$distlistMembers = $this->getMembersFromDistributionList($store, $distlist, $properties, $isRecursive);
0 ignored issues
show
Bug introduced by
$distlist of type object is incompatible with the type resource expected by parameter $message of Operations::getMembersFromDistributionList(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

4041
		$distlistMembers = $this->getMembersFromDistributionList($store, /** @scrutinizer ignore-type */ $distlist, $properties, $isRecursive);
Loading history...
4042
		$recipients = [];
4043
4044
		foreach ($distlistMembers as $member) {
4045
			$props = $this->convertDistlistMemberToRecipient($store, $member);
4046
			array_push($recipients, $props);
4047
		}
4048
4049
		return $recipients;
4050
	}
4051
4052
	/**
4053
	 * Function Which convert the shared/internal(local contact folder distlist)
4054
	 * folder's distlist members to recipient type.
4055
	 *
4056
	 * @param mapistore $store  MAPI store of the message
4057
	 * @param array     $member of distribution list contacts
4058
	 *
4059
	 * @return array members properties converted in to recipient
4060
	 */
4061
	public function convertDistlistMemberToRecipient($store, $member) {
4062
		$entryid = $member["props"]["entryid"];
4063
		$memberProps = $member["props"];
4064
		$props = [];
4065
4066
		$distlistType = $memberProps["distlist_type"];
4067
		$addressType = $memberProps["address_type"];
4068
4069
		$isGABDistlList = $distlistType == DL_DIST_AB && $addressType === "EX";
4070
		$isLocalDistlist = $distlistType == DL_DIST && $addressType === "MAPIPDL";
4071
4072
		$isGABContact = $memberProps["address_type"] === 'EX';
4073
		// If distlist_type is 0 then it means distlist member is external contact.
4074
		// For mare please read server/core/constants.php
4075
		$isLocalContact = !$isGABContact && $distlistType !== 0;
4076
4077
		/*
4078
		 * If distribution list belongs to the local contact folder then open that contact and
4079
		 * retrieve all properties which requires to prepare ideal recipient to send mail.
4080
		 */
4081
		if ($isLocalDistlist) {
4082
			try {
4083
				$distlist = $this->openMessage($store, hex2bin($entryid));
4084
			}
4085
			catch (Exception $e) {
4086
				$distlist = $this->openMessage($GLOBALS["mapisession"]->getPublicMessageStore(), hex2bin($entryid));
4087
			}
4088
4089
			$abProps = $this->getProps($distlist, $GLOBALS['properties']->getRecipientProperties());
4090
			$props = $abProps["props"];
4091
4092
			$props["entryid"] = $GLOBALS["entryid"]->wrapABEntryIdObj($abProps["entryid"], MAPI_DISTLIST);
4093
			$props["display_type"] = DT_DISTLIST;
4094
			$props["display_type_ex"] = DT_DISTLIST;
4095
			$props["address_type"] = $memberProps["address_type"];
4096
			$emailAddress = !empty($memberProps["email_address"]) ? $memberProps["email_address"] : "";
4097
			$props["smtp_address"] = $emailAddress;
4098
			$props["email_address"] = $emailAddress;
4099
		}
4100
		elseif ($isGABContact || $isGABDistlList) {
4101
			/*
4102
			 * If contact or distribution list belongs to GAB then open that contact and
4103
			 * retrieve all properties which requires to prepare ideal recipient to send mail.
4104
			 */
4105
			try {
4106
				$abentry = mapi_ab_openentry($GLOBALS["mapisession"]->getAddressbook(), hex2bin($entryid));
4107
				$abProps = $this->getProps($abentry, $GLOBALS['properties']->getRecipientProperties());
4108
				$props = $abProps["props"];
4109
				$props["entryid"] = $abProps["entryid"];
4110
			}
4111
			catch (Exception $e) {
4112
				// Throw MAPI_E_NOT_FOUND or MAPI_E_UNKNOWN_ENTRYID it may possible that contact is already
4113
				// deleted from server. so just create recipient
4114
				// with existing information of distlist member.
4115
				// recipient is not valid so sender get report mail for that
4116
				// particular recipient to inform that recipient is not exist.
4117
				if ($e->getCode() == MAPI_E_NOT_FOUND || $e->getCode() == MAPI_E_UNKNOWN_ENTRYID) {
4118
					$props["entryid"] = $memberProps["entryid"];
4119
					$props["display_type"] = DT_MAILUSER;
4120
					$props["display_type_ex"] = DT_MAILUSER;
4121
					$props["display_name"] = $memberProps["display_name"];
4122
					$props["smtp_address"] = $memberProps["email_address"];
4123
					$props["email_address"] = $memberProps["email_address"];
4124
					$props["address_type"] = !empty($memberProps["address_type"]) ? $memberProps["address_type"] : 'SMTP';
4125
				}
4126
				else {
4127
					throw $e;
4128
				}
4129
			}
4130
		}
4131
		else {
4132
			/*
4133
			 * If contact is belongs to local/shared folder then prepare ideal recipient to send mail
4134
			 * as per the contact type.
4135
			 */
4136
			$props["entryid"] = $isLocalContact ? $GLOBALS["entryid"]->wrapABEntryIdObj($entryid, MAPI_MAILUSER) : $memberProps["entryid"];
4137
			$props["display_type"] = DT_MAILUSER;
4138
			$props["display_type_ex"] = $isLocalContact ? DT_MAILUSER : DT_REMOTE_MAILUSER;
4139
			$props["display_name"] = $memberProps["display_name"];
4140
			$props["smtp_address"] = $memberProps["email_address"];
4141
			$props["email_address"] = $memberProps["email_address"];
4142
			$props["address_type"] = !empty($memberProps["address_type"]) ? $memberProps["address_type"] : 'SMTP';
4143
		}
4144
4145
		// Set object type property into each member of distribution list
4146
		$props["object_type"] = $this->getObjectTypeFromDistlistType($memberProps["distlist_type"]);
4147
4148
		return $props;
4149
	}
4150
4151
	/**
4152
	 * Parse reply-to value from PR_REPLY_RECIPIENT_ENTRIES property.
4153
	 *
4154
	 * @param string $flatEntryList the PR_REPLY_RECIPIENT_ENTRIES value
4155
	 *
4156
	 * @return array list of recipients in array structure
4157
	 */
4158
	public function readReplyRecipientEntry($flatEntryList) {
4159
		$addressbook = $GLOBALS["mapisession"]->getAddressbook();
4160
		$entryids = [];
4161
4162
		// Unpack number of entries, the byte count and the entries
4163
		$unpacked = unpack('V1cEntries/V1cbEntries/a*', $flatEntryList);
4164
4165
		// $unpacked consists now of the following fields:
4166
		//	'cEntries' => The number of entryids in our list
4167
		//	'cbEntries' => The total number of bytes inside 'abEntries'
4168
		//	'abEntries' => The list of Entryids
4169
		//
4170
		// Each 'abEntries' can be broken down into groups of 2 fields
4171
		//	'cb' => The length of the entryid
4172
		//	'entryid' => The entryid
4173
4174
		$position = 8; // sizeof(cEntries) + sizeof(cbEntries);
4175
4176
		for ($i = 0, $len = $unpacked['cEntries']; $i < $len; ++$i) {
4177
			// Obtain the size for the current entry
4178
			$size = unpack('a' . $position . '/V1cb/a*', $flatEntryList);
4179
4180
			// We have the size, now can obtain the bytes
4181
			$entryid = unpack('a' . $position . '/V1cb/a' . $size['cb'] . 'entryid/a*', $flatEntryList);
4182
4183
			// unpack() will remove the NULL characters, readd
4184
			// them until we match the 'cb' length.
4185
			while ($entryid['cb'] > strlen($entryid['entryid'])) {
4186
				$entryid['entryid'] .= chr(0x00);
4187
			}
4188
4189
			$entryids[] = $entryid['entryid'];
4190
4191
			// sizeof(cb) + strlen(entryid)
4192
			$position += 4 + $entryid['cb'];
4193
		}
4194
4195
		$recipients = [];
4196
		foreach ($entryids as $entryid) {
4197
			// Check if entryid extracted, since unpack errors can not be caught.
4198
			if (!$entryid) {
4199
				continue;
4200
			}
4201
4202
			// Handle malformed entryids
4203
			try {
4204
				$entry = mapi_ab_openentry($addressbook, $entryid);
4205
				$props = mapi_getprops($entry, [PR_ENTRYID, PR_SEARCH_KEY, PR_OBJECT_TYPE, PR_DISPLAY_NAME, PR_ADDRTYPE, PR_EMAIL_ADDRESS]);
4206
4207
				// Put data in recipient array
4208
				$recipients[] = $this->composeRecipient(count($recipients), $props);
4209
			}
4210
			catch (MAPIException $e) {
4211
				try {
4212
					$oneoff = mapi_parseoneoff($entryid);
4213
				}
4214
				catch(MAPIException $ex) {
4215
					error_log(sprintf(
4216
						"readReplyRecipientEntry unable to open AB entry and mapi_parseoneoff failed: %s - %s",
4217
						get_mapi_error_name($ex->getCode()),
4218
						$ex->getDisplayMessage()
4219
					));
4220
					continue;
4221
				}
4222
				if (!isset($oneoff['address'])) {
4223
					error_log(sprintf(
4224
						"readReplyRecipientEntry unable to open AB entry and oneoff address is not available: %s - %s ",
4225
						get_mapi_error_name($e->getCode()),
4226
						$e->getDisplayMessage()
4227
				));
4228
4229
					continue;
4230
				}
4231
4232
				$entryid = mapi_createoneoff($oneoff['name'] ?? '', $oneoff['type'] ?? 'SMTP', $oneoff['address']);
4233
				$props = [
4234
					PR_ENTRYID => $entryid,
4235
					PR_DISPLAY_NAME => !empty($oneoff['name']) ? $oneoff['name'] : $oneoff['address'],
4236
					PR_ADDRTYPE => $oneoff['type'] ?? 'SMTP',
4237
					PR_EMAIL_ADDRESS => $oneoff['address'],
4238
				];
4239
				$recipients[] = $this->composeRecipient(count($recipients), $props);
4240
			}
4241
		}
4242
4243
		return $recipients;
4244
	}
4245
4246
	private function composeRecipient($rowid, $props) {
4247
		return [
4248
			'rowid' => $rowid,
4249
			'props' => [
4250
				'entryid' => !empty($props[PR_ENTRYID]) ? bin2hex($props[PR_ENTRYID]) : '',
4251
				'object_type' => $props[PR_OBJECT_TYPE] ?? MAPI_MAILUSER,
4252
				'search_key' => $props[PR_SEARCH_KEY] ?? '',
4253
				'display_name' => !empty($props[PR_DISPLAY_NAME]) ? $props[PR_DISPLAY_NAME] : $props[PR_EMAIL_ADDRESS],
4254
				'address_type' => $props[PR_ADDRTYPE] ?? 'SMTP',
4255
				'email_address' => $props[PR_EMAIL_ADDRESS] ?? '',
4256
				'smtp_address' => $props[PR_EMAIL_ADDRESS] ?? '',
4257
			],
4258
		];
4259
	}
4260
4261
	/**
4262
	 * Build full-page HTML from the TinyMCE HTML.
4263
	 *
4264
	 * This function basically takes the generated HTML from TinyMCE and embeds it in
4265
	 * a standalone HTML page (including header and CSS) to form.
4266
	 *
4267
	 * @param string $body  This is the HTML created by the TinyMCE
4268
	 * @param string $title Optional, this string is placed in the <title>
4269
	 *
4270
	 * @return string full HTML message
4271
	 */
4272
	public function generateBodyHTML($body, $title = "grommunio-web") {
4273
		$html = "<!DOCTYPE html>" .
4274
				"<html>\n" .
4275
				"<head>\n" .
4276
				"  <meta name=\"Generator\" content=\"grommunio-web v" . trim(file_get_contents('version')) . "\">\n" .
4277
				"  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n" .
4278
				"  <title>" . htmlspecialchars($title) . "</title>\n";
4279
4280
		$html .= "</head>\n" .
4281
				"<body>\n" .
4282
				$body . "\n" .
4283
				"</body>\n" .
4284
				"</html>";
4285
4286
		return $html;
4287
	}
4288
4289
	/**
4290
	 * Calculate the total size for all items in the given folder.
4291
	 *
4292
	 * @param mapifolder $folder The folder for which the size must be calculated
0 ignored issues
show
Bug introduced by
The type mapifolder was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
4293
	 *
4294
	 * @return number The folder size
4295
	 */
4296
	public function calcFolderMessageSize($folder) {
4297
		$folderProps = mapi_getprops($folder, [PR_MESSAGE_SIZE_EXTENDED]);
4298
		if (isset($folderProps[PR_MESSAGE_SIZE_EXTENDED])) {
4299
			return $folderProps[PR_MESSAGE_SIZE_EXTENDED];
4300
		}
4301
4302
		return 0;
4303
	}
4304
4305
	/**
4306
	 * Detect plaintext body type of message.
4307
	 *
4308
	 * @param mapimessage $message MAPI message resource to check
4309
	 *
4310
	 * @return bool TRUE if the message is a plaintext message, FALSE if otherwise
4311
	 */
4312
	public function isPlainText($message) {
4313
		$props = mapi_getprops($message, [PR_NATIVE_BODY_INFO]);
4314
		if (isset($props[PR_NATIVE_BODY_INFO]) && $props[PR_NATIVE_BODY_INFO] == 1) {
4315
			return true;
4316
		}
4317
4318
		return false;
4319
	}
4320
4321
	/**
4322
	 * Parse email recipient list and add all e-mail addresses to the recipient history.
4323
	 *
4324
	 * The recipient history is used for auto-suggestion when writing e-mails. This function
4325
	 * opens the recipient history property (PR_EC_RECIPIENT_HISTORY_JSON) and updates or appends
4326
	 * it with the passed email addresses.
4327
	 *
4328
	 * @param array $recipients list of recipients
4329
	 */
4330
	public function addRecipientsToRecipientHistory($recipients) {
4331
		$emailAddress = [];
4332
		foreach ($recipients as $key => $value) {
4333
			$emailAddresses[] = $value['props'];
4334
		}
4335
4336
		if (empty($emailAddresses)) {
4337
			return;
4338
		}
4339
4340
		// Retrieve the recipient history
4341
		$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
4342
		$storeProps = mapi_getprops($store, [PR_EC_RECIPIENT_HISTORY_JSON]);
4343
		$recipient_history = [];
4344
4345
		if (isset($storeProps[PR_EC_RECIPIENT_HISTORY_JSON]) || propIsError(PR_EC_RECIPIENT_HISTORY_JSON, $storeProps) == MAPI_E_NOT_ENOUGH_MEMORY) {
4346
			$datastring = streamProperty($store, PR_EC_RECIPIENT_HISTORY_JSON);
4347
4348
			if (!empty($datastring)) {
4349
				$recipient_history = json_decode_data($datastring, true);
4350
			}
4351
		}
4352
4353
		$l_aNewHistoryItems = [];
4354
		// Loop through all new recipients
4355
		for ($i = 0, $len = count($emailAddresses); $i < $len; ++$i) {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $emailAddresses seems to be defined by a foreach iteration on line 4332. Are you sure the iterator is never empty, otherwise this variable is not defined?
Loading history...
4356
			if ($emailAddresses[$i]['address_type'] == 'SMTP') {
4357
				$emailAddress = $emailAddresses[$i]['smtp_address'];
4358
				if (empty($emailAddress)) {
4359
					$emailAddress = $emailAddresses[$i]['email_address'];
4360
				}
4361
			}
4362
			else { // address_type == 'EX' || address_type == 'MAPIPDL'
4363
				$emailAddress = $emailAddresses[$i]['email_address'];
4364
				if (empty($emailAddress)) {
4365
					$emailAddress = $emailAddresses[$i]['smtp_address'];
4366
				}
4367
			}
4368
4369
			// If no email address property is found, then we can't
4370
			// generate a valid suggestion.
4371
			if (empty($emailAddress)) {
4372
				continue;
4373
			}
4374
4375
			$l_bFoundInHistory = false;
4376
			// Loop through all the recipients in history
4377
			if (is_array($recipient_history) && !empty($recipient_history['recipients'])) {
4378
				for ($j = 0, $lenJ = count($recipient_history['recipients']); $j < $lenJ; ++$j) {
4379
					// Email address already found in history
4380
					$l_bFoundInHistory = false;
4381
4382
					// The address_type property must exactly match,
4383
					// when it does, a recipient matches the suggestion
4384
					// if it matches to either the email_address or smtp_address.
4385
					if ($emailAddresses[$i]['address_type'] === $recipient_history['recipients'][$j]['address_type']) {
4386
						if ($emailAddress == $recipient_history['recipients'][$j]['email_address'] ||
4387
							$emailAddress == $recipient_history['recipients'][$j]['smtp_address']) {
4388
							$l_bFoundInHistory = true;
4389
						}
4390
					}
4391
4392
					if ($l_bFoundInHistory === true) {
4393
						// Check if a name has been supplied.
4394
						$newDisplayName = trim($emailAddresses[$i]['display_name']);
4395
						if (!empty($newDisplayName)) {
4396
							$oldDisplayName = trim($recipient_history['recipients'][$j]['display_name']);
4397
4398
							// Check if the name is not the same as the email address
4399
							if ($newDisplayName != $emailAddresses[$i]['smtp_address']) {
4400
								$recipient_history['recipients'][$j]['display_name'] = $newDisplayName;
4401
							// Check if the recipient history has no name for this email
4402
							}
4403
							elseif (empty($oldDisplayName)) {
4404
								$recipient_history['recipients'][$j]['display_name'] = $newDisplayName;
4405
							}
4406
						}
4407
						++$recipient_history['recipients'][$j]['count'];
4408
						$recipient_history['recipients'][$j]['last_used'] = time();
4409
						break;
4410
					}
4411
				}
4412
			}
4413
			if (!$l_bFoundInHistory && !isset($l_aNewHistoryItems[$emailAddress])) {
4414
				$l_aNewHistoryItems[$emailAddress] = [
4415
					'display_name' => $emailAddresses[$i]['display_name'],
4416
					'smtp_address' => $emailAddresses[$i]['smtp_address'],
4417
					'email_address' => $emailAddresses[$i]['email_address'],
4418
					'address_type' => $emailAddresses[$i]['address_type'],
4419
					'count' => 1,
4420
					'last_used' => time(),
4421
					'object_type' => $emailAddresses[$i]['object_type'],
4422
				];
4423
			}
4424
		}
4425
		if (!empty($l_aNewHistoryItems)) {
4426
			foreach ($l_aNewHistoryItems as $l_aValue) {
4427
				$recipient_history['recipients'][] = $l_aValue;
4428
			}
4429
		}
4430
4431
		$l_sNewRecipientHistoryJSON = json_encode($recipient_history);
4432
4433
		$stream = mapi_openproperty($store, PR_EC_RECIPIENT_HISTORY_JSON, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
4434
		mapi_stream_setsize($stream, strlen($l_sNewRecipientHistoryJSON));
4435
		mapi_stream_write($stream, $l_sNewRecipientHistoryJSON);
4436
		mapi_stream_commit($stream);
4437
		mapi_savechanges($store);
4438
	}
4439
4440
	/**
4441
	 * Get the SMTP e-mail of an addressbook entry.
4442
	 *
4443
	 * @param string $entryid Addressbook entryid of object
4444
	 *
4445
	 * @return string SMTP e-mail address of that entry or FALSE on error
4446
	 */
4447
	public function getEmailAddressFromEntryID($entryid) {
4448
		try {
4449
			$mailuser = mapi_ab_openentry($GLOBALS["mapisession"]->getAddressbook(), $entryid);
4450
		}
4451
		catch (MAPIException $e) {
4452
			// if any invalid entryid is passed in this function then it should silently ignore it
4453
			// and continue with execution
4454
			if ($e->getCode() == MAPI_E_UNKNOWN_ENTRYID) {
4455
				$e->setHandled();
4456
4457
				return "";
4458
			}
4459
		}
4460
4461
		if (!isset($mailuser)) {
4462
			return "";
4463
		}
4464
4465
		$abprops = mapi_getprops($mailuser, [PR_SMTP_ADDRESS, PR_EMAIL_ADDRESS]);
4466
		if (isset($abprops[PR_SMTP_ADDRESS])) {
4467
			return $abprops[PR_SMTP_ADDRESS];
4468
		}
4469
		if (isset($abprops[PR_EMAIL_ADDRESS])) {
4470
			return $abprops[PR_EMAIL_ADDRESS];
4471
		}
4472
4473
		return "";
4474
	}
4475
4476
	/**
4477
	 * Function which fetches all members of a distribution list recursively.
4478
	 *
4479
	 * @param resource $store        MAPI Message Store Object
4480
	 * @param resource $message      the distribution list message
4481
	 * @param array    $properties   array of properties to get properties of distlist
4482
	 * @param bool     $isRecursive  function will be called recursively if there is/are
4483
	 *                               distribution list inside the distlist to expand all the members,
4484
	 *                               pass true to expand distlist recursively, false to not expand
4485
	 * @param array    $listEntryIDs list of already expanded Distribution list from contacts folder,
4486
	 *                               This parameter is used for recursive call of the function
4487
	 *
4488
	 * @return object $items all members of a distlist
4489
	 */
4490
	public function getMembersFromDistributionList($store, $message, $properties, $isRecursive = false, $listEntryIDs = []) {
4491
		$items = [];
4492
4493
		$props = mapi_getprops($message, [$properties['oneoff_members'], $properties['members'], PR_ENTRYID]);
4494
4495
		// only continue when we have something to expand
4496
		if (!isset($props[$properties['oneoff_members']]) || !isset($props[$properties['members']])) {
4497
			return [];
0 ignored issues
show
Bug Best Practice introduced by
The expression return array() returns the type array which is incompatible with the documented return type object.
Loading history...
4498
		}
4499
4500
		if ($isRecursive) {
4501
			// when opening sub message we will not have entryid, so use entryid only when we have it
4502
			if (isset($props[PR_ENTRYID])) {
4503
				// for preventing recursion we need to store entryids, and check if the same distlist is going to be expanded again
4504
				if (in_array($props[PR_ENTRYID], $listEntryIDs)) {
4505
					// don't expand a distlist that is already expanded
4506
					return [];
0 ignored issues
show
Bug Best Practice introduced by
The expression return array() returns the type array which is incompatible with the documented return type object.
Loading history...
4507
				}
4508
4509
				$listEntryIDs[] = $props[PR_ENTRYID];
4510
			}
4511
		}
4512
4513
		$members = $props[$properties['members']];
4514
4515
		// parse oneoff members
4516
		$oneoffmembers = [];
4517
		foreach ($props[$properties['oneoff_members']] as $key => $item) {
4518
			$oneoffmembers[$key] = mapi_parseoneoff($item);
4519
		}
4520
4521
		foreach ($members as $key => $item) {
4522
			/*
4523
			 * PHP 5.5.0 and greater has made the unpack function incompatible with previous versions by changing:
4524
			 * - a = code now retains trailing NULL bytes.
4525
			 * - A = code now strips all trailing ASCII whitespace (spaces, tabs, newlines, carriage
4526
			 * returns, and NULL bytes).
4527
			 * for more http://php.net/manual/en/function.unpack.php
4528
			 */
4529
			if (version_compare(PHP_VERSION, '5.5.0', '>=')) {
4530
				$parts = unpack('Vnull/A16guid/Ctype/a*entryid', $item);
4531
			}
4532
			else {
4533
				$parts = unpack('Vnull/A16guid/Ctype/A*entryid', $item);
4534
			}
4535
4536
			$memberItem = [];
4537
			$memberItem['props'] = [];
4538
			$memberItem['props']['distlist_type'] = $parts['type'];
4539
4540
			if ($parts['guid'] === hex2bin('812b1fa4bea310199d6e00dd010f5402')) {
4541
				// custom e-mail address (no user or contact)
4542
				$oneoff = mapi_parseoneoff($item);
4543
4544
				$memberItem['props']['display_name'] = $oneoff['name'];
4545
				$memberItem['props']['address_type'] = $oneoff['type'];
4546
				$memberItem['props']['email_address'] = $oneoff['address'];
4547
				$memberItem['props']['smtp_address'] = $oneoff['address'];
4548
				$memberItem['props']['entryid'] = bin2hex($members[$key]);
4549
4550
				$items[] = $memberItem;
4551
			}
4552
			else {
4553
				if ($parts['type'] === DL_DIST && $isRecursive) {
4554
					// Expand distribution list to get distlist members inside the distributionlist.
4555
					$distlist = mapi_msgstore_openentry($store, $parts['entryid']);
4556
					$items = array_merge($items, $this->getMembersFromDistributionList($store, $distlist, $properties, true, $listEntryIDs));
0 ignored issues
show
Bug introduced by
$this->getMembersFromDis...s, true, $listEntryIDs) of type object is incompatible with the type array expected by parameter $arrays of array_merge(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

4556
					$items = array_merge($items, /** @scrutinizer ignore-type */ $this->getMembersFromDistributionList($store, $distlist, $properties, true, $listEntryIDs));
Loading history...
4557
				}
4558
				else {
4559
					$memberItem['props']['entryid'] = bin2hex($parts['entryid']);
4560
					$memberItem['props']['display_name'] = $oneoffmembers[$key]['name'];
4561
					$memberItem['props']['address_type'] = $oneoffmembers[$key]['type'];
4562
					// distribution lists don't have valid email address so ignore that property
4563
4564
					if ($parts['type'] !== DL_DIST) {
4565
						$memberItem['props']['email_address'] = $oneoffmembers[$key]['address'];
4566
4567
						// internal members in distribution list don't have smtp address so add add that property
4568
						$memberProps = $this->convertDistlistMemberToRecipient($store, $memberItem);
0 ignored issues
show
Bug introduced by
$store of type resource is incompatible with the type mapistore expected by parameter $store of Operations::convertDistlistMemberToRecipient(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

4568
						$memberProps = $this->convertDistlistMemberToRecipient(/** @scrutinizer ignore-type */ $store, $memberItem);
Loading history...
4569
						$memberItem['props']['smtp_address'] = isset($memberProps["smtp_address"]) ? $memberProps["smtp_address"] : $memberProps["email_address"];
4570
					}
4571
4572
					$items[] = $memberItem;
4573
				}
4574
			}
4575
		}
4576
4577
		return $items;
4578
	}
4579
4580
	/**
4581
	 * Convert inline image <img src="data:image/mimetype;.date> links in HTML email
4582
	 * to CID embedded images. Which are supported in major mail clients or
4583
	 * providers such as outlook.com or gmail.com.
4584
	 *
4585
	 * grommunio Web now extracts the base64 image, saves it as hidden attachment,
4586
	 * replace the img src tag with the 'cid' which corresponds with the attachments
4587
	 * cid.
4588
	 *
4589
	 * @param MAPIMessage $message the distribution list message
4590
	 */
4591
	public function convertInlineImage($message) {
4592
		$body = streamProperty($message, PR_HTML);
4593
		$imageIDs = [];
4594
4595
		// Only load the DOM if the HTML contains a img or data:text/plain due to a bug
4596
		// in Chrome on Windows in combination with TinyMCE.
4597
		if (strpos($body, "img") !== false || strpos($body, "data:text/plain") !== false) {
4598
			$doc = new DOMDocument();
4599
			$cpprops = mapi_message_getprops($message, [PR_INTERNET_CPID]);
4600
			$codepage = isset($cpprops[PR_INTERNET_CPID]) ? $cpprops[PR_INTERNET_CPID] : 1252;
4601
			$hackEncoding = '<meta http-equiv="Content-Type" content="text/html; charset=' . Conversion::getCodepageCharset($codepage) . '">';
4602
			// TinyMCE does not generate valid HTML, so we must suppress warnings.
4603
			@$doc->loadHTML($hackEncoding . $body);
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition for loadHTML(). This can introduce security issues, and is generally not recommended. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unhandled  annotation

4603
			/** @scrutinizer ignore-unhandled */ @$doc->loadHTML($hackEncoding . $body);

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
4604
			$images = $doc->getElementsByTagName('img');
4605
			$saveChanges = false;
4606
4607
			foreach ($images as $image) {
4608
				$src = $image->getAttribute('src');
4609
4610
				if (strpos($src, "cid:") === false && (strpos($src, "data:image") !== false ||
4611
					strpos($body, "data:text/plain") !== false)) {
4612
					$saveChanges = true;
4613
4614
					// Extract mime type data:image/jpeg;
4615
					$firstOffset = strpos($src, '/') + 1;
4616
					$endOffset = strpos($src, ';');
4617
					$mimeType = substr($src, $firstOffset, $endOffset - $firstOffset);
4618
4619
					$dataPosition = strpos($src, ",");
4620
					// Extract encoded data
4621
					$rawImage = base64_decode(substr($src, $dataPosition + 1, strlen($src)));
4622
4623
					$uniqueId = uniqid();
4624
					$image->setAttribute('src', 'cid:' . $uniqueId);
4625
					// TinyMCE adds an extra inline image for some reason, remove it.
4626
					$image->setAttribute('data-mce-src', '');
4627
4628
					array_push($imageIDs, $uniqueId);
4629
4630
					// Create hidden attachment with CID
4631
					$inlineImage = mapi_message_createattach($message);
4632
					$props = [
4633
						PR_ATTACH_METHOD => ATTACH_BY_VALUE,
4634
						PR_ATTACH_CONTENT_ID => $uniqueId,
4635
						PR_ATTACHMENT_HIDDEN => true,
4636
						PR_ATTACH_FLAGS => 4,
4637
						PR_ATTACH_MIME_TAG => $mimeType !== 'plain' ? 'image/' . $mimeType : 'image/png',
4638
					];
4639
					mapi_setprops($inlineImage, $props);
4640
4641
					$stream = mapi_openproperty($inlineImage, PR_ATTACH_DATA_BIN, IID_IStream, 0, MAPI_CREATE | MAPI_MODIFY);
4642
					mapi_stream_setsize($stream, strlen($rawImage));
4643
					mapi_stream_write($stream, $rawImage);
4644
					mapi_stream_commit($stream);
4645
					mapi_savechanges($inlineImage);
4646
				}
4647
				elseif (strstr($src, "cid:") !== false) {
4648
					// Check for the cid(there may be http: ) is in the image src. push the cid
4649
					// to $imageIDs array. which further used in clearDeletedInlineAttachments function.
4650
4651
					$firstOffset = strpos($src, ":") + 1;
4652
					$cid = substr($src, $firstOffset);
4653
					array_push($imageIDs, $cid);
4654
				}
4655
			}
4656
4657
			if ($saveChanges) {
4658
				// Write the <img src="cid:data"> changes to the HTML property
4659
				$body = $doc->saveHTML();
4660
				$stream = mapi_openproperty($message, PR_HTML, IID_IStream, 0, MAPI_MODIFY);
4661
				mapi_stream_setsize($stream, strlen($body));
4662
				mapi_stream_write($stream, $body);
4663
				mapi_stream_commit($stream);
4664
				mapi_savechanges($message);
4665
			}
4666
		}
4667
		$this->clearDeletedInlineAttachments($message, $imageIDs);
4668
	}
4669
4670
	/**
4671
	 * Delete the deleted inline image attachment from attachment store.
4672
	 *
4673
	 * @param MAPIMessage $message  the distribution list message
4674
	 * @param array       $imageIDs Array of existing inline image PR_ATTACH_CONTENT_ID
4675
	 */
4676
	public function clearDeletedInlineAttachments($message, $imageIDs = []) {
4677
		$attachmentTable = mapi_message_getattachmenttable($message);
4678
4679
		$restriction = [RES_AND, [
4680
			[RES_PROPERTY,
4681
				[
4682
					RELOP => RELOP_EQ,
4683
					ULPROPTAG => PR_ATTACHMENT_HIDDEN,
4684
					VALUE => [PR_ATTACHMENT_HIDDEN => true],
4685
				],
4686
			],
4687
			[RES_EXIST,
4688
				[
4689
					ULPROPTAG => PR_ATTACH_CONTENT_ID,
4690
				],
4691
			],
4692
		]];
4693
4694
		$attachments = mapi_table_queryallrows($attachmentTable, [PR_ATTACH_CONTENT_ID, PR_ATTACH_NUM], $restriction);
4695
		foreach ($attachments as $attachment) {
4696
			$clearDeletedInlineAttach = array_search($attachment[PR_ATTACH_CONTENT_ID], $imageIDs) === false;
4697
			if ($clearDeletedInlineAttach) {
4698
				mapi_message_deleteattach($message, $attachment[PR_ATTACH_NUM]);
4699
			}
4700
		}
4701
	}
4702
4703
	/**
4704
	 * This function will fetch the user from mapi session and retrieve its LDAP image.
4705
	 * It will return the compressed image using php's GD library.
4706
	 *
4707
	 * @param string $userEntryId       The user entryid which is going to open
4708
	 * @param int    $compressedQuality The compression factor ranges from 0 (high) to 100 (low)
4709
	 *                                  Default value is set to 10 which is nearly
4710
	 *                                  extreme compressed image
4711
	 *
4712
	 * @return string A base64 encoded string (data url)
4713
	 */
4714
	public function getCompressedUserImage($userEntryId, $compressedQuality = 10) {
4715
		try {
4716
			$user = $GLOBALS['mapisession']->getUser($userEntryId);
4717
		}
4718
		catch (Exception $e) {
4719
			$msg = "Problem while getting a user from the addressbook. Error %s : %s.";
4720
			$formattedMsg = sprintf($msg, $e->getCode(), $e->getMessage());
4721
			error_log($formattedMsg);
4722
			Log::Write(LOGLEVEL_ERROR, "Operations:getCompressedUserImage() " . $formattedMsg);
4723
4724
			return "";
4725
		}
4726
4727
		$userImageProp = mapi_getprops($user, [PR_EMS_AB_THUMBNAIL_PHOTO]);
4728
		if (isset($userImageProp[PR_EMS_AB_THUMBNAIL_PHOTO])) {
4729
			return $this->compressedImage($userImageProp[PR_EMS_AB_THUMBNAIL_PHOTO], $compressedQuality);
4730
		}
4731
4732
		return "";
4733
	}
4734
4735
	/**
4736
	 * Function used to compressed the image.
4737
	 *
4738
	 * @param string $image the image which is going to compress
4739
	 * @param int compressedQuality The compression factor range from 0 (high) to 100 (low)
0 ignored issues
show
Bug introduced by
The type compressedQuality was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
4740
	 * Default value is set to 10 which is nearly extreme compressed image
4741
	 * @param mixed $compressedQuality
4742
	 *
4743
	 * @return string A base64 encoded string (data url)
4744
	 */
4745
	public function compressedImage($image, $compressedQuality = 10) {
4746
		// Proceed only when GD library's functions and user image data are available.
4747
		if (function_exists('imagecreatefromstring')) {
4748
			try {
4749
				$image = imagecreatefromstring($image);
4750
			}
4751
			catch (Exception $e) {
4752
				$msg = "Problem while creating image from string. Error %s : %s.";
4753
				$formattedMsg = sprintf($msg, $e->getCode(), $e->getMessage());
4754
				error_log($formattedMsg);
4755
				Log::Write(LOGLEVEL_ERROR, "Operations:compressedImage() " . $formattedMsg);
4756
			}
4757
4758
			if ($image !== false) {
4759
				// We need to use buffer because imagejpeg will give output as image in browser or file.
4760
				ob_start();
4761
				imagejpeg($image, null, $compressedQuality);
4762
				$compressedImg = ob_get_contents();
4763
				ob_end_clean();
4764
4765
				// Free up memory space acquired by image.
4766
				imagedestroy($image);
4767
4768
				return strlen($compressedImg) > 0 ? "data:image/jpg;base64," . base64_encode($compressedImg) : "";
4769
			}
4770
		}
4771
4772
		return "";
4773
	}
4774
4775
	public function getPropertiesFromStoreRoot($store, $props) {
4776
		$root = mapi_msgstore_openentry($store);
4777
4778
		return mapi_getprops($root, $props);
4779
	}
4780
4781
	/**
4782
	 * Returns the encryption key for sodium functions.
4783
	 *
4784
	 * It will generate a new one if the user doesn't have an encryption key yet.
4785
	 * It will also save the key into EncryptionStore for this session if the key
4786
	 * wasn't there yet.
4787
	 *
4788
	 * @return string
4789
	 */
4790
	public function getFilesEncryptionKey() {
4791
		// fallback if FILES_ACCOUNTSTORE_V1_SECRET_KEY is defined globally
4792
		$key = defined('FILES_ACCOUNTSTORE_V1_SECRET_KEY') ? hex2bin(constant('FILES_ACCOUNTSTORE_V1_SECRET_KEY')) : null;
4793
		if ($key === null) {
4794
			$encryptionStore = EncryptionStore::getInstance();
4795
			$key = $encryptionStore->get('filesenckey');
4796
			if ($key === null) {
4797
				$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
4798
				$props = mapi_getprops($store, [PR_EC_WA_FILES_ENCRYPTION_KEY]);
4799
				if (isset($props[PR_EC_WA_FILES_ENCRYPTION_KEY])) {
4800
					$key = $props[PR_EC_WA_FILES_ENCRYPTION_KEY];
4801
				}
4802
				else {
4803
					$key = sodium_crypto_secretbox_keygen();
4804
					$encryptionStore->add('filesenckey', $key);
4805
					mapi_setprops($store, [PR_EC_WA_FILES_ENCRYPTION_KEY => $key]);
4806
					mapi_savechanges($store);
4807
				}
4808
			}
4809
		}
4810
4811
		return $key;
4812
	}
4813
}
4814