qr.dart 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. import 'dart:convert';
  2. import 'dart:io';
  3. import 'package:auto_route/auto_route.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/services.dart';
  8. import 'package:image_picker/image_picker.dart';
  9. import 'package:mobile_scanner/mobile_scanner.dart';
  10. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  11. import 'package:telnow_mobile_new/src/api/api_auth_repository.dart';
  12. import 'package:telnow_mobile_new/src/injector/injector.dart';
  13. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  14. import 'package:telnow_mobile_new/src/layouts/auth/login.dart';
  15. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  16. import 'package:telnow_mobile_new/src/utils/U.dart';
  17. import 'package:toggle_switch/toggle_switch.dart';
  18. import 'package:url_launcher/url_launcher.dart';
  19. @RoutePage()
  20. class NewQrPage extends StatefulWidget {
  21. const NewQrPage({Key? key}) : super(key: key);
  22. @override
  23. State<NewQrPage> createState() => _NewQrPageState();
  24. }
  25. class _NewQrPageState extends State<NewQrPage> {
  26. final SharedPreferencesManager _sharedPreferencesManager = locator<SharedPreferencesManager>();
  27. final ApiAuthRepository apiAuthRepository = ApiAuthRepository();
  28. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  29. String? accCode = "";
  30. bool? _isAccCodeExist = false;
  31. String companyName = '';
  32. String serialNumber = '';
  33. String imageUrl = '';
  34. List lang = [];
  35. @override
  36. void initState() {
  37. try{imageUrl = apiAuthProvider.baseUrl + U.decodeBase64Url(Uri.decodeComponent(U.getAccessCode()!))+'/assets/background/tn';}catch(e){}
  38. getCompanyName();
  39. // TODO: implement initState
  40. super.initState();
  41. }
  42. getCompanyName() async {
  43. if (_sharedPreferencesManager.isKeyExists(SharedPreferencesManager.keyAccessCode)!) {
  44. var lics = await U.reloadLicense();
  45. if (lics != null && mounted) {
  46. setState(() {
  47. companyName = lics['companyName']??'';
  48. serialNumber = lics['serialNumber']??'';
  49. if(1698720817 <= lics['serverVersion']){
  50. lang = lics['languages'] != null ? lics['languages'].split(',') : [];
  51. }
  52. });
  53. }
  54. }
  55. }
  56. @override
  57. Widget build(BuildContext context) {
  58. // accCode = _sharedPreferencesManager.getString(SharedPreferencesManager.keyAccessCode);
  59. // _isAccCodeExist = accCode != "" && accCode != null ? true : false;
  60. // var qp = context.router.current.queryParams;
  61. // bool _scanNew = false;
  62. //
  63. // if (qp.isNotEmpty) {
  64. // _scanNew = qp.getString('new') == "true" ? true : false;
  65. // }
  66. // if (_isAccCodeExist! && !kIsWeb && !_scanNew){
  67. // context.router.removeLast();
  68. // context.navigateNamedTo("/app/${Uri.encodeComponent(accCode!)}/login");
  69. // }
  70. return Scaffold(
  71. resizeToAvoidBottomInset: false,
  72. body: Stack(
  73. children: [
  74. SizedBox(
  75. width: double.infinity, height: double.infinity,
  76. child: Image.network(imageUrl, fit: BoxFit.cover, width: double.infinity, height: double.infinity, errorBuilder: (context, error, stackTrace) {
  77. return Image.asset('assets/image/background/background.jpg', fit: BoxFit.cover, width: double.infinity, height: double.infinity);
  78. }),
  79. ),
  80. SingleChildScrollView(
  81. child: Container(
  82. padding: EdgeInsets.fromLTRB(16, kIsWeb?105:200, 16, 16),
  83. width: MediaQuery.of(context).size.width,
  84. height: kIsWeb && MediaQuery.of(context).size.height<700 ? 700 : MediaQuery.of(context).size.height,
  85. decoration: BoxDecoration(
  86. gradient: LinearGradient(
  87. begin: Alignment.topCenter, end: Alignment.bottomCenter,
  88. colors: [
  89. primaryColor.withOpacity(0.50), Colors.black.withOpacity(0.91)
  90. ]
  91. )
  92. ),
  93. child: Column(
  94. crossAxisAlignment: CrossAxisAlignment.center,
  95. children: [
  96. Image.asset('assets/image/logo/logo.png', width: 160),
  97. Expanded(
  98. child: Column(
  99. mainAxisAlignment: MainAxisAlignment.start,
  100. children: [
  101. Container(
  102. margin: EdgeInsets.only(top: 100, left: 16, right: 16, bottom: 48),
  103. child: kIsWeb?Column(
  104. children: [
  105. Text('noPIDText'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w500), textAlign: TextAlign.center),
  106. SizedBox(height: 16),
  107. Text('noPIDText2'.tr(), style: TextStyle(color: Colors.white, fontSize: 16), textAlign: TextAlign.center),
  108. ],
  109. ):Text('scanQr'.tr(), style: TextStyle(color: Colors.white, fontSize: 16, fontWeight: FontWeight.w400), textAlign: TextAlign.center),
  110. ),
  111. !kIsWeb?GestureDetector(
  112. onTap: scanDialog,
  113. child: Container(
  114. padding: EdgeInsets.symmetric(vertical: 32, horizontal: 64),
  115. decoration: BoxDecoration(
  116. color: primaryColor.withOpacity(0.50),
  117. border: Border.all(color: Colors.white),
  118. borderRadius: BorderRadius.all(Radius.circular(12))
  119. ),
  120. child: Row(
  121. mainAxisSize: MainAxisSize.min,
  122. children: [
  123. Text('buttonScan'.tr(), style: TextStyle(color: Colors.white, fontSize: 16)),
  124. SizedBox(width: 10),
  125. U.iconsax('scan', color: Colors.white)
  126. ],
  127. ),
  128. ),
  129. ):Container(),
  130. !kIsWeb && U.getAccessCode() != null ? Padding(
  131. padding: EdgeInsets.only(top: 16),
  132. child: GestureDetector(
  133. child: Text('backToLogin'.tr(), style: TextStyle(color: Colors.white, fontSize: 14, decoration: TextDecoration.underline)),
  134. onTap: (){
  135. context.router.removeLast();
  136. context.navigateNamedTo("/app/${U.getAccessCode()}/login");
  137. },
  138. )
  139. ) : Container(),
  140. ],
  141. ),
  142. ),
  143. companyName.isNotEmpty?Text(companyName, style: TextStyle(fontSize: 16, color: Colors.white), textAlign: TextAlign.center):Container(),
  144. SizedBox(height: 5),
  145. serialNumber.isNotEmpty?Text('${'serialNumber'.tr()} $serialNumber', style: TextStyle(color: Colors.white, fontSize: 14)):Container(),
  146. SizedBox(height: 5),
  147. GestureDetector(
  148. child: Text('policy'.tr(), style: TextStyle(color: Colors.white, fontSize: 14, decoration: TextDecoration.underline)),
  149. onTap: () async {
  150. Uri _url = Uri.parse('https://telmessenger.com/privacy-police/telnow.html');
  151. await canLaunchUrl(_url) ? await launchUrl(_url) : print('Could not launch $_url');
  152. },
  153. ),
  154. SizedBox(height: 5),
  155. Text('${'version'.tr()} ${ApiAuthProvider().displayVersion}', style: TextStyle(color: Colors.white, fontSize: 14)),
  156. SizedBox(height: 5),
  157. Text('Build ${ApiAuthProvider().buildNumber}', style: TextStyle(color: Colors.white, fontSize: 13)),
  158. ],
  159. ),
  160. ),
  161. ),
  162. Container(
  163. margin: EdgeInsets.only(top: kIsWeb?16:50, right: 16),
  164. child: Align(
  165. alignment: Alignment.topRight,
  166. child: lang.isNotEmpty ? GestureDetector(
  167. child: Container(
  168. width: 65, height: 30, padding: EdgeInsets.symmetric(horizontal: 10),
  169. decoration: BoxDecoration(
  170. color: Colors.deepOrange,
  171. borderRadius: BorderRadius.all(Radius.circular(50))
  172. ),
  173. child: Row(
  174. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  175. children: [
  176. U.iconsax('bold/global', color: Colors.white),
  177. Text(context.locale.toString().toUpperCase(), style: TextStyle(color: Colors.white, fontSize: 15, fontWeight: FontWeight.bold))
  178. ],
  179. ),
  180. ),
  181. onTap: () => changeLangLogin(context, lang),
  182. ) : ToggleSwitch(
  183. minWidth: 40,
  184. minHeight: 30,
  185. cornerRadius: 20,
  186. initialLabelIndex: context.locale.toString() == 'en' ? 0 : 1,
  187. activeBgColor: [Colors.deepOrange],
  188. activeFgColor: Colors.white,
  189. inactiveBgColor: Colors.white54,
  190. inactiveFgColor: Colors.white,
  191. labels: ['EN', 'ID'],
  192. onToggle: (index) {
  193. if (index == 0) {
  194. context.setLocale(Locale('en'));
  195. } else {
  196. context.setLocale(Locale('id'));
  197. }
  198. },
  199. ),
  200. ),
  201. )
  202. ],
  203. ),
  204. );
  205. }
  206. Future scanDialog() async {
  207. try {
  208. final result = await InternetAddress.lookup('google.com');
  209. if (result.isNotEmpty && result[0].rawAddress.isNotEmpty) {
  210. // String barcode = await FlutterBarcodeScanner.scanBarcode('#ff6666', 'Cancel', true, ScanMode.QR);
  211. showModalBottomSheet<void>(
  212. context: context,
  213. backgroundColor: Colors.white,
  214. builder: (BuildContext contextt) {
  215. return Column(
  216. mainAxisSize: MainAxisSize.min,
  217. children: <Widget>[
  218. Padding(
  219. padding: const EdgeInsets.only(top: 15, bottom: 15),
  220. child: Center(
  221. child: Text('buttonScan'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  222. ),
  223. ),
  224. divider(),
  225. ListTile(
  226. leading: Icon(Icons.image),
  227. title: Text('fromGallery'.tr(), style: TextStyle(color: textColor)),
  228. onTap: () async{
  229. Navigator.of(contextt).pop();
  230. XFile? file = await ImagePicker().pickImage(source: ImageSource.gallery);
  231. if(file != null){
  232. final BarcodeCapture? barcodeCapture = await MobileScannerController().analyzeImage(file.path);
  233. String? str = barcodeCapture?.barcodes.singleOrNull?.displayValue;
  234. if (str != null) {
  235. scan(str);
  236. }
  237. else{
  238. showError(context, 'messageInvalidCode'.tr());
  239. }
  240. }
  241. },
  242. ),
  243. ListTile(
  244. leading: Icon(Icons.camera),
  245. title: Text('fromCamera'.tr(), style: TextStyle(color: textColor)),
  246. onTap: () async{
  247. Navigator.of(contextt).pop();
  248. Navigator.push(context, MaterialPageRoute(builder: (context) => const ScanBarcodePage())).then((barcode){
  249. if(barcode != null){
  250. scan(barcode);
  251. }
  252. });
  253. },
  254. )
  255. ],
  256. );
  257. }
  258. );
  259. }
  260. } on SocketException catch (_) {
  261. handlingError(context, 0); //no internet
  262. } on PlatformException catch (e) {
  263. if (e.code != '') {
  264. showError(context, 'messageCamPermission'.tr());
  265. } else {
  266. showError(context, 'messageInvalidCode'.tr());
  267. }
  268. } catch (e) {
  269. showError(context, 'messageInvalidCode'.tr());
  270. }
  271. }
  272. Future scan(String barcode) async {
  273. // print("called scan()");
  274. try {
  275. var pidString = barcode.split("app/").last;
  276. var pid = Uri.decodeComponent(pidString.split('/').first);
  277. var splitPID = pid.split('#');
  278. // print(splitPID);
  279. // print(U.decodeBase64Url(splitPID[1]));
  280. await _sharedPreferencesManager.clearKey(SharedPreferencesManager.version);
  281. await _sharedPreferencesManager.putString(SharedPreferencesManager.keyBaseUrl, U.rewriteUrl(splitPID[1]));
  282. await _sharedPreferencesManager.putString(SharedPreferencesManager.keyAccessCode, splitPID[0]);
  283. await _sharedPreferencesManager.putString(SharedPreferencesManager.keySerialCode, 'P-${splitPID[0]}');
  284. apiAuthRepository.init();
  285. if (!pidString.contains('loginme')) {
  286. context.router.removeLast();
  287. context.navigateNamedTo("/app/${Uri.encodeComponent(splitPID[0])}/login");
  288. } else {
  289. context.router.removeLast();
  290. context.navigateNamedTo("/app/${Uri.encodeComponent(splitPID[0])}/loginme"+pidString.split("/loginme").last);
  291. }
  292. } catch (e) {
  293. print(e);
  294. showError(context, 'messageInvalidCode'.tr());
  295. }
  296. }
  297. }
  298. class ScanBarcodePage extends StatefulWidget {
  299. const ScanBarcodePage({super.key});
  300. @override
  301. State<ScanBarcodePage> createState() => _ScanBarcodePageState();
  302. }
  303. class _ScanBarcodePageState extends State<ScanBarcodePage> {
  304. @override
  305. Widget build(BuildContext context) {
  306. return Scaffold(
  307. body: MobileScanner(
  308. onDetect: (barcodes) {
  309. // print('sini');
  310. // print(barcodes.barcodes.singleOrNull?.displayValue);
  311. Navigator.of(context).pop(barcodes.barcodes.firstOrNull?.displayValue);
  312. },
  313. ),
  314. );
  315. }
  316. }