aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php
Commit message (Collapse)AuthorAgeFilesLines
* Change the way to define algorithm for hashing urlJeremy Benoist2019-05-241-4/+2
|
* Add Wallabag\CoreBundle\Helper\UrlHasherOlivier Mehani2019-05-241-1/+4
| | | | Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Some cleanupJeremy Benoist2019-04-011-6/+2
| | | | Also, do not run the hashed_url migration into a Doctrine migration
* Use a better index for hashed_urlJeremy Benoist2019-04-011-1/+1
| | | | | | It'll most often be used in addition to the `user_id`. Also, automatically generate the hash when saving the url. Switch from `md5` to `sha1`.
* Keep url in exists endpointJeremy Benoist2019-04-011-6/+13
| | | | | | - Add migration - Use md5 instead of sha512 (we don't need security here, just a hash) - Update tests
* Hash the urls to check if they existThomas Citharel2019-04-011-0/+95
Signed-off-by: Thomas Citharel <tcit@tcit.fr>