change_code.dart 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. import 'dart:convert';
  2. import 'package:auto_route/auto_route.dart';
  3. import 'package:flutter/foundation.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  6. import 'package:telnow_mobile_new/src/api/jwt_token.dart';
  7. import 'package:telnow_mobile_new/src/injector/injector.dart';
  8. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  9. import 'package:telnow_mobile_new/src/utils/U.dart';
  10. import 'package:toggle_switch/toggle_switch.dart';
  11. import 'package:easy_localization/easy_localization.dart';
  12. import 'package:http/http.dart' as http;
  13. @RoutePage()
  14. class ChangeCodePage extends StatefulWidget {
  15. const ChangeCodePage({Key? key}) : super(key: key);
  16. @override
  17. State<ChangeCodePage> createState() => _ChangeCodePageState();
  18. }
  19. class _ChangeCodePageState extends State<ChangeCodePage> {
  20. final SharedPreferencesManager _sharedPreferencesManager = locator<SharedPreferencesManager>();
  21. final ApiAuthProvider _apiAuthProvider = ApiAuthProvider();
  22. final JwtToken token = JwtToken();
  23. String current = '-';
  24. String destination = '-';
  25. bool isFirst = true;
  26. String imageUrl = '';
  27. getNewLicense(rawPid) async{
  28. try{imageUrl = U.decodeBase64Url(U.getBaseUrl()!) + U.decodeBase64Url(Uri.decodeComponent(U.getAccessCode()!))+'/assets/background/tn';}catch(e){}
  29. var pid = Uri.decodeComponent(rawPid);
  30. var response = await http.post(Uri.https(U.decodeBase64Url(U.getBaseUrl()!).split('//')[1], '${U.decodeBase64Url(pid)}/api/license'));
  31. var ver = json.decode(response.body);
  32. destination = ver['companyName'].isEmpty?'-':ver['companyName'];
  33. getInfo();
  34. }
  35. getInfo() async{
  36. var ver = await U.getLicense();
  37. setState(() {
  38. isFirst = false;
  39. current = ver['companyName'].isEmpty?'-':ver['companyName'];
  40. });
  41. }
  42. bool _isLoggedIn() {
  43. bool? isTokenExist = _sharedPreferencesManager.isKeyExists(SharedPreferencesManager.keyAccessToken);
  44. String? token = _sharedPreferencesManager.getString(SharedPreferencesManager.keyAccessToken);
  45. bool? isLoggedIn = _sharedPreferencesManager.isKeyExists(SharedPreferencesManager.keyIsLogin);
  46. return isLoggedIn! && isTokenExist! && token != null;
  47. }
  48. _encodeAccessCode(String ac){
  49. if (ac.contains('=')){
  50. return Uri.encodeComponent(ac);
  51. } else {
  52. return ac;
  53. }
  54. }
  55. @override
  56. Widget build(BuildContext context) {
  57. if(isFirst) getNewLicense(context.router.currentUrl.split('/change-code/').last);
  58. return Scaffold(
  59. resizeToAvoidBottomInset: false,
  60. body: Stack(
  61. children: [
  62. SizedBox(
  63. width: double.infinity, height: double.infinity,
  64. child: Image.network(imageUrl, fit: BoxFit.cover, width: double.infinity, height: double.infinity, errorBuilder: (context, error, stackTrace) {
  65. return Image.asset('assets/image/background/background.jpg', fit: BoxFit.cover, width: double.infinity, height: double.infinity);
  66. }),
  67. ),
  68. Container(
  69. width: MediaQuery.of(context).size.width,
  70. height: MediaQuery.of(context).size.height,
  71. decoration: BoxDecoration(
  72. gradient: LinearGradient(
  73. begin: Alignment.topCenter, end: Alignment.bottomCenter,
  74. colors: [
  75. primaryColor.withValues(alpha: 0.50), Colors.black.withValues(alpha: 0.91)
  76. ]
  77. )
  78. )
  79. ),
  80. Center(
  81. child: Container(
  82. width: U.bodyWidth(context),
  83. padding: EdgeInsets.fromLTRB(20, 0, 20, 0),
  84. child: SingleChildScrollView(
  85. child: Container(
  86. decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.all(Radius.circular(10))),
  87. padding: EdgeInsets.fromLTRB(25, 20, 25, 25),
  88. child: Column(
  89. mainAxisSize: MainAxisSize.min,
  90. crossAxisAlignment: CrossAxisAlignment.start,
  91. children: [
  92. Container(
  93. width: double.infinity, alignment: Alignment.center,
  94. child: Image(image: AssetImage('assets/image/general/AccessCode.png'), width: 250),
  95. ),
  96. SizedBox(height: 10),
  97. Text('changeCodeMsg'.tr().replaceAll('<company_name>', destination), style: TextStyle(fontWeight: FontWeight.bold), textAlign: TextAlign.center),
  98. // SizedBox(height: 15),
  99. // Text('${'currentServer'.tr()}: $current', style: TextStyle(fontSize: 12), textAlign: TextAlign.left),
  100. // SizedBox(height: 5),
  101. // Text('${'destinationServer'.tr()}: $destination', style: TextStyle(fontSize: 12), textAlign: TextAlign.left),
  102. SizedBox(height: 25),
  103. Row(
  104. mainAxisAlignment: MainAxisAlignment.center,
  105. children: [
  106. SizedBox(
  107. height: 30, width: 100,
  108. child: TextButton(
  109. style: ButtonStyle(
  110. backgroundColor: MaterialStateProperty.all<Color>(Colors.black12),
  111. shape: MaterialStateProperty.all<RoundedRectangleBorder>(RoundedRectangleBorder(borderRadius: BorderRadius.circular(30)))
  112. ),
  113. child: Text('textCancel'.tr(), style: TextStyle(color: Colors.black, fontSize: 12)),
  114. onPressed: (){
  115. if (U.getAccessCode() == null) {
  116. context.router.removeLast();
  117. context.navigateNamedTo("/qr");
  118. }
  119. else{
  120. context.router.removeLast();
  121. context.navigateNamedTo('/app/${_encodeAccessCode(U.getAccessCode()!)}');
  122. }
  123. },
  124. ),
  125. ),
  126. SizedBox(width: 10),
  127. SizedBox(
  128. height: 30, width: 100,
  129. child: TextButton(
  130. style: ButtonStyle(
  131. backgroundColor: MaterialStateProperty.all<Color>(Color(0xff0D497F)),
  132. shape: MaterialStateProperty.all<RoundedRectangleBorder>(RoundedRectangleBorder(borderRadius: BorderRadius.circular(30)))
  133. ),
  134. child: Text('textContinue'.tr(), style: TextStyle(color: Colors.white, fontSize: 12)),
  135. onPressed: ()async{
  136. var rawPid = context.router.currentUrl.split('/change-code/').last;
  137. var pid = Uri.decodeComponent(rawPid);
  138. try {
  139. await _sharedPreferencesManager.putString(SharedPreferencesManager.keyAccessCode, pid);
  140. await _sharedPreferencesManager.putString(SharedPreferencesManager.keySerialCode, 'P-$pid');
  141. var ver = await U.reloadLicense();
  142. await _sharedPreferencesManager.putInt(SharedPreferencesManager.version, ver['version']);
  143. if(_isLoggedIn()){
  144. var tkn = await U.getFcmToken();
  145. if (tkn == null) {
  146. token.logout();
  147. context.router.removeLast();
  148. context.navigateNamedTo("/app/$rawPid/login");
  149. } else {
  150. var param = {'token': tkn, 'whiteListToken': false};
  151. var res = await _apiAuthProvider.postData('/api/fcmTokens/remove/', null, param, context);
  152. if (res != null && res['success']) {
  153. token.logout();
  154. context.router.removeLast();
  155. context.navigateNamedTo("/app/$rawPid/login");
  156. }
  157. }
  158. }
  159. else{
  160. token.logout();
  161. context.router.removeLast();
  162. context.navigateNamedTo("/app/$rawPid/login");
  163. }
  164. } catch(e) {
  165. print(e.toString());
  166. await _sharedPreferencesManager.clearKey(SharedPreferencesManager.keyAccessCode);
  167. await _sharedPreferencesManager.clearKey(SharedPreferencesManager.keySerialCode);
  168. await _sharedPreferencesManager.clearKey(SharedPreferencesManager.version);
  169. token.logout();
  170. context.router.removeLast();
  171. context.navigateNamedTo("/qr");
  172. }
  173. },
  174. ),
  175. )
  176. ],
  177. )
  178. ],
  179. ),
  180. ),
  181. ),
  182. ),
  183. ),
  184. Container(
  185. margin: EdgeInsets.only(top: kIsWeb?16:50, right: 16),
  186. child: Align(
  187. alignment: Alignment.topRight,
  188. child: ToggleSwitch(
  189. minWidth: 40,
  190. minHeight: 30,
  191. cornerRadius: 20,
  192. initialLabelIndex: context.locale.toString() == 'en' ? 0 : 1,
  193. activeBgColor: [Colors.deepOrange],
  194. activeFgColor: Colors.white,
  195. inactiveBgColor: Colors.white54,
  196. inactiveFgColor: Colors.white,
  197. labels: ['EN', 'ID'],
  198. onToggle: (index) {
  199. if (index == 0) {
  200. context.setLocale(Locale('en'));
  201. } else {
  202. context.setLocale(Locale('id'));
  203. }
  204. },
  205. ),
  206. ),
  207. ),
  208. ],
  209. ),
  210. );
  211. }
  212. }