Files
rkmmobile/lib/screens/login/login_load_screen.dart

279 lines
11 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:rkm/controllers/main_controllers.dart';
import 'package:rkm/screens/home_screen.dart';
import 'package:rkm/service/api/url_api_const.dart';
import 'package:rkm/config/color_palette.dart';
import 'package:rkm/config/const_variable.dart';
import 'package:rkm/widgets/button_default.dart';
import 'package:rkm/widgets/dropdown_button_city.dart';
import 'package:rkm/widgets/input_text.dart';
import 'package:rkm/widgets/text_default.dart';
import '../../service/api/api_data_load.dart';
import '../../service/db/db_sqlite_load.dart';
import '../../service/shared_preferences/shared_preferences_service.dart';
import '../../widgets/title_input.dart';
import '../load_init_screen.dart';
class LoginLoadScreen extends StatefulWidget {
const LoginLoadScreen({Key? key}) : super(key: key);
@override
State<LoginLoadScreen> createState() => _LoginLoadScreenState();
}
class _LoginLoadScreenState extends State<LoginLoadScreen> {
var inputUser = TextEditingController();
var inputPassword = TextEditingController();
var inputIP = TextEditingController(text: '192.168.0.42');
var inputPort = TextEditingController(text: '8010');
String error = '';
String? now;
String? selectCity;
int contLogo = 0;
String mode = 'online';
String urlAPI = UrlApiConst.ApiUrlOnline;
bool loading = false;
String nameCityApi = '';
String nameCityFront = '';
String codState = '';
int codCity = 0;
int codCityIbge = 0;
bool mandatory = false;
final PrefService _prefService = PrefService();
checkLogin()async{
if(inputUser.text.isNotEmpty && inputPassword.text.isNotEmpty && inputUser.text.length>3 && inputPassword.text.length>3){
if(selectCity!=null){
_prefService.createCacheModel(inputUser.text,inputPassword.text,selectCity!,mode);
error = '';
loading = true;
for(int i=0;ConstVariable().itensCity.length > i;i++){
if(ConstVariable().itensCity[i].nameCityFront == selectCity!){
nameCityApi = ConstVariable().itensCity[i].nameCityApi;
nameCityFront = ConstVariable().itensCity[i].nameCityFront;
codCityIbge = ConstVariable().itensCity[i].codCityIbge;
codCity = ConstVariable().itensCity[i].codCity;
codState = ConstVariable().itensCity[i].codState;
}
}
setState(() {});
if(inputIP.text.isNotEmpty && inputPort.text.isNotEmpty && mode == 'desenvolvimento'){
urlAPI = 'http://${inputIP.text}:${inputPort.text}/api/atb/';
}
await ApiDataLoad().apiConect(urlAPI,mode,nameCityApi,inputUser.text).then((response) async {
print('response');
print(response);
if(response == 'Erro' || response.toString() == 'Error: -902 - I/O error during "open" operation for file "/bases/conectasus/extrema/SISTEMA.FDB" Error while trying to open file No such file or directory'){
setState(() {
loading = false;
error = 'Erro na conexão!Verifique sua internet\n ou a cidade que está selecionada!';
});
}else if(inputUser.text == inputPassword.text || response['bloqueio']==1){
setState(() {
loading = false;
if( response['bloqueio']==1){
error = 'Usuário bloqueado/usuário e/ou senha incorreta';
}else if(inputUser.text == inputPassword.text){
error = 'Usuário e senha não podem ser idênticas';
}
});
}else if(response['status']==0) {
setState(() {
loading = false;
error = 'Usuário não encontrado';
});
}else if(response['status']==1) {
print('aqui 1');
print(response);
setState((){
error = '';
});
//verificar se a criptografia identificou se a senha está correta
print('chegou');
if(MainControllers().encrypt(inputPassword.text,response['userPass']) == response['userPass']){
setState(() {
loading = false;
});
await DbSqliteLoad().deleteLoad().then((_)async {
DbSqliteLoad().saveArgs(
mode,
inputUser.text,
inputPassword.text,
urlAPI,
codCity,
nameCityApi,
nameCityFront,
codState,
codCityIbge
).then((value) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => LoadInitScreen()),
);
});
});
}else{
setState(() {
loading = false;
error = 'Usuário bloqueado/senha incorreta';
});
}
}else{
setState(() {
loading = false;
error = 'Falha de conexão com API';
});
}
});
}else{
error = 'Selecione sua cidade';
mandatory = true;
setState(() {});
}
}else{
setState(() {
error = 'Usuário/senha inválido(s)';
});
}
}
@override
Widget build(BuildContext context) {
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: TextDefault(text: 'RKM AB - Carga Inicial',fontSize: ConstVariable().fontSizeTitleAppBar,color: ColorPalette.white),
),
body: SingleChildScrollView(
child: Container(
padding: EdgeInsets.only(top: height*0.2),
width: width,
height: height,
decoration: ConstVariable().backgroundGradient,
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
children: [
GestureDetector(
onTap: loading?null:()=>setState((){
contLogo++;
if(contLogo>=5 && contLogo<=10){
mode = UrlApiConst.ModeHomologacao;
urlAPI = UrlApiConst.ApiUrlHomologacao;
}
if(contLogo>10){
mode = UrlApiConst.ModeDesenvolvimento;
urlAPI = UrlApiConst.ApiUrlDesenvolvimento;
if(contLogo==15){
contLogo=0;
mode = UrlApiConst.ModeOnline;
urlAPI = UrlApiConst.ApiUrlOnline;
}
}
}),
child: Image.asset('assets/images/logo.PNG',width: width*0.4)
),
mode == 'homologacao'?Image.asset('assets/images/homologacao.png',width: width*0.4):Container(),
mode == 'desenvolvimento'?Image.asset('assets/images/desenvolvimento.png',width: width*0.4):Container(),
SizedBox(height: 10),
loading?Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Image.asset('assets/images/loading.gif'),
SizedBox(height: 10),
TextDefault(text: 'Carregando dados...',color: ColorPalette.black54,fontSize: 20,fontWeigth: FontWeight.bold,)
],
),
):Form(
autovalidateMode: AutovalidateMode.onUserInteraction,
child: Container(
width: width*0.6,
height: mode == 'desenvolvimento'?height*0.4:height*0.3,
child: ListView(
children: [
TitleInput(title:'Usuário'),
InputText(
title: 'Usuário',
controller: inputUser,
width: width*0.6,
colorBorder: Colors.white,
onChanged: (v)=>setState((){}),
inputFormatters: [
FilteringTextInputFormatter.deny(RegExp(r'\s')),
],
),
TitleInput(title:'Senha'),
InputText(
title: 'Senha',
obscure: true,
controller: inputPassword,
width: width*0.6,
colorBorder: Colors.white,
onChanged: (v)=>setState((){}),
),
TitleInput(title:'Cidade'),
DropDownButtonCity(
error: 'Campo obrigatório',
validator: mandatory,
select: selectCity,
onChanged: (value){
setState(() {
selectCity = value!;
mandatory = false;
});
},
),
mode == 'desenvolvimento'?TitleInput(title:'IP'):Container(),
mode == 'desenvolvimento'?InputText(
title: 'IP',
obscure: false,
controller: inputIP,
width: width*0.6,
colorBorder: Colors.white,
onChanged: (v)=>setState((){}),
):Container(),
mode == 'desenvolvimento'?TitleInput(title:'Porta'):Container(),
mode == 'desenvolvimento'?InputText(
title: 'Porta',
obscure: false,
controller: inputPort,
width: width*0.6,
colorBorder: Colors.white,
onChanged: (v)=>setState((){}),
):Container(),
],
),
),
),
loading?Container():ButtonDefault(
// onPressed: (){
// Navigator.push(
// context,
// MaterialPageRoute(
// builder: (context) => HomeScreen()));
// },
onPressed: ()=>checkLogin(),
title: 'Carga Inicial',
width: width*0.6,
),
SizedBox(height: 10),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: TextDefault(text: error,color: ColorPalette.red,maxLines: 3),
),
],
),
),
),
);
}
}