Add expiration event for shares
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
dd02920aed
commit
b557f52c22
|
@ -35,9 +35,12 @@ class Groups extends Base {
|
|||
|
||||
const SUBJECT_SHARED_GROUP_SELF = 'shared_group_self';
|
||||
const SUBJECT_RESHARED_GROUP_BY = 'reshared_group_by';
|
||||
|
||||
const SUBJECT_UNSHARED_GROUP_SELF = 'unshared_group_self';
|
||||
const SUBJECT_UNSHARED_GROUP_BY = 'unshared_group_by';
|
||||
|
||||
const SUBJECT_EXPIRED_GROUP = 'expired_group';
|
||||
|
||||
/** @var IGroupManager */
|
||||
protected $groupManager;
|
||||
|
||||
|
@ -73,6 +76,8 @@ class Groups extends Base {
|
|||
$subject = $this->l->t('{actor} shared with group {group}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_GROUP_BY) {
|
||||
$subject = $this->l->t('{actor} removed share for group {group}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED_GROUP) {
|
||||
$subject = $this->l->t('Share for group {group} expired');
|
||||
} else {
|
||||
throw new \InvalidArgumentException();
|
||||
}
|
||||
|
@ -104,6 +109,8 @@ class Groups extends Base {
|
|||
$subject = $this->l->t('{actor} shared {file} with group {group}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_GROUP_BY) {
|
||||
$subject = $this->l->t('{actor} removed group {group} from {file}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED_GROUP) {
|
||||
$subject = $this->l->t('Share for file {file} with group {group} expired');
|
||||
} else {
|
||||
throw new \InvalidArgumentException();
|
||||
}
|
||||
|
@ -132,6 +139,7 @@ class Groups extends Base {
|
|||
];
|
||||
case self::SUBJECT_SHARED_GROUP_SELF:
|
||||
case self::SUBJECT_UNSHARED_GROUP_SELF:
|
||||
case self::SUBJECT_EXPIRED_GROUP:
|
||||
return [
|
||||
'file' => $this->getFile($parameters[0], $event),
|
||||
'group' => $this->generateGroupParameter($parameters[1]),
|
||||
|
|
|
@ -38,6 +38,9 @@ class Users extends Base {
|
|||
const SUBJECT_SELF_UNSHARED = 'self_unshared';
|
||||
const SUBJECT_SELF_UNSHARED_BY = 'self_unshared_by';
|
||||
|
||||
const SUBJECT_EXPIRED_USER = 'expired_user';
|
||||
const SUBJECT_EXPIRED = 'expired';
|
||||
|
||||
/**
|
||||
* @param IEvent $event
|
||||
* @return IEvent
|
||||
|
@ -63,7 +66,10 @@ class Users extends Base {
|
|||
$subject = $this->l->t('Shared by {actor}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_BY) {
|
||||
$subject = $this->l->t('{actor} removed share');
|
||||
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED_USER) {
|
||||
$subject = $this->l->t('Share for {user} expired');
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED) {
|
||||
$subject = $this->l->t('Share expired');
|
||||
} else {
|
||||
throw new \InvalidArgumentException();
|
||||
}
|
||||
|
@ -103,6 +109,10 @@ class Users extends Base {
|
|||
$subject = $this->l->t('{actor} shared {file} with you');
|
||||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_BY) {
|
||||
$subject = $this->l->t('{actor} removed you from the share named {file}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED_USER) {
|
||||
$subject = $this->l->t('Share for file {file} with {user} expired');
|
||||
} else if ($event->getSubject() === self::SUBJECT_EXPIRED) {
|
||||
$subject = $this->l->t('Share for file {file} expired');
|
||||
|
||||
} else {
|
||||
throw new \InvalidArgumentException();
|
||||
|
@ -125,6 +135,8 @@ class Users extends Base {
|
|||
switch ($subject) {
|
||||
case self::SUBJECT_SHARED_USER_SELF:
|
||||
case self::SUBJECT_UNSHARED_USER_SELF:
|
||||
case self::SUBJECT_EXPIRED_USER:
|
||||
case self::SUBJECT_EXPIRED:
|
||||
return [
|
||||
'file' => $this->getFile($parameters[0], $event),
|
||||
'user' => $this->getUser($parameters[1]),
|
||||
|
|
|
@ -1313,8 +1313,7 @@ class Manager implements IManager {
|
|||
}
|
||||
|
||||
protected function checkExpireDate($share) {
|
||||
if ($share->getExpirationDate() !== null &&
|
||||
$share->getExpirationDate() <= new \DateTime()) {
|
||||
if ($share->isExpired()) {
|
||||
$this->deleteShare($share);
|
||||
throw new ShareNotFound($this->l->t('The requested share does not exist anymore'));
|
||||
}
|
||||
|
|
|
@ -368,6 +368,14 @@ class Share implements \OCP\Share\IShare {
|
|||
return $this->expireDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function isExpired() {
|
||||
return $this->getExpirationDate() !== null &&
|
||||
$this->getExpirationDate() <= new \DateTime();
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
|
|
|
@ -257,6 +257,14 @@ interface IShare {
|
|||
*/
|
||||
public function getExpirationDate();
|
||||
|
||||
/**
|
||||
* Is the share expired ?
|
||||
*
|
||||
* @return boolean
|
||||
* @since 18.0.0
|
||||
*/
|
||||
public function isExpired();
|
||||
|
||||
/**
|
||||
* set a label for a share, some shares, e.g. public links can have a label
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue