|
|
|
import 'package:akuCommunity/provider/app_provider.dart';
|
|
|
|
import 'package:akuCommunity/ui/profile/house/house_func.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'package:flustars/flustars.dart';
|
|
|
|
|
|
|
|
import 'package:akuCommunity/constants/api.dart';
|
|
|
|
import 'package:akuCommunity/model/user/user_detail_model.dart';
|
|
|
|
import 'package:akuCommunity/model/user/user_info_model.dart';
|
|
|
|
import 'package:akuCommunity/pages/sign/sign_func.dart';
|
|
|
|
import 'package:akuCommunity/utils/bee_parse.dart';
|
|
|
|
import 'package:akuCommunity/utils/hive_store.dart';
|
|
|
|
import 'package:akuCommunity/utils/network/base_model.dart';
|
|
|
|
import 'package:akuCommunity/utils/network/net_util.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
class UserProvider extends ChangeNotifier {
|
|
|
|
bool _isLogin = false;
|
|
|
|
bool get isLogin => _isLogin;
|
|
|
|
bool get isNotLogin => !_isLogin;
|
|
|
|
Future setLogin(int token) async {
|
|
|
|
final appProvider = Provider.of<AppProvider>(Get.context,listen: false);
|
|
|
|
_isLogin = true;
|
|
|
|
NetUtil().dio.options.headers.putIfAbsent('App-Admin-Token', () => token);
|
|
|
|
HiveStore.appBox.put('token', token);
|
|
|
|
HiveStore.appBox.put('login', true);
|
|
|
|
await updateProfile();
|
|
|
|
await updateUserDetail();
|
|
|
|
await setCurrentHouse((_userDetailModel?.estateNames?.isEmpty ?? true)
|
|
|
|
? ''
|
|
|
|
: _userDetailModel?.estateNames?.first);
|
|
|
|
await appProvider.updateHouses(await HouseFunc.houses);
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
logout() {
|
|
|
|
_isLogin = false;
|
|
|
|
_token = null;
|
|
|
|
_userInfoModel = null;
|
|
|
|
_userDetailModel = null;
|
|
|
|
NetUtil().get(API.user.logout, showMessage: true);
|
|
|
|
NetUtil().dio.options.headers.remove('App-Admin-Token');
|
|
|
|
HiveStore.appBox.delete('token');
|
|
|
|
HiveStore.appBox.delete('login');
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future updateProfile() async {
|
|
|
|
_userInfoModel = await SignFunc.getUserInfo();
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future updateUserDetail() async {
|
|
|
|
_userDetailModel = await SignFunc.getUserDetail();
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
String _token;
|
|
|
|
String get token => _token ?? '';
|
|
|
|
|
|
|
|
UserInfoModel _userInfoModel;
|
|
|
|
UserInfoModel get userInfoModel => _userInfoModel;
|
|
|
|
|
|
|
|
UserDetailModel _userDetailModel;
|
|
|
|
UserDetailModel get userDetailModel => _userDetailModel;
|
|
|
|
|
|
|
|
///设置性别
|
|
|
|
Future setSex(int sex) async {
|
|
|
|
BaseModel baseModel = await NetUtil().post(
|
|
|
|
API.user.setSex,
|
|
|
|
params: {'sex': sex},
|
|
|
|
showMessage: true,
|
|
|
|
);
|
|
|
|
if (baseModel.status) {
|
|
|
|
_userInfoModel.sex = sex;
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///设置生日
|
|
|
|
Future setBirthday(DateTime date) async {
|
|
|
|
BaseModel baseModel = await NetUtil().post(
|
|
|
|
API.user.setBirthday,
|
|
|
|
params: {
|
|
|
|
'birthday': DateUtil.formatDate(date, format: "yyyy-MM-dd HH:mm:ss")
|
|
|
|
},
|
|
|
|
showMessage: true,
|
|
|
|
);
|
|
|
|
if (baseModel.status) {
|
|
|
|
_userInfoModel.birthday =
|
|
|
|
DateUtil.formatDate(date, format: "yyyy-MM-dd HH:mm:ss");
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//修改昵称
|
|
|
|
Future setName(String name) async {
|
|
|
|
BaseModel baseModel = await NetUtil().post(
|
|
|
|
API.user.updateNickName,
|
|
|
|
params: {'nickName': name},
|
|
|
|
showMessage: true,
|
|
|
|
);
|
|
|
|
if (baseModel.status) {
|
|
|
|
_userInfoModel.nickName = name;
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//修改手机号
|
|
|
|
Future updateTel(String oldTel, String newTel, String code) async {
|
|
|
|
BaseModel baseModel = await NetUtil().post(
|
|
|
|
API.user.updateTel,
|
|
|
|
params: {'oldTel': oldTel, 'newTel': newTel, 'code': code},
|
|
|
|
showMessage: true,
|
|
|
|
);
|
|
|
|
if (baseModel.status) {
|
|
|
|
_userInfoModel.tel = newTel;
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///修改头像
|
|
|
|
Future updateAvatar(String path) async {
|
|
|
|
BaseModel model = await NetUtil().post(
|
|
|
|
API.user.udpdateAvatar,
|
|
|
|
params: {
|
|
|
|
'fileUrls': [path]
|
|
|
|
},
|
|
|
|
showMessage: true,
|
|
|
|
);
|
|
|
|
if (model.status) {
|
|
|
|
await updateProfile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///设置默认房屋
|
|
|
|
String _currentHouse;
|
|
|
|
int get currentHouseId => BeeParse.getEstateNameId(_currentHouse);
|
|
|
|
String get currentHouse => BeeParse.getEstateName(_currentHouse);
|
|
|
|
setCurrentHouse(String house) {
|
|
|
|
_currentHouse = house;
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
}
|