2023-01-18 07:54:44 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
2023-01-19 05:21:12 +00:00
|
|
|
import 'package:unit2/model/login_data/user_info/user_data.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
import 'package:unit2/model/login_data/version_info.dart';
|
|
|
|
import 'package:http/http.dart' as http;
|
2023-01-19 05:21:12 +00:00
|
|
|
import 'package:unit2/utils/request.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
import '../../utils/text_container.dart';
|
|
|
|
import '../../utils/urls.dart';
|
|
|
|
|
|
|
|
class AuthService {
|
|
|
|
static final AuthService _instance = AuthService();
|
|
|
|
static AuthService get instance => _instance;
|
|
|
|
|
|
|
|
Future<VersionInfo> getVersionInfo() async {
|
|
|
|
VersionInfo versionInfo = VersionInfo();
|
|
|
|
Map<String, String> headers = {
|
|
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
|
|
HttpHeaders.authorizationHeader: 'UniT2',
|
|
|
|
'X-User': ""
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
http.Response response = await http.get(
|
|
|
|
Uri.https('unitylb1.agusandelnorte.gov.ph',
|
|
|
|
'/unit2/api/sys/apk_version/latest/'),
|
|
|
|
headers: headers);
|
|
|
|
if (response.statusCode == 200) {
|
|
|
|
Map data = jsonDecode(response.body);
|
|
|
|
versionInfo = VersionInfo.fromJson(data['data']);
|
|
|
|
}
|
2023-02-01 08:03:05 +00:00
|
|
|
}catch (e) {
|
2023-01-18 07:54:44 +00:00
|
|
|
throw (e.toString());
|
|
|
|
}
|
|
|
|
return versionInfo;
|
|
|
|
}
|
2023-01-19 05:21:12 +00:00
|
|
|
|
|
|
|
Future<UserData> webLogin({String? username, String? password})async{
|
|
|
|
Map <String,String> body ={'username':username!,'password':password!};
|
|
|
|
Map<String, String> baseHeaders = {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
};
|
|
|
|
String path = Url.instance.authentication();
|
|
|
|
UserData? userData;
|
|
|
|
try{
|
|
|
|
http.Response response = await Request.instance.postRequest(path: path,param: {},headers: baseHeaders,body: body);
|
|
|
|
if(response.statusCode == 200){
|
|
|
|
Map data = jsonDecode(response.body);
|
|
|
|
userData = UserData.fromJson(data['data']);
|
|
|
|
}
|
|
|
|
}catch(e){
|
|
|
|
throw (e.toString());
|
|
|
|
}
|
|
|
|
return userData!;
|
|
|
|
}
|
2023-01-23 08:23:20 +00:00
|
|
|
Future<UserData> qrLogin({String? uuid, String? password})async{
|
|
|
|
Map <String,String> body ={'uuid':uuid!,'password':password!};
|
|
|
|
Map<String, String> baseHeaders = {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
};
|
|
|
|
String path = Url.instance.authentication();
|
|
|
|
UserData? userData;
|
|
|
|
try{
|
|
|
|
http.Response response = await Request.instance.postRequest(path: path,param: {},headers: baseHeaders,body: body);
|
|
|
|
if(response.statusCode == 200){
|
|
|
|
Map data = jsonDecode(response.body);
|
|
|
|
userData = UserData.fromJson(data['data']);
|
|
|
|
}
|
|
|
|
}catch(e){
|
|
|
|
throw (e.toString());
|
|
|
|
}
|
|
|
|
return userData!;
|
|
|
|
}
|
2023-01-18 07:54:44 +00:00
|
|
|
}
|