123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- //
- // INSSettingViewController.m
- // KulexiuForStudent
- //
- // Created by 王智 on 2023/9/11.
- //
- #import "INSSettingViewController.h"
- #import "SettingBottomView.h"
- #import "INSSettingBodyView.h"
- #import "ModifyNameViewController.h"
- #import <KSToolLibrary/KSFullDatePicker.h>
- #import <RSKImageCropper/RSKImageCropper.h>
- #import "KSMediaManager.h"
- #import "AccountDeleteViewController.h"
- #import "ModifyPhoneCheckController.h"
- #import "PasswordCheckViewController.h"
- #import "InstrumentChooseViewController.h"
- #import "UserAuthViewController.h"
- #import "UserInfoManager.h"
- #import "AccountDeleteViewController.h"
- #import <KSToolLibrary/KSSmallChoosePicker.h>
- #import "CustomNavViewController.h"
- @interface INSSettingViewController ()<RSKImageCropViewControllerDelegate>
- @property (nonatomic, strong) INSSettingBodyView *bodyView;
- @property (nonatomic, strong) SettingBottomView *bottomView;
- @property (nonatomic, strong) NSString *userSex;
- @property (nonatomic, strong) NSString *birthday;
- @property (nonatomic, strong) KSMediaManager *mediaManager;
- @property (nonatomic, strong) UserInfo *mineInfo;
- @property (nonatomic, assign) NSInteger lastChooseIndex;
- @end
- @implementation INSSettingViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- [self allocTitle:@"设置"];
- [self configUI];
- [self requestUserMessage];
- }
- - (void)requestUserMessage {
-
- [USER_MANAGER queryUserInfoCallback:^(UserInfo * _Nonnull userInfo) {
- self.mineInfo = userInfo;
- [self refreshView:userInfo];
- }];
- }
- - (void)configUI {
- [self.scrollView addSubview:self.bodyView];
- CGFloat bodyHeight = [self.bodyView getViewHeight];
- [self.bodyView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.mas_equalTo(self.view);
- make.top.mas_equalTo(self.scrollView.mas_top);
- make.height.mas_equalTo(bodyHeight);
- }];
- [self.scrollView addSubview:self.bottomView];
- CGFloat bottomHeight = [SettingBottomView getViewHeight];
- [self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.mas_equalTo(self.view);
- make.top.mas_equalTo(self.bodyView.mas_bottom).offset(20);
- make.height.mas_equalTo(bottomHeight);
- make.bottom.mas_equalTo(self.scrollView.mas_bottom);
- }];
- }
- - (void)refreshView:(UserInfo *)info {
- if (info.gender == 1) {
- self.lastChooseIndex = 1;
- }
- else {
- self.lastChooseIndex = 2;
- }
- [self.bodyView configUserWithUserInfo:info];
- }
- - (void)settingAction:(INSETTINGTYPE)type {
- switch (type) {
- case INSETTINGTYPE_AVATAR:
- {
- [self chooseImage];
- }
- break;
- case INSETTINGTYPE_NAME:
- {
- ModifyNameViewController *nameCtrl = [[ModifyNameViewController alloc] init];
- nameCtrl.preNickName = self.mineInfo.username;
- MJWeakSelf;
- [nameCtrl successCallback:^{
- [weakSelf requestUserMessage];
- }];
- [self.navigationController pushViewController:nameCtrl animated:YES];
- }
- break;
- case INSETTINGTYPE_SEX:
- {
- [self showModifySexAlert];
- }
- break;
- case INSETTINGTYPE_SUBJECT: // 9月18同步机构学员不可修改声部
- {
- // [self showInstrumentView];
- }
- break;
- case INSETTINGTYPE_BIRTHDAY:
- {
- [self chooseBirthDay];
- }
- break;
-
- case INSETTINGTYPE_PHONE:
- {
- ModifyPhoneCheckController *checkCtrl = [[ModifyPhoneCheckController alloc] init];
- [self.navigationController pushViewController:checkCtrl animated:YES];
- }
- break;
- case INSETTINGTYPE_PWD:
- {
- PasswordCheckViewController *modifyVC = [[PasswordCheckViewController alloc] init];
- [self.navigationController pushViewController:modifyVC animated:YES];
- }
- break;
- case INSETTINGTYPE_CLEARCACHE:
- {
- [self clearCache];
- }
- break;
- case INSETTINGTYPE_LOGOFF:
- {
- AccountDeleteViewController *deleteVC = [[AccountDeleteViewController alloc] init];
- [self.navigationController pushViewController:deleteVC animated:YES];
- }
- break;
- default:
- break;
- }
- }
- - (void)clearCache {
- NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
- NSString *bundlePath = [documentsPath stringByAppendingPathComponent:@"CoursewarePath"];
- NSFileManager *fileManager = [NSFileManager defaultManager];
- BOOL isExist = [fileManager fileExistsAtPath:bundlePath];
- if (isExist) {
- BOOL isSuccess = [fileManager removeItemAtPath:bundlePath error:nil];
- if (isSuccess) {
- [LOADING_MANAGER MBShowAUTOHidingInWindow:@"清理完成"];
- }
- }
- else {
- [LOADING_MANAGER MBShowAUTOHidingInWindow:@"清理完成"];
- }
- }
- - (void)showInstrumentView {
- InstrumentChooseViewController *ctrl = [[InstrumentChooseViewController alloc] init];
- MJWeakSelf;
- [ctrl chooseCallback:^{
- [weakSelf requestUserMessage];
- }];
- [self.navigationController pushViewController:ctrl animated:YES];
-
- }
- - (void)chooseBirthDay {
- NSDate *data = [NSDate date];
-
- if (![NSString isEmptyString:self.mineInfo.birthdate]) {
- NSString *birthday = self.mineInfo.birthdate;
- NSDateFormatter *formatter = [NSObject getDateformatter];
- [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
- NSDate *birthdate = [formatter dateFromString:birthday];
- if (birthdate) {
- data = birthdate;
- }
- }
- MJWeakSelf;
- KSFullDatePicker *datePicker = [[KSFullDatePicker alloc] initWithTitle:@"" date:data pickMode:KSDATEPICKER_MODE_DAY sureButtonColor:CLIENT_THEMECOLOR selectDateBlock:^(NSString *date) {
- [weakSelf.bodyView.birthdayLabel setText:date];
- weakSelf.birthday = date;
- [weakSelf modifyUserMessage:nil gender:self.userSex birthday:date];
- } cancleBlock:^{
-
- }];
- [datePicker show];
- }
- - (void)chooseImage {
- // 调用相册
- self.mediaManager = [[KSMediaManager alloc] init];
- self.mediaManager.mediaType = MEDIATYPE_PHOTO;
- self.mediaManager.maxPhotoNumber = 1;
- self.mediaManager.baseCtrl = self;
- self.mediaManager.needCropImage = NO;
- MJWeakSelf;
- [self.mediaManager noAlertCallback:^(NSString * _Nullable videoUrl, NSMutableArray * _Nullable imageArray, NSMutableArray * _Nullable imageAsset) {
- UIImage *sendImg = [imageArray lastObject];
- // 跳转到裁剪功能
- RSKImageCropViewController *imageCropVC = [[RSKImageCropViewController alloc] initWithImage:sendImg cropMode:RSKImageCropModeSquare];
- imageCropVC.avoidEmptySpaceAroundImage = YES;
- imageCropVC.rotationEnabled = YES;
- imageCropVC.delegate = weakSelf;
- CustomNavViewController *navCtrl = [[CustomNavViewController alloc] initWithRootViewController:imageCropVC];
- navCtrl.modalPresentationStyle = UIModalPresentationFullScreen;
- [weakSelf.navigationController presentViewController:navCtrl animated:YES completion:nil];
- }];
- [self.mediaManager pushImagePickerController];
- }
- - (void)updateWithUserLogo:(UIImage *)image {
- NSData *imgData = [UIImage turnsImaegDataByImage:image];
- NSString *fileName = @"image";
- [UPLOAD_MANAGER configWithfilePath:@"/user/"];
- [UPLOAD_MANAGER uploadImage:imgData fileName:fileName successCallback:^(NSMutableArray * _Nonnull fileUrlArray) {
- NSString *avatarUrl = [fileUrlArray lastObject];
- [self modifyUserMessage:avatarUrl gender:nil birthday:nil];
- } faliure:^(NSError * _Nullable error, NSString *descMessaeg) {
- if (![NSString isEmptyString:descMessaeg]) {
- [LOADING_MANAGER MBShowAUTOHidingInWindow:descMessaeg];
- }
- }];
- }
- - (void)modifyUserMessage:(NSString *)imgUrl gender:(NSString *)gender birthday:(NSString *)birthday {
- NSString *userName = nil;
- [LOADING_MANAGER showHUD];
- [KSNetworkingManager modifyUserMessage:KS_POST avatal:imgUrl gender:gender username:userName birthdate:birthday success:^(NSDictionary * _Nonnull dic) {
- [LOADING_MANAGER removeHUD];
- if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
- [LOADING_MANAGER MBShowAUTOHidingInWindow:@"修改成功"];
- [self requestUserMessage];
- }
- else {
- [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
- }
- } faliure:^(NSError * _Nonnull error) {
- [LOADING_MANAGER removeHUD];
- }];
- }
- - (void)showModifySexAlert {
- KSSmallChoosePicker *picker = [[KSSmallChoosePicker alloc] initWithTitle:@"修改性别" sourceData:@[@"男",@"女"] lastChoose:self.lastChooseIndex chooseColor:CLIENT_THEMECOLOR chooseReturnWithBlock:^(NSString * _Nonnull returnValue, NSInteger chooseIndex) {
- self.bodyView.userSex.text = returnValue;
- self.lastChooseIndex = chooseIndex;
- if (chooseIndex == 1) {
- self.userSex = @"1";
- }
- else {
- self.userSex = @"0";
- }
- [self modifyUserSex];
- } cancel:^{
-
- }];
- [picker showPicker];
- }
- - (void)modifyUserSex {
- // 更新性别
- [self modifyUserMessage:nil gender:self.userSex birthday:nil];
- }
- - (void)logoutAction {
-
- [KSNetworkingManager logoutRequest:KS_GET success:^(NSDictionary * _Nonnull dic) {
- [self clearSource];
- } faliure:^(NSError * _Nonnull error) {
- [self clearSource];
- }];
- }
- - (void)clearSource {
- [APPLOGIN_MANAGER logoutAction];
- }
- #pragma mark ----- lazying
- - (INSSettingBodyView *)bodyView {
- if (!_bodyView) {
- _bodyView = [INSSettingBodyView shareInstance];
- MJWeakSelf;
- [_bodyView settingCallback:^(INSETTINGTYPE type) {
- [weakSelf settingAction:type];
- }];
- }
- return _bodyView;
- }
- - (SettingBottomView *)bottomView {
- if (!_bottomView) {
- _bottomView = [SettingBottomView shareInstance];
- MJWeakSelf;
- [_bottomView bottomActionCallback:^{
- [weakSelf logoutAction];
- }];
- }
- return _bottomView;
- }
- #pragma mark --- RSKImageCropViewControllerDelegate
- /**
- 通知 delegate 取消裁剪图像。
- */
- - (void)imageCropViewControllerDidCancelCrop:(RSKImageCropViewController *)controller {
- self.zh_statusBarHidden = NO;
- [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
- }
- /**
- 通知 delegate 原始图像已经被裁剪。此外,还提供了一个裁剪矩形和用于生成图像的旋转角度。
- */
- - (void)imageCropViewController:(RSKImageCropViewController *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect rotationAngle:(CGFloat)rotationAngle {
- self.zh_statusBarHidden = NO;
- // croppedImage
- [self updateWithUserLogo:croppedImage];
- [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|