X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Futil.php;h=30bd4d3aec96dd11ef8f8282b223c0a56cacf71d;hb=a63208b3dab1a2d1c9b924dabb86be2edc90ebed;hp=54a30a914df840bbca9f4f6002ef5d606352ce71;hpb=fb437aabcaf9f6300c77079c93eba3f5a7f49f2f;p=quix0rs-gnu-social.git diff --git a/lib/util.php b/lib/util.php index 54a30a914d..30bd4d3aec 100644 --- a/lib/util.php +++ b/lib/util.php @@ -349,10 +349,13 @@ function common_canonical_email($email) { return $email; } +define('URL_REGEX', '^|[ \t\r\n])((ftp|http|https|gopher|mailto|news|nntp|telnet|wais|file|prospero|aim|webcal):(([A-Za-z0-9$_.+!*(),;/?:@&~=-])|%[A-Fa-f0-9]{2}){2,}(#([a-zA-Z0-9][a-zA-Z0-9$_.+!*(),;/?:@&~=%-]*))?([A-Za-z0-9$_+!*();/?:~-]))'); + function common_render_content($text, $notice) { $r = htmlspecialchars($text); $id = $notice->profile_id; - $r = preg_replace('/\b@([\w-]+)\b/e', "@common_at_link($id,'\\1')", $r); + $r = preg_replace('@https?://\S+@', '\0', $r); + $r = preg_replace('/(^|\b)@([\w-]+)($|\b)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r); # XXX: # tags # XXX: machine tags return $r; @@ -365,7 +368,7 @@ function common_at_link($sender_id, $nickname) { $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender_id.' and subscribed = id)', 'AND'); $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND'); if ($recipient->find(TRUE)) { - return ''.$nickname.''; + return ''.$nickname.''; } # Try to find profiles that listen to this profile and that have this nickname $recipient = new Profile(); @@ -373,7 +376,7 @@ function common_at_link($sender_id, $nickname) { $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender_id.' and subscriber = id)', 'AND'); $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND'); if ($recipient->find(TRUE)) { - return ''.$nickname.''; + return ''.$nickname.''; } # If this is a local user, try to find a local user with that nickname. $sender = User::staticGet($sender_id); @@ -381,7 +384,7 @@ function common_at_link($sender_id, $nickname) { $recipient_user = User::staticGet('nickname', $nickname); if ($recipient_user) { $recipient = $recipient->getProfile(); - return ''.$nickname.''; + return ''.$nickname.''; } } # Otherwise, no links. @messages from local users to remote users,