Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add activity logging for favorites in dav #48612

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

grnd-alt
Copy link
Member

@grnd-alt grnd-alt commented Oct 8, 2024

Summary

Dav api did not log favorite added/removed events.

Checklist

@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch from cde368c to e747f11 Compare October 8, 2024 10:56
@szaimen szaimen requested review from artonge and removed request for szaimen October 8, 2024 11:32
@szaimen szaimen added enhancement 3. to review Waiting for reviews labels Oct 8, 2024
@szaimen szaimen added this to the Nextcloud 31 milestone Oct 8, 2024
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch 3 times, most recently from 3a2b521 to fbd6419 Compare October 8, 2024 12:55
Copy link
Contributor

@susnux susnux left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it not be cleaner and make more sense to emit just the event and handle the activity in an event listener?

Then only one place for the activity is required and one would not mix different apps (files app activity in dav app).

Copy link
Contributor

@artonge artonge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't get why this is need. Isn't TagService already doing that?

protected function addActivity($addToFavorite, $fileId, $path) {
$user = $this->userSession->getUser();
if (!$user instanceof IUser) {
return;
}
if ($addToFavorite) {
$event = new NodeAddedToFavorite($user, $fileId, $path);
} else {
$event = new NodeRemovedFromFavorite($user, $fileId, $path);
}
$this->dispatcher->dispatchTyped($event);
$event = $this->activityManager->generateEvent();
try {
$event->setApp('files')
->setObject('files', $fileId, $path)
->setType('favorite')
->setAuthor($user->getUID())
->setAffectedUser($user->getUID())
->setTimestamp(time())
->setSubject(
$addToFavorite ? FavoriteProvider::SUBJECT_ADDED : FavoriteProvider::SUBJECT_REMOVED,
['id' => $fileId, 'path' => $path]
);
$this->activityManager->publish($event);
} catch (\InvalidArgumentException $e) {
} catch (\BadMethodCallException $e) {
}
}
}

EDIT: reading the issue

apps/dav/lib/Server.php Outdated Show resolved Hide resolved
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch 4 times, most recently from 935e3b1 to e61f394 Compare October 14, 2024 08:29
@grnd-alt grnd-alt self-assigned this Oct 15, 2024
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch 7 times, most recently from 739acab to 6f98dd1 Compare October 22, 2024 14:18
lib/public/ITags.php Outdated Show resolved Hide resolved
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch from 6f98dd1 to 205809a Compare October 22, 2024 15:53
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch from 205809a to f6dd0c2 Compare October 23, 2024 11:32
lib/private/Tags.php Outdated Show resolved Hide resolved
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch 3 times, most recently from 6eca638 to e96dc20 Compare October 28, 2024 12:03
Signed-off-by: grnd-alt <salimbelakkaf@outlook.de>
@grnd-alt grnd-alt force-pushed the fix/activity-log-for-favorites-in-dav branch from e96dc20 to ee093f5 Compare November 7, 2024 10:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3. to review Waiting for reviews enhancement
Projects
Status: 👀 In review
Development

Successfully merging this pull request may close these issues.

Missing activity for favorites via WebDAV
4 participants