2014-02-18 18:07:03 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle
|
|
|
|
* @copyright 2014 Bjoern Schiessle <schiessle@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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Share;
|
|
|
|
|
|
|
|
class Helper extends \OC\Share\Constants {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a unique target for the item
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $itemType
|
|
|
|
* @param string $itemSource
|
|
|
|
* @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
|
|
|
|
* @param string $shareWith User or group the item is being shared with
|
|
|
|
* @param string $uidOwner User that is the owner of shared item
|
|
|
|
* @param string $suggestedTarget The suggested target originating from a reshare (optional)
|
|
|
|
* @param int $groupParent The id of the parent group share (optional)
|
2014-05-13 14:17:30 +04:00
|
|
|
* @throws \Exception
|
2014-02-18 18:07:03 +04:00
|
|
|
* @return string Item target
|
|
|
|
*/
|
2014-08-22 17:59:44 +04:00
|
|
|
public static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) {
|
2014-09-29 13:23:18 +04:00
|
|
|
// FIXME: $uidOwner and $groupParent seems to be unused
|
2014-02-18 18:07:03 +04:00
|
|
|
$backend = \OC\Share\Share::getBackend($itemType);
|
2014-12-04 21:51:04 +03:00
|
|
|
if ($shareType === self::SHARE_TYPE_LINK || $shareType === self::SHARE_TYPE_REMOTE) {
|
2014-02-18 18:07:03 +04:00
|
|
|
if (isset($suggestedTarget)) {
|
|
|
|
return $suggestedTarget;
|
|
|
|
}
|
|
|
|
return $backend->generateTarget($itemSource, false);
|
|
|
|
} else {
|
|
|
|
if ($itemType == 'file' || $itemType == 'folder') {
|
|
|
|
$column = 'file_target';
|
|
|
|
$columnSource = 'file_source';
|
|
|
|
} else {
|
|
|
|
$column = 'item_target';
|
|
|
|
$columnSource = 'item_source';
|
|
|
|
}
|
|
|
|
if ($shareType == self::SHARE_TYPE_USER) {
|
|
|
|
// Share with is a user, so set share type to user and groups
|
|
|
|
$shareType = self::$shareTypeUserAndGroups;
|
|
|
|
}
|
2014-08-22 17:59:44 +04:00
|
|
|
$exclude = array();
|
2014-09-25 15:45:23 +04:00
|
|
|
|
|
|
|
$result = \OCP\Share::getItemsSharedWithUser($itemType, $shareWith);
|
|
|
|
foreach ($result as $row) {
|
|
|
|
if ($row['permissions'] > 0) {
|
|
|
|
$exclude[] = $row[$column];
|
2014-02-18 18:07:03 +04:00
|
|
|
}
|
|
|
|
}
|
2014-08-22 17:59:44 +04:00
|
|
|
|
|
|
|
// Check if suggested target exists first
|
|
|
|
if (!isset($suggestedTarget)) {
|
|
|
|
$suggestedTarget = $itemSource;
|
|
|
|
}
|
|
|
|
if ($shareType == self::SHARE_TYPE_GROUP) {
|
|
|
|
$target = $backend->generateTarget($suggestedTarget, false, $exclude);
|
|
|
|
} else {
|
|
|
|
$target = $backend->generateTarget($suggestedTarget, $shareWith, $exclude);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $target;
|
2014-02-18 18:07:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all reshares of an item
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param int $parent Id of item to delete
|
|
|
|
* @param bool $excludeParent If true, exclude the parent from the delete (optional)
|
2014-05-13 14:17:30 +04:00
|
|
|
* @param string $uidOwner The user that the parent was shared with (optional)
|
2014-09-26 18:58:47 +04:00
|
|
|
* @param int $newParent new parent for the childrens
|
2014-02-18 18:07:03 +04:00
|
|
|
*/
|
2014-09-26 18:58:47 +04:00
|
|
|
public static function delete($parent, $excludeParent = false, $uidOwner = null, $newParent = null) {
|
2014-02-18 18:07:03 +04:00
|
|
|
$ids = array($parent);
|
2014-06-24 19:04:27 +04:00
|
|
|
$deletedItems = array();
|
2014-09-26 18:58:47 +04:00
|
|
|
$changeParent = array();
|
2014-02-18 18:07:03 +04:00
|
|
|
$parents = array($parent);
|
|
|
|
while (!empty($parents)) {
|
|
|
|
$parents = "'".implode("','", $parents)."'";
|
|
|
|
// Check the owner on the first search of reshares, useful for
|
|
|
|
// finding and deleting the reshares by a single user of a group share
|
|
|
|
if (count($ids) == 1 && isset($uidOwner)) {
|
2014-06-24 19:04:27 +04:00
|
|
|
$query = \OC_DB::prepare('SELECT `id`, `share_with`, `item_type`, `share_type`, `item_target`, `file_target`, `parent`'
|
2014-02-18 18:07:03 +04:00
|
|
|
.' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?');
|
|
|
|
$result = $query->execute(array($uidOwner));
|
|
|
|
} else {
|
2014-06-24 19:04:27 +04:00
|
|
|
$query = \OC_DB::prepare('SELECT `id`, `share_with`, `item_type`, `share_type`, `item_target`, `file_target`, `parent`, `uid_owner`'
|
2014-02-18 18:07:03 +04:00
|
|
|
.' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')');
|
|
|
|
$result = $query->execute();
|
|
|
|
}
|
|
|
|
// Reset parents array, only go through loop again if items are found
|
|
|
|
$parents = array();
|
|
|
|
while ($item = $result->fetchRow()) {
|
2014-06-24 19:04:27 +04:00
|
|
|
$tmpItem = array(
|
|
|
|
'id' => $item['id'],
|
|
|
|
'shareWith' => $item['share_with'],
|
|
|
|
'itemTarget' => $item['item_target'],
|
|
|
|
'itemType' => $item['item_type'],
|
|
|
|
'shareType' => (int)$item['share_type'],
|
|
|
|
);
|
|
|
|
if (isset($item['file_target'])) {
|
|
|
|
$tmpItem['fileTarget'] = $item['file_target'];
|
|
|
|
}
|
2014-09-26 18:58:47 +04:00
|
|
|
// if we have a new parent for the child we remember the child
|
|
|
|
// to update the parent, if not we add it to the list of items
|
|
|
|
// which should be deleted
|
|
|
|
if ($newParent !== null) {
|
|
|
|
$changeParent[] = $item['id'];
|
|
|
|
} else {
|
|
|
|
$deletedItems[] = $tmpItem;
|
|
|
|
$ids[] = $item['id'];
|
|
|
|
$parents[] = $item['id'];
|
|
|
|
}
|
2014-02-18 18:07:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($excludeParent) {
|
|
|
|
unset($ids[0]);
|
|
|
|
}
|
2014-09-26 18:58:47 +04:00
|
|
|
|
|
|
|
if (!empty($changeParent)) {
|
|
|
|
$idList = "'".implode("','", $changeParent)."'";
|
|
|
|
$query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` IN ('.$idList.')');
|
|
|
|
$query->execute(array($newParent));
|
|
|
|
}
|
|
|
|
|
2014-02-18 18:07:03 +04:00
|
|
|
if (!empty($ids)) {
|
2014-06-24 19:04:27 +04:00
|
|
|
$idList = "'".implode("','", $ids)."'";
|
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$idList.')');
|
2014-02-18 18:07:03 +04:00
|
|
|
$query->execute();
|
|
|
|
}
|
2014-06-24 19:04:27 +04:00
|
|
|
|
|
|
|
return $deletedItems;
|
2014-02-18 18:07:03 +04:00
|
|
|
}
|
2014-04-23 14:50:24 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get default expire settings defined by the admin
|
2014-04-23 14:50:24 +04:00
|
|
|
* @return array contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays'
|
|
|
|
*/
|
|
|
|
public static function getDefaultExpireSetting() {
|
|
|
|
|
|
|
|
$defaultExpireSettings = array('defaultExpireDateSet' => false);
|
|
|
|
|
|
|
|
// get default expire settings
|
|
|
|
$defaultExpireDate = \OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
if ($defaultExpireDate === 'yes') {
|
|
|
|
$enforceExpireDate = \OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no');
|
|
|
|
$defaultExpireSettings['defaultExpireDateSet'] = true;
|
|
|
|
$defaultExpireSettings['expireAfterDays'] = (int)\OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7');
|
|
|
|
$defaultExpireSettings['enforceExpireDate'] = $enforceExpireDate === 'yes' ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $defaultExpireSettings;
|
|
|
|
}
|
|
|
|
|
2014-06-03 17:15:04 +04:00
|
|
|
public static function calcExpireDate() {
|
|
|
|
$expireAfter = \OC\Share\Share::getExpireInterval() * 24 * 60 * 60;
|
|
|
|
$expireAt = time() + $expireAfter;
|
|
|
|
$date = new \DateTime();
|
|
|
|
$date->setTimestamp($expireAt);
|
|
|
|
$date->setTime(0, 0, 0);
|
|
|
|
//$dateString = $date->format('Y-m-d') . ' 00:00:00';
|
|
|
|
|
|
|
|
return $date;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-23 14:50:24 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* calculate expire date
|
2014-04-23 14:50:24 +04:00
|
|
|
* @param array $defaultExpireSettings contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays'
|
|
|
|
* @param int $creationTime timestamp when the share was created
|
|
|
|
* @param int $userExpireDate expire timestamp set by the user
|
|
|
|
* @return mixed integer timestamp or False
|
|
|
|
*/
|
|
|
|
public static function calculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate = null) {
|
|
|
|
|
|
|
|
$expires = false;
|
2014-11-21 13:01:39 +03:00
|
|
|
$defaultExpires = null;
|
2014-04-23 14:50:24 +04:00
|
|
|
|
2014-05-12 18:15:13 +04:00
|
|
|
if (!empty($defaultExpireSettings['defaultExpireDateSet'])) {
|
2014-11-21 13:01:39 +03:00
|
|
|
$defaultExpires = $creationTime + $defaultExpireSettings['expireAfterDays'] * 86400;
|
2014-04-23 14:50:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($userExpireDate)) {
|
|
|
|
// if the admin decided to enforce the default expire date then we only take
|
|
|
|
// the user defined expire date of it is before the default expire date
|
2014-11-21 13:01:39 +03:00
|
|
|
if ($defaultExpires && !empty($defaultExpireSettings['enforceExpireDate'])) {
|
|
|
|
$expires = min($userExpireDate, $defaultExpires);
|
2014-04-23 14:50:24 +04:00
|
|
|
} else {
|
|
|
|
$expires = $userExpireDate;
|
|
|
|
}
|
2014-11-21 15:31:56 +03:00
|
|
|
} else if ($defaultExpires && !empty($defaultExpireSettings['enforceExpireDate'])) {
|
|
|
|
$expires = $defaultExpires;
|
2014-04-23 14:50:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $expires;
|
|
|
|
}
|
2014-02-18 18:07:03 +04:00
|
|
|
}
|