mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
29 lines
748 B
Dart
29 lines
748 B
Dart
import 'package:PiliPlus/http/api.dart';
|
|
import 'package:PiliPlus/http/init.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models_new/blacklist/data.dart';
|
|
import 'package:PiliPlus/utils/accounts.dart';
|
|
|
|
class BlackHttp {
|
|
static Future<LoadingState<BlackListData>> blackList({
|
|
required int pn,
|
|
int ps = 50,
|
|
}) async {
|
|
var res = await Request().get(
|
|
Api.blackLst,
|
|
queryParameters: {
|
|
'pn': pn,
|
|
'ps': ps,
|
|
're_version': 0,
|
|
'jsonp': 'jsonp',
|
|
'csrf': Accounts.main.csrf,
|
|
},
|
|
);
|
|
if (res.data['code'] == 0) {
|
|
return Success(BlackListData.fromJson(res.data['data']));
|
|
} else {
|
|
return Error(res.data['message']);
|
|
}
|
|
}
|
|
}
|