Laravel Auto-Link库

时间:2017-03-31 10:05:16

标签: php laravel laravel-5 autolink

我正在寻找旅行自动链接检测。

我正在尝试创建一个社交媒体网站,当我的用户发布网址时,我需要它,就像节目而不仅仅是普通文字一样。

2 个答案:

答案 0 :(得分:0)

通过 dwightwatson 尝试Autologin for Laravel,它可以生成可以自动登录您的应用程序然后重定向到适当位置的网址

答案 1 :(得分:0)

据我所知,Laravel核心中没有来自Code Igniter的auto_link()函数助手(假设您正在引用CI版本)。

无论如何,抓取代码并在Laravel中使用它来快速进行肮脏的解决方法非常简单。我只是随便找了同样的问题。

在你的App目录中放入一个帮助器的容器类(或任何容器,只需要由框架发现),在这种情况下我放了一个UrlHelpers.php文件。然后,在它内部为CI版本抓住了这两个静态函数:

class UrlHelpers
{
    static function auto_link($str, $type = 'both', $popup = FALSE)
    {
        // Find and replace any URLs.
        if ($type !== 'email' && preg_match_all('#(\w*://|www\.)[^\s()<>;]+\w#i', $str, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
            // Set our target HTML if using popup links.
            $target = ($popup) ? ' target="_blank"' : '';

            // We process the links in reverse order (last -> first) so that
            // the returned string offsets from preg_match_all() are not
            // moved as we add more HTML.
            foreach (array_reverse($matches) as $match) {
                // $match[0] is the matched string/link
                // $match[1] is either a protocol prefix or 'www.'
                //
                // With PREG_OFFSET_CAPTURE, both of the above is an array,
                // where the actual value is held in [0] and its offset at the [1] index.
                $a = '<a href="' . (strpos($match[1][0], '/') ? '' : 'http://') . $match[0][0] . '"' . $target . '>' . $match[0][0] . '</a>';
                $str = substr_replace($str, $a, $match[0][1], strlen($match[0][0]));
            }
        }

        // Find and replace any emails.
        if ($type !== 'url' && preg_match_all('#([\w\.\-\+]+@[a-z0-9\-]+\.[a-z0-9\-\.]+[^[:punct:]\s])#i', $str, $matches, PREG_OFFSET_CAPTURE)) {
            foreach (array_reverse($matches[0]) as $match) {
                if (filter_var($match[0], FILTER_VALIDATE_EMAIL) !== FALSE) {
                    $str = substr_replace($str, static::safe_mailto($match[0]), $match[1], strlen($match[0]));
                }
            }
        }

        return $str;
    }

    static function safe_mailto($email, $title = '', $attributes = '')
    {
        $title = (string)$title;

        if ($title === '') {
            $title = $email;
        }

        $x = str_split('<a href="mailto:', 1);

        for ($i = 0, $l = strlen($email); $i < $l; $i++) {
            $x[] = '|' . ord($email[$i]);
        }

        $x[] = '"';

        if ($attributes !== '') {
            if (is_array($attributes)) {
                foreach ($attributes as $key => $val) {
                    $x[] = ' ' . $key . '="';
                    for ($i = 0, $l = strlen($val); $i < $l; $i++) {
                        $x[] = '|' . ord($val[$i]);
                    }
                    $x[] = '"';
                }
            } else {
                for ($i = 0, $l = strlen($attributes); $i < $l; $i++) {
                    $x[] = $attributes[$i];
                }
            }
        }

        $x[] = '>';

        $temp = array();
        for ($i = 0, $l = strlen($title); $i < $l; $i++) {
            $ordinal = ord($title[$i]);

            if ($ordinal < 128) {
                $x[] = '|' . $ordinal;
            } else {
                if (count($temp) === 0) {
                    $count = ($ordinal < 224) ? 2 : 3;
                }

                $temp[] = $ordinal;
                if (count($temp) === $count) {
                    $number = ($count === 3)
                        ? (($temp[0] % 16) * 4096) + (($temp[1] % 64) * 64) + ($temp[2] % 64)
                        : (($temp[0] % 32) * 64) + ($temp[1] % 64);
                    $x[] = '|' . $number;
                    $count = 1;
                    $temp = array();
                }
            }
        }

        $x[] = '<';
        $x[] = '/';
        $x[] = 'a';
        $x[] = '>';

        $x = array_reverse($x);

        $output = "<script type=\"text/javascript\">\n"
            . "\t//<![CDATA[\n"
            . "\tvar l=new Array();\n";

        for ($i = 0, $c = count($x); $i < $c; $i++) {
            $output .= "\tl[" . $i . "] = '" . $x[$i] . "';\n";
        }

        $output .= "\n\tfor (var i = l.length-1; i >= 0; i=i-1) {\n"
            . "\t\tif (l[i].substring(0, 1) === '|') document.write(\"&#\"+unescape(l[i].substring(1))+\";\");\n"
            . "\t\telse document.write(unescape(l[i]));\n"
            . "\t}\n"
            . "\t//]]>\n"
            . '</script>';

        return $output;
    }

}

函数safe_mailto用于您的字符串中有电子邮件链接。如果您不需要它,您可以自由修改代码。

然后你可以像往常一样在Laravel代码的任何部分使用这样的辅助类(这里是一个刀片模板,但原理是相同的):

<p>{!! \App\Helpers\Helpers::auto_link($string) !!}</p>

快速又脏,而且有效。希望有所帮助。 ¡祝你好运!