mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Hash the urls to check if they exist
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
3620dae1e6
commit
bfe02a0b48
7 changed files with 306 additions and 14 deletions
|
@ -25,7 +25,8 @@ use Wallabag\UserBundle\Entity\User;
|
|||
* options={"collate"="utf8mb4_unicode_ci", "charset"="utf8mb4"},
|
||||
* indexes={
|
||||
* @ORM\Index(name="created_at", columns={"created_at"}),
|
||||
* @ORM\Index(name="uid", columns={"uid"})
|
||||
* @ORM\Index(name="uid", columns={"uid"}),
|
||||
* @ORM\Index(name="hashedurl", columns={"hashedurl"})
|
||||
* }
|
||||
* )
|
||||
* @ORM\HasLifecycleCallbacks()
|
||||
|
@ -75,6 +76,13 @@ class Entry
|
|||
*/
|
||||
private $url;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="hashedurl", type="text", nullable=true)
|
||||
*/
|
||||
private $hashedUrl;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*
|
||||
|
@ -911,4 +919,24 @@ class Entry
|
|||
{
|
||||
return $this->originUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getHashedUrl()
|
||||
{
|
||||
return $this->hashedUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $hashedUrl
|
||||
*
|
||||
* @return Entry
|
||||
*/
|
||||
public function setHashedUrl($hashedUrl)
|
||||
{
|
||||
$this->hashedUrl = $hashedUrl;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue