const { SourceModel } = require('../model/SourceModel'); class RM123Source extends SourceModel { constructor() { super(); this.type = ''; this.name = ''; } getExtension(url) { return url.toLowerCase(); } async search(keywords) { keywords = encodeURIComponent(keywords); // POST请求 let options = { url: `https://music.rm123.cn/?name=${keywords}&type=${this.type}`, method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', //'Host': 'RM123.sharerj.com', //'Origin': 'http://RM123.sharerj.com', //'Referer': `http://RM123.sharerj.com/?name=${keywords}&type=qq`, //'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.183', //'Accept': 'application/json, text/javascript, */*; q=0.01', 'X-Requested-With': 'XMLHttpRequest', //此行必须填写 //'Cookie': '__gads=ID=f167a79e430852c8-227b3bd2b6e70079:T=1690680059:RT=1690680059:S=ALNI_MZixvU2-9BVQv0qTuN2kVnZttuZIQ; __gpi=UID=00000d30f9e155c5:T=1690680059:RT=1690680059:S=ALNI_MZtwSz24f5LJ-tGCRKRuzz0AFH5rA' }, json: true, //将body解析为json body: `input=${keywords}&filter=name&type=${this.type}&page=1` }; let result = await this.request(options); if(result.data instanceof Array) { result = result.data.map(item => { return { title: item.title, author: item.author, url: item.url, link: item.link, lrc: item.lrc, pic: item.pic, source_name: this.getName(), extension: item.url ? this.checkExtension(this.getExtension(item.url)) : '' } }); }else { result = result; } return result; } } class RM123QQSource extends RM123Source { constructor() { super(); this.type = 'qq'; this.name = "RM123_QQ"; } getExtension(url) { return url.split('?')[0].split('/').pop().split('.').pop().toLowerCase(); } } class RM123NeteaseSource extends RM123Source { constructor() { super(); this.type = 'netease'; this.name = "RM123_网易"; } getExtension(url) { return url.split('.').pop().toLowerCase(); } } class RM123KugouSource extends RM123Source { constructor() { super(); this.type = 'kugou'; this.name = "RM123_酷狗"; } } class RM123KuwoSource extends RM123Source { constructor() { super(); this.type = 'kuwo'; this.name = "RM123_酷我"; } } class RM123QianqianSource extends RM123Source { constructor() { super(); this.type = 'baidu'; this.name = "RM123_千千"; } } class RM1231tingSource extends RM123Source { constructor() { super(); this.type = '1ting'; this.name = "RM123_一听"; } } class RM123MiguSource extends RM123Source { constructor() { super(); this.type = 'migu'; this.name = "RM123_咪咕"; } } class RM123LizhiSource extends RM123Source { constructor() { super(); this.type = 'lizhi'; this.name = "RM123_荔枝"; } } class RM123QingtingSource extends RM123Source { constructor() { super(); this.type = 'qingting'; this.name = "RM123_蜻蜓"; } } class RM123XimalayaSource extends RM123Source { constructor() { super(); this.type = 'ximalaya'; this.name = "RM123_喜马拉雅"; } } class RM1235singycSource extends RM123Source { constructor() { super(); this.type = '5singyc'; this.name = "RM123_5sing原创"; } } class RM1235singfcSource extends RM123Source { constructor() { super(); this.type = '5singfc'; this.name = "RM123_5sing翻唱"; } } class RM123KgSource extends RM123Source { constructor() { super(); this.type = 'kg'; this.name = "RM123_全民K歌"; } } module.exports = { RM123QQSource, RM123NeteaseSource, RM123KugouSource, RM123KuwoSource, RM123QianqianSource, RM1231tingSource, RM123MiguSource, RM123LizhiSource, RM123QingtingSource, RM123XimalayaSource, RM1235singycSource, RM1235singfcSource, RM123KgSource }