mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
25 lines
778 B
Dart
25 lines
778 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/user/black.dart';
|
|
import 'package:PiliPlus/utils/storage.dart';
|
|
|
|
class BlackHttp {
|
|
static Future<LoadingState<BlackListDataModel>> blackList(
|
|
{required int pn, int? ps}) async {
|
|
var res = await Request().get(Api.blackLst, queryParameters: {
|
|
'pn': pn,
|
|
'ps': ps ?? 50,
|
|
're_version': 0,
|
|
'jsonp': 'jsonp',
|
|
'csrf': Accounts.main.csrf,
|
|
});
|
|
if (res.data['code'] == 0) {
|
|
BlackListDataModel data = BlackListDataModel.fromJson(res.data['data']);
|
|
return LoadingState.success(data);
|
|
} else {
|
|
return LoadingState.error(res.data['message']);
|
|
}
|
|
}
|
|
}
|