[RFC] Ability to @mention specific users in posts

Discuss requests for comments/changes posted in the Issue Tracker for the development of phpBB. Current releases are 3.2/Rhea and 3.3/Proteus.
Post Reply
User avatar
imkingdavid
Registered User
Posts: 1050
Joined: Thu Jul 30, 2009 12:06 pm

Re: [RFC] Ability to @mention specific users in posts

Post by imkingdavid »

I like the idea of this. The ability to easily notify a user about a topic just by typing their name would be great. It would save time that would be required to PM them or find them on IRC or email to let them know.

I think that the @ should trigger an AJAX search of usernames as naderman described it. When parsed, it should simply be a link to the user's profile. To make it pretty, we could even color the user's username with their group color, but then again there could be problems with that if the user then changes groups and has a different username color.

Of course, we would need to keep it from re-notifying from within quote tags. And we should only allow a user to be mentioned once per post (and perhaps a limit on the number of total mentions per post, customizable via ACP?) so that people don't get spammed with mentions. I also agree with implementing a separate notifications area to house these and other notifications. If we cannot think of enough other ways to provide notifications for users, we could simply call it "mentions" and only notify users when they are mentioned.

Should users also be able to opt out of being mentioned? Some users might not want to be notified when someone tries to mention them. In such cases, users should be able to select a setting in the UCP and any time they are mentioned it can be parsed to link to their profile, but they don't get notified, IMO.
I do custom MODs. PM for a quote!
View My: MODs | Portfolio
Please do NOT contact for support via PM or email.
Remember, the enemy's gate is down.

Oleg
Posts: 1150
Joined: Tue Feb 23, 2010 2:38 am
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by Oleg »

> And we should only allow a user to be mentioned once per post (and perhaps a limit on the number of total mentions per post, customizable via ACP?) so that people don't get spammed with mentions.

No, decouple mention from notification. Then users can be mentioned as often as the poster wants but will receive notification once.

It doesn't make sense to notify more than once per post anyway.

Note also that the user may be notified about the post because they are watching the topic, we need to make sure they are notified only once per post regardless of how many notification vectors are possible.

Github used to have separate inbox and notification areas, with inbox for explicitly sent messages and notifications for everything else. Now I'm not sure what they have.

Not notifying users when they are mentioned seems like losing half the point of mentioning someone (you could just type their name).

Also what happens if I quote someone's post? Is that the same as mentioning them? What is the post text going to be if I want to quote someone's post and bring their attention to my reply via a notification?

User avatar
callumacrae
Former Team Member
Posts: 1046
Joined: Tue Apr 27, 2010 9:37 am
Location: England
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by callumacrae »

Github used to have separate inbox and notification areas, with inbox for explicitly sent messages and notifications for everything else. Now I'm not sure what they have.
They removed the inbox about a month ago, because no one used it.
Made by developers, for developers!
My blog

User avatar
imkingdavid
Registered User
Posts: 1050
Joined: Thu Jul 30, 2009 12:06 pm

Re: [RFC] Ability to @mention specific users in posts

Post by imkingdavid »

Oleg wrote:Also what happens if I quote someone's post? Is that the same as mentioning them? What is the post text going to be if I want to quote someone's post and bring their attention to my reply via a notification?

Code: Select all

[quote="Oleg"]Your post here[/quote]
@Oleg my post here
Is that what you mean?

or would you like it to notify users whenever they are quoted as well?

And good point about decoupling mentions from notifications. We can just go through the post and then after we get all of the mentions, send out one per username regardless of how many times it is mentioned.

As for being able to disabled it, I'm just tossing out ideas. :)
I do custom MODs. PM for a quote!
View My: MODs | Portfolio
Please do NOT contact for support via PM or email.
Remember, the enemy's gate is down.

User avatar
callumacrae
Former Team Member
Posts: 1046
Joined: Tue Apr 27, 2010 9:37 am
Location: England
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by callumacrae »

No, he means if there is a @mention in a quote.

I earlier suggested converting @mentions to [urls] when notifying the user to avoid this problem. It would also mean that a user would be notified when the were @mentioned in an edit, which would be pretty useful.
Made by developers, for developers!
My blog

drathbun
Registered User
Posts: 72
Joined: Wed Feb 15, 2006 6:40 pm
Location: Texas
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by drathbun »

I guess I'm in the minority here, but I would find this incredibly annoying. With all due respect, I would not use this feature if it were created. And I think it would be fairly difficult to implement to be honest. The @ sign can be used for many different purposes, not the least of which is email addresses. Using it to trigger a username lookup is going to add overhead to the posting process, especially since if I am reading this correctly you anticipate this happening live, as I type the post? Granted the username field should be a unique index so the query process should be fairly efficient.

But ultimately what are you trying to accomplish with this feature? I can't think of a single time that I wanted to link to someone's profile. I want to link to a post, a topic, or some other specific resource on the board, but never to a user profile. And what happens if a username changes? The link no longer works. If you covertly store the user_id in the post and replace it with the username for display purposes, you can address that. If you're parsing the post for a username, I would think you would have to do it each and every time the post is viewed since it can't be static. It's not like BBCode, where once I format something as bold it stays bold. Something that is a user name today might not be tomorrow. What if user accounts are banned? deleted? or as mentioned already, renamed?

And frankly I don't care to know if someone is talking about me. :P

Just my two cents. I would rather see energy put to use implementing some of the other ideas than this one.
Sometimes you're the windshield, sometimes you're the bug.

User avatar
callumacrae
Former Team Member
Posts: 1046
Joined: Tue Apr 27, 2010 9:37 am
Location: England
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by callumacrae »

This won't add a noticeable amount of overhead to the posting process. Email addresses are easy to resolve: look for ' @' instead of '@'.

@mentioning a user would be pretty helpful. I find it helpful on other sites (GitHub, Facebook).
Made by developers, for developers!
My blog

drathbun
Registered User
Posts: 72
Joined: Wed Feb 15, 2006 6:40 pm
Location: Texas
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by drathbun »

callumacrae wrote:Email addresses are easy to resolve: look for ' @' instead of '@'.
Assuming a user doesn't make a mistake entering a username. And isn't it possible to have an @ in a username itself?
Sometimes you're the windshield, sometimes you're the bug.

Senky
Extension Customisations
Extension Customisations
Posts: 315
Joined: Thu Jul 16, 2009 4:41 pm

Re: [RFC] Ability to @mention specific users in posts

Post by Senky »

drathbun wrote:...And isn't it possible to have an @ in a username itself?
Yes it is, and this is why I recommended to use syntax like:

@"<username>"

ie:

@"Senky"

as per username can also be multi-word, including email (@) sign.

Btw: using WYSIWYG editor it would be pretty easy to use it - we could assign new tag for it, just for identifying @mention, which would be removed after correct parsing. However, we need to consider basic editor syntax to be simple enough to use writing in text-only mode...

User avatar
callumacrae
Former Team Member
Posts: 1046
Joined: Tue Apr 27, 2010 9:37 am
Location: England
Contact:

Re: [RFC] Ability to @mention specific users in posts

Post by callumacrae »

That looks pretty bad, though (and usernames can also contain quotes).
Made by developers, for developers!
My blog

Post Reply