Test.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. use \GatewayWorker\Lib\Gateway;
  5. use app\common\library\Tlssigapiv2;
  6. class Test extends Controller
  7. {
  8. public function test(){
  9. $Gateway = new Gateway();
  10. $Gateway::$registerAddress = '127.0.0.1:2345';
  11. $Gateway::sendToAll('来自服务端的主动推送'.date('Y-m-d H:i:s'));
  12. }
  13. public function ip(){
  14. $ipaddress = ip_to_address();
  15. echo $ipaddress;
  16. }
  17. public function im(){
  18. $sdkappid = '1400818730';
  19. $sdkappkey = 'f31aa80a36cef72829fbcdcb10aa2aadcea2944787f2b268d46021e67711326b';
  20. $usersig = $this->usersig($sdkappid,$sdkappkey);
  21. $random = rand(10000000,99999999);
  22. $url = 'https://console.tim.qq.com/v4/open_msg_svc/get_history?sdkappid='.$sdkappid.'&identifier=administrator&usersig='.$usersig.'&random='.$random.'&contenttype=json';
  23. $data = [
  24. 'ChatType' => 'Group',
  25. // 'ChatType' => 'C2C',
  26. 'MsgTime' => date('YmdH',strtotime('-1 Days')),
  27. // 'MsgTime' => date('YmdH',strtotime('-60 Hours')),
  28. ];
  29. dump($data);
  30. $jsonStr = json_encode($data);
  31. $header = array(
  32. 'Content-Type: application/json; charset=utf-8',
  33. 'Content-Length: ' . strlen($jsonStr)
  34. );
  35. $rs = curl_post($url,$jsonStr,$header);
  36. dump($rs);
  37. }
  38. private function usersig($sdkappid,$key){
  39. $api = new TLSSigAPIv2($sdkappid,$key );
  40. $sig = $api->genUserSig('administrator');
  41. return $sig;
  42. }
  43. public function test_redis(){
  44. $redis = new Redis();
  45. $redisconfig = config("redis");
  46. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  47. if ($redisconfig['redis_pwd']) {
  48. $redis->auth($redisconfig['redis_pwd']);
  49. }
  50. if($redisconfig['redis_selectdb'] > 0){
  51. $redis->select($redisconfig['redis_selectdb']);
  52. }
  53. $party_id = 141;
  54. $res = $redis->hGetAll("online_".$party_id);
  55. dump($res);
  56. }
  57. }