-
-
Save iamxwk/b7a2e83507434d076e92a8f05fdb2c00 to your computer and use it in GitHub Desktop.
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 | |
/* | |
API Google URL Shortner | |
marcusnunes.com | |
*/ | |
echo goo::get('http://www.baidu.com'); | |
class goo{ | |
function get($url){ | |
$error = ''; | |
$curl = curl_init(); | |
curl_setopt($curl, CURLOPT_URL, 'http://goo.gl/api/url'); //goo.gl api url | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($curl, CURLOPT_POST, 1); | |
curl_setopt($curl, CURLOPT_POSTFIELDS, '[email protected]&url='.urlencode($url).'&auth_token='. self::googlToken($url)); | |
$res = curl_exec($curl); | |
if(!$res){ | |
$error = curl_error($curl); | |
$ret = $error; | |
}else{ | |
$json = json_decode($res); | |
$ret = $json->short_url; | |
} | |
curl_close($curl); | |
return $ret; | |
} | |
static function googlToken($b){ | |
$i = self::tke($b); | |
$i = $i >> 2 & 1073741823; | |
$i = $i >> 4 & 67108800 | $i & 63; | |
$i = $i >> 4 & 4193280 | $i & 1023; | |
$i = $i >> 4 & 245760 | $i & 16383; | |
$j = "7"; | |
$h = self::tkf($b); | |
$k = ($i >> 2 & 15) << 4 | $h & 15; | |
$k |= ($i >> 6 & 15) << 12 | ($h >> 8 & 15) << 8; | |
$k |= ($i >> 10 & 15) << 20 | ($h >> 16 & 15) << 16; | |
$k |= ($i >> 14 & 15) << 28 | ($h >> 24 & 15) << 24; | |
$j .= self::tkd($k); | |
return $j; | |
} | |
static function tkc(){ | |
$l = 0; | |
foreach (func_get_args() as $val) { | |
$val &= 4294967295; | |
$val += $val > 2147483647 ? -4294967296 : ($val < -2147483647 ? 4294967296 : 0); | |
$l += $val; | |
$l += $l > 2147483647 ? -4294967296 : ($l < -2147483647 ? 4294967296 : 0); | |
} | |
return $l; | |
} | |
static function tkd($l){ | |
$l = $l > 0 ? $l : $l + 4294967296; | |
$m = "$l"; //must be a string | |
$o = 0; | |
$n = false; | |
for($p=strlen($m) -1; $p >= 0; --$p){ | |
$q = $m[$p]; | |
if($n){ | |
$q *= 2; | |
$o += floor($q / 10) + $q % 10; | |
} else { | |
$o += $q; | |
} | |
$n = !$n; | |
} | |
$m = $o % 10; | |
$o = 0; | |
if($m !=0){ | |
$o = 10 - $m; | |
if(strlen($l) % 2 == 1){ | |
if ($o % 2 == 1){ | |
$o += 9; | |
} | |
$o /= 2; | |
} | |
} | |
return "$o$l"; | |
} | |
static function tke($l){ | |
$m = 5381; | |
for($o = 0; $o < strlen($l); $o++){ | |
$m = self::tkc($m << 5, $m, ord($l[$o])); | |
} | |
return $m; | |
} | |
static function tkf($l){ | |
$m = 0; | |
for($o = 0; $o < strlen($l); $o++){ | |
$m = self::tkc(ord($l[$o]), $m << 6, $m << 16, -$m); | |
} | |
return $m; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment