Closed
Bug 425508
Opened 17 years ago
Closed 16 years ago
Automagically create links from urls in user-entered text
Categories
(addons.mozilla.org Graveyard :: Public Pages, enhancement)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: rdoherty, Assigned: clouserw)
References
Details
Attachments
(1 file)
3.75 KB,
patch
|
wenzel
:
review-
|
Details | Diff | Splinter Review |
Would be nice for links to be automagically created from urls that users enter into addon descriptions and reviews.
Comment 1•17 years ago
|
||
The question is if all user-entered text should automatically linkify. If some standard AMO developer could tell me which fields should automagically be linkified, I will provide a patch.
Assignee: nobody → philipp
Updated•17 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•17 years ago
|
||
Addon.description sounds good to me. Since reviews are moderated, we could probably get away with Review.body too.
Comment 3•17 years ago
|
||
I suggest handling this in the views only that need this, for example by adding a function linkify() to the html helper. I'd advice against doing this globally or, even worse, by storing HTML tags to the database.
Comment 4•17 years ago
|
||
I am defintively using a helper. The Text helper class has functions to automatically do this. I must admit though that the cakephp autoLinkUrls functions is a bit lacking: A . or , at the end of an url (i.e in a sentance) will be part of the url. I think this should be fixed in cakephp though.
I created this patch with some more fields that I think might deserve autolinking. For example version notes might contain bug links or such. Go ahead and decide which fields should be taken.
Attachment #313049 -
Flags: review?(clouserw)
Comment 5•17 years ago
|
||
Comment on attachment 313049 [details] [diff] [review]
Add Links to different fields
While I like the idea, I see two problems here:
- URLs are being over-escaped here. I see HTML entities in the link text.
- We need to decide if we want to use rel=nofollow in order to discourage spammy external comments, mainly due to the fact that most of the linkified fields are not moderated at all.
Attachment #313049 -
Flags: review-
Comment 6•17 years ago
|
||
The reason this isn't a simple fix and hasn't been done already (bug 343573) is that we also need to use a different domain that redirects to URLs because if the link is actually an XPI, it will bypass the Firefox AMO whitelist for extension installs.
We could put something on services.amo, like services.addons.mozilla.org/services/redirect.php?url=http://www.google.com or another solution that causes the yellow bar to appear.
Reporter | ||
Comment 7•17 years ago
|
||
Could we have the linking function not link to xpis?
I would hesitate creating a blind redirector, evil hackers could use it to mask the target url.
Comment 8•17 years ago
|
||
(In reply to comment #7)
> Could we have the linking function not link to xpis?
No, the xpinstall dialog is based on content-type: application/x-xpinstall so there's no guarantee .xpi would be in the URL. For example: https://addons.mozilla.org/en-US/firefox/downloads/file/25412
Reporter | ||
Comment 9•17 years ago
|
||
Wouldn't this be a bug with FF then? Using the page url instead of the xpi url to check against the whitelist?
Comment 10•17 years ago
|
||
That argument has been had many times - ask dveditz about it. I don't remember the reasoning, I've just come to accept it. Regardless of whether it's a Firefox bug or not, we have to deal with it.
Reporter | ||
Comment 11•17 years ago
|
||
Can anyone think of any other options? I don't like the idea of a redirect script for 2 reasons.
1) It masks the final url in the status bar
2) It can become a gateway for spammers to make links look valid
#1 could be fixed with JS (yuck).
#2 could be fixed by checking the referer and if it's from AMO, forward it on.
Assignee | ||
Comment 12•17 years ago
|
||
> #1 could be fixed with JS (yuck).
Not awesome, but certainly alive and in widespread use out there on the internet. It doesn't have accessibility problems and degrades gracefully.
> #2 could be fixed by checking the referer and if it's from AMO, forward it on.
This won't work for anyone that isn't sending referrers. Not sure what the percentage is, but it's worth noting.
Thanks for bringing this up Justin - it's good to think about.
Reporter | ||
Comment 13•17 years ago
|
||
#2 can be fixed with a hash for the url. Not a valid hash, no redirection. LinkedIn does it:
http://www.linkedin.com/redirect?url=http%3A%2F%2Fwww%2Eryandoherty%2Enet&urlhash=SJ8V
If that can be done the redirect solution seems good enough for me.
Comment 14•17 years ago
|
||
(In reply to comment #13)
> If that can be done the redirect solution seems good enough for me.
Yes, we just need to add some configurable string to the URL before hashing, because after all this is an open source app, so any hashing algorithm will be publicly visible.
Updated•17 years ago
|
Attachment #313049 -
Flags: review?(clouserw)
Comment 16•16 years ago
|
||
Hello, someone should fix the title. The word "automatically" is misspelled as "Automagically".
Comment 18•16 years ago
|
||
For the record since this comment is relevant to this bug too:
https://bugzilla.mozilla.org/show_bug.cgi?id=507320#c8
(about comments and solution of xpi link issues)
Assignee | ||
Comment 19•16 years ago
|
||
This is fixed in 5.3.
Assignee: philipp → clouserw
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•