OpenSearch.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\common\service;
  3. require_once("../vendor/alibabacloud/opensearch-sdk-php/OpenSearch/Autoloader/Autoloader.php");
  4. header("Content-Type:text/html;charset=utf-8");
  5. use AlibabaCloud\Client\Clients\BearerTokenClient;
  6. use OpenSearch\Client\OpenSearchClient;
  7. use OpenSearch\Client\DocumentClient;
  8. use OpenSearch\Client\SearchClient;
  9. use OpenSearch\Util\SearchParamsBuilder;
  10. /**
  11. *
  12. * Class SerBase
  13. */
  14. class OpenSearch
  15. {
  16. public static $accessKeyId = 'LTAI5tJ5p12drZegeWVG33xZ';
  17. public static $secret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';
  18. public static $endPoint = 'http://opensearch-cn-shanghai.aliyuncs.com';
  19. public static $appName = 'GYXTEST';
  20. public static $suggestName = 'qc_ts';// 下拉提示名
  21. public static $tableName = 'dd_video_cate';// 结构
  22. public static $options = ['debug' => true];
  23. /**
  24. * opensearch数据推送
  25. * @param $module 模块
  26. * @param $id 记录id
  27. * @param int $type 推送类型1新增2更新
  28. * @return mixed
  29. */
  30. public static function push($module,$id,$type = 1)
  31. {
  32. $client = new OpenSearchClient(static::$accessKeyId, static::$secret, static::$endPoint, static::$options);
  33. //设置数据需推送到对应应用表中
  34. //创建文档操作client
  35. $documentClient = new DocumentClient($client);
  36. $push_data= [];
  37. $push_data['cmd'] = $type == 1 ? 'ADD' : 'UPDATE';
  38. $push_data['fields'] = [];
  39. switch ($module)
  40. {
  41. case 'video':
  42. break;
  43. case 'atricle':
  44. break;
  45. case 'datum':
  46. break;
  47. }
  48. //提交推送文档
  49. $ret = $documentClient->push(json_encode([$push_data]), static::$appName, static::$tableName);
  50. $ret_array = json_decode(json_encode($ret),true);
  51. $ret_val = json_decode($ret_array['result'],true);
  52. return $ret_val;
  53. }
  54. }