Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(GPCACHEDRESOURCES-13) Fixing compatible hash and cashe resource mapper ... #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.grails.plugin.cachedresources

import org.codehaus.groovy.grails.plugins.codecs.SHA256BytesCodec
import org.codehaus.groovy.grails.plugins.codecs.SHA256Codec
import org.grails.plugin.cachedresources.util.Base62
import org.grails.plugin.resource.mapper.MapperPhase

Expand Down Expand Up @@ -64,7 +65,7 @@ class HashAndCacheResourceMapper {
* Renames the given input file in the same directory to be the SHA256 hash of it's contents.
*/
def renameToHashOfContents(File input, String extension) {
def newName
String newName
if (shortenLinks) {
def hash = SHA256BytesCodec.encode(getBytes(input))
newName = Base62.encode(hash)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class Base62 {
}

tiny = tiny.reverse()

return tiny.toString()
}

static decode(value) {
Expand Down