Created
April 18, 2013 23:06
-
-
Save ryanvalentin/5416919 to your computer and use it in GitHub Desktop.
Generate Disqus SSO payload using PHP
This file contains hidden or 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
<?php | |
define('DISQUS_SECRET_KEY', '123456'); | |
define('DISQUS_PUBLIC_KEY', 'abcdef'); | |
$data = array( | |
"id" => $user["id"], | |
"username" => $user["username"], | |
"email" => $user["email"] | |
); | |
function dsq_hmacsha1($data, $key) { | |
$blocksize=64; | |
$hashfunc='sha1'; | |
if (strlen($key)>$blocksize) | |
$key=pack('H*', $hashfunc($key)); | |
$key=str_pad($key,$blocksize,chr(0x00)); | |
$ipad=str_repeat(chr(0x36),$blocksize); | |
$opad=str_repeat(chr(0x5c),$blocksize); | |
$hmac = pack( | |
'H*',$hashfunc( | |
($key^$opad).pack( | |
'H*',$hashfunc( | |
($key^$ipad).$data | |
) | |
) | |
) | |
); | |
return bin2hex($hmac); | |
} | |
$message = base64_encode(json_encode($data)); | |
$timestamp = time(); | |
$hmac = dsq_hmacsha1($message . ' ' . $timestamp, DISQUS_SECRET_KEY); | |
?> | |
<script type="text/javascript"> | |
var disqus_config = function() { | |
this.page.remote_auth_s3 = "<?php echo "$message $hmac $timestamp"; ?>"; | |
this.page.api_key = "<?php echo DISQUS_PUBLIC_KEY; ?>"; | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment