69 lines
1.7 KiB
Dart
69 lines
1.7 KiB
Dart
import '../models/live/item.dart';
|
|
import '../models/live/room_info.dart';
|
|
import '../models/live/room_info_h5.dart';
|
|
import 'api.dart';
|
|
import 'init.dart';
|
|
|
|
class LiveHttp {
|
|
static Future liveList(
|
|
{int? vmid, int? pn, int? ps, String? orderType}) async {
|
|
var res = await Request().get(Api.liveList,
|
|
data: {'page': pn, 'page_size': 30, 'platform': 'web'});
|
|
if (res.data['code'] == 0) {
|
|
return {
|
|
'status': true,
|
|
'data': res.data['data']['list']
|
|
.map<LiveItemModel>((e) => LiveItemModel.fromJson(e))
|
|
.toList()
|
|
};
|
|
} else {
|
|
return {
|
|
'status': false,
|
|
'data': [],
|
|
'msg': res.data['message'],
|
|
};
|
|
}
|
|
}
|
|
|
|
static Future liveRoomInfo({roomId, qn}) async {
|
|
var res = await Request().get(Api.liveRoomInfo, data: {
|
|
'room_id': roomId,
|
|
'protocol': '0, 1',
|
|
'format': '0, 1, 2',
|
|
'codec': '0, 1',
|
|
'qn': qn,
|
|
'platform': 'web',
|
|
'ptype': 8,
|
|
'dolby': 5,
|
|
'panorama': 1,
|
|
});
|
|
if (res.data['code'] == 0) {
|
|
return {'status': true, 'data': RoomInfoModel.fromJson(res.data['data'])};
|
|
} else {
|
|
return {
|
|
'status': false,
|
|
'data': [],
|
|
'msg': res.data['message'],
|
|
};
|
|
}
|
|
}
|
|
|
|
static Future liveRoomInfoH5({roomId, qn}) async {
|
|
var res = await Request().get(Api.liveRoomInfoH5, data: {
|
|
'room_id': roomId,
|
|
});
|
|
if (res.data['code'] == 0) {
|
|
return {
|
|
'status': true,
|
|
'data': RoomInfoH5Model.fromJson(res.data['data'])
|
|
};
|
|
} else {
|
|
return {
|
|
'status': false,
|
|
'data': [],
|
|
'msg': res.data['message'],
|
|
};
|
|
}
|
|
}
|
|
}
|