Files
tongxunruanjian/mobile-next/lib/pages/mine/change_pwd/change_pwd_logic.dart
T
编码工程师andmultica-agent 8046ec7483 feat(mobile-next): 导入官方 openim-flutter-demo 固定基线 3.8.3-patch.3 并完成双构建
- 上游: github.com/OpenIMSDK/openim-flutter-demo tag 3.8.3-patch.3
  commit b3dfdb1e8aaeaaf6f0793e10cadd20d5c184a31f
- 并行目录 mobile-next/ 原样导入(含 LICENSE),不覆盖现网 mobile/
- 锁定 Flutter 3.24.5 / Dart 3.5.4 / JDK 17 / Gradle 7.6.3 / AGP 7.3.1
- 实测 Android debug 与 release 构建均成功(见 docs/mobile-next-baseline-import.md)
- 本提交可单独回退:git revert 1db1229(重写前)

Co-authored-by: multica-agent <github@multica.ai>
2026-08-19 15:24:33 +08:00

61 lines
1.6 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
import 'package:get/get.dart';
import 'package:openim_common/openim_common.dart';
import '../../../routes/app_navigator.dart';
class ChangePwdLogic extends GetxController {
final oldPwdCtrl = TextEditingController();
final newPwdCtrl = TextEditingController();
final againPwdCtrl = TextEditingController();
@override
void onClose() {
oldPwdCtrl.dispose();
newPwdCtrl.dispose();
againPwdCtrl.dispose();
super.onClose();
}
void confirm() async {
if (oldPwdCtrl.text.isEmpty) {
IMViews.showToast(StrRes.plsEnterOldPwd);
return;
}
if (!IMUtils.isValidPassword(newPwdCtrl.text)) {
IMViews.showToast(StrRes.wrongPasswordFormat);
return;
}
if (newPwdCtrl.text.isEmpty) {
IMViews.showToast(StrRes.plsEnterNewPwd);
return;
}
if (againPwdCtrl.text.isEmpty) {
IMViews.showToast(StrRes.plsEnterConfirmPwd);
return;
}
if (newPwdCtrl.text != againPwdCtrl.text) {
IMViews.showToast(StrRes.twicePwdNoSame);
return;
}
final result = await LoadingView.singleton.wrap(
asyncFunction: () => Apis.changePassword(
userID: OpenIM.iMManager.userID,
newPassword: newPwdCtrl.text,
currentPassword: oldPwdCtrl.text,
),
);
if (result) {
IMViews.showToast(StrRes.changedSuccessfully);
await LoadingView.singleton.wrap(asyncFunction: () async {
await OpenIM.iMManager.logout();
await DataSp.removeLoginCertificate();
PushController.logout();
});
AppNavigator.startLogin();
}
}
}