Blame view

sources/core/ajax/share.php 11.3 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  		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'])) {
  						$date = new DateTime($items[0]['expiration']);
  						$expiration = $date->format('Y-m-d');
  					}
  
  					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
182
183
184
185
186
187
188
189
190
191
192
193
194
  		case 'email':
  			// read post variables
  			$user = OCP\USER::getUser();
  			$displayName = OCP\User::getDisplayName();
  			$type = $_POST['itemType'];
  			$link = $_POST['link'];
  			$file = $_POST['file'];
  			$to_address = $_POST['toaddress'];
  
  			// enable l10n support
  			$l = OC_L10N::get('core');
  
  			// setup the email
31b7f2792   Kload   Upgrade to ownclo...
195
  			$subject = (string)$l->t('%s shared »%s« with you', array($displayName, $file));
03e52840d   Kload   Init
196

31b7f2792   Kload   Upgrade to ownclo...
197
198
199
200
201
202
  			$content = new OC_Template("core", "mail", "");
  			$content->assign ('link', $link);
  			$content->assign ('type', $type);
  			$content->assign ('user_displayname', $displayName);
  			$content->assign ('filename', $file);
  			$text = $content->fetchPage();
03e52840d   Kload   Init
203

31b7f2792   Kload   Upgrade to ownclo...
204
205
206
207
208
209
  			$content = new OC_Template("core", "altmail", "");
  			$content->assign ('link', $link);
  			$content->assign ('type', $type);
  			$content->assign ('user_displayname', $displayName);
  			$content->assign ('filename', $file);
  			$alttext = $content->fetchPage();
03e52840d   Kload   Init
210
211
212
213
214
215
  
  			$default_from = OCP\Util::getDefaultEmailAddress('sharing-noreply');
  			$from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from );
  
  			// send it out now
  			try {
31b7f2792   Kload   Upgrade to ownclo...
216
  				OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $displayName, 1, $alttext);
03e52840d   Kload   Init
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
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
  				OCP\JSON::success();
  			} catch (Exception $exception) {
  				OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($exception->getMessage()))));
  			}
  			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...
306
307
308
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_USER,
  									'shareWith' => $uid)
03e52840d   Kload   Init
309
310
311
312
313
314
  							);
  							$count++;
  						}
  					}
  				}
  				$count = 0;
31b7f2792   Kload   Upgrade to ownclo...
315
316
317
  
  				// enable l10n support
  				$l = OC_L10N::get('core');
03e52840d   Kload   Init
318
319
320
321
322
323
324
  				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...
325
  								'label' => $group,
03e52840d   Kload   Init
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_GROUP,
  									'shareWith' => $group
  								)
  							);
  							$count++;
  						}
  					} else {
  						break;
  					}
  				}
  				OC_JSON::success(array('data' => $shareWith));
  			}
  			break;
  	}
  }