handle really long urls
Using the whole url as a key can make the filename too long. Truncate and use a md5sum for uniqueness if necessary.
This commit is contained in:
parent
a1e52f0ce5
commit
8f9b501515
1 changed files with 10 additions and 1 deletions
|
@ -10,6 +10,8 @@ module Backend.URL (
|
||||||
fromUrl
|
fromUrl
|
||||||
) where
|
) where
|
||||||
|
|
||||||
|
import Data.Hash.MD5
|
||||||
|
|
||||||
import Common.Annex
|
import Common.Annex
|
||||||
import Types.Backend
|
import Types.Backend
|
||||||
import Types.Key
|
import Types.Key
|
||||||
|
@ -26,7 +28,14 @@ backend = Backend {
|
||||||
|
|
||||||
fromUrl :: String -> Maybe Integer -> Key
|
fromUrl :: String -> Maybe Integer -> Key
|
||||||
fromUrl url size = stubKey
|
fromUrl url size = stubKey
|
||||||
{ keyName = url
|
{ keyName = key
|
||||||
, keyBackendName = "URL"
|
, keyBackendName = "URL"
|
||||||
, keySize = size
|
, keySize = size
|
||||||
}
|
}
|
||||||
|
where
|
||||||
|
-- when it's not too long, use the url as the key name
|
||||||
|
-- 256 is the absolute filename max, but use a shorter
|
||||||
|
-- length because this is not the entire key filename.
|
||||||
|
key
|
||||||
|
| length url < 128 = url
|
||||||
|
| otherwise = take 128 url ++ "-" ++ md5s (Str url)
|
||||||
|
|
Loading…
Reference in a new issue