Merge pull request #3944 from shtrom/always-hash-exists-url

Always hash exists url
This commit is contained in:
Jérémy Benoist
2019-05-28 14:18:33 +02:00
committed by GitHub
5 changed files with 84 additions and 51 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace Wallabag\CoreBundle\Helper;
/**
* Hash URLs for privacy and performance.
*/
class UrlHasher
{
/**
* Hash the given url using the given algorithm.
* Hashed url are faster to be retrieved in the database than the real url.
*
* @param string $url
* @param string $algorithm
*
* @return string
*/
public static function hashUrl(string $url, $algorithm = 'sha1')
{
return hash($algorithm, urldecode($url));
}
}