Files
PiliPlus/lib/http/reply.dart
My-Responsitories 6cda3a1880 tweaks (#1862)
* opt: linter

* tweaks

* opt: TopImage

* update

* remove repaintBoundary [skip ci]

---------

Co-authored-by: dom <githubaccount56556@proton.me>
2026-03-12 15:45:18 +08:00

261 lines
6.9 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:PiliPlus/common/constants.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/emote/data.dart';
import 'package:PiliPlus/models_new/emote/package.dart';
import 'package:PiliPlus/models_new/reply/data.dart';
import 'package:PiliPlus/models_new/reply2reply/data.dart';
import 'package:PiliPlus/models_new/reply_interaction/data.dart';
import 'package:PiliPlus/utils/accounts.dart';
import 'package:PiliPlus/utils/accounts/account.dart';
import 'package:dio/dio.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
abstract final class ReplyHttp {
static final Options options = Options(
headers: {...Constants.baseHeaders, 'cookie': ''},
extra: {'account': const NoAccount()},
);
static Future<LoadingState<ReplyData>> replyList({
required bool isLogin,
required int oid,
required String nextOffset,
required int type,
required int page,
int sort = 1,
}) async {
final res = !isLogin
? await Request().get(
'${Api.replyList}/main',
queryParameters: {
'oid': oid,
'type': type,
'pagination_str':
'{"offset":"${nextOffset.replaceAll('"', '\\"')}"}',
'mode': sort + 2, //2:按时间排序3按热度排序
},
options: !isLogin ? options : null,
)
: await Request().get(
Api.replyList,
queryParameters: {
'oid': oid,
'type': type,
'sort': sort,
'pn': page,
'ps': 20,
},
options: !isLogin ? options : null,
);
if (res.data['code'] == 0) {
return Success(ReplyData.fromJson(res.data['data']));
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<ReplyReplyData>> replyReplyList({
required bool isLogin,
required int oid,
required int root,
required int pageNum,
required int type,
bool isCheck = false,
}) async {
final res = await Request().get(
Api.replyReplyList,
queryParameters: {
'oid': oid,
'root': root,
'pn': pageNum,
'type': type,
'sort': 1,
if (isLogin) 'csrf': Accounts.main.csrf,
},
options: !isLogin ? options : null,
);
if (res.data['code'] == 0) {
ReplyReplyData replyData = ReplyReplyData.fromJson(res.data['data']);
return Success(replyData);
} else {
return Error(
isCheck
? '${res.data['code']}${res.data['message']}'
: res.data['message'],
);
}
}
static Future<LoadingState<void>> hateReply({
required int type,
required int action,
required int oid,
required int rpid,
}) async {
final res = await Request().post(
Api.hateReply,
data: {
'type': type,
'oid': oid,
'rpid': rpid,
'action': action,
'csrf': Accounts.main.csrf,
},
options: Options(contentType: Headers.formUrlEncodedContentType),
);
if (res.data['code'] == 0) {
return const Success(null);
} else {
return Error(res.data['message']);
}
}
// 评论点赞
static Future<LoadingState<void>> likeReply({
required int type,
required int oid,
required int rpid,
required int action,
}) async {
final res = await Request().post(
Api.likeReply,
data: {
'type': type,
'oid': oid,
'rpid': rpid,
'action': action,
'csrf': Accounts.main.csrf,
},
options: Options(contentType: Headers.formUrlEncodedContentType),
);
if (res.data['code'] == 0) {
return const Success(null);
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<List<Package>?>> getEmoteList({
String? business,
}) async {
final res = await Request().get(
Api.myEmote,
queryParameters: {
'business': business ?? 'reply',
'web_location': '333.1245',
},
);
if (res.data['code'] == 0) {
return Success(EmoteModelData.fromJson(res.data['data']).packages);
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<void>> replyTop({
required Object oid,
required Object type,
required Object rpid,
required bool isUpTop,
}) async {
final res = await Request().post(
Api.replyTop,
data: {
'oid': oid,
'type': type,
'rpid': rpid,
'action': isUpTop ? 0 : 1,
'csrf': Accounts.main.csrf,
},
options: Options(contentType: Headers.formUrlEncodedContentType),
);
if (res.data['code'] == 0) {
return const Success(null);
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<void>> report({
required Object rpid,
required Object oid,
required int reasonType,
bool banUid = true,
String? reasonDesc,
}) async {
final res = await Request().post(
'/x/v2/reply/report',
data: {
'add_blacklist': banUid,
'csrf': Accounts.main.csrf,
'gaia_source': 'main_h5',
'oid': oid,
'platform': 'android',
'reason': reasonType,
'rpid': rpid,
'scene': 'main',
'type': 1,
if (reasonType == 0) 'content': reasonDesc!,
},
options: Options(contentType: Headers.formUrlEncodedContentType),
);
if (res.data['code'] == 0) {
return const Success(null);
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<ReplyInteractData>> replyInteraction({
required Object oid,
required Object type,
}) async {
final res = await Request().get(
Api.replyInteraction,
queryParameters: {
'oid': oid,
'type': type,
'web_location': 333.1369,
},
);
if (res.data['code'] == 0) {
try {
return Success(ReplyInteractData.fromJson(res.data['data']));
} catch (e) {
return Error(e.toString());
}
} else {
return Error(res.data['message']);
}
}
static Future<LoadingState<void>> replySubjectModify({
required int oid,
required int type,
required int action,
}) async {
final res = await Request().post(
Api.replySubjectModify,
data: {
'oid': oid,
'type': type,
'action': action,
'csrf': Accounts.main.csrf,
},
options: Options(contentType: Headers.formUrlEncodedContentType),
);
if (res.data['code'] == 0) {
if (res.data['data']?['action_toast'] case final String toast) {
SmartDialog.showToast(toast);
}
return const Success(null);
} else {
SmartDialog.showToast(res.data['message'].toString());
return const Error(null);
}
}
}