Meting.php 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191
  1. <?php
  2. /**
  3. * Meting music framework
  4. * https://i-meto.com
  5. * https://github.com/metowolf/Meting
  6. * Version 1.4.1
  7. *
  8. * Copyright 2018, METO Sheel <i@i-meto.com>
  9. * Released under the MIT license
  10. */
  11. namespace Metowolf;
  12. class Meting
  13. {
  14. protected $_SITE;
  15. protected $_TEMP;
  16. protected $_RETRY = 3;
  17. protected $_FORMAT = false;
  18. public function __construct($v = 'netease')
  19. {
  20. $this->site($v);
  21. }
  22. public function site($v)
  23. {
  24. $suppose = array('netease', 'tencent', 'xiami', 'kugou', 'baidu');
  25. $this->_SITE = in_array($v,$suppose) ? $v : 'netease';
  26. return $this;
  27. }
  28. public function cookie($v = '')
  29. {
  30. $this->_TEMP['cookie'] = $v;
  31. return $this;
  32. }
  33. public function format($v = true)
  34. {
  35. $this->_FORMAT = $v;
  36. return $this;
  37. }
  38. private function curl($API)
  39. {
  40. if (isset($API['encode'])) {
  41. $API=call_user_func_array(array($this,$API['encode']), array($API));
  42. }
  43. $BASE = $this->curlset();
  44. $curl = curl_init();
  45. if ($API['method'] == 'POST') {
  46. if (is_array($API['body'])) {
  47. $API['body'] = http_build_query($API['body']);
  48. }
  49. curl_setopt($curl, CURLOPT_POST, 1);
  50. curl_setopt($curl, CURLOPT_POSTFIELDS, $API['body']);
  51. } elseif ($API['method'] == 'GET') {
  52. if (isset($API['body'])) {
  53. $API['url'] = $API['url'].'?'.http_build_query($API['body']);
  54. }
  55. }
  56. curl_setopt($curl, CURLOPT_HEADER, 0);
  57. curl_setopt($curl, CURLOPT_TIMEOUT, 20);
  58. curl_setopt($curl, CURLOPT_ENCODING, 'gzip');
  59. curl_setopt($curl, CURLOPT_IPRESOLVE, 1);
  60. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  61. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
  62. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10);
  63. curl_setopt($curl, CURLOPT_URL, $API['url']);
  64. curl_setopt($curl, CURLOPT_COOKIE, isset($this->_TEMP['cookie'])?$this->_TEMP['cookie']:$BASE['cookie']);
  65. curl_setopt($curl, CURLOPT_HTTPHEADER, array(
  66. 'Accept: */*',
  67. 'Accept-Encoding: gzip, deflate',
  68. 'Accept-Language: zh-CN,zh;q=0.8,gl;q=0.6,zh-TW;q=0.4',
  69. 'Connection: keep-alive',
  70. 'Content-Type: application/x-www-form-urlencoded',
  71. 'Referer: ' . $BASE['referer'],
  72. 'User-Agent: ' . $BASE['useragent']
  73. ));
  74. for ($i=0;$i<=$this->_RETRY;$i++) {
  75. $data = curl_exec($curl);
  76. $info = curl_getinfo($curl);
  77. $error = curl_errno($curl);
  78. $status = $error ? curl_error($curl) : '';
  79. if (!$error) {
  80. break;
  81. }
  82. }
  83. curl_close($curl);
  84. if ($error) {
  85. return json_encode(
  86. array(
  87. 'error' => $error,
  88. 'info' => $info,
  89. 'status' => $status,
  90. )
  91. );
  92. }
  93. if ($this->_FORMAT && isset($API['decode'])) {
  94. $data = call_user_func_array(array($this,$API['decode']), array($data));
  95. }
  96. if ($this->_FORMAT && isset($API['format'])) {
  97. $data = json_decode($data, 1);
  98. $data = $this->clean($data, $API['format']);
  99. $data = json_encode($data);
  100. }
  101. return $data;
  102. }
  103. private function pickup($array, $rule)
  104. {
  105. $t = explode('#', $rule);
  106. foreach ($t as $vo) {
  107. if (!isset($array[$vo])){
  108. return array();
  109. }
  110. $array = $array[$vo];
  111. }
  112. return $array;
  113. }
  114. private function clean($raw, $rule)
  115. {
  116. if (!empty($rule)) {
  117. $raw = $this->pickup($raw, $rule);
  118. }
  119. if (!isset($raw[0]) && sizeof($raw)) {
  120. $raw = array($raw);
  121. }
  122. $result = array_map(array($this,'format_'.$this->_SITE), $raw);
  123. return $result;
  124. }
  125. public function search($keyword, $option = null)
  126. {
  127. switch ($this->_SITE) {
  128. case 'netease':
  129. $API = array(
  130. 'method' => 'POST',
  131. 'url' => 'http://music.163.com/api/linux/forward',
  132. 'body' => array(
  133. 'method' => 'POST',
  134. 'params' => array(
  135. 's' => $keyword,
  136. 'type' => isset($option['type']) ? $option['type'] : 1,
  137. 'limit' => isset($option['limit']) ? $option['limit'] : 30,
  138. 'total' => 'true',
  139. 'offset' => isset($option['page']) && isset($option['limit']) ? ($option['page'] - 1) * $option['limit'] : 0,
  140. ),
  141. 'url' => 'http://music.163.com/api/cloudsearch/pc',
  142. ),
  143. 'encode' => 'netease_AESECB',
  144. 'format' => 'result#songs',
  145. );
  146. break;
  147. case 'tencent':
  148. $API = array(
  149. 'method' => 'GET',
  150. 'url' => 'https://c.y.qq.com/soso/fcgi-bin/client_search_cp',
  151. 'body' => array(
  152. 'format' => 'json',
  153. 'p' => isset($option['page']) ? $option['page'] : 1,
  154. 'n' => isset($option['limit']) ? $option['limit'] : 30,
  155. 'w' => $keyword,
  156. 'aggr' => 1,
  157. 'lossless' => 1,
  158. 'cr' => 1,
  159. 'new_json' => 1,
  160. ),
  161. 'format' => 'data#song#list',
  162. );
  163. break;
  164. case 'xiami':
  165. $API = array(
  166. 'method' => 'GET',
  167. 'url' => 'http://api.xiami.com/web',
  168. 'body' => array(
  169. 'v' => '2.0',
  170. 'app_key' => '1',
  171. 'key' => $keyword,
  172. 'page' => isset($option['page']) ? $option['page'] : 1,
  173. 'limit' => isset($option['limit']) ? $option['limit'] : 30,
  174. 'r' => 'search/songs',
  175. ),
  176. 'format' => 'data#songs',
  177. );
  178. break;
  179. case 'kugou':
  180. $API = array(
  181. 'method' => 'GET',
  182. 'url' => 'http://ioscdn.kugou.com/api/v3/search/song',
  183. 'body' => array(
  184. 'iscorrect' => 1,
  185. 'pagesize' => isset($option['limit']) ? $option['limit'] : 30,
  186. 'plat' => 2,
  187. 'tag' => 1,
  188. 'sver' => 5,
  189. 'showtype' => 10,
  190. 'page' => isset($option['page']) ? $option['page'] : 1,
  191. 'keyword' => $keyword,
  192. 'version' => 8550
  193. ),
  194. 'format' => 'data#info',
  195. );
  196. break;
  197. case 'baidu':
  198. $API = array(
  199. 'method' => 'GET',
  200. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  201. 'body' => array(
  202. 'from' => 'qianqianmini',
  203. 'method' => 'baidu.ting.search.merge',
  204. 'isNew' => 1,
  205. 'platform' => 'darwin',
  206. 'page_no' => isset($option['page']) ? $option['page'] : 1,
  207. 'query' => $keyword,
  208. 'version' => '11.0.2',
  209. 'page_size' => isset($option['limit']) ? $option['limit'] : 30
  210. ),
  211. 'format' => 'result#song_info#song_list',
  212. );
  213. break;
  214. }
  215. return $this->curl($API);
  216. }
  217. public function song($id)
  218. {
  219. switch ($this->_SITE) {
  220. case 'netease':
  221. $API = array(
  222. 'method' => 'POST',
  223. 'url' => 'http://music.163.com/api/linux/forward',
  224. 'body' => array(
  225. 'method' => 'POST',
  226. 'params' => array(
  227. 'c' => '[{"id":'.$id.',"v":0}]',
  228. ),
  229. 'url' => 'http://music.163.com/api/v3/song/detail/',
  230. ),
  231. 'encode' => 'netease_AESECB',
  232. 'format' => 'songs',
  233. );
  234. break;
  235. case 'tencent':
  236. $API = array(
  237. 'method' => 'GET',
  238. 'url' => 'https://c.y.qq.com/v8/fcg-bin/fcg_play_single_song.fcg',
  239. 'body' => array(
  240. 'songmid' => $id,
  241. 'platform' => 'yqq',
  242. 'format' => 'json',
  243. ),
  244. 'decode' => 'tencent_singlesong',
  245. 'format' => 'data',
  246. );
  247. break;
  248. case 'xiami':
  249. $API = array(
  250. 'method' => 'GET',
  251. 'url' => 'http://api.xiami.com/web',
  252. 'body' => array(
  253. 'v' => '2.0',
  254. 'app_key' => '1',
  255. 'id' => $id,
  256. 'r' => 'song/detail',
  257. ),
  258. 'format' => 'data#song',
  259. );
  260. break;
  261. case 'kugou':
  262. $API = array(
  263. 'method' => 'POST',
  264. 'url' => 'http://m.kugou.com/app/i/getSongInfo.php',
  265. 'body' => array(
  266. "cmd" => "playInfo",
  267. "hash" => $id,
  268. "from" => "mkugou",
  269. ),
  270. 'format' => '',
  271. );
  272. break;
  273. case 'baidu':
  274. $API = array(
  275. 'method' => 'GET',
  276. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  277. 'body' => array(
  278. 'from' => 'qianqianmini',
  279. 'method' => 'baidu.ting.song.getInfos',
  280. 'songid' => $id,
  281. 'res' => 1,
  282. 'platform' => 'darwin',
  283. 'version' => '1.0.0'
  284. ),
  285. 'encode' => 'baidu_AESCBC',
  286. 'format' => 'songinfo',
  287. );
  288. break;
  289. }
  290. return $this->curl($API);
  291. }
  292. public function album($id)
  293. {
  294. switch ($this->_SITE) {
  295. case 'netease':
  296. $API = array(
  297. 'method' => 'POST',
  298. 'url' => 'http://music.163.com/api/linux/forward',
  299. 'body' => array(
  300. 'method' => 'GET',
  301. 'params' => array(
  302. "total" => "true",
  303. "offset" => "0",
  304. "id" => $id,
  305. "limit" => "1000",
  306. "ext" => "true",
  307. "private_cloud" => "true"
  308. ),
  309. 'url' => 'http://music.163.com/api/v1/album/'.$id,
  310. ),
  311. 'encode' => 'netease_AESECB',
  312. 'format' => 'songs',
  313. );
  314. break;
  315. case 'tencent':
  316. $API = array(
  317. 'method' => 'GET',
  318. 'url' => 'https://c.y.qq.com/v8/fcg-bin/fcg_v8_album_detail_cp.fcg',
  319. 'body' => array(
  320. 'albummid' => $id,
  321. 'platform' => 'mac',
  322. 'format' => 'json',
  323. 'newsong' => 1,
  324. ),
  325. 'format' => 'data#getSongInfo',
  326. );
  327. break;
  328. case 'xiami':
  329. $API = array(
  330. 'method' => 'GET',
  331. 'url' => 'http://api.xiami.com/web',
  332. 'body' => array(
  333. 'v' => '2.0',
  334. 'app_key' => '1',
  335. 'id' => $id,
  336. 'r' => 'album/detail',
  337. ),
  338. 'format' => 'data#songs',
  339. );
  340. break;
  341. case 'kugou':
  342. $API = array(
  343. 'method' => 'GET',
  344. 'url' => 'http://mobilecdn.kugou.com/api/v3/album/song',
  345. 'body' => array(
  346. 'albumid' => $id,
  347. 'plat' => 2,
  348. 'page' => 1,
  349. 'pagesize' => -1,
  350. 'version' => 8550,
  351. ),
  352. 'format' => 'data#info',
  353. );
  354. break;
  355. case 'baidu':
  356. $API = array(
  357. 'method' => 'GET',
  358. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  359. 'body' => array(
  360. 'from' => 'qianqianmini',
  361. 'method' => 'baidu.ting.album.getAlbumInfo',
  362. 'album_id' => $id,
  363. 'platform' => 'darwin',
  364. 'version' => '11.0.2'
  365. ),
  366. 'format' => 'songlist',
  367. );
  368. break;
  369. }
  370. return $this->curl($API);
  371. }
  372. public function artist($id, $limit=50)
  373. {
  374. switch ($this->_SITE) {
  375. case 'netease':
  376. $API = array(
  377. 'method' => 'POST',
  378. 'url' => 'http://music.163.com/api/linux/forward',
  379. 'body' => array(
  380. 'method' => 'GET',
  381. 'params' => array(
  382. "ext" => "true",
  383. "private_cloud" => "true",
  384. "ext" => "true",
  385. "top" => $limit,
  386. "id" => $id
  387. ),
  388. 'url' => 'http://music.163.com/api/v1/artist/'.$id,
  389. ),
  390. 'encode' => 'netease_AESECB',
  391. 'format' => 'hotSongs',
  392. );
  393. break;
  394. case 'tencent':
  395. $API = array(
  396. 'method' => 'GET',
  397. 'url' => 'https://c.y.qq.com/v8/fcg-bin/fcg_v8_singer_track_cp.fcg',
  398. 'body' => array(
  399. 'singermid' => $id,
  400. 'begin' => 0,
  401. 'num' => $limit,
  402. 'order' => 'listen',
  403. 'platform' => 'mac',
  404. 'newsong' => 1,
  405. ),
  406. 'format' => 'data#list',
  407. );
  408. break;
  409. case 'xiami':
  410. $API = array(
  411. 'method' => 'GET',
  412. 'url' => 'http://api.xiami.com/web',
  413. 'body' => array(
  414. 'v' => '2.0',
  415. 'app_key' => '1',
  416. 'id' => $id,
  417. 'limit' => $limit,
  418. 'page' => 1,
  419. 'r' => 'artist/hot-songs',
  420. ),
  421. 'format' => 'data',
  422. );
  423. break;
  424. case 'kugou':
  425. $API = array(
  426. 'method' => 'GET',
  427. 'url' => 'http://mobilecdn.kugou.com/api/v3/singer/song',
  428. 'body' => array(
  429. 'singerid' => $id,
  430. 'page' => 1,
  431. 'plat' => 0,
  432. 'pagesize' => $limit,
  433. 'version' => 8400,
  434. ),
  435. 'format' => 'data#info',
  436. );
  437. break;
  438. case 'baidu':
  439. $API = array(
  440. 'method' => 'GET',
  441. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  442. 'body' => array(
  443. 'from' => 'qianqianmini',
  444. 'method' => 'baidu.ting.artist.getSongList',
  445. 'artistid' => $id,
  446. 'limits' => 20,
  447. 'platform' => 'darwin',
  448. 'offset' => 0,
  449. 'tinguid' => 0,
  450. 'version' => '11.0.2'
  451. ),
  452. 'format' => 'songlist',
  453. );
  454. break;
  455. }
  456. return $this->curl($API);
  457. }
  458. public function playlist($id)
  459. {
  460. switch ($this->_SITE) {
  461. case 'netease':
  462. $API = array(
  463. 'method' => 'POST',
  464. 'url' => 'http://music.163.com/api/linux/forward',
  465. 'body' => array(
  466. 'method' => 'POST',
  467. 'params' => array(
  468. "s" => "0",
  469. "id" => $id,
  470. "n" => "1000",
  471. "t" => "0"
  472. ),
  473. 'url' => 'http://music.163.com/api/v3/playlist/detail',
  474. ),
  475. 'encode' => 'netease_AESECB',
  476. 'format' => 'playlist#tracks',
  477. );
  478. break;
  479. case 'tencent':
  480. $API = array(
  481. 'method' => 'GET',
  482. 'url' => 'https://c.y.qq.com/v8/fcg-bin/fcg_v8_playlist_cp.fcg',
  483. 'body' => array(
  484. 'id' => $id,
  485. 'format' => 'json',
  486. 'newsong' => 1,
  487. 'platform' => 'jqspaframe.json',
  488. ),
  489. 'format' => 'data#cdlist#0#songlist',
  490. );
  491. break;
  492. case 'xiami':
  493. $API = array(
  494. 'method' => 'GET',
  495. 'url' => 'http://api.xiami.com/web',
  496. 'body' => array(
  497. 'v' => '2.0',
  498. 'app_key' => '1',
  499. 'id' => $id,
  500. 'r' => 'collect/detail',
  501. ),
  502. 'format' => 'data#songs',
  503. );
  504. break;
  505. case 'kugou':
  506. $API = array(
  507. 'method' => 'GET',
  508. 'url' => 'http://mobilecdn.kugou.com/api/v3/special/song',
  509. 'body' => array(
  510. 'specialid' => $id,
  511. 'page' => 1,
  512. 'plat' => 2,
  513. 'pagesize' => -1,
  514. 'version' => 8400,
  515. ),
  516. 'format' => 'data#info',
  517. );
  518. break;
  519. case 'baidu':
  520. $API = array(
  521. 'method' => 'GET',
  522. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  523. 'body' => array(
  524. 'from' => 'qianqianmini',
  525. 'method' => 'baidu.ting.diy.gedanInfo',
  526. 'listid' => $id,
  527. 'platform' => 'darwin',
  528. 'version' => '11.0.2'
  529. ),
  530. 'format' => 'content',
  531. );
  532. break;
  533. }
  534. return $this->curl($API);
  535. }
  536. public function url($id, $br=320)
  537. {
  538. switch ($this->_SITE) {
  539. case 'netease':
  540. $API = array(
  541. 'method' => 'POST',
  542. 'url' => 'http://music.163.com/api/linux/forward',
  543. 'body' => array(
  544. 'method' => 'POST',
  545. 'params' => array(
  546. 'ids' => array($id),
  547. 'br' => $br*1000,
  548. ),
  549. 'url' => 'http://music.163.com/api/song/enhance/player/url',
  550. ),
  551. 'encode' => 'netease_AESECB',
  552. 'decode' => 'netease_url',
  553. );
  554. break;
  555. case 'tencent':
  556. $API = array(
  557. 'method' => 'GET',
  558. 'url' => 'https://c.y.qq.com/v8/fcg-bin/fcg_play_single_song.fcg',
  559. 'body' => array(
  560. 'songmid' => $id,
  561. 'platform' => 'yqq',
  562. 'format' => 'json',
  563. ),
  564. 'decode' => 'tencent_url',
  565. );
  566. break;
  567. case 'xiami':
  568. $API = array(
  569. 'method' => 'GET',
  570. 'url' => 'http://www.xiami.com/song/gethqsong/sid/'.$id,
  571. 'body' => array(
  572. 'v' => '2.0',
  573. 'app_key' => '1',
  574. 'id' => $id,
  575. 'r' => 'song/detail',
  576. ),
  577. 'decode' => 'xiami_url',
  578. );
  579. break;
  580. case 'kugou':
  581. $API = array(
  582. 'method' => 'POST',
  583. 'url' => 'http://media.store.kugou.com/v1/get_res_privilege',
  584. 'body' => json_encode(array(
  585. "relate" => 1,
  586. "userid" => 0,
  587. "vip" => 0,
  588. "appid" => 1005,
  589. "token" => "",
  590. "behavior" => "download",
  591. "clientver" => "8493",
  592. "resource" => array(array(
  593. "id" => 0,
  594. "type" => "audio",
  595. "hash" => $id,
  596. )))
  597. ),
  598. 'decode' => 'kugou_url',
  599. );
  600. break;
  601. case 'baidu':
  602. $API = array(
  603. 'method' => 'GET',
  604. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  605. 'body' => array(
  606. 'from' => 'qianqianmini',
  607. 'method' => 'baidu.ting.song.getInfos',
  608. 'songid' => $id,
  609. 'res' => 1,
  610. 'platform' => 'darwin',
  611. 'version' => '1.0.0'
  612. ),
  613. 'encode' => 'baidu_AESCBC',
  614. 'decode' => 'baidu_url',
  615. );
  616. break;
  617. }
  618. $this->_TEMP['br'] = $br;
  619. return $this->curl($API);
  620. }
  621. public function lyric($id)
  622. {
  623. switch ($this->_SITE) {
  624. case 'netease':
  625. $API = array(
  626. 'method' => 'POST',
  627. 'url' => 'http://music.163.com/api/linux/forward',
  628. 'body' => array(
  629. 'method' => 'POST',
  630. 'params' => array(
  631. 'id' => $id,
  632. 'os' => 'linux',
  633. 'lv' => -1,
  634. 'kv' => -1,
  635. 'tv' => -1,
  636. ),
  637. 'url' => 'http://music.163.com/api/song/lyric',
  638. ),
  639. 'encode' => 'netease_AESECB',
  640. 'decode' => 'netease_lyric',
  641. );
  642. break;
  643. case 'tencent':
  644. $API = array(
  645. 'method' => 'GET',
  646. 'url' => 'https://c.y.qq.com/lyric/fcgi-bin/fcg_query_lyric_new.fcg',
  647. 'body' => array(
  648. 'songmid' => $id,
  649. 'g_tk' => '5381',
  650. ),
  651. 'decode' => 'tencent_lyric',
  652. );
  653. break;
  654. case 'xiami':
  655. $API = array(
  656. 'method' => 'GET',
  657. 'url' => 'http://api.xiami.com/web',
  658. 'body' => array(
  659. 'v' => '2.0',
  660. 'app_key' => '1',
  661. 'id' => $id,
  662. 'r' => 'song/detail',
  663. ),
  664. 'decode' => 'xiami_lyric',
  665. );
  666. break;
  667. case 'kugou':
  668. $API = array(
  669. 'method' => 'GET',
  670. 'url' => 'http://m.kugou.com/app/i/krc.php',
  671. 'body' => array(
  672. 'keyword' => '%20-%20',
  673. 'timelength' => 1000000,
  674. 'cmd' => 100,
  675. 'hash' => $id,
  676. ),
  677. 'decode' => 'kugou_lyric'
  678. );
  679. break;
  680. case 'baidu':
  681. $API = array(
  682. 'method' => 'GET',
  683. 'url' => 'http://tingapi.ting.baidu.com/v1/restserver/ting',
  684. 'body' => array(
  685. 'from' => 'qianqianmini',
  686. 'method' => 'baidu.ting.song.lry',
  687. 'songid' => $id,
  688. 'platform' => 'darwin',
  689. 'version' => '1.0.0'
  690. ),
  691. 'decode' => 'baidu_lyric',
  692. );
  693. break;
  694. }
  695. return $this->curl($API);
  696. }
  697. public function pic($id, $size=300)
  698. {
  699. switch ($this->_SITE) {
  700. case 'netease':
  701. $url='https://p3.music.126.net/'.$this->netease_pickey($id).'/'.$id.'.jpg?param='.$size.'y'.$size;
  702. break;
  703. case 'tencent':
  704. $url='https://y.gtimg.cn/music/photo_new/T002R'.$size.'x'.$size.'M000'.$id.'.jpg?max_age=2592000';
  705. break;
  706. case 'xiami':
  707. $format=$this->_FORMAT;
  708. $data=$this->format(false)->song($id);
  709. $this->format($format);
  710. $data=json_decode($data, 1);
  711. $url=$data['data']['song']['logo'];
  712. $url=str_replace(array('_1.','http:','img.'), array('.','https:','pic.'), $url).'@'.$size.'h_'.$size.'w_100q_1c.jpg';
  713. break;
  714. case 'kugou':
  715. $format=$this->_FORMAT;
  716. $data=$this->format(false)->song($id);
  717. $this->format($format);
  718. $data=json_decode($data, 1);
  719. $url=$data['imgUrl'];
  720. $url=str_replace('{size}', '400', $url);
  721. break;
  722. case 'baidu':
  723. $format=$this->_FORMAT;
  724. $data=$this->format(false)->song($id);
  725. $this->format($format);
  726. $data=json_decode($data, 1);
  727. $url=isset($data['songinfo']['pic_radio'])?$data['songinfo']['pic_radio']:$data['songinfo']['pic_small'];
  728. break;
  729. }
  730. return json_encode(array('url'=>$url));
  731. }
  732. private function curlset()
  733. {
  734. switch ($this->_SITE) {
  735. case 'netease':
  736. return array(
  737. 'referer' => 'https://music.163.com/',
  738. 'cookie' => 'os=linux; deviceId=' . $this->getRandomHex(52) . '; osver=Ubuntu%2016.04.3%20LTS; appver=1.1.0.1232; channel=netease; MUSIC_U=255b19fea4bdec0a0011f855c3708e3e97b229707fccab67d74da902317635b4f866558227e6c3335d9bd72ef1abb9ea77749c2dda21047b; __csrf=' . $this->getRandomHex(32),
  739. 'useragent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',
  740. );
  741. case 'tencent':
  742. return array(
  743. 'referer' => 'https://y.qq.com/portal/player.html',
  744. 'cookie' => 'pgv_pvi=22038528; pgv_si=s3156287488; pgv_pvid=5535248600; yplayer_open=1; ts_last=y.qq.com/portal/player.html; ts_uid=4847550686; yq_index=0; qqmusic_fromtag=66; player_exist=1',
  745. 'useragent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',
  746. );
  747. case 'xiami':
  748. return array(
  749. 'referer' => 'http://h.xiami.com/',
  750. 'cookie' => '_xiamitoken=' . $this->getRandomHex(32) . '; _unsign_token=' . $this->getRandomHex(32),
  751. 'useragent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',
  752. );
  753. case 'kugou':
  754. return array(
  755. 'referer' => 'http://www.kugou.com/webkugouplayer/flash/webKugou.swf',
  756. 'cookie' => 'kg_mid=' . $this->getRandomHex(32),
  757. 'useragent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',
  758. );
  759. case 'baidu':
  760. return array(
  761. 'referer' => '',
  762. 'cookie' => 'BAIDUID=' . $this->getRandomHex(32) . ':FG=1',
  763. 'useragent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) baidu-music/1.0.2 Chrome/56.0.2924.87 Electron/1.6.11 Safari/537.36',
  764. );
  765. }
  766. }
  767. private function getRandomHex($length)
  768. {
  769. if (function_exists('openssl_random_pseudo_bytes')) {
  770. return bin2hex(openssl_random_pseudo_bytes($length));
  771. } else {
  772. return bin2hex(mcrypt_create_iv($length, MCRYPT_DEV_URANDOM));
  773. }
  774. }
  775. /**
  776. * 乱七八糟的函数,加密解密...
  777. * 正在努力重构这些代码 TAT
  778. */
  779. private function netease_AESECB($API)
  780. {
  781. $KEY='7246674226682325323F5E6544673A51';
  782. $body=json_encode($API['body']);
  783. if (function_exists('openssl_encrypt')) {
  784. $body=openssl_encrypt($body, 'aes-128-ecb', pack('H*', $KEY));
  785. } else {
  786. $PAD=16-(strlen($body)%16);
  787. $body=base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, hex2bin($KEY), $body.str_repeat(chr($PAD), $PAD), MCRYPT_MODE_ECB));
  788. }
  789. $body=strtoupper(bin2hex(base64_decode($body)));
  790. $API['body']=array(
  791. 'eparams'=>$body,
  792. );
  793. return $API;
  794. }
  795. private function baidu_AESCBC($API)
  796. {
  797. $key = 'DBEECF8C50FD160E';
  798. $vi = '1231021386755796';
  799. $data = 'songid='.$API['body']['songid'].'&ts='.intval(microtime(true)*1000);
  800. if (function_exists('openssl_encrypt')) {
  801. $data = openssl_encrypt($data, 'aes-128-cbc', $key, false, $vi);
  802. } else {
  803. $PAD = 16-(strlen($data)%16);
  804. $data = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $data.str_repeat(chr($PAD), $PAD), MCRYPT_MODE_CBC, $vi));
  805. }
  806. $API['body']['e'] = $data;
  807. return $API;
  808. }
  809. private function tencent_singlesong($result)
  810. {
  811. $result=json_decode($result, 1);
  812. $data=$result['data'][0];
  813. $t=array(
  814. 'songmid' => $data['mid'],
  815. 'songname' => $data['name'],
  816. 'albummid' => $data['album']['mid'],
  817. );
  818. foreach ($t as $key=>$vo) {
  819. $result['data'][0][$key]=$vo;
  820. }
  821. return json_encode($result);
  822. }
  823. private function netease_pickey($id)
  824. {
  825. $magic=str_split('3go8&$8*3*3h0k(2)2');
  826. $song_id=str_split($id);
  827. for ($i=0;$i<count($song_id);$i++) {
  828. $song_id[$i]=chr(ord($song_id[$i])^ord($magic[$i%count($magic)]));
  829. }
  830. $result=base64_encode(md5(implode('', $song_id), 1));
  831. $result=str_replace(array('/','+'), array('_','-'), $result);
  832. return $result;
  833. }
  834. /**
  835. * URL - 歌曲地址转换函数
  836. * 用于返回不高于指定 bitRate 的歌曲地址(默认规范化)
  837. */
  838. private function netease_url($result)
  839. {
  840. $data=json_decode($result, 1);
  841. if (isset($data['data'][0]['uf']['url'])) {
  842. $data['data'][0]['url']=$data['data'][0]['uf']['url'];
  843. }
  844. if (isset($data['data'][0]['url'])) {
  845. $url=array(
  846. 'url' => $data['data'][0]['url'],
  847. 'br' => $data['data'][0]['br']/1000,
  848. );
  849. } else {
  850. $url=array(
  851. 'url' => '',
  852. 'br' => -1,
  853. );
  854. }
  855. return json_encode($url);
  856. }
  857. private function tencent_url($result)
  858. {
  859. $data=json_decode($result, 1);
  860. $GUID=mt_rand()%10000000000;
  861. $API=array(
  862. 'method' => 'GET',
  863. 'url' => 'https://c.y.qq.com/base/fcgi-bin/fcg_musicexpress.fcg',
  864. 'body' => array(
  865. 'json' => 3,
  866. 'guid' => $GUID,
  867. 'format' => 'json',
  868. ),
  869. );
  870. $KEY=json_decode($this->curl($API), 1);
  871. $KEY=$KEY['key'];
  872. $type=array(
  873. 'size_320mp3' => array(320,'M800','mp3'),
  874. 'size_192aac' => array(192,'C600','m4a'),
  875. 'size_128mp3' => array(128,'M500','mp3'),
  876. 'size_96aac' => array(96 ,'C400','m4a'),
  877. 'size_48aac' => array(48 ,'C200','m4a'),
  878. );
  879. foreach ($type as $key=>$vo) {
  880. if ($data['data'][0]['file'][$key]&&$vo[0]<=$this->_TEMP['br']) {
  881. $url=array(
  882. 'url' => 'https://dl.stream.qqmusic.qq.com/'.$vo[1].$data['data'][0]['file']['media_mid'].'.'.$vo[2].'?vkey='.$KEY.'&guid='.$GUID.'&uid=0&fromtag=30',
  883. 'br' => $vo[0],
  884. );
  885. break;
  886. }
  887. }
  888. if (!isset($url['url'])) {
  889. $url=array(
  890. 'url' => '',
  891. 'br' => -1,
  892. );
  893. }
  894. return json_encode($url);
  895. }
  896. private function xiami_url($result)
  897. {
  898. $data=json_decode($result, 1);
  899. if (!empty($data['location'])) {
  900. $location = $data['location'];
  901. $num = (int)$location[0];
  902. $str = substr($location, 1);
  903. $len = floor(strlen($str)/$num);
  904. $sub = strlen($str) % $num;
  905. $qrc = array();
  906. $tmp = 0;
  907. $urlt = '';
  908. for (;$tmp<$sub;$tmp++) {
  909. $qrc[$tmp] = substr($str, $tmp*($len+1), $len+1);
  910. }
  911. for (;$tmp<$num;$tmp++) {
  912. $qrc[$tmp] = substr($str, $len*$tmp+$sub, $len);
  913. }
  914. for ($tmpa=0;$tmpa<$len+1;$tmpa++) {
  915. for ($tmpb=0;$tmpb<$num;$tmpb++) {
  916. if (isset($qrc[$tmpb][$tmpa])) {
  917. $urlt.=$qrc[$tmpb][$tmpa];
  918. }
  919. }
  920. }
  921. $urlt=str_replace('^', '0', urldecode($urlt));
  922. $url=array(
  923. 'url' => str_replace('http://','https://',urldecode($urlt)),
  924. 'br' => 320,
  925. );
  926. } else {
  927. $url=array(
  928. 'url' => '',
  929. 'br' => -1,
  930. );
  931. }
  932. return json_encode($url);
  933. }
  934. private function kugou_url($result)
  935. {
  936. $data=json_decode($result, 1);
  937. $max=0;
  938. $url=array();
  939. foreach ($data['data'][0]['relate_goods'] as $vo) {
  940. if ($vo['info']['bitrate']<=$this->_TEMP['br']&&$vo['info']['bitrate']>$max) {
  941. $API=array(
  942. 'method' => 'GET',
  943. 'url' => 'http://trackercdn.kugou.com/i/v2/',
  944. 'body' => array(
  945. 'hash' => $vo['hash'],
  946. 'key' => md5($vo['hash'].'kgcloudv2'),
  947. 'pid' => 1,
  948. 'behavior' => 'play',
  949. 'cmd' => '23',
  950. 'version' => 8400,
  951. ),
  952. );
  953. $t=json_decode($this->curl($API), 1);
  954. if (isset($t['url'])) {
  955. $max=$t['bitRate']/1000;
  956. $url=array(
  957. 'url' => $t['url'],
  958. 'br' => $t['bitRate']/1000,
  959. );
  960. }
  961. }
  962. }
  963. if (!isset($url['url'])) {
  964. $url=array(
  965. 'url' => '',
  966. 'br' => -1,
  967. );
  968. }
  969. return json_encode($url);
  970. }
  971. private function baidu_url($result)
  972. {
  973. $data=json_decode($result, true);
  974. $max=0;
  975. $url=array();
  976. foreach ($data['songurl']['url'] as $vo) {
  977. if ($vo['file_bitrate']<=$this->_TEMP['br']&&$vo['file_bitrate']>$max) {
  978. $url=array(
  979. 'url' => $vo['file_link'],
  980. 'br' => $vo['file_bitrate'],
  981. );
  982. }
  983. }
  984. if (!isset($url['url'])) {
  985. $url=array(
  986. 'url' => '',
  987. 'br' => -1,
  988. );
  989. }
  990. return json_encode($url);
  991. }
  992. /**
  993. * 歌词处理模块
  994. * 用于规范化歌词输出
  995. */
  996. private function netease_lyric($result)
  997. {
  998. if (!$this->_FORMAT) {
  999. return $result;
  1000. }
  1001. $result=json_decode($result, 1);
  1002. $data=array(
  1003. 'lyric' => isset($result['lrc']['lyric'])?$result['lrc']['lyric']:'',
  1004. 'tlyric' => isset($result['tlyric']['lyric'])?$result['tlyric']['lyric']:'',
  1005. );
  1006. return json_encode($data);
  1007. }
  1008. private function tencent_lyric($result)
  1009. {
  1010. $result=substr($result,18,-1);
  1011. if (!$this->_FORMAT) {
  1012. return $result;
  1013. }
  1014. $result=json_decode($result, 1);
  1015. $data=array(
  1016. 'lyric' => isset($result['lyric'])?base64_decode($result['lyric']):'',
  1017. 'tlyric' => isset($result['trans'])?base64_decode($result['trans']):'',
  1018. );
  1019. return json_encode($data);
  1020. }
  1021. private function xiami_lyric($result)
  1022. {
  1023. if (!$this->_FORMAT) {
  1024. return $result;
  1025. }
  1026. $result=json_decode($result, 1);
  1027. $data='';
  1028. if(!empty($result['data']['song']['lyric'])){
  1029. $API=array('method'=>'GET','url'=>$result['data']['song']['lyric']);
  1030. $data=$this->curl($API);
  1031. $data=preg_replace('/<[^>]+>/', '', $data);
  1032. }
  1033. preg_match_all('/\[([\d:\.]+)\](.*)\s\[x-trans\](.*)/i',$data,$match);
  1034. if(sizeof($match[0])){
  1035. for($i=0;$i<sizeof($match[0]);$i++){
  1036. $A[]='['.$match[1][$i].']'.$match[2][$i];
  1037. $B[]='['.$match[1][$i].']'.$match[3][$i];
  1038. }
  1039. $arr=array(
  1040. 'lyric' => str_replace($match[0],$A,$data),
  1041. 'tlyric' => str_replace($match[0],$B,$data),
  1042. );
  1043. }
  1044. else{
  1045. $arr=array(
  1046. 'lyric' => $data,
  1047. 'tlyric' => '',
  1048. );
  1049. }
  1050. return json_encode($arr);
  1051. }
  1052. private function kugou_lyric($result)
  1053. {
  1054. if (!$this->_FORMAT) {
  1055. return $result;
  1056. }
  1057. $arr=array(
  1058. 'lyric' => $result,
  1059. 'tlyric' => '',
  1060. );
  1061. return json_encode($arr);
  1062. }
  1063. private function baidu_lyric($result)
  1064. {
  1065. if (!$this->_FORMAT) {
  1066. return $result;
  1067. }
  1068. $result=json_decode($result, 1);
  1069. $data=array(
  1070. 'lyric' => isset($result['lrcContent'])?$result['lrcContent']:'',
  1071. 'tlyric' => '',
  1072. );
  1073. return json_encode($data);
  1074. }
  1075. /**
  1076. * Format - 规范化函数
  1077. * 用于统一返回的参数,可用 ->format() 一次性开关开启
  1078. */
  1079. private function format_netease($data)
  1080. {
  1081. $result=array(
  1082. 'id' => $data['id'],
  1083. 'name' => $data['name'],
  1084. 'artist' => array(),
  1085. 'album' => $data['al']['name'],
  1086. 'pic_id' => isset($data['al']['pic_str'])?$data['al']['pic_str']:$data['al']['pic'],
  1087. 'url_id' => $data['id'],
  1088. 'lyric_id' => $data['id'],
  1089. 'source' => 'netease',
  1090. );
  1091. if (isset($data['al']['picUrl'])) {
  1092. preg_match('/\/(\d+)\./', $data['al']['picUrl'], $match);
  1093. $result['pic_id']=$match[1];
  1094. }
  1095. foreach ($data['ar'] as $vo) {
  1096. $result['artist'][]=$vo['name'];
  1097. }
  1098. return $result;
  1099. }
  1100. private function format_tencent($data)
  1101. {
  1102. if (isset($data['musicData'])) {
  1103. $data=$data['musicData'];
  1104. }
  1105. $result=array(
  1106. 'id' => $data['mid'],
  1107. 'name' => $data['name'],
  1108. 'artist' => array(),
  1109. 'album' => trim($data['album']['title']),
  1110. 'pic_id' => $data['album']['mid'],
  1111. 'url_id' => $data['mid'],
  1112. 'lyric_id' => $data['mid'],
  1113. 'source' => 'tencent',
  1114. );
  1115. foreach ($data['singer'] as $vo) {
  1116. $result['artist'][]=$vo['name'];
  1117. }
  1118. return $result;
  1119. }
  1120. private function format_xiami($data)
  1121. {
  1122. $result=array(
  1123. 'id' => $data['song_id'],
  1124. 'name' => $data['song_name'],
  1125. 'artist' => explode(';', isset($data['singers'])?$data['singers']:$data['artist_name']),
  1126. 'album' => $data['album_name'],
  1127. 'pic_id' => $data['song_id'],
  1128. 'url_id' => $data['song_id'],
  1129. 'lyric_id' => $data['song_id'],
  1130. 'source' => 'xiami',
  1131. );
  1132. return $result;
  1133. }
  1134. private function format_kugou($data)
  1135. {
  1136. $result=array(
  1137. 'id' => $data['hash'],
  1138. 'name' => isset($data['filename'])?$data['filename']:$data['fileName'],
  1139. 'artist' => array(),
  1140. 'album' => isset($data['album_name'])?$data['album_name']:'',
  1141. 'url_id' => $data['hash'],
  1142. 'pic_id' => $data['hash'],
  1143. 'lyric_id' => $data['hash'],
  1144. 'source' => 'kugou',
  1145. );
  1146. list($result['artist'], $result['name'])=explode(' - ', $result['name'], 2);
  1147. $result['artist']=explode('、', $result['artist']);
  1148. return $result;
  1149. }
  1150. private function format_baidu($data)
  1151. {
  1152. $result=array(
  1153. 'id' => $data['song_id'],
  1154. 'name' => $data['title'],
  1155. 'artist' => explode(',', $data['author']),
  1156. 'album' => $data['album_title'],
  1157. 'pic_id' => $data['song_id'],
  1158. 'url_id' => $data['song_id'],
  1159. 'lyric_id' => $data['song_id'],
  1160. 'source' => 'baidu',
  1161. );
  1162. return $result;
  1163. }
  1164. }