diff options
author | Joas Schilling <coding@schilljs.com> | 2018-11-23 13:21:01 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-11-23 13:21:52 +0100 |
commit | 72f8a58f89312f3fe2d740150491e7b0924a4122 (patch) | |
tree | e045bd0b219c7442fbf34e87ec8f9f13c9644165 /apps/files_sharing/lib/Activity/Providers | |
parent | 75c373705408339dc71e5ba6775737b896dd5034 (diff) | |
download | nextcloud-server-72f8a58f89312f3fe2d740150491e7b0924a4122.tar.gz nextcloud-server-72f8a58f89312f3fe2d740150491e7b0924a4122.zip |
Parse activity when a user self-unshares a file
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_sharing/lib/Activity/Providers')
-rw-r--r-- | apps/files_sharing/lib/Activity/Providers/Users.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Activity/Providers/Users.php b/apps/files_sharing/lib/Activity/Providers/Users.php index 2de7e23621e..61f169fd092 100644 --- a/apps/files_sharing/lib/Activity/Providers/Users.php +++ b/apps/files_sharing/lib/Activity/Providers/Users.php @@ -35,6 +35,8 @@ class Users extends Base { const SUBJECT_SHARED_WITH_BY = 'shared_with_by'; const SUBJECT_UNSHARED_BY = 'unshared_by'; + const SUBJECT_SELF_UNSHARED = 'self_unshared'; + const SUBJECT_SELF_UNSHARED_BY = 'self_unshared_by'; /** * @param IEvent $event @@ -49,6 +51,10 @@ class Users extends Base { $subject = $this->l->t('Shared with {user}'); } else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_SELF) { $subject = $this->l->t('Removed share for {user}'); + } else if ($event->getSubject() === self::SUBJECT_SELF_UNSHARED) { + $subject = $this->l->t('You removed yourself'); + } else if ($event->getSubject() === self::SUBJECT_SELF_UNSHARED_BY) { + $subject = $this->l->t('{actor} removed themselves'); } else if ($event->getSubject() === self::SUBJECT_RESHARED_USER_BY) { $subject = $this->l->t('{actor} shared with {user}'); } else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_BY) { @@ -85,6 +91,10 @@ class Users extends Base { $subject = $this->l->t('You shared {file} with {user}'); } else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_SELF) { $subject = $this->l->t('You removed {user} from {file}'); + } else if ($event->getSubject() === self::SUBJECT_SELF_UNSHARED) { + $subject = $this->l->t('You removed yourself from {file}'); + } else if ($event->getSubject() === self::SUBJECT_SELF_UNSHARED_BY) { + $subject = $this->l->t('{actor} removed themselves from {file}'); } else if ($event->getSubject() === self::SUBJECT_RESHARED_USER_BY) { $subject = $this->l->t('{actor} shared {file} with {user}'); } else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_BY) { @@ -121,6 +131,8 @@ class Users extends Base { ]; case self::SUBJECT_SHARED_WITH_BY: case self::SUBJECT_UNSHARED_BY: + case self::SUBJECT_SELF_UNSHARED: + case self::SUBJECT_SELF_UNSHARED_BY: return [ 'file' => $this->getFile($parameters[0], $event), 'actor' => $this->getUser($parameters[1]), |