TdwyController.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: qiuzijian
  5. * Date: 3/17/22
  6. * Time: 7:01 PM
  7. */
  8. namespace Modules\Camera\Http\Controllers\Api;
  9. use Illuminate\Http\Request;
  10. use App\Http\Controllers\Api\BaseController;
  11. use Illuminate\Support\Facades\Cache;
  12. use Illuminate\Support\Facades\DB;
  13. use Illuminate\Support\Facades\Input;
  14. use Modules\Camera\Entities\CameraList;
  15. use Modules\Camera\Enum\CameraEnum;
  16. use Modules\Mine\Entities\MineList;
  17. use Modules\Mine\Enum\MineEnum;
  18. use Modules\Mine\Services\MineServices;
  19. class TdwyController extends BaseController
  20. {
  21. protected $pre_url; // 请求地址
  22. protected $username; // 请求username
  23. protected $password; // 请求password
  24. protected $sysId; // 请求sysId
  25. protected $token; // 请求sysId
  26. public function __construct()
  27. {
  28. $this->pre_url = Input::get('url');
  29. $this->username = Input::get('username');
  30. $this->password = Input::get('password');
  31. $this->sysId = Input::get('sysId');
  32. //先获取token
  33. $this->token = $this->loginUser();
  34. }
  35. //登录获取token
  36. protected function loginUser()
  37. {
  38. $url = '/pangu/sdkServer/user/loginUser';
  39. $params = [
  40. 'username' => $this->username,
  41. 'password' => $this->password,
  42. 'sysId' => $this->sysId,
  43. ];
  44. $result = $this->curlPost($this->pre_url . $url, json_encode($params));
  45. $result = json_decode($result, true);
  46. $token = '';
  47. if (Cache::has(CameraEnum::TDWY_TOKEN_CACHE)) {
  48. $token = Cache::get(CameraEnum::TDWY_TOKEN_CACHE);
  49. return $token;
  50. }
  51. if ($result['statusCode'] == CameraEnum::TDWY_API_STATUS_CODE_SUCCSS && $result['content']) {
  52. $token = $result['content']['token'];
  53. Cache::put(CameraEnum::TDWY_TOKEN_CACHE, $token, 1440);
  54. }
  55. return $token;
  56. }
  57. //查询设备列表
  58. public function queryDeviceList()
  59. {
  60. $url = '/pangu/sdkServer/device/queryDeviceList';
  61. $sOrgId = Input::get('sOrgId', '');
  62. $iDeviceTypes = Input::get('iDeviceTypes', [5]);
  63. $rootCodes = Input::get('rootCodes', ["BH-0001"]);
  64. $isOrgTree = Input::get('isOrgTree', true);
  65. $orgTypeIds = Input::get('orgTypeIds', []);
  66. $needPage = Input::get('needPage', true);
  67. $pageSize = Input::get('pageSize', 50);
  68. $currentPage = Input::get('currentPage', 1);
  69. $params = [
  70. 'sOrgId' => $sOrgId,
  71. 'iDeviceTypes' => $iDeviceTypes,
  72. 'rootCodes' => $rootCodes,
  73. 'isOrgTree' => $isOrgTree,
  74. 'orgTypeIds' => $orgTypeIds,
  75. 'needPage' => $needPage,
  76. 'pageSize' => $pageSize,
  77. 'currentPage' => $currentPage,
  78. ];
  79. $result = $this->curlPost($this->pre_url . $url, json_encode($params));
  80. $result = json_decode($result, true);
  81. return $result;
  82. }
  83. //查询设备rtsp流
  84. public function getRtspById()
  85. {
  86. $url = '/pangu/sdkServer/videoStreaming/getRtspById';
  87. $sId = Input::get('sId', []);
  88. $ip = Input::get('ip', '');
  89. $port = Input::get('port', '');
  90. $type = Input::get('type', 0);
  91. $params = [
  92. 'sId' => $sId,
  93. 'ip' => $ip,
  94. 'port' => $port,
  95. 'type' => $type
  96. ];
  97. $result = $this->curlPost($this->pre_url . $url, json_encode($params));
  98. $result = json_decode($result, true);
  99. return $result;
  100. }
  101. //查询区域列表
  102. public function getRegionByOrgId(){
  103. $url = '/pangu/sdkServer/OrgManager/queryOrgList';
  104. $parentOrgIds = Input::get('parentOrgIds', []);
  105. $params = [
  106. 'querySingleType' => true,
  107. 'needPage' => false,
  108. 'currentPage' => 1,
  109. 'pageSize' => 10,
  110. 'parentOrgIds' => $parentOrgIds,
  111. 'queryType' => 0,
  112. ];
  113. $result = $this->curlPost($this->pre_url . $url, json_encode($params));
  114. $result = json_decode($result, true);
  115. return $result;
  116. }
  117. //天地伟业获取区域列表
  118. public function saveTrees($regions, $parent_id)
  119. {
  120. $arr = [];
  121. if (empty($regions['content'])) {
  122. return [];
  123. }
  124. $mineService = new MineServices();
  125. $mineService->initMineList();
  126. $arr_count = $regions['count'];
  127. foreach ($regions['content'][0]['data'] as $key => $value) {
  128. $arr[$key]['parentOrgId'] = $value['parentOrgId'];
  129. $arr[$key]['orgId'] = $value['orgId'];
  130. $arr[$key]['name'] = str_replace('#', '号', $value['orgName']);
  131. $id = MineList::where('index_code', $value['orgId'])->value('id');
  132. $params = [
  133. 'id' => $id,
  134. 'parent_id' => $parent_id,
  135. 'title' => $value['orgName'],
  136. 'sort' => $arr_count - $key,
  137. 'index_code' => $value['orgId'],
  138. ];
  139. $result = $mineService->add($params);
  140. $mine_id = $result->id;
  141. Input::replace(
  142. [
  143. 'parentOrgIds' => $value['orgId'],
  144. 'url' => Input::get('url', ''),
  145. 'username' => Input::get('username', ''),
  146. 'password' => Input::get('password', ''),
  147. 'sysId' => 'PG',
  148. ]
  149. );
  150. $region_child = $this->getRegionByOrgId();
  151. $arr[$key]['children'] = self::saveTrees($region_child, $mine_id);
  152. if (count($arr[$key]['children']) == 0) {
  153. unset($arr[$key]['children']);
  154. }
  155. }
  156. return array_values($arr);
  157. }
  158. /**
  159. * 发送请求
  160. * @param string $url
  161. * @param string $postData
  162. * @return bool|string
  163. */
  164. public function curlPost($url = '', $postData = '')
  165. {
  166. if (is_array($postData)) {
  167. $postData = http_build_query($postData);
  168. }
  169. $ch = curl_init();
  170. curl_setopt($ch, CURLOPT_URL, $url);
  171. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  172. curl_setopt($ch, CURLOPT_POST, 1);
  173. curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
  174. curl_setopt($ch, CURLOPT_TIMEOUT, 30); //设置cURL允许执行的最长秒数
  175. curl_setopt_array($ch, array(
  176. CURLOPT_HTTPHEADER => array(
  177. "Accept:" . '*/*',
  178. "Content-Type:" . 'application/json',
  179. "token:" . $this->token,
  180. )
  181. ));
  182. //https请求 不验证证书和host
  183. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  184. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  185. $data = curl_exec($ch);
  186. curl_close($ch);
  187. return $data;
  188. }
  189. //同步大华视频服务器摄像头
  190. public function dahuaCamera(){
  191. //大华需要同步的区域
  192. $dahua_ext = DB::table('mine_list_ext')
  193. ->where('is_hak',MineEnum::IS_HAK_DH)
  194. ->where('deleted_at',null)->get();
  195. if(count($dahua_ext) > 0){
  196. for($i=0;$i<count($dahua_ext);$i++){
  197. $ip = $dahua_ext[$i]->ip.':'.$dahua_ext[$i]->port;
  198. //获取public_key
  199. $url = '/evo-apigw/evo-oauth/1.0.0/oauth/public-key';
  200. $result = $this->httpRequest($ip.$url);
  201. if($result['data']['publicKey']){
  202. $public_key = $result['data']['publicKey'];
  203. }else{
  204. return;
  205. }
  206. //获取access_token
  207. $url2 = '/evo-apigw/evo-oauth/1.0.0/oauth/extend/token';
  208. $username_password = explode('|',$dahua_ext[$i]->sOrgId);
  209. if(count($username_password) != 2){
  210. return;
  211. }
  212. $password = $this->rsaEncode($username_password[1],$public_key);
  213. $params = [
  214. 'grant_type'=>'password',
  215. 'username'=>$username_password[0],
  216. 'password'=>$password,
  217. 'client_id'=>$dahua_ext[$i]->key,
  218. 'client_secret'=>$dahua_ext[$i]->secret,
  219. 'public_key'=>$public_key
  220. ];
  221. $result2 = $this->httpRequest($ip.$url2,'post',$params);
  222. if($result2['data']['access_token']){
  223. $access_token = $result2['data']['access_token'];
  224. }else{
  225. return;
  226. }
  227. //获取摄像头列表
  228. $url3 = '/evo-apigw/evo-brm/1.2.0/device/channel/subsystem/page';
  229. $params2 = [
  230. 'pageNum'=>1,
  231. 'pageSize'=>1000,
  232. 'sortType'=>'ASC',
  233. 'sort'=>'channelSn',
  234. ];
  235. $result3 = $this->httpRequest($ip.$url3,'post',$params2,$access_token);
  236. DB::table('camera_list')->where('mine_id',$dahua_ext[$i]->mine_id)->delete();
  237. if($result3['data']['pageData']){
  238. $camera_list = $result3['data']['pageData'];
  239. if(count($camera_list) > 0){
  240. for($j=0;$j<count($camera_list);$j++){
  241. $param['mine_id'] = $dahua_ext[$i]->mine_id;
  242. $param['revert_id'] = 'NullId';
  243. $param['sort'] = 1;
  244. $param['camera_name'] = $camera_list[$j]['channelName'];
  245. $param['camera_source'] = 2;
  246. $param['index_code'] = $camera_list[$j]['channelCode'];
  247. $param['video_recorder'] = 2;
  248. // $param['created_at'] = date('Y-m-d H:i:s');
  249. // $param['updated_at'] = date('Y-m-d H:i:s');
  250. // DB::table('camera_list')->insert($param);
  251. CameraList::updateOrCreate(['index_code' => $camera_list[$j]['channelCode']], $param);
  252. }
  253. }
  254. }
  255. }
  256. }
  257. }
  258. //大华rtsp
  259. public function dahuaRtsp($camera_id,$parent_id){
  260. $dahua_ext = DB::table('mine_list_ext')
  261. ->where('mine_id',$parent_id)
  262. ->where('deleted_at',null)->get();
  263. if(count($dahua_ext) > 0){
  264. $ip = $dahua_ext[0]->ip.':'.$dahua_ext[0]->port;
  265. //获取public_key
  266. $url = '/evo-apigw/evo-oauth/1.0.0/oauth/public-key';
  267. $result1 = $this->httpRequest($ip.$url);
  268. if($result1['data']['publicKey']){
  269. $public_key = $result1['data']['publicKey'];
  270. }else{
  271. return;
  272. }
  273. //获取access_token
  274. $url2 = '/evo-apigw/evo-oauth/1.0.0/oauth/extend/token';
  275. $username_password = explode('|',$dahua_ext[0]->sOrgId);
  276. if(count($username_password) != 2){
  277. return;
  278. }
  279. $password = $this->rsaEncode($username_password[1],$public_key);
  280. $params = [
  281. 'grant_type'=>'password',
  282. 'username'=>$username_password[0],
  283. 'password'=>$password,
  284. 'client_id'=>$dahua_ext[0]->key,
  285. 'client_secret'=>$dahua_ext[0]->secret,
  286. 'public_key'=>$public_key
  287. ];
  288. $result2 = $this->httpRequest($ip.$url2,'post',$params);
  289. if($result2['data']['access_token']){
  290. $access_token = $result2['data']['access_token'];
  291. }else{
  292. return;
  293. }
  294. $camera = DB::table('camera_list')->where('id',$camera_id)->get();
  295. $url4 = '/evo-apigw/admin/API/MTS/Video/StartVideo';
  296. $params3['data'] = [
  297. 'channelId'=>$camera[0]->index_code,
  298. 'dataType'=>'1',
  299. 'streamType'=>'1'
  300. ];
  301. $result4 = $this->httpRequest($ip.$url4,'post',$params3,$access_token);
  302. if($result4['data']['url'] && $result4['data']['token']){
  303. $rtsp = explode('|',$result4['data']['url']);
  304. if($rtsp[1]){
  305. $result['data'] = [
  306. 'camera_id' => $camera_id,
  307. 'url' => $rtsp[1].'?token='.$result4['data']['token']
  308. ];
  309. return $result;
  310. }
  311. }
  312. }
  313. }
  314. //接口第三方调用
  315. public function httpRequest($url, $format = 'get', $data = null, $token = null){
  316. //设置头信息
  317. $headerArray =array("Content-type:application/json;","Accept:application/json");
  318. if ($token) {
  319. $headerArray[] = "Authorization:bearer " . $token;
  320. }
  321. $curl=curl_init();
  322. curl_setopt($curl, CURLOPT_URL, $url);
  323. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  324. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  325. if ($format == 'post') {
  326. //post传值设置post传参
  327. curl_setopt($curl, CURLOPT_POST, 1);
  328. if ($data) {
  329. $data = json_encode($data);
  330. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  331. }
  332. }
  333. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  334. curl_setopt($curl,CURLOPT_HTTPHEADER,$headerArray);
  335. $data=json_decode(curl_exec($curl), true);
  336. curl_close($curl);
  337. //返回接口返回数据
  338. return $data;
  339. }
  340. public function rsaEncode($password,$rsa_public_key)
  341. {
  342. // 要执行的代码
  343. $rsa_public = "-----BEGIN PUBLIC KEY-----\n";
  344. $rsa_public = $rsa_public.$rsa_public_key;
  345. $rsa_public = $rsa_public."\n-----END PUBLIC KEY-----";
  346. $key = openssl_pkey_get_public($rsa_public);
  347. if (!$key) {
  348. echo "公钥不可用\n";
  349. echo $rsa_public;
  350. }
  351. //openssl_public_encrypt 第一个参数只能是string
  352. //openssl_public_encrypt 第二个参数是处理后的数据
  353. //openssl_public_encrypt 第三个参数是openssl_pkey_get_public返回的资源类型
  354. $return_en = openssl_public_encrypt($password, $crypted, $key);
  355. if (!$return_en) {
  356. echo "加密失败,请检查RSA秘钥";
  357. }
  358. return base64_encode($crypted);
  359. }
  360. }