SignatureCheck.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace apicheck;
  3. use think\facade\Cache;
  4. use think\facade\Db;
  5. use think\Exception;
  6. class SignatureCheck
  7. {
  8. public static function check($params){
  9. foreach($params as $k => $v){
  10. if(!$params[$k]){
  11. throw new Exception('cant found params '. $k, 9001);
  12. }
  13. }
  14. $passTime = time() - $params['timestamp'];
  15. if($passTime > 900){
  16. throw new Exception('access expired', 9002);
  17. }
  18. if(Cache::get('nonce_'. $params['nonce'])){
  19. throw new Exception('nonce is existed', 9003);
  20. }
  21. $secret = Db::table('users')->where('accesskey', $params['accesskey'])->value('secretkey');
  22. if(!$secret){
  23. throw new Exception("unauthorized accesskey", 9004);
  24. }
  25. $params['secret'] = $secret;
  26. if($params['sign'] !== self::calculateSignature($params)){
  27. throw new Exception("signature verified failed", 9005);
  28. }
  29. Cache::set('nonce_'. $params['nonce'], $params['nonce'], 900);
  30. }
  31. public static function calculateSignature($params){
  32. $accesskey = $params['accesskey'];
  33. $nonce = $params['nonce'];
  34. $timestamp = $params['timestamp'];
  35. $secret = $params['secret'];
  36. $string= 'accesskey='. $accesskey .'&timestamp='. $timestamp .'&nonce='.$nonce.'&secret='.$secret;
  37. $sign = strtoupper(md5($string));
  38. return $sign;
  39. }
  40. }