Blame view

sources/core/ajax/share.php 12.4 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  /**
  * ownCloud
  *
  * @author Michael Gapczynski
  * @copyright 2012 Michael Gapczynski mtgap@owncloud.com
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  * License as published by the Free Software Foundation; either
  * version 3 of the License, or any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  *
  * You should have received a copy of the GNU Affero General Public
  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  */
  
  OC_JSON::checkLoggedIn();
  OCP\JSON::callCheck();
  OC_App::loadApps();
31b7f2792   Kload   Upgrade to ownclo...
25
  $defaults = new \OCP\Defaults();
03e52840d   Kload   Init
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSource'])) {
  	switch ($_POST['action']) {
  		case 'share':
  			if (isset($_POST['shareType']) && isset($_POST['shareWith']) && isset($_POST['permissions'])) {
  				try {
  					$shareType = (int)$_POST['shareType'];
  					$shareWith = $_POST['shareWith'];
  					if ($shareType === OCP\Share::SHARE_TYPE_LINK && $shareWith == '') {
  						$shareWith = null;
  					}
  
  					$token = OCP\Share::shareItem(
  						$_POST['itemType'],
  						$_POST['itemSource'],
  						$shareType,
  						$shareWith,
31b7f2792   Kload   Upgrade to ownclo...
42
43
  						$_POST['permissions'],
  						$_POST['itemSourceName']
03e52840d   Kload   Init
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  					);
  
  					if (is_string($token)) {
  						OC_JSON::success(array('data' => array('token' => $token)));
  					} else {
  						OC_JSON::success();
  					}
  				} catch (Exception $exception) {
  					OC_JSON::error(array('data' => array('message' => $exception->getMessage())));
  				}
  			}
  			break;
  		case 'unshare':
  			if (isset($_POST['shareType']) && isset($_POST['shareWith'])) {
  				if ((int)$_POST['shareType'] === OCP\Share::SHARE_TYPE_LINK && $_POST['shareWith'] == '') {
  					$shareWith = null;
  				} else {
  					$shareWith = $_POST['shareWith'];
  				}
  				$return = OCP\Share::unshare($_POST['itemType'], $_POST['itemSource'], $_POST['shareType'], $shareWith);
  				($return) ? OC_JSON::success() : OC_JSON::error();
  			}
  			break;
  		case 'setPermissions':
  			if (isset($_POST['shareType']) && isset($_POST['shareWith']) && isset($_POST['permissions'])) {
  				$return = OCP\Share::setPermissions(
  					$_POST['itemType'],
  					$_POST['itemSource'],
  					$_POST['shareType'],
  					$_POST['shareWith'],
  					$_POST['permissions']
  				);
  				($return) ? OC_JSON::success() : OC_JSON::error();
  			}
  			break;
  		case 'setExpirationDate':
  			if (isset($_POST['date'])) {
  				$return = OCP\Share::setExpirationDate($_POST['itemType'], $_POST['itemSource'], $_POST['date']);
  				($return) ? OC_JSON::success() : OC_JSON::error();
  			}
  			break;
31b7f2792   Kload   Upgrade to ownclo...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  		case 'informRecipients':
  
  			$l = OC_L10N::get('core');
  
  			$shareType = (int) $_POST['shareType'];
  			$itemType = $_POST['itemType'];
  			$itemSource = $_POST['itemSource'];
  			$recipient = $_POST['recipient'];
  			$ownerDisplayName = \OCP\User::getDisplayName();
  			$from = \OCP\Util::getDefaultEmailAddress('sharing-noreply');
  
  			$noMail = array();
  			$recipientList = array();
  
  			if($shareType === \OCP\Share::SHARE_TYPE_USER) {
  				$recipientList[] = $recipient;
  			} elseif ($shareType === \OCP\Share::SHARE_TYPE_GROUP) {
  				$recipientList = \OC_Group::usersInGroup($recipient);
  			}
  
  			// don't send a mail to the user who shared the file
  			$recipientList = array_diff($recipientList, array(\OCP\User::getUser()));
  
  			// send mail to all recipients with an email address
  			foreach ($recipientList as $recipient) {
  				//get correct target folder name
  				$email = OC_Preferences::getValue($recipient, 'settings', 'email', '');
  
  				if ($email !== '') {
  					$displayName = \OCP\User::getDisplayName($recipient);
  					$items = \OCP\Share::getItemSharedWithUser($itemType, $itemSource, $recipient);
  					$filename = trim($items[0]['file_target'], '/');
  					$subject = (string)$l->t('%s shared »%s« with you', array($ownerDisplayName, $filename));
  					$expiration = null;
  					if (isset($items[0]['expiration'])) {
a293d369c   Kload   Update sources to...
120
121
122
123
124
125
  						try {
  							$date = new DateTime($items[0]['expiration']);
  							$expiration = $l->l('date', $date->getTimestamp());
  						} catch (Exception $e) {
  							\OCP\Util::writeLog('sharing', "Couldn't read date: " . $e->getMessage(), \OCP\Util::ERROR);
  						}
31b7f2792   Kload   Upgrade to ownclo...
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  					}
  
  					if ($itemType === 'folder') {
  						$foldername = "/Shared/" . $filename;
  					} else {
  						// if it is a file we can just link to the Shared folder,
  						// that's the place where the user will find the file
  						$foldername = "/Shared";
  					}
  
  					$link = \OCP\Util::linkToAbsolute('files', 'index.php', array("dir" => $foldername));
  
  					$content = new OC_Template("core", "mail", "");
  					$content->assign('link', $link);
  					$content->assign('user_displayname', $ownerDisplayName);
  					$content->assign('filename', $filename);
  					$content->assign('expiration', $expiration);
  					$text = $content->fetchPage();
  
  					$content = new OC_Template("core", "altmail", "");
  					$content->assign('link', $link);
  					$content->assign('user_displayname', $ownerDisplayName);
  					$content->assign('filename', $filename);
  					$content->assign('expiration', $expiration);
  					$alttext = $content->fetchPage();
  
  					$default_from = OCP\Util::getDefaultEmailAddress('sharing-noreply');
  					$from = OCP\Config::getUserValue(\OCP\User::getUser(), 'settings', 'email', $default_from);
  
  					// send it out now
  					try {
  						OCP\Util::sendMail($email, $displayName, $subject, $text, $from, $ownerDisplayName, 1, $alttext);
  					} catch (Exception $exception) {
  						$noMail[] = \OCP\User::getDisplayName($recipient);
  					}
  				}
  			}
  
  			\OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, true);
  
  			if (empty($noMail)) {
  				OCP\JSON::success();
  			} else {
  				OCP\JSON::error(array(
  					'data' => array(
  						'message' => $l->t("Couldn't send mail to following users: %s ",
  								implode(', ', $noMail)
  								)
  						)
  					));
  			}
  			break;
  		case 'informRecipientsDisabled':
  			$itemSource = $_POST['itemSource'];
  			$shareType = $_POST['shareType'];
  			$itemType = $_POST['itemType'];
  			$recipient = $_POST['recipient'];
  			\OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, false);
  			OCP\JSON::success();
  			break;
03e52840d   Kload   Init
186
  		case 'email':
a293d369c   Kload   Update sources to...
187
188
  			// enable l10n support
  			$l = OC_L10N::get('core');
03e52840d   Kload   Init
189
190
191
192
193
194
195
  			// read post variables
  			$user = OCP\USER::getUser();
  			$displayName = OCP\User::getDisplayName();
  			$type = $_POST['itemType'];
  			$link = $_POST['link'];
  			$file = $_POST['file'];
  			$to_address = $_POST['toaddress'];
a293d369c   Kload   Update sources to...
196
197
198
199
200
201
202
203
204
205
  			$expiration = null;
  			if (isset($_POST['expiration']) && $_POST['expiration'] !== '') {
  				try {
  					$date = new DateTime($_POST['expiration']);
  					$expiration = $l->l('date', $date->getTimestamp());
  				} catch (Exception $e) {
  					\OCP\Util::writeLog('sharing', "Couldn't read date: " . $e->getMessage(), \OCP\Util::ERROR);
  				}
  
  			}
03e52840d   Kload   Init
206
207
  
  			// setup the email
31b7f2792   Kload   Upgrade to ownclo...
208
  			$subject = (string)$l->t('%s shared »%s« with you', array($displayName, $file));
03e52840d   Kload   Init
209

31b7f2792   Kload   Upgrade to ownclo...
210
211
212
213
214
  			$content = new OC_Template("core", "mail", "");
  			$content->assign ('link', $link);
  			$content->assign ('type', $type);
  			$content->assign ('user_displayname', $displayName);
  			$content->assign ('filename', $file);
a293d369c   Kload   Update sources to...
215
  			$content->assign('expiration', $expiration);
31b7f2792   Kload   Upgrade to ownclo...
216
  			$text = $content->fetchPage();
03e52840d   Kload   Init
217

31b7f2792   Kload   Upgrade to ownclo...
218
219
220
221
222
  			$content = new OC_Template("core", "altmail", "");
  			$content->assign ('link', $link);
  			$content->assign ('type', $type);
  			$content->assign ('user_displayname', $displayName);
  			$content->assign ('filename', $file);
a293d369c   Kload   Update sources to...
223
  			$content->assign('expiration', $expiration);
31b7f2792   Kload   Upgrade to ownclo...
224
  			$alttext = $content->fetchPage();
03e52840d   Kload   Init
225
226
227
228
229
  
  			$default_from = OCP\Util::getDefaultEmailAddress('sharing-noreply');
  			$from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from );
  
  			// send it out now
837968727   Kload   [enh] Upgrade to ...
230
231
232
233
234
235
236
237
238
  			$rs = explode(' ', $to_address);
  			$failed = array();
  			foreach ($rs as $r) {
  				try {
  					\OCP\Util::sendMail($r, $r, $subject, $text, $from_address, $displayName, 1, $alttext);
  				} catch (\Exception $e) {
  					\OCP\Util::writeLog('sharing', "Can't send mail with public link to $r: " . $e->getMessage(), \OCP\Util::ERROR);
  					$failed[] = $r;
  				}
03e52840d   Kload   Init
239
  			}
837968727   Kload   [enh] Upgrade to ...
240
241
242
243
244
245
246
247
248
249
250
  
  			if (empty($failed)) {
  				OCP\JSON::success();
  			} else {
  				OCP\JSON::error(array(
  					'data' => array(
  						'message' => $l->t("Couldn't send mail to following users: %s ",
  								implode(', ', $failed)
  							)
  					)
  				));			}
03e52840d   Kload   Init
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
  			break;
  	}
  } else if (isset($_GET['fetch'])) {
  	switch ($_GET['fetch']) {
  		case 'getItemsSharedStatuses':
  			if (isset($_GET['itemType'])) {
  				$return = OCP\Share::getItemsShared($_GET['itemType'], OCP\Share::FORMAT_STATUSES);
  				is_array($return) ? OC_JSON::success(array('data' => $return)) : OC_JSON::error();
  			}
  			break;
  		case 'getItem':
  			if (isset($_GET['itemType'])
  				&& isset($_GET['itemSource'])
  				&& isset($_GET['checkReshare'])
  				&& isset($_GET['checkShares'])) {
  				if ($_GET['checkReshare'] == 'true') {
  					$reshare = OCP\Share::getItemSharedWithBySource(
  						$_GET['itemType'],
  						$_GET['itemSource'],
  						OCP\Share::FORMAT_NONE,
  						null,
  						true
  					);
  				} else {
  					$reshare = false;
  				}
  				if ($_GET['checkShares'] == 'true') {
  					$shares = OCP\Share::getItemShared(
  						$_GET['itemType'],
  						$_GET['itemSource'],
  						OCP\Share::FORMAT_NONE,
  						null,
  						true
  					);
  				} else {
  					$shares = false;
  				}
  				OC_JSON::success(array('data' => array('reshare' => $reshare, 'shares' => $shares)));
  			}
  			break;
  		case 'getShareWith':
  			if (isset($_GET['search'])) {
  				$sharePolicy = OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global');
  				$shareWith = array();
  // 				if (OC_App::isEnabled('contacts')) {
  // 					// TODO Add function to contacts to only get the 'fullname' column to improve performance
  // 					$ids = OC_Contacts_Addressbook::activeIds();
  // 					foreach ($ids as $id) {
  // 						$vcards = OC_Contacts_VCard::all($id);
  // 						foreach ($vcards as $vcard) {
  // 							$contact = $vcard['fullname'];
  // 							if (stripos($contact, $_GET['search']) !== false
  // 								&& (!isset($_GET['itemShares'])
  // 								|| !isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_CONTACT])
  // 								|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_CONTACT])
  // 								|| !in_array($contact, $_GET['itemShares'][OCP\Share::SHARE_TYPE_CONTACT]))) {
  // 								$shareWith[] = array('label' => $contact, 'value' => array('shareType' => 5, 'shareWith' => $vcard['id']));
  // 							}
  // 						}
  // 					}
  // 				}
  				$groups = OC_Group::getGroups($_GET['search']);
  				if ($sharePolicy == 'groups_only') {
  					$usergroups = OC_Group::getUserGroups(OC_User::getUser());
  					$groups = array_intersect($groups, $usergroups);
  				}
  				$count = 0;
  				$users = array();
  				$limit = 0;
  				$offset = 0;
  				while ($count < 15 && count($users) == $limit) {
  					$limit = 15 - $count;
  					if ($sharePolicy == 'groups_only') {
  						$users = OC_Group::DisplayNamesInGroups($usergroups, $_GET['search'], $limit, $offset);
  					} else {
  						$users = OC_User::getDisplayNames($_GET['search'], $limit, $offset);
  					}
  					$offset += $limit;
  					foreach ($users as $uid => $displayName) {
  						if ((!isset($_GET['itemShares'])
  							|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_USER])
  							|| !in_array($uid, $_GET['itemShares'][OCP\Share::SHARE_TYPE_USER]))
  							&& $uid != OC_User::getUser()) {
  							$shareWith[] = array(
  								'label' => $displayName,
31b7f2792   Kload   Upgrade to ownclo...
336
337
338
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_USER,
  									'shareWith' => $uid)
03e52840d   Kload   Init
339
340
341
342
343
344
  							);
  							$count++;
  						}
  					}
  				}
  				$count = 0;
31b7f2792   Kload   Upgrade to ownclo...
345
346
347
  
  				// enable l10n support
  				$l = OC_L10N::get('core');
03e52840d   Kload   Init
348
349
350
351
352
353
354
  				foreach ($groups as $group) {
  					if ($count < 15) {
  						if (!isset($_GET['itemShares'])
  							|| !isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
  							|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
  							|| !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) {
  							$shareWith[] = array(
31b7f2792   Kload   Upgrade to ownclo...
355
  								'label' => $group,
03e52840d   Kload   Init
356
357
358
359
360
361
362
363
364
365
366
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_GROUP,
  									'shareWith' => $group
  								)
  							);
  							$count++;
  						}
  					} else {
  						break;
  					}
  				}
a293d369c   Kload   Update sources to...
367
368
369
370
  				$sorter = new \OC\Share\SearchResultSorter($_GET['search'],
  														   'label',
  														   new \OC\Log());
  				usort($shareWith, array($sorter, 'sort'));
03e52840d   Kload   Init
371
372
373
374
375
  				OC_JSON::success(array('data' => $shareWith));
  			}
  			break;
  	}
  }