Created
April 12, 2013 19:09
-
-
Save matb33/5374361 to your computer and use it in GitHub Desktop.
AWS SDK Smart Package -- Exposes the SDK as AWS.SDK and provides a helper function to sign URLs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWS = (function () { | |
var SDK = Npm.require("aws-sdk"); | |
var crypto = Npm.require("crypto"); | |
var url = Npm.require("url"); | |
function getAuthenticatedURL(fullUrl, accessKeyID, secretAccessKey, expires) { | |
/* | |
Signature = URL-Encode( Base64( HMAC-SHA1( YourSecretAccessKeyID, UTF-8-Encoding-Of( StringToSign ) ) ) ); | |
StringToSign = HTTP-VERB + "\n" + | |
Content-MD5 + "\n" + | |
Content-Type + "\n" + | |
Expires + "\n" + | |
CanonicalizedAmzHeaders + | |
CanonicalizedResource; | |
*/ | |
var stringToSign, hmac, authUrl, matches, signature; | |
var urlObj = url.parse(fullUrl); | |
var hostname = urlObj.hostname; | |
var pathname = urlObj.pathname; | |
matches = hostname.match(/^(.+?)\.s3\.amazonaws\.com$/); | |
if (matches[1]) { | |
pathname = "/" + matches[1] + pathname; | |
} | |
expires = expires || 2145916800; | |
stringToSign = "GET\n\n\n" + expires + "\n" + pathname; | |
hmac = crypto.createHmac("sha1", secretAccessKey); | |
hmac.update(stringToSign); | |
signature = hmac.digest("base64"); | |
urlObj.search = "AWSAccessKeyId=" + accessKeyID | |
+ "&Expires=" + expires | |
+ "&Signature=" + encodeURIComponent(signature); | |
authUrl = url.format(urlObj); | |
return authUrl; | |
} | |
return { | |
SDK: SDK, | |
getAuthenticatedURL: getAuthenticatedURL | |
}; | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Npm.depends({"aws-sdk": "0.9.5-pre.6"}); | |
Package.describe({ | |
summary: "AWS SDK" | |
}); | |
Package.on_use(function (api, where) { | |
api.add_files("aws-sdk.js", "server"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment