feat: web端扫码登录
This commit is contained in:
@ -405,11 +405,19 @@ class Api {
|
|||||||
|
|
||||||
// web端验证码登录
|
// web端验证码登录
|
||||||
static const String webSmsLogin =
|
static const String webSmsLogin =
|
||||||
"${HttpString.passBaseUrl}/x/passport-login/web/login/sms";
|
'${HttpString.passBaseUrl}/x/passport-login/web/login/sms';
|
||||||
|
|
||||||
// web端密码登录
|
// web端密码登录
|
||||||
static const String loginInByWebPwd =
|
static const String loginInByWebPwd =
|
||||||
"${HttpString.passBaseUrl}/x/passport-login/web/login";
|
'${HttpString.passBaseUrl}/x/passport-login/web/login';
|
||||||
|
|
||||||
|
// web端二维码
|
||||||
|
static const String qrCodeApi =
|
||||||
|
'${HttpString.passBaseUrl}/x/passport-login/web/qrcode/generate';
|
||||||
|
|
||||||
|
// 扫码登录
|
||||||
|
static const String loginInByQrcode =
|
||||||
|
'${HttpString.passBaseUrl}/x/passport-login/web/qrcode/poll';
|
||||||
|
|
||||||
// app端短信验证码
|
// app端短信验证码
|
||||||
static const String appSmsCode =
|
static const String appSmsCode =
|
||||||
|
@ -252,4 +252,31 @@ class LoginHttp {
|
|||||||
return {'status': false, 'data': [], 'msg': res.data['message']};
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// web端登录二维码
|
||||||
|
static Future getWebQrcode() async {
|
||||||
|
var res = await Request().get(Api.qrCodeApi);
|
||||||
|
if (res.data['code'] == 0) {
|
||||||
|
return {
|
||||||
|
'status': true,
|
||||||
|
'data': res.data['data'],
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// web端二维码轮询登录状态
|
||||||
|
static Future queryWebQrcodeStatus(String qrcodeKey) async {
|
||||||
|
var res = await Request()
|
||||||
|
.get(Api.loginInByQrcode, data: {'qrcode_key': qrcodeKey});
|
||||||
|
if (res.data['data']['code'] == 0) {
|
||||||
|
return {
|
||||||
|
'status': true,
|
||||||
|
'data': res.data['data'],
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,10 @@ class LoginPageController extends GetxController {
|
|||||||
late int tel;
|
late int tel;
|
||||||
late int webSmsCode;
|
late int webSmsCode;
|
||||||
|
|
||||||
|
RxInt validSeconds = 180.obs;
|
||||||
|
late Timer validTimer;
|
||||||
|
late String qrcodeKey;
|
||||||
|
|
||||||
// 监听pageView切换
|
// 监听pageView切换
|
||||||
void onPageChange(int index) {
|
void onPageChange(int index) {
|
||||||
currentIndex.value = index;
|
currentIndex.value = index;
|
||||||
@ -298,4 +302,35 @@ class LoginPageController extends GetxController {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取登录二维码
|
||||||
|
Future getWebQrcode() async {
|
||||||
|
var res = await LoginHttp.getWebQrcode();
|
||||||
|
validSeconds.value = 180;
|
||||||
|
if (res['status']) {
|
||||||
|
qrcodeKey = res['data']['qrcode_key'];
|
||||||
|
validTimer = Timer.periodic(const Duration(seconds: 1), (validTimer) {
|
||||||
|
if (validSeconds.value > 0) {
|
||||||
|
validSeconds.value--;
|
||||||
|
queryWebQrcodeStatus();
|
||||||
|
} else {
|
||||||
|
getWebQrcode();
|
||||||
|
validTimer.cancel();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return res;
|
||||||
|
} else {
|
||||||
|
SmartDialog.showToast(res['msg']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 轮询二维码登录状态
|
||||||
|
Future queryWebQrcodeStatus() async {
|
||||||
|
var res = await LoginHttp.queryWebQrcodeStatus(qrcodeKey);
|
||||||
|
if (res['status']) {
|
||||||
|
await LoginUtils.confirmLogin('', null);
|
||||||
|
validTimer.cancel();
|
||||||
|
Get.back();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:qr_flutter/qr_flutter.dart';
|
||||||
|
|
||||||
import 'controller.dart';
|
import 'controller.dart';
|
||||||
|
|
||||||
@ -37,6 +38,105 @@ class _LoginPageState extends State<LoginPage> {
|
|||||||
icon: const Icon(Icons.arrow_back),
|
icon: const Icon(Icons.arrow_back),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
tooltip: '浏览器打开',
|
||||||
|
onPressed: () {
|
||||||
|
Get.offNamed(
|
||||||
|
'/webview',
|
||||||
|
parameters: {
|
||||||
|
'url': 'https://passport.bilibili.com/h5-app/passport/login',
|
||||||
|
'type': 'login',
|
||||||
|
'pageTitle': '登录bilibili',
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.language),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
tooltip: '二维码登录',
|
||||||
|
onPressed: () {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) {
|
||||||
|
return StatefulBuilder(
|
||||||
|
builder: (context, StateSetter setState) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: Row(
|
||||||
|
children: [
|
||||||
|
const Text('扫码登录'),
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.refresh),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
contentPadding: const EdgeInsets.fromLTRB(0, 0, 0, 4),
|
||||||
|
content: AspectRatio(
|
||||||
|
aspectRatio: 1,
|
||||||
|
child: Container(
|
||||||
|
width: 200,
|
||||||
|
padding: const EdgeInsets.all(12),
|
||||||
|
child: FutureBuilder(
|
||||||
|
future: _loginPageCtr.getWebQrcode(),
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
if (snapshot.connectionState ==
|
||||||
|
ConnectionState.done) {
|
||||||
|
if (snapshot.data == null) {
|
||||||
|
return const SizedBox();
|
||||||
|
}
|
||||||
|
Map data = snapshot.data as Map;
|
||||||
|
return QrImageView(
|
||||||
|
data: data['data']['url'],
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return const Center(
|
||||||
|
child: SizedBox(
|
||||||
|
width: 40,
|
||||||
|
height: 40,
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {},
|
||||||
|
child: Obx(() {
|
||||||
|
return Text(
|
||||||
|
'有效期: ${_loginPageCtr.validSeconds.value}s',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {},
|
||||||
|
child: Text(
|
||||||
|
'检查登录状态',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.titleMedium!
|
||||||
|
.fontSize,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.qr_code),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 22),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: PageView(
|
body: PageView(
|
||||||
physics: const NeverScrollableScrollPhysics(),
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
@ -99,27 +199,6 @@ class _LoginPageState extends State<LoginPage> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
|
||||||
onTap: () {
|
|
||||||
Get.offNamed(
|
|
||||||
'/webview',
|
|
||||||
parameters: {
|
|
||||||
'url':
|
|
||||||
'https://passport.bilibili.com/h5-app/passport/login',
|
|
||||||
'type': 'login',
|
|
||||||
'pageTitle': '登录bilibili',
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.only(left: 2),
|
|
||||||
child: Text(
|
|
||||||
'使用网页端登录',
|
|
||||||
style: TextStyle(
|
|
||||||
color: Theme.of(context).colorScheme.primary),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Spacer(),
|
const Spacer(),
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
16
pubspec.lock
16
pubspec.lock
@ -1218,6 +1218,22 @@ packages:
|
|||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.0"
|
version: "3.1.0"
|
||||||
|
qr:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: qr
|
||||||
|
sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3"
|
||||||
|
url: "https://pub.flutter-io.cn"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.1"
|
||||||
|
qr_flutter:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: qr_flutter
|
||||||
|
sha256: "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097"
|
||||||
|
url: "https://pub.flutter-io.cn"
|
||||||
|
source: hosted
|
||||||
|
version: "4.1.0"
|
||||||
rxdart:
|
rxdart:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -145,6 +145,8 @@ dependencies:
|
|||||||
# 投屏
|
# 投屏
|
||||||
dlna_dart: ^0.0.8
|
dlna_dart: ^0.0.8
|
||||||
lottie: ^3.1.2
|
lottie: ^3.1.2
|
||||||
|
# 二维码
|
||||||
|
qr_flutter: ^4.1.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
Reference in New Issue
Block a user