Blame view

sources/core/ajax/share.php 9.8 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
  <?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();
03e52840d   Kload   Init
24

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
  						$_POST['permissions'],
6d9380f96   Cédric Dupont   Update sources OC...
43
44
  						$_POST['itemSourceName'],
  						(!empty($_POST['expirationDate']) ? new \DateTime($_POST['expirationDate']) : null)
03e52840d   Kload   Init
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
  					);
  
  					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'])) {
6d9380f96   Cédric Dupont   Update sources OC...
82
83
84
85
86
87
  				try {
  					$return = OCP\Share::setExpirationDate($_POST['itemType'], $_POST['itemSource'], $_POST['date']);
  					($return) ? OC_JSON::success() : OC_JSON::error();
  				} catch (\Exception $e) {
  					OC_JSON::error(array('data' => array('message' => $e->getMessage())));
  				}
03e52840d   Kload   Init
88
89
  			}
  			break;
31b7f2792   Kload   Upgrade to ownclo...
90
  		case 'informRecipients':
31b7f2792   Kload   Upgrade to ownclo...
91
  			$l = OC_L10N::get('core');
31b7f2792   Kload   Upgrade to ownclo...
92
93
94
95
  			$shareType = (int) $_POST['shareType'];
  			$itemType = $_POST['itemType'];
  			$itemSource = $_POST['itemSource'];
  			$recipient = $_POST['recipient'];
31b7f2792   Kload   Upgrade to ownclo...
96
97
98
99
100
101
  
  			if($shareType === \OCP\Share::SHARE_TYPE_USER) {
  				$recipientList[] = $recipient;
  			} elseif ($shareType === \OCP\Share::SHARE_TYPE_GROUP) {
  				$recipientList = \OC_Group::usersInGroup($recipient);
  			}
31b7f2792   Kload   Upgrade to ownclo...
102
103
  			// don't send a mail to the user who shared the file
  			$recipientList = array_diff($recipientList, array(\OCP\User::getUser()));
6d9380f96   Cédric Dupont   Update sources OC...
104
105
  			$mailNotification = new OC\Share\MailNotifications();
  			$result = $mailNotification->sendInternalShareMail($recipientList, $itemSource, $itemType);
31b7f2792   Kload   Upgrade to ownclo...
106
107
  
  			\OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, true);
6d9380f96   Cédric Dupont   Update sources OC...
108
  			if (empty($result)) {
31b7f2792   Kload   Upgrade to ownclo...
109
110
111
112
113
  				OCP\JSON::success();
  			} else {
  				OCP\JSON::error(array(
  					'data' => array(
  						'message' => $l->t("Couldn't send mail to following users: %s ",
6d9380f96   Cédric Dupont   Update sources OC...
114
  								implode(', ', $result)
31b7f2792   Kload   Upgrade to ownclo...
115
116
117
118
119
120
121
122
123
124
125
126
127
  								)
  						)
  					));
  			}
  			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
128
129
  		case 'email':
  			// read post variables
03e52840d   Kload   Init
130
131
132
  			$link = $_POST['link'];
  			$file = $_POST['file'];
  			$to_address = $_POST['toaddress'];
6d9380f96   Cédric Dupont   Update sources OC...
133
  			$mailNotification = new \OC\Share\MailNotifications();
a293d369c   Kload   Update sources to...
134
135
136
137
  			$expiration = null;
  			if (isset($_POST['expiration']) && $_POST['expiration'] !== '') {
  				try {
  					$date = new DateTime($_POST['expiration']);
6d9380f96   Cédric Dupont   Update sources OC...
138
  					$expiration = $date->getTimestamp();
a293d369c   Kload   Update sources to...
139
140
141
142
143
  				} catch (Exception $e) {
  					\OCP\Util::writeLog('sharing', "Couldn't read date: " . $e->getMessage(), \OCP\Util::ERROR);
  				}
  
  			}
03e52840d   Kload   Init
144

6d9380f96   Cédric Dupont   Update sources OC...
145
146
147
  			$result = $mailNotification->sendLinkShareMail($to_address, $file, $link, $expiration);
  			if(empty($result)) {
  				\OCP\JSON::success();
837968727   Kload   [enh] Upgrade to ...
148
  			} else {
6d9380f96   Cédric Dupont   Update sources OC...
149
  				$l = OC_L10N::get('core');
837968727   Kload   [enh] Upgrade to ...
150
151
152
  				OCP\JSON::error(array(
  					'data' => array(
  						'message' => $l->t("Couldn't send mail to following users: %s ",
6d9380f96   Cédric Dupont   Update sources OC...
153
  								implode(', ', $result)
837968727   Kload   [enh] Upgrade to ...
154
155
  							)
  					)
6d9380f96   Cédric Dupont   Update sources OC...
156
157
  				));
  			}
03e52840d   Kload   Init
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  			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;
6d9380f96   Cédric Dupont   Update sources OC...
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
  		case 'getShareWithEmail':
  			$result = array();
  			if (isset($_GET['search'])) {
  				$cm = OC::$server->getContactsManager();
  				if (!is_null($cm) && $cm->isEnabled()) {
  					$contacts = $cm->search($_GET['search'], array('FN', 'EMAIL'));
  					foreach ($contacts as $contact) {
  						if (!isset($contact['EMAIL'])) {
  							continue;
  						}
  
  						$emails = $contact['EMAIL'];
  						if (!is_array($emails)) {
  							$emails = array($emails);
  						}
  
  						foreach($emails as $email) {
  							$result[] = array(
  								'id' => $contact['id'],
  								'email' => $email,
  								'displayname' => $contact['FN'],
  							);
  						}
  					}
  				}
  			}
  			OC_JSON::success(array('data' => $result));
  			break;
03e52840d   Kload   Init
226
227
  		case 'getShareWith':
  			if (isset($_GET['search'])) {
6d9380f96   Cédric Dupont   Update sources OC...
228
  				$shareWithinGroupOnly = OC\Share\Share::shareWithGroupMembersOnly();
03e52840d   Kload   Init
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
  				$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']);
6d9380f96   Cédric Dupont   Update sources OC...
248
  				if ($shareWithinGroupOnly) {
03e52840d   Kload   Init
249
250
251
252
253
254
255
256
257
  					$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;
6d9380f96   Cédric Dupont   Update sources OC...
258
  					if ($shareWithinGroupOnly) {
03e52840d   Kload   Init
259
260
261
262
263
264
265
266
267
268
269
270
  						$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...
271
272
273
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_USER,
  									'shareWith' => $uid)
03e52840d   Kload   Init
274
275
276
277
278
279
  							);
  							$count++;
  						}
  					}
  				}
  				$count = 0;
31b7f2792   Kload   Upgrade to ownclo...
280
281
282
  
  				// enable l10n support
  				$l = OC_L10N::get('core');
03e52840d   Kload   Init
283
284
285
286
287
288
289
  				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...
290
  								'label' => $group,
03e52840d   Kload   Init
291
292
293
294
295
296
297
298
299
300
301
  								'value' => array(
  									'shareType' => OCP\Share::SHARE_TYPE_GROUP,
  									'shareWith' => $group
  								)
  							);
  							$count++;
  						}
  					} else {
  						break;
  					}
  				}
a293d369c   Kload   Update sources to...
302
303
304
305
  				$sorter = new \OC\Share\SearchResultSorter($_GET['search'],
  														   'label',
  														   new \OC\Log());
  				usort($shareWith, array($sorter, 'sort'));
03e52840d   Kload   Init
306
307
308
309
310
  				OC_JSON::success(array('data' => $shareWith));
  			}
  			break;
  	}
  }