Blame view
sources/core/ajax/share.php
9.9 KB
|
03e52840d
|
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
|
24 |
|
|
31b7f2792
|
25 |
$defaults = new \OCP\Defaults(); |
|
03e52840d
|
26 27 28 29 30 31 32 |
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'];
|
|
f7d878ff1
|
33 |
$itemSourceName = isset($_POST['itemSourceName']) ? $_POST['itemSourceName'] : null; |
|
03e52840d
|
34 35 36 37 38 39 40 41 42 |
if ($shareType === OCP\Share::SHARE_TYPE_LINK && $shareWith == '') {
$shareWith = null;
}
$token = OCP\Share::shareItem(
$_POST['itemType'],
$_POST['itemSource'],
$shareType,
$shareWith,
|
|
31b7f2792
|
43 |
$_POST['permissions'], |
|
f7d878ff1
|
44 |
$itemSourceName, |
|
6d9380f96
|
45 |
(!empty($_POST['expirationDate']) ? new \DateTime($_POST['expirationDate']) : null) |
|
03e52840d
|
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 |
);
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
|
83 84 85 86 87 88 |
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
|
89 90 |
} break; |
|
31b7f2792
|
91 |
case 'informRecipients': |
|
31b7f2792
|
92 |
$l = OC_L10N::get('core');
|
|
31b7f2792
|
93 94 95 96 |
$shareType = (int) $_POST['shareType']; $itemType = $_POST['itemType']; $itemSource = $_POST['itemSource']; $recipient = $_POST['recipient']; |
|
31b7f2792
|
97 98 99 100 101 102 |
if($shareType === \OCP\Share::SHARE_TYPE_USER) {
$recipientList[] = $recipient;
} elseif ($shareType === \OCP\Share::SHARE_TYPE_GROUP) {
$recipientList = \OC_Group::usersInGroup($recipient);
}
|
|
31b7f2792
|
103 104 |
// don't send a mail to the user who shared the file $recipientList = array_diff($recipientList, array(\OCP\User::getUser())); |
|
6d9380f96
|
105 106 |
$mailNotification = new OC\Share\MailNotifications(); $result = $mailNotification->sendInternalShareMail($recipientList, $itemSource, $itemType); |
|
31b7f2792
|
107 |
|
|
f7d878ff1
|
108 |
\OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, true); |
|
31b7f2792
|
109 |
|
|
6d9380f96
|
110 |
if (empty($result)) {
|
|
31b7f2792
|
111 112 113 114 115 |
OCP\JSON::success();
} else {
OCP\JSON::error(array(
'data' => array(
'message' => $l->t("Couldn't send mail to following users: %s ",
|
|
6d9380f96
|
116 |
implode(', ', $result)
|
|
31b7f2792
|
117 118 119 120 121 122 123 124 125 126 |
) ) )); } break; case 'informRecipientsDisabled': $itemSource = $_POST['itemSource']; $shareType = $_POST['shareType']; $itemType = $_POST['itemType']; $recipient = $_POST['recipient']; |
|
f7d878ff1
|
127 |
\OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, false); |
|
31b7f2792
|
128 129 |
OCP\JSON::success(); break; |
|
03e52840d
|
130 131 |
case 'email': // read post variables |
|
03e52840d
|
132 133 134 |
$link = $_POST['link']; $file = $_POST['file']; $to_address = $_POST['toaddress']; |
|
6d9380f96
|
135 |
$mailNotification = new \OC\Share\MailNotifications(); |
|
a293d369c
|
136 137 138 139 |
$expiration = null;
if (isset($_POST['expiration']) && $_POST['expiration'] !== '') {
try {
$date = new DateTime($_POST['expiration']);
|
|
6d9380f96
|
140 |
$expiration = $date->getTimestamp(); |
|
a293d369c
|
141 142 143 144 145 |
} catch (Exception $e) {
\OCP\Util::writeLog('sharing', "Couldn't read date: " . $e->getMessage(), \OCP\Util::ERROR);
}
}
|
|
03e52840d
|
146 |
|
|
6d9380f96
|
147 148 149 |
$result = $mailNotification->sendLinkShareMail($to_address, $file, $link, $expiration);
if(empty($result)) {
\OCP\JSON::success();
|
|
837968727
|
150 |
} else {
|
|
6d9380f96
|
151 |
$l = OC_L10N::get('core');
|
|
837968727
|
152 153 154 |
OCP\JSON::error(array(
'data' => array(
'message' => $l->t("Couldn't send mail to following users: %s ",
|
|
6d9380f96
|
155 |
implode(', ', $result)
|
|
837968727
|
156 157 |
) ) |
|
6d9380f96
|
158 159 |
)); } |
|
03e52840d
|
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
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
|
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
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
|
228 229 |
case 'getShareWith':
if (isset($_GET['search'])) {
|
|
6d9380f96
|
230 |
$shareWithinGroupOnly = OC\Share\Share::shareWithGroupMembersOnly(); |
|
03e52840d
|
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
$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
|
250 |
if ($shareWithinGroupOnly) {
|
|
03e52840d
|
251 252 253 254 255 256 257 258 259 |
$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
|
260 |
if ($shareWithinGroupOnly) {
|
|
03e52840d
|
261 262 263 264 265 266 267 268 269 270 271 272 |
$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
|
273 274 275 |
'value' => array( 'shareType' => OCP\Share::SHARE_TYPE_USER, 'shareWith' => $uid) |
|
03e52840d
|
276 277 278 279 280 281 |
); $count++; } } } $count = 0; |
|
31b7f2792
|
282 283 284 |
// enable l10n support
$l = OC_L10N::get('core');
|
|
03e52840d
|
285 286 287 288 289 290 291 |
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
|
292 |
'label' => $group, |
|
03e52840d
|
293 294 295 296 297 298 299 300 301 302 303 |
'value' => array(
'shareType' => OCP\Share::SHARE_TYPE_GROUP,
'shareWith' => $group
)
);
$count++;
}
} else {
break;
}
}
|
|
a293d369c
|
304 305 306 307 |
$sorter = new \OC\Share\SearchResultSorter($_GET['search'], 'label', new \OC\Log()); usort($shareWith, array($sorter, 'sort')); |
|
03e52840d
|
308 309 310 311 312 |
OC_JSON::success(array('data' => $shareWith));
}
break;
}
}
|