Merge pull request #22131 from nextcloud/backport/22062/stable19-take2
[stable19] fix display of remote users in incoming share notifications
This commit is contained in:
commit
45bdfd2198
|
@ -157,13 +157,13 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$result = $query->execute();
|
$result = $query->execute();
|
||||||
while ($row = $result->fetch()) {
|
while ($row = $result->fetch()) {
|
||||||
$addressBooks[$row['id']] = [
|
$addressBooks[$row['id']] = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'uri' => $row['uri'],
|
'uri' => $row['uri'],
|
||||||
'principaluri' => $this->convertPrincipal($row['principaluri'], false),
|
'principaluri' => $this->convertPrincipal($row['principaluri'], false),
|
||||||
'{DAV:}displayname' => $row['displayname'],
|
'{DAV:}displayname' => $row['displayname'],
|
||||||
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
||||||
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
||||||
'{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0',
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->addOwnerPrincipal($addressBooks[$row['id']]);
|
$this->addOwnerPrincipal($addressBooks[$row['id']]);
|
||||||
|
@ -177,7 +177,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$principals = array_map(function ($principal) {
|
$principals = array_map(function ($principal) {
|
||||||
return urldecode($principal);
|
return urldecode($principal);
|
||||||
}, $principals);
|
}, $principals);
|
||||||
$principals[]= $principalUri;
|
$principals[] = $principalUri;
|
||||||
|
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
$result = $query->select(['a.id', 'a.uri', 'a.displayname', 'a.principaluri', 'a.description', 'a.synctoken', 's.access'])
|
$result = $query->select(['a.id', 'a.uri', 'a.displayname', 'a.principaluri', 'a.description', 'a.synctoken', 's.access'])
|
||||||
|
@ -195,7 +195,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$readOnly = (int) $row['access'] === Backend::ACCESS_READ;
|
$readOnly = (int)$row['access'] === Backend::ACCESS_READ;
|
||||||
if (isset($addressBooks[$row['id']])) {
|
if (isset($addressBooks[$row['id']])) {
|
||||||
if ($readOnly) {
|
if ($readOnly) {
|
||||||
// New share can not have more permissions then the old one.
|
// New share can not have more permissions then the old one.
|
||||||
|
@ -213,13 +213,13 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$displayName = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')';
|
$displayName = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')';
|
||||||
|
|
||||||
$addressBooks[$row['id']] = [
|
$addressBooks[$row['id']] = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'uri' => $uri,
|
'uri' => $uri,
|
||||||
'principaluri' => $principalUriOriginal,
|
'principaluri' => $principalUriOriginal,
|
||||||
'{DAV:}displayname' => $displayName,
|
'{DAV:}displayname' => $displayName,
|
||||||
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
||||||
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
||||||
'{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0',
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
|
||||||
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $row['principaluri'],
|
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $row['principaluri'],
|
||||||
$readOnlyPropertyName => $readOnly,
|
$readOnlyPropertyName => $readOnly,
|
||||||
];
|
];
|
||||||
|
@ -235,21 +235,21 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$principalUri = $this->convertPrincipal($principalUri, true);
|
$principalUri = $this->convertPrincipal($principalUri, true);
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
$query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken'])
|
$query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken'])
|
||||||
->from('addressbooks')
|
->from('addressbooks')
|
||||||
->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)));
|
->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)));
|
||||||
|
|
||||||
$addressBooks = [];
|
$addressBooks = [];
|
||||||
|
|
||||||
$result = $query->execute();
|
$result = $query->execute();
|
||||||
while ($row = $result->fetch()) {
|
while ($row = $result->fetch()) {
|
||||||
$addressBooks[$row['id']] = [
|
$addressBooks[$row['id']] = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'uri' => $row['uri'],
|
'uri' => $row['uri'],
|
||||||
'principaluri' => $this->convertPrincipal($row['principaluri'], false),
|
'principaluri' => $this->convertPrincipal($row['principaluri'], false),
|
||||||
'{DAV:}displayname' => $row['displayname'],
|
'{DAV:}displayname' => $row['displayname'],
|
||||||
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
||||||
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
||||||
'{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0',
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->addOwnerPrincipal($addressBooks[$row['id']]);
|
$this->addOwnerPrincipal($addressBooks[$row['id']]);
|
||||||
|
@ -290,13 +290,13 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
}
|
}
|
||||||
|
|
||||||
$addressBook = [
|
$addressBook = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'uri' => $row['uri'],
|
'uri' => $row['uri'],
|
||||||
'principaluri' => $row['principaluri'],
|
'principaluri' => $row['principaluri'],
|
||||||
'{DAV:}displayname' => $row['displayname'],
|
'{DAV:}displayname' => $row['displayname'],
|
||||||
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
||||||
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
||||||
'{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0',
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->addOwnerPrincipal($addressBook);
|
$this->addOwnerPrincipal($addressBook);
|
||||||
|
@ -324,13 +324,13 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
}
|
}
|
||||||
|
|
||||||
$addressBook = [
|
$addressBook = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'uri' => $row['uri'],
|
'uri' => $row['uri'],
|
||||||
'principaluri' => $row['principaluri'],
|
'principaluri' => $row['principaluri'],
|
||||||
'{DAV:}displayname' => $row['displayname'],
|
'{DAV:}displayname' => $row['displayname'],
|
||||||
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'],
|
||||||
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'],
|
||||||
'{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0',
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->addOwnerPrincipal($addressBook);
|
$this->addOwnerPrincipal($addressBook);
|
||||||
|
@ -365,7 +365,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
*/
|
*/
|
||||||
$propPatch->handle($supportedProperties, function ($mutations) use ($addressBookId) {
|
$propPatch->handle($supportedProperties, function ($mutations) use ($addressBookId) {
|
||||||
$updates = [];
|
$updates = [];
|
||||||
foreach ($mutations as $property=>$newValue) {
|
foreach ($mutations as $property => $newValue) {
|
||||||
switch ($property) {
|
switch ($property) {
|
||||||
case '{DAV:}displayname':
|
case '{DAV:}displayname':
|
||||||
$updates['displayname'] = $newValue;
|
$updates['displayname'] = $newValue;
|
||||||
|
@ -378,11 +378,11 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
$query->update('addressbooks');
|
$query->update('addressbooks');
|
||||||
|
|
||||||
foreach ($updates as $key=>$value) {
|
foreach ($updates as $key => $value) {
|
||||||
$query->set($key, $query->createNamedParameter($value));
|
$query->set($key, $query->createNamedParameter($value));
|
||||||
}
|
}
|
||||||
$query->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId)))
|
$query->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId)))
|
||||||
->execute();
|
->execute();
|
||||||
|
|
||||||
$this->addChange($addressBookId, "", 2);
|
$this->addChange($addressBookId, "", 2);
|
||||||
|
|
||||||
|
@ -408,7 +408,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
'synctoken' => 1
|
'synctoken' => 1
|
||||||
];
|
];
|
||||||
|
|
||||||
foreach ($properties as $property=>$newValue) {
|
foreach ($properties as $property => $newValue) {
|
||||||
switch ($property) {
|
switch ($property) {
|
||||||
case '{DAV:}displayname':
|
case '{DAV:}displayname':
|
||||||
$values['displayname'] = $newValue;
|
$values['displayname'] = $newValue;
|
||||||
|
@ -634,7 +634,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
->andWhere($q->expr()->eq('uid', $q->createNamedParameter($uid)))
|
->andWhere($q->expr()->eq('uid', $q->createNamedParameter($uid)))
|
||||||
->setMaxResults(1);
|
->setMaxResults(1);
|
||||||
$result = $q->execute();
|
$result = $q->execute();
|
||||||
$count = (bool) $result->fetchColumn();
|
$count = (bool)$result->fetchColumn();
|
||||||
$result->closeCursor();
|
$result->closeCursor();
|
||||||
if ($count) {
|
if ($count) {
|
||||||
throw new \Sabre\DAV\Exception\BadRequest('VCard object with uid already exists in this addressbook collection.');
|
throw new \Sabre\DAV\Exception\BadRequest('VCard object with uid already exists in this addressbook collection.');
|
||||||
|
@ -811,7 +811,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
public function getChangesForAddressBook($addressBookId, $syncToken, $syncLevel, $limit = null) {
|
public function getChangesForAddressBook($addressBookId, $syncToken, $syncLevel, $limit = null) {
|
||||||
// Current synctoken
|
// Current synctoken
|
||||||
$stmt = $this->db->prepare('SELECT `synctoken` FROM `*PREFIX*addressbooks` WHERE `id` = ?');
|
$stmt = $this->db->prepare('SELECT `synctoken` FROM `*PREFIX*addressbooks` WHERE `id` = ?');
|
||||||
$stmt->execute([ $addressBookId ]);
|
$stmt->execute([$addressBookId]);
|
||||||
$currentToken = $stmt->fetchColumn(0);
|
$currentToken = $stmt->fetchColumn(0);
|
||||||
|
|
||||||
if (is_null($currentToken)) {
|
if (is_null($currentToken)) {
|
||||||
|
@ -820,14 +820,14 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
|
|
||||||
$result = [
|
$result = [
|
||||||
'syncToken' => $currentToken,
|
'syncToken' => $currentToken,
|
||||||
'added' => [],
|
'added' => [],
|
||||||
'modified' => [],
|
'modified' => [],
|
||||||
'deleted' => [],
|
'deleted' => [],
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($syncToken) {
|
if ($syncToken) {
|
||||||
$query = "SELECT `uri`, `operation` FROM `*PREFIX*addressbookchanges` WHERE `synctoken` >= ? AND `synctoken` < ? AND `addressbookid` = ? ORDER BY `synctoken`";
|
$query = "SELECT `uri`, `operation` FROM `*PREFIX*addressbookchanges` WHERE `synctoken` >= ? AND `synctoken` < ? AND `addressbookid` = ? ORDER BY `synctoken`";
|
||||||
if ($limit>0) {
|
if ($limit > 0) {
|
||||||
$query .= " LIMIT " . (int)$limit;
|
$query .= " LIMIT " . (int)$limit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -895,7 +895,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
* @param bool $modified
|
* @param bool $modified
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function readBlob($cardData, &$modified=false) {
|
private function readBlob($cardData, &$modified = false) {
|
||||||
if (is_resource($cardData)) {
|
if (is_resource($cardData)) {
|
||||||
$cardData = stream_get_contents($cardData);
|
$cardData = stream_get_contents($cardData);
|
||||||
}
|
}
|
||||||
|
@ -943,9 +943,9 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
* @param string $pattern which should match within the $searchProperties
|
* @param string $pattern which should match within the $searchProperties
|
||||||
* @param array $searchProperties defines the properties within the query pattern should match
|
* @param array $searchProperties defines the properties within the query pattern should match
|
||||||
* @param array $options = array() to define the search behavior
|
* @param array $options = array() to define the search behavior
|
||||||
* - 'escape_like_param' - If set to false wildcards _ and % are not escaped, otherwise they are
|
* - 'escape_like_param' - If set to false wildcards _ and % are not escaped, otherwise they are
|
||||||
* - 'limit' - Set a numeric limit for the search results
|
* - 'limit' - Set a numeric limit for the search results
|
||||||
* - 'offset' - Set the offset for the limited search results
|
* - 'offset' - Set the offset for the limited search results
|
||||||
* @return array an array of contacts which are arrays of key-value-pairs
|
* @return array an array of contacts which are arrays of key-value-pairs
|
||||||
*/
|
*/
|
||||||
public function search($addressBookId, $pattern, $searchProperties, $options = []) {
|
public function search($addressBookId, $pattern, $searchProperties, $options = []) {
|
||||||
|
@ -980,7 +980,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$matches = $result->fetchAll();
|
$matches = $result->fetchAll();
|
||||||
$result->closeCursor();
|
$result->closeCursor();
|
||||||
$matches = array_map(function ($match) {
|
$matches = array_map(function ($match) {
|
||||||
return (int) $match['cardid'];
|
return (int)$match['cardid'];
|
||||||
}, $matches);
|
}, $matches);
|
||||||
|
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
|
@ -1031,8 +1031,8 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
public function getCardUri($id) {
|
public function getCardUri($id) {
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
$query->select('uri')->from($this->dbCardsTable)
|
$query->select('uri')->from($this->dbCardsTable)
|
||||||
->where($query->expr()->eq('id', $query->createParameter('id')))
|
->where($query->expr()->eq('id', $query->createParameter('id')))
|
||||||
->setParameter('id', $id);
|
->setParameter('id', $id);
|
||||||
|
|
||||||
$result = $query->execute();
|
$result = $query->execute();
|
||||||
$uri = $result->fetch();
|
$uri = $result->fetch();
|
||||||
|
@ -1056,8 +1056,8 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
$result = [];
|
$result = [];
|
||||||
$query = $this->db->getQueryBuilder();
|
$query = $this->db->getQueryBuilder();
|
||||||
$query->select('*')->from($this->dbCardsTable)
|
$query->select('*')->from($this->dbCardsTable)
|
||||||
->where($query->expr()->eq('uri', $query->createNamedParameter($uri)))
|
->where($query->expr()->eq('uri', $query->createNamedParameter($uri)))
|
||||||
->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId)));
|
->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId)));
|
||||||
$queryResult = $query->execute();
|
$queryResult = $query->execute();
|
||||||
$contact = $queryResult->fetch();
|
$contact = $queryResult->fetch();
|
||||||
$queryResult->closeCursor();
|
$queryResult->closeCursor();
|
||||||
|
@ -1142,7 +1142,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
* @return VCard
|
* @return VCard
|
||||||
*/
|
*/
|
||||||
protected function readCard($cardData) {
|
protected function readCard($cardData) {
|
||||||
return Reader::read($cardData);
|
return Reader::read($cardData);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1185,6 +1185,7 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For shared address books the sharee is set in the ACL of the address book
|
* For shared address books the sharee is set in the ACL of the address book
|
||||||
|
*
|
||||||
* @param $addressBookId
|
* @param $addressBookId
|
||||||
* @param $acl
|
* @param $acl
|
||||||
* @return array
|
* @return array
|
||||||
|
|
|
@ -102,15 +102,15 @@ class Notifier implements INotifier {
|
||||||
|
|
||||||
$params = $notification->getSubjectParameters();
|
$params = $notification->getSubjectParameters();
|
||||||
if ($params[0] !== $params[1] && $params[1] !== null) {
|
if ($params[0] !== $params[1] && $params[1] !== null) {
|
||||||
|
$remoteInitiator = $this->createRemoteUser($params[0]);
|
||||||
|
$remoteOwner = $this->createRemoteUser($params[1]);
|
||||||
|
$params[3] = $remoteInitiator['name'] . '@' . $remoteInitiator['server'];
|
||||||
|
$params[4] = $remoteOwner['name'] . '@' . $remoteOwner['server'];
|
||||||
|
|
||||||
$notification->setParsedSubject(
|
$notification->setParsedSubject(
|
||||||
$l->t('You received "%3$s" as a remote share from %4$s (%1$s) (on behalf of %5$s (%2$s))', $params)
|
$l->t('You received "%3$s" as a remote share from %4$s (%1$s) (on behalf of %5$s (%2$s))', $params)
|
||||||
);
|
);
|
||||||
|
|
||||||
$initiator = $params[0];
|
|
||||||
$initiatorDisplay = isset($params[3]) ? $params[3] : null;
|
|
||||||
$owner = $params[1];
|
|
||||||
$ownerDisplay = isset($params[4]) ? $params[4] : null;
|
|
||||||
|
|
||||||
$notification->setRichSubject(
|
$notification->setRichSubject(
|
||||||
$l->t('You received {share} as a remote share from {user} (on behalf of {behalf})'),
|
$l->t('You received {share} as a remote share from {user} (on behalf of {behalf})'),
|
||||||
[
|
[
|
||||||
|
@ -119,17 +119,18 @@ class Notifier implements INotifier {
|
||||||
'id' => $notification->getObjectId(),
|
'id' => $notification->getObjectId(),
|
||||||
'name' => $params[2],
|
'name' => $params[2],
|
||||||
],
|
],
|
||||||
'user' => $this->createRemoteUser($initiator, $initiatorDisplay),
|
'user' => $remoteInitiator,
|
||||||
'behalf' => $this->createRemoteUser($owner, $ownerDisplay),
|
'behalf' => $remoteOwner,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
$remoteOwner = $this->createRemoteUser($params[0]);
|
||||||
|
$params[3] = $remoteOwner['name'] . '@' . $remoteOwner['server'];
|
||||||
|
|
||||||
$notification->setParsedSubject(
|
$notification->setParsedSubject(
|
||||||
$l->t('You received "%3$s" as a remote share from %4$s (%1$s)', $params)
|
$l->t('You received "%3$s" as a remote share from %4$s (%1$s)', $params)
|
||||||
);
|
);
|
||||||
|
|
||||||
$owner = $params[0];
|
|
||||||
$ownerDisplay = isset($params[3]) ? $params[3] : null;
|
|
||||||
|
|
||||||
$notification->setRichSubject(
|
$notification->setRichSubject(
|
||||||
$l->t('You received {share} as a remote share from {user}'),
|
$l->t('You received {share} as a remote share from {user}'),
|
||||||
|
@ -139,7 +140,7 @@ class Notifier implements INotifier {
|
||||||
'id' => $notification->getObjectId(),
|
'id' => $notification->getObjectId(),
|
||||||
'name' => $params[2],
|
'name' => $params[2],
|
||||||
],
|
],
|
||||||
'user' => $this->createRemoteUser($owner, $ownerDisplay),
|
'user' => $remoteOwner,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -149,14 +150,14 @@ class Notifier implements INotifier {
|
||||||
switch ($action->getLabel()) {
|
switch ($action->getLabel()) {
|
||||||
case 'accept':
|
case 'accept':
|
||||||
$action->setParsedLabel(
|
$action->setParsedLabel(
|
||||||
(string) $l->t('Accept')
|
(string)$l->t('Accept')
|
||||||
)
|
)
|
||||||
->setPrimary(true);
|
->setPrimary(true);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'decline':
|
case 'decline':
|
||||||
$action->setParsedLabel(
|
$action->setParsedLabel(
|
||||||
(string) $l->t('Decline')
|
(string)$l->t('Decline')
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -203,7 +204,7 @@ class Notifier implements INotifier {
|
||||||
* @param ICloudId $cloudId
|
* @param ICloudId $cloudId
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
protected function getDisplayName(ICloudId $cloudId) {
|
protected function getDisplayName(ICloudId $cloudId): string {
|
||||||
$server = $cloudId->getRemote();
|
$server = $cloudId->getRemote();
|
||||||
$user = $cloudId->getUser();
|
$user = $cloudId->getUser();
|
||||||
if (strpos($server, 'http://') === 0) {
|
if (strpos($server, 'http://') === 0) {
|
||||||
|
@ -213,17 +214,24 @@ class Notifier implements INotifier {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// contains protocol in the ID
|
||||||
return $this->getDisplayNameFromContact($cloudId->getId());
|
return $this->getDisplayNameFromContact($cloudId->getId());
|
||||||
} catch (\OutOfBoundsException $e) {
|
} catch (\OutOfBoundsException $e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->getDisplayNameFromContact($user . '@http://' . $server);
|
// does not include protocol, as stored in addressbooks
|
||||||
|
return $this->getDisplayNameFromContact($cloudId->getDisplayId());
|
||||||
} catch (\OutOfBoundsException $e) {
|
} catch (\OutOfBoundsException $e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->getDisplayNameFromContact($user . '@https://' . $server);
|
return $this->getDisplayNameFromContact($user . '@http://' . $server);
|
||||||
|
} catch (\OutOfBoundsException $e) {
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return $this->getDisplayNameFromContact($user . '@https://' . $server);
|
||||||
} catch (\OutOfBoundsException $e) {
|
} catch (\OutOfBoundsException $e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -255,7 +255,7 @@ class CloudFederationProviderFiles implements ICloudFederationProvider {
|
||||||
->setAffectedUser($shareWith)
|
->setAffectedUser($shareWith)
|
||||||
->setObject('remote_share', (int)$shareId, $name);
|
->setObject('remote_share', (int)$shareId, $name);
|
||||||
\OC::$server->getActivityManager()->publish($event);
|
\OC::$server->getActivityManager()->publish($event);
|
||||||
$this->notifyAboutNewShare($shareWith, $shareId, $ownerFederatedId, $sharedByFederatedId, $name, $sharedBy, $owner);
|
$this->notifyAboutNewShare($shareWith, $shareId, $ownerFederatedId, $sharedByFederatedId, $name);
|
||||||
} else {
|
} else {
|
||||||
$groupMembers = $this->groupManager->get($shareWith)->getUsers();
|
$groupMembers = $this->groupManager->get($shareWith)->getUsers();
|
||||||
foreach ($groupMembers as $user) {
|
foreach ($groupMembers as $user) {
|
||||||
|
@ -266,7 +266,7 @@ class CloudFederationProviderFiles implements ICloudFederationProvider {
|
||||||
->setAffectedUser($user->getUID())
|
->setAffectedUser($user->getUID())
|
||||||
->setObject('remote_share', (int)$shareId, $name);
|
->setObject('remote_share', (int)$shareId, $name);
|
||||||
\OC::$server->getActivityManager()->publish($event);
|
\OC::$server->getActivityManager()->publish($event);
|
||||||
$this->notifyAboutNewShare($user->getUID(), $shareId, $ownerFederatedId, $sharedByFederatedId, $name, $sharedBy, $owner);
|
$this->notifyAboutNewShare($user->getUID(), $shareId, $ownerFederatedId, $sharedByFederatedId, $name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $shareId;
|
return $shareId;
|
||||||
|
@ -332,22 +332,13 @@ class CloudFederationProviderFiles implements ICloudFederationProvider {
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
private function notifyAboutNewShare($shareWith, $shareId, $ownerFederatedId, $sharedByFederatedId, $name): void {
|
||||||
* notify user about new federated share
|
|
||||||
*
|
|
||||||
* @param $shareWith
|
|
||||||
* @param $shareId
|
|
||||||
* @param $ownerFederatedId
|
|
||||||
* @param $sharedByFederatedId
|
|
||||||
* @param $name
|
|
||||||
*/
|
|
||||||
private function notifyAboutNewShare($shareWith, $shareId, $ownerFederatedId, $sharedByFederatedId, $name, $sharedBy, $owner) {
|
|
||||||
$notification = $this->notificationManager->createNotification();
|
$notification = $this->notificationManager->createNotification();
|
||||||
$notification->setApp('files_sharing')
|
$notification->setApp('files_sharing')
|
||||||
->setUser($shareWith)
|
->setUser($shareWith)
|
||||||
->setDateTime(new \DateTime())
|
->setDateTime(new \DateTime())
|
||||||
->setObject('remote_share', $shareId)
|
->setObject('remote_share', $shareId)
|
||||||
->setSubject('remote_share', [$ownerFederatedId, $sharedByFederatedId, trim($name, '/'), $sharedBy, $owner]);
|
->setSubject('remote_share', [$ownerFederatedId, $sharedByFederatedId, trim($name, '/')]);
|
||||||
|
|
||||||
$declineAction = $notification->createAction();
|
$declineAction = $notification->createAction();
|
||||||
$declineAction->setLabel('decline')
|
$declineAction->setLabel('decline')
|
||||||
|
|
Loading…
Reference in New Issue