login.dart 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. import 'dart:convert';
  2. import 'package:auto_route/auto_route.dart';
  3. import 'package:cached_network_image/cached_network_image.dart';
  4. import 'package:easy_localization/easy_localization.dart';
  5. import 'package:flutter/foundation.dart';
  6. import 'package:flutter/material.dart';
  7. import 'package:flutter_cache_manager/flutter_cache_manager.dart';
  8. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  9. import 'package:telnow_mobile_new/src/api/api_auth_repository.dart';
  10. import 'package:telnow_mobile_new/src/api/jwt_token.dart';
  11. import 'package:telnow_mobile_new/src/injector/injector.dart';
  12. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  13. import 'package:telnow_mobile_new/src/model/login/login_body.dart';
  14. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  15. import 'package:telnow_mobile_new/src/utils/U.dart';
  16. import 'package:telnow_mobile_new/src/utils/cache_manager.dart';
  17. import 'package:toggle_switch/toggle_switch.dart';
  18. import 'package:url_launcher/url_launcher.dart';
  19. import 'package:telnow_mobile_new/src/model/token/token.dart';
  20. @RoutePage()
  21. class LoginPage extends StatefulWidget {
  22. const LoginPage({Key? key}) : super(key: key);
  23. @override
  24. State<LoginPage> createState() => _LoginPageState();
  25. }
  26. class _LoginPageState extends State<LoginPage> {
  27. final JwtToken token = JwtToken();
  28. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  29. final ApiAuthRepository apiAuthRepository = ApiAuthRepository();
  30. final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
  31. String companyName = '';
  32. String serialNumber = '';
  33. String companyLogo = '';
  34. bool loading = false;
  35. String username = '';
  36. String password = '';
  37. String imageUrl = '';
  38. List lang = [];
  39. @override
  40. void initState() {
  41. try{imageUrl = apiAuthProvider.baseUrl + U.decodeBase64Url(Uri.decodeComponent(U.getAccessCode()!))+'/assets/background/tn';}catch(e){}
  42. getCompanyName();
  43. // TODO: implement initState
  44. super.initState();
  45. }
  46. getCompanyName() async {
  47. var lics = await U.reloadLicense();
  48. if (lics != null && mounted) {
  49. setState(() {
  50. companyName = lics['companyName']??'';
  51. serialNumber = lics['serialNumber']??'';
  52. companyLogo = lics['logo']??'';
  53. if(1698720817 <= lics['serverVersion']){
  54. lang = lics['languages'] != null ? lics['languages'].split(',') : [];
  55. }
  56. });
  57. }
  58. }
  59. @override
  60. Widget build(BuildContext context) {
  61. return Scaffold(
  62. resizeToAvoidBottomInset: false,
  63. body: Stack(
  64. children: [
  65. Container(
  66. width: double.infinity, height: double.infinity,
  67. child: Image.network(imageUrl, fit: BoxFit.cover, width: double.infinity, height: double.infinity, errorBuilder: (context, error, stackTrace) {
  68. return Image.asset('assets/image/background/background.jpg', fit: BoxFit.cover, width: double.infinity, height: double.infinity);
  69. }),
  70. ),
  71. SingleChildScrollView(
  72. child: Container(
  73. padding: EdgeInsets.fromLTRB(16, kIsWeb?80:50, 16, 16),
  74. width: MediaQuery.of(context).size.width,
  75. height: kIsWeb && MediaQuery.of(context).size.height<700 ? 700 : MediaQuery.of(context).size.height,
  76. decoration: BoxDecoration(gradient: LinearGradient(begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [primaryColor.withValues(alpha: 0.50), Colors.black.withValues(alpha: 0.91)])),
  77. child: Column(
  78. children: [
  79. kIsWeb?Container():Container(
  80. margin: EdgeInsets.only(bottom: companyLogo.isNotEmpty?50:120),
  81. child: GestureDetector(
  82. child: Row(
  83. children: [
  84. U.iconsax('arrow-left', color: Colors.white),
  85. SizedBox(width: 15),
  86. Column(
  87. crossAxisAlignment: CrossAxisAlignment.start,
  88. children: [
  89. Text('buttonBack'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w500)),
  90. Text('buttonScan'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w500)),
  91. ],
  92. )
  93. ],
  94. ),
  95. onTap: (){
  96. context.router.removeLast();
  97. context.navigateToPath('/qr?new=true');
  98. },
  99. ),
  100. ),
  101. Image.asset('assets/image/logo/logo.png', height: companyLogo.isNotEmpty?25:40),
  102. companyLogo.isNotEmpty?Container(
  103. margin: EdgeInsets.only(top: 30, bottom: 40),
  104. width: 160, height: 160,
  105. decoration: BoxDecoration(
  106. borderRadius: BorderRadius.all(Radius.circular(80)),
  107. image: DecorationImage(image: CachedNetworkImageProvider(companyLogo+'?bridge-cache=true', cacheManager: CacheManager(CacheMan.config(companyLogo))), fit: BoxFit.cover)
  108. ),
  109. ):SizedBox(height: 115),
  110. Expanded(
  111. child: Column(
  112. mainAxisAlignment: MainAxisAlignment.start,
  113. children: [
  114. Container(
  115. alignment: Alignment.topCenter,
  116. width: U.bodyWidth(context),
  117. child: Column(
  118. children: [
  119. loginFieldTemplate(placeholder: 'userId'.tr(), value: username, action: (val)=>username = val, submit: (val)=>loginAction()),
  120. SizedBox(height: 12),
  121. loginFieldTemplate(placeholder: 'password'.tr(), value: password, action: (val)=>password = val, isPassword: true, submit: (val)=>loginAction()),
  122. GestureDetector(
  123. child: Container(
  124. width: double.infinity,
  125. margin: EdgeInsets.only(top: 40, bottom: 20),
  126. padding: EdgeInsets.symmetric(vertical: 16),
  127. child: !loading?Text('buttonLogin'.tr(), style: TextStyle(color: Colors.white, fontSize: 17), textAlign: TextAlign.center):Center(
  128. child: SizedBox(
  129. width: 22, height: 22, child: CircularProgressIndicator(color: Colors.white),
  130. ),
  131. ),
  132. decoration: BoxDecoration(
  133. color: primaryColor.withValues(alpha: 0.50),
  134. border: Border.all(color: Colors.white),
  135. borderRadius: BorderRadius.all(Radius.circular(12))
  136. ),
  137. ),
  138. onTap: ()=>loginAction(),
  139. ),
  140. ],
  141. ),
  142. ),
  143. companyName.isNotEmpty?Text(companyName, style: TextStyle(fontSize: 16, color: Colors.white), textAlign: TextAlign.center):Container(),
  144. SizedBox(height: companyName.isNotEmpty?5:0),
  145. serialNumber.isNotEmpty?Text('serialNumber'.tr() + ' ' + serialNumber, style: TextStyle(color: Colors.white, fontSize: 14)):Container(),
  146. ],
  147. ),
  148. ),
  149. Container(
  150. margin: EdgeInsets.only(top: 20, bottom: 5),
  151. alignment: Alignment.bottomCenter,
  152. child: GestureDetector(
  153. child: Text('policy'.tr(), style: TextStyle(color: Colors.white, fontSize: 14, decoration: TextDecoration.underline)),
  154. onTap: () async {
  155. Uri _url = Uri.parse('https://telmessenger.com/privacy-police/telnow.html');
  156. await canLaunchUrl(_url) ? await launchUrl(_url) : print('Could not launch $_url');
  157. },
  158. ),
  159. ),
  160. Text('${'version'.tr()} ${ApiAuthProvider().displayVersion}', style: TextStyle(color: Colors.white, fontSize: 14)),
  161. SizedBox(height: 5),
  162. Text('Build ${ApiAuthProvider().buildNumber}', style: TextStyle(color: Colors.white, fontSize: 13)),
  163. ],
  164. ),
  165. ),
  166. ),
  167. Container(
  168. margin: EdgeInsets.only(top: kIsWeb?16:50, right: 16),
  169. child: Align(
  170. alignment: Alignment.topRight,
  171. child: lang.length > 0 ? GestureDetector(
  172. child: Container(
  173. width: 65, height: 30, padding: EdgeInsets.symmetric(horizontal: 10),
  174. child: Row(
  175. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  176. children: [
  177. U.iconsax('bold/global', color: Colors.white),
  178. Text(context.locale.toString().toUpperCase(), style: TextStyle(color: Colors.white, fontSize: 15, fontWeight: FontWeight.bold))
  179. ],
  180. ),
  181. decoration: BoxDecoration(
  182. color: Colors.deepOrange,
  183. borderRadius: BorderRadius.all(Radius.circular(50))
  184. ),
  185. ),
  186. onTap: () => changeLangLogin(context, lang),
  187. ) : ToggleSwitch(
  188. minWidth: 40,
  189. minHeight: 30,
  190. cornerRadius: 20,
  191. initialLabelIndex: context.locale.toString() == 'en' ? 0 : 1,
  192. activeBgColor: [Colors.deepOrange],
  193. activeFgColor: Colors.white,
  194. inactiveBgColor: Colors.white54,
  195. inactiveFgColor: Colors.white,
  196. labels: ['EN', 'ID'],
  197. onToggle: (index) {
  198. if (index == 0) {
  199. context.setLocale(Locale('en'));
  200. } else {
  201. context.setLocale(Locale('id'));
  202. }
  203. },
  204. ),
  205. ),
  206. )
  207. ],
  208. ),
  209. );
  210. }
  211. loginAction() async{
  212. if(!loading){
  213. setState(()=>loading = true);
  214. String errMsg = '';
  215. if (password.isEmpty) {
  216. errMsg = 'passwordEmpty'.tr();
  217. } else if (username.isEmpty) {
  218. errMsg = 'userEmpty'.tr();
  219. }
  220. if (errMsg.isNotEmpty) {
  221. showError(context, errMsg);
  222. setState(()=>loading = false);
  223. return;
  224. }
  225. Token token = await apiAuthRepository.postLoginUser(LoginBody(username.trim(), password.trim(), "password"));
  226. if (token.error != null) {
  227. showError(context, token.error);
  228. setState(()=>loading = false);
  229. return;
  230. }
  231. var pid = U.getPidFromUrl(context.router.currentUrl);
  232. await sharedPreferencesManager.putString(SharedPreferencesManager.keyAccessToken, token.accessToken!);
  233. await sharedPreferencesManager.putString(SharedPreferencesManager.keyRefreshToken, token.refreshToken!);
  234. if(await setUsername()){
  235. var data = {
  236. 'username': username.trim(),
  237. 'password': password.trim()
  238. };
  239. Navigator.push(context, MaterialPageRoute(builder: (context) => ForceChgPassPage(data: data))).then((value) async {
  240. if (!U.getChangedPassword()) {
  241. await U.clearPreferences();
  242. U.setHidePayload(true);
  243. context.router.removeLast();
  244. context.navigateToPath("/app/$pid/menu");
  245. return;
  246. }
  247. });
  248. }
  249. else{
  250. await sharedPreferencesManager.putBool(SharedPreferencesManager.keyIsLogin, true);
  251. await sharedPreferencesManager.putString(SharedPreferencesManager.keyScoope, 'INSIDE');
  252. await sharedPreferencesManager.putInt(SharedPreferencesManager.keyCountRefreshToken, 0);
  253. await sharedPreferencesManager.putString(SharedPreferencesManager.keyPendingData, jsonEncode([]));
  254. U.setHidePayload(true);
  255. context.router.removeLast();
  256. context.navigateToPath("/app/$pid/menu");
  257. }
  258. }
  259. }
  260. setUsername() async {
  261. try{
  262. String? accessToken = sharedPreferencesManager.getString(SharedPreferencesManager.keyAccessToken);
  263. var jwt = token.parseJwtPayLoad(accessToken!);
  264. await sharedPreferencesManager.putString(SharedPreferencesManager.keyUsername, jwt['user_name'].substring(4));
  265. await U.setChangedPassword(false);
  266. return jwt['forceChgPass'];
  267. } catch(e) {
  268. print(e.toString());
  269. }
  270. }
  271. }
  272. changeLangLogin(BuildContext context, List lang){
  273. showModalBottomSheet(
  274. context: context,
  275. backgroundColor: Colors.white,
  276. builder: (BuildContext context) {
  277. return Column(
  278. mainAxisSize: MainAxisSize.min,
  279. children: <Widget>[
  280. Padding(
  281. padding: EdgeInsets.symmetric(vertical: 16),
  282. child: Center(
  283. child: Text('chooseLanguage'.tr(), style: TextStyle(color: textColor)),
  284. ),
  285. ),
  286. divider(),
  287. SizedBox(height: 16),
  288. Column(
  289. crossAxisAlignment: CrossAxisAlignment.start,
  290. children: [
  291. ListTile(
  292. title: Text('bahasa'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  293. trailing: Icon(context.locale.toString()=='id'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
  294. onTap: context.locale.toString() != 'id' ? () async {
  295. Navigator.of(context).pop();
  296. context.setLocale(Locale('id'));
  297. } : null,
  298. ),
  299. ListTile(
  300. title: Text('english'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  301. trailing: Icon(context.locale.toString()=='en'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
  302. onTap: context.locale.toString() != 'en' ? () async {
  303. Navigator.of(context).pop();
  304. context.setLocale(Locale('en'));
  305. } : null,
  306. ),
  307. lang.contains('ja') ? ListTile(
  308. title: Text('japanese'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  309. trailing: Icon(context.locale.toString()=='ja'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
  310. onTap: context.locale.toString() != 'ja' ? () async {
  311. Navigator.of(context).pop();
  312. context.setLocale(Locale('ja'));
  313. } : null,
  314. ) : Container(),
  315. lang.contains('zh') ? ListTile(
  316. title: Text('chinese'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  317. trailing: Icon(context.locale.toString()=='zh'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
  318. onTap: context.locale.toString() != 'zh' ? () async {
  319. Navigator.of(context).pop();
  320. context.setLocale(Locale('zh'));
  321. } : null,
  322. ) : Container(),
  323. lang.contains('ko') ? ListTile(
  324. title: Text('korean'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  325. trailing: Icon(context.locale.toString()=='ko'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
  326. onTap: context.locale.toString() != 'ko' ? () async {
  327. Navigator.of(context).pop();
  328. context.setLocale(Locale('ko'));
  329. } : null,
  330. ) : Container()
  331. ],
  332. ),
  333. SizedBox(height: 16)
  334. ],
  335. );
  336. }
  337. );
  338. }
  339. //------------------------------------------------------------------------------
  340. class ForceChgPassPage extends StatefulWidget {
  341. Map<String, String> data;
  342. ForceChgPassPage({required this.data, Key? key}) : super(key: key);
  343. @override
  344. State<ForceChgPassPage> createState() => _ForceChgPassPageState();
  345. }
  346. class _ForceChgPassPageState extends State<ForceChgPassPage> {
  347. final JwtToken token = JwtToken();
  348. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  349. final ApiAuthRepository apiAuthRepository = ApiAuthRepository();
  350. final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
  351. var tokenData;
  352. String companyName = '';
  353. String serialNumber = '';
  354. String guestName = '';
  355. bool loading = false;
  356. String imageUrl = '';
  357. String newPassword = '';
  358. String cfrmPassword = '';
  359. @override
  360. void initState() {
  361. try{imageUrl = apiAuthProvider.baseUrl + U.decodeBase64Url(Uri.decodeComponent(U.getAccessCode()!))+'/assets/background/tn';}catch(e){}
  362. getTokenData();
  363. getCompanyName();
  364. // TODO: implement initState
  365. super.initState();
  366. }
  367. getTokenData() async {
  368. String accessToken = sharedPreferencesManager.getString(SharedPreferencesManager.keyAccessToken)!;
  369. var jwt = token.parseJwtPayLoad(accessToken);
  370. var user = await apiAuthProvider.getData('/api/informants/'+jwt['userId'].toString(), null, context);
  371. if(user!=null){
  372. setState((){
  373. tokenData = jwt;
  374. context.setLocale(Locale(tokenData['language'].toLowerCase()));
  375. guestName = user['guestName'];
  376. });
  377. }
  378. }
  379. getCompanyName() async {
  380. var lics = await U.reloadLicense();
  381. if (lics != null && mounted) {
  382. setState(() {
  383. companyName = lics['companyName']??'';
  384. serialNumber = lics['serialNumber']??'';
  385. });
  386. }
  387. }
  388. @override
  389. Widget build(BuildContext context) {
  390. return WillPopScope(
  391. onWillPop: (){
  392. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyAccessToken);
  393. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyRefreshToken);
  394. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyUsername);
  395. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyIsLogin);
  396. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyScoope);
  397. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyMenuDisplay);
  398. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyAutoTranslate);
  399. sharedPreferencesManager.clearKey(SharedPreferencesManager.keyPendingData);
  400. navigateBack(context);
  401. return Future.value(true);
  402. },
  403. child: Scaffold(
  404. resizeToAvoidBottomInset: false,
  405. body: Stack(
  406. children: [
  407. SizedBox(
  408. width: double.infinity, height: double.infinity,
  409. child: Image.network(imageUrl, fit: BoxFit.cover, width: double.infinity, height: double.infinity, errorBuilder: (context, error, stackTrace) {
  410. return Image.asset('assets/image/background/background.jpg', fit: BoxFit.cover, width: double.infinity, height: double.infinity);
  411. }),
  412. ),
  413. Container(
  414. width: MediaQuery.of(context).size.width,
  415. height: MediaQuery.of(context).size.height,
  416. decoration: BoxDecoration(
  417. gradient: LinearGradient(
  418. begin: Alignment.topCenter, end: Alignment.bottomCenter,
  419. colors: [
  420. primaryColor.withValues(alpha: 0.50), Colors.black.withValues(alpha: 0.91)
  421. ]
  422. )
  423. ),
  424. child: SingleChildScrollView(
  425. padding: EdgeInsets.fromLTRB(16, 50, 16, 16),
  426. child: Column(
  427. crossAxisAlignment: CrossAxisAlignment.center,
  428. children: [
  429. Container(
  430. margin: EdgeInsets.only(bottom: 100),
  431. child: Row(
  432. children: [
  433. GestureDetector(
  434. child: U.iconsax('arrow-left', color: Colors.white),
  435. onTap: (){
  436. context.router.removeLast();
  437. context.navigateToPath('/qr?new=true');
  438. },
  439. ),
  440. SizedBox(width: 15),
  441. Expanded(
  442. child: GestureDetector(
  443. child: Column(
  444. crossAxisAlignment: CrossAxisAlignment.start,
  445. children: [
  446. Text('buttonBack'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w500)),
  447. Text('buttonScan'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w500)),
  448. ],
  449. ),
  450. onTap: (){
  451. context.router.removeLast();
  452. context.navigateToPath('/qr?new=true');
  453. },
  454. ),
  455. ),
  456. Image.asset('assets/image/logo/logo.png', width: 120)
  457. ],
  458. )
  459. ),
  460. Column(
  461. children: [
  462. Text('${'welcome'.tr()} $guestName', style: TextStyle(color: Colors.white, fontSize: 16), textAlign: TextAlign.center),
  463. SizedBox(height: 16),
  464. Text('createNewPassText'.tr(), style: TextStyle(color: Colors.white, fontSize: 16), textAlign: TextAlign.center),
  465. ],
  466. ),
  467. SizedBox(height: 80),
  468. Container(
  469. alignment: Alignment.topCenter,
  470. width: U.bodyWidth(context),
  471. child: Column(
  472. children: [
  473. loginFieldTemplate(placeholder: 'newPassword'.tr(), value: newPassword, action: (val)=>newPassword = val, isPassword: true, submit: (val)=>loginAction()),
  474. SizedBox(height: 12),
  475. loginFieldTemplate(placeholder: 'confirmPassword'.tr(), value: cfrmPassword, action: (val)=>cfrmPassword = val, isPassword: true, submit: (val)=>loginAction()),
  476. GestureDetector(
  477. child: Container(
  478. width: double.infinity,
  479. margin: EdgeInsets.only(top: 40, bottom: 20),
  480. padding: EdgeInsets.symmetric(vertical: 16),
  481. decoration: BoxDecoration(
  482. color: primaryColor.withValues(alpha: 0.50),
  483. border: Border.all(color: Colors.white),
  484. borderRadius: BorderRadius.all(Radius.circular(12))
  485. ),
  486. child: !loading?Text('buttonLogin'.tr(), style: TextStyle(color: Colors.white, fontSize: 17), textAlign: TextAlign.center):Center(
  487. child: SizedBox(
  488. width: 22, height: 22, child: CircularProgressIndicator(color: Colors.white),
  489. ),
  490. ),
  491. ),
  492. onTap: ()=>loginAction(),
  493. ),
  494. ],
  495. ),
  496. ),
  497. companyName.isNotEmpty?Text(companyName, style: TextStyle(fontSize: 16, color: Colors.white), textAlign: TextAlign.center):Container(),
  498. SizedBox(height: companyName.isNotEmpty?5:0),
  499. serialNumber.isNotEmpty?Text('${'serialNumber'.tr()} $serialNumber', style: TextStyle(color: Colors.white, fontSize: 14)):Container(),
  500. Container(
  501. margin: const EdgeInsets.only(top: 145),
  502. alignment: Alignment.bottomCenter,
  503. child: Text('version'.tr() + ' ' + ApiAuthProvider().displayVersion, style: TextStyle(color: Colors.white, fontSize: 14))
  504. ),
  505. ],
  506. ),
  507. ),
  508. ),
  509. ],
  510. ),
  511. ),
  512. );
  513. }
  514. loginAction() async{
  515. if(!loading){
  516. if(newPassword.isNotEmpty && cfrmPassword.isNotEmpty){
  517. if(newPassword.trim() == cfrmPassword.trim()){
  518. setState(()=>loading = true);
  519. var data = {'oldPassword': widget.data['password'], 'password': newPassword.trim()};
  520. try {
  521. var res = await apiAuthProvider.patchData('/api/informants/${tokenData['userId']}/changePassword', data, context);
  522. if (res != null) {
  523. String password = tokenData['related'] && tokenData['tenantCode'] != null && tokenData['tenantCode'] != '' ? tokenData['tenantCode'] + ' ' + data['password'] : data['password'];
  524. LoginBody loginBody = LoginBody(widget.data['username']!, password, 'password');
  525. Token token = await apiAuthRepository.postLoginUser(loginBody);
  526. if (token.error != null) {
  527. setState(()=>loading = false);
  528. showError(context, token.error);
  529. } else {
  530. await U.setChangedPassword(true);
  531. var parsedToken = U.token.parseJwtPayLoad(token.accessToken!);
  532. await sharedPreferencesManager.putString(SharedPreferencesManager.keyAccessToken, token.accessToken!);
  533. await sharedPreferencesManager.putString(SharedPreferencesManager.keyRefreshToken, token.refreshToken!);
  534. await sharedPreferencesManager.putString(SharedPreferencesManager.keyUsername, tokenData['related'] ? parsedToken['user_name'].split("-").last : widget.data['username']);
  535. await sharedPreferencesManager.putBool(SharedPreferencesManager.keyIsLogin, true);
  536. await sharedPreferencesManager.putString(SharedPreferencesManager.keyScoope, 'INSIDE');
  537. await sharedPreferencesManager.putInt(SharedPreferencesManager.keyCountRefreshToken, 0);
  538. await sharedPreferencesManager.putString(SharedPreferencesManager.keyPendingData, jsonEncode([]));
  539. U.setHidePayload(true);
  540. // var pid = U.getAccessCode();
  541. var pid = U.getPidFromUrl(context.router.currentUrl);
  542. context.router.removeLast();
  543. context.navigateToPath("/app/$pid/menu");
  544. }
  545. }
  546. } catch(e) {
  547. print(e.toString());
  548. setState(()=>loading = false);
  549. }
  550. }
  551. else{
  552. showError(context, 'checkNewPass'.tr());
  553. }
  554. }
  555. else{
  556. showError(context, 'cannotEmpty'.tr());
  557. }
  558. }
  559. }
  560. }