INSSettingViewController.m 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. //
  2. // INSSettingViewController.m
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2023/9/11.
  6. //
  7. #import "INSSettingViewController.h"
  8. #import "SettingBottomView.h"
  9. #import "INSSettingBodyView.h"
  10. #import "ModifyNameViewController.h"
  11. #import <KSToolLibrary/KSFullDatePicker.h>
  12. #import <RSKImageCropper/RSKImageCropper.h>
  13. #import "KSMediaManager.h"
  14. #import "AccountDeleteViewController.h"
  15. #import "ModifyPhoneCheckController.h"
  16. #import "PasswordCheckViewController.h"
  17. #import "InstrumentChooseViewController.h"
  18. #import "UserAuthViewController.h"
  19. #import "UserInfoManager.h"
  20. #import "AccountDeleteViewController.h"
  21. #import <KSToolLibrary/KSSmallChoosePicker.h>
  22. #import "CustomNavViewController.h"
  23. @interface INSSettingViewController ()<RSKImageCropViewControllerDelegate>
  24. @property (nonatomic, strong) INSSettingBodyView *bodyView;
  25. @property (nonatomic, strong) SettingBottomView *bottomView;
  26. @property (nonatomic, strong) NSString *userSex;
  27. @property (nonatomic, strong) NSString *birthday;
  28. @property (nonatomic, strong) KSMediaManager *mediaManager;
  29. @property (nonatomic, strong) UserInfo *mineInfo;
  30. @property (nonatomic, assign) NSInteger lastChooseIndex;
  31. @end
  32. @implementation INSSettingViewController
  33. - (void)viewDidLoad {
  34. [super viewDidLoad];
  35. // Do any additional setup after loading the view.
  36. [self allocTitle:@"设置"];
  37. [self configUI];
  38. [self requestUserMessage];
  39. }
  40. - (void)requestUserMessage {
  41. [USER_MANAGER queryUserInfoCallback:^(UserInfo * _Nonnull userInfo) {
  42. self.mineInfo = userInfo;
  43. [self refreshView:userInfo];
  44. }];
  45. }
  46. - (void)configUI {
  47. [self.scrollView addSubview:self.bodyView];
  48. CGFloat bodyHeight = [self.bodyView getViewHeight];
  49. [self.bodyView mas_makeConstraints:^(MASConstraintMaker *make) {
  50. make.left.right.mas_equalTo(self.view);
  51. make.top.mas_equalTo(self.scrollView.mas_top);
  52. make.height.mas_equalTo(bodyHeight);
  53. }];
  54. [self.scrollView addSubview:self.bottomView];
  55. CGFloat bottomHeight = [SettingBottomView getViewHeight];
  56. [self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
  57. make.left.right.mas_equalTo(self.view);
  58. make.top.mas_equalTo(self.bodyView.mas_bottom).offset(20);
  59. make.height.mas_equalTo(bottomHeight);
  60. make.bottom.mas_equalTo(self.scrollView.mas_bottom);
  61. }];
  62. }
  63. - (void)refreshView:(UserInfo *)info {
  64. if (info.gender == 1) {
  65. self.lastChooseIndex = 1;
  66. }
  67. else {
  68. self.lastChooseIndex = 2;
  69. }
  70. [self.bodyView configUserWithUserInfo:info];
  71. }
  72. - (void)settingAction:(INSETTINGTYPE)type {
  73. switch (type) {
  74. case INSETTINGTYPE_AVATAR:
  75. {
  76. [self chooseImage];
  77. }
  78. break;
  79. case INSETTINGTYPE_NAME:
  80. {
  81. ModifyNameViewController *nameCtrl = [[ModifyNameViewController alloc] init];
  82. nameCtrl.preNickName = self.mineInfo.username;
  83. MJWeakSelf;
  84. [nameCtrl successCallback:^{
  85. [weakSelf requestUserMessage];
  86. }];
  87. [self.navigationController pushViewController:nameCtrl animated:YES];
  88. }
  89. break;
  90. case INSETTINGTYPE_SEX:
  91. {
  92. [self showModifySexAlert];
  93. }
  94. break;
  95. case INSETTINGTYPE_SUBJECT: // 9月18同步机构学员不可修改声部
  96. {
  97. // [self showInstrumentView];
  98. }
  99. break;
  100. case INSETTINGTYPE_BIRTHDAY:
  101. {
  102. [self chooseBirthDay];
  103. }
  104. break;
  105. case INSETTINGTYPE_PHONE:
  106. {
  107. ModifyPhoneCheckController *checkCtrl = [[ModifyPhoneCheckController alloc] init];
  108. [self.navigationController pushViewController:checkCtrl animated:YES];
  109. }
  110. break;
  111. case INSETTINGTYPE_PWD:
  112. {
  113. PasswordCheckViewController *modifyVC = [[PasswordCheckViewController alloc] init];
  114. [self.navigationController pushViewController:modifyVC animated:YES];
  115. }
  116. break;
  117. case INSETTINGTYPE_CLEARCACHE:
  118. {
  119. [self clearCache];
  120. }
  121. break;
  122. case INSETTINGTYPE_LOGOFF:
  123. {
  124. AccountDeleteViewController *deleteVC = [[AccountDeleteViewController alloc] init];
  125. [self.navigationController pushViewController:deleteVC animated:YES];
  126. }
  127. break;
  128. default:
  129. break;
  130. }
  131. }
  132. - (void)clearCache {
  133. NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
  134. NSString *bundlePath = [documentsPath stringByAppendingPathComponent:@"CoursewarePath"];
  135. NSFileManager *fileManager = [NSFileManager defaultManager];
  136. BOOL isExist = [fileManager fileExistsAtPath:bundlePath];
  137. if (isExist) {
  138. BOOL isSuccess = [fileManager removeItemAtPath:bundlePath error:nil];
  139. if (isSuccess) {
  140. [LOADING_MANAGER MBShowAUTOHidingInWindow:@"清理完成"];
  141. }
  142. }
  143. else {
  144. [LOADING_MANAGER MBShowAUTOHidingInWindow:@"清理完成"];
  145. }
  146. }
  147. - (void)showInstrumentView {
  148. InstrumentChooseViewController *ctrl = [[InstrumentChooseViewController alloc] init];
  149. MJWeakSelf;
  150. [ctrl chooseCallback:^{
  151. [weakSelf requestUserMessage];
  152. }];
  153. [self.navigationController pushViewController:ctrl animated:YES];
  154. }
  155. - (void)chooseBirthDay {
  156. NSDate *data = [NSDate date];
  157. if (![NSString isEmptyString:self.mineInfo.birthdate]) {
  158. NSString *birthday = self.mineInfo.birthdate;
  159. NSDateFormatter *formatter = [NSObject getDateformatter];
  160. [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
  161. NSDate *birthdate = [formatter dateFromString:birthday];
  162. if (birthdate) {
  163. data = birthdate;
  164. }
  165. }
  166. MJWeakSelf;
  167. KSFullDatePicker *datePicker = [[KSFullDatePicker alloc] initWithTitle:@"" date:data pickMode:KSDATEPICKER_MODE_DAY sureButtonColor:CLIENT_THEMECOLOR selectDateBlock:^(NSString *date) {
  168. [weakSelf.bodyView.birthdayLabel setText:date];
  169. weakSelf.birthday = date;
  170. [weakSelf modifyUserMessage:nil gender:self.userSex birthday:date];
  171. } cancleBlock:^{
  172. }];
  173. [datePicker show];
  174. }
  175. - (void)chooseImage {
  176. // 调用相册
  177. self.mediaManager = [[KSMediaManager alloc] init];
  178. self.mediaManager.mediaType = MEDIATYPE_PHOTO;
  179. self.mediaManager.maxPhotoNumber = 1;
  180. self.mediaManager.baseCtrl = self;
  181. self.mediaManager.needCropImage = NO;
  182. MJWeakSelf;
  183. [self.mediaManager noAlertCallback:^(NSString * _Nullable videoUrl, NSMutableArray * _Nullable imageArray, NSMutableArray * _Nullable imageAsset) {
  184. UIImage *sendImg = [imageArray lastObject];
  185. // 跳转到裁剪功能
  186. RSKImageCropViewController *imageCropVC = [[RSKImageCropViewController alloc] initWithImage:sendImg cropMode:RSKImageCropModeSquare];
  187. imageCropVC.avoidEmptySpaceAroundImage = YES;
  188. imageCropVC.rotationEnabled = YES;
  189. imageCropVC.delegate = weakSelf;
  190. CustomNavViewController *navCtrl = [[CustomNavViewController alloc] initWithRootViewController:imageCropVC];
  191. navCtrl.modalPresentationStyle = UIModalPresentationFullScreen;
  192. [weakSelf.navigationController presentViewController:navCtrl animated:YES completion:nil];
  193. }];
  194. [self.mediaManager pushImagePickerController];
  195. }
  196. - (void)updateWithUserLogo:(UIImage *)image {
  197. NSData *imgData = [UIImage turnsImaegDataByImage:image];
  198. NSString *fileName = @"image";
  199. [UPLOAD_MANAGER configWithfilePath:@"/user/"];
  200. [UPLOAD_MANAGER uploadImage:imgData fileName:fileName successCallback:^(NSMutableArray * _Nonnull fileUrlArray) {
  201. NSString *avatarUrl = [fileUrlArray lastObject];
  202. [self modifyUserMessage:avatarUrl gender:nil birthday:nil];
  203. } faliure:^(NSError * _Nullable error, NSString *descMessaeg) {
  204. if (![NSString isEmptyString:descMessaeg]) {
  205. [LOADING_MANAGER MBShowAUTOHidingInWindow:descMessaeg];
  206. }
  207. }];
  208. }
  209. - (void)modifyUserMessage:(NSString *)imgUrl gender:(NSString *)gender birthday:(NSString *)birthday {
  210. NSString *userName = nil;
  211. [LOADING_MANAGER showHUD];
  212. [KSNetworkingManager modifyUserMessage:KS_POST avatal:imgUrl gender:gender username:userName birthdate:birthday success:^(NSDictionary * _Nonnull dic) {
  213. [LOADING_MANAGER removeHUD];
  214. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  215. [LOADING_MANAGER MBShowAUTOHidingInWindow:@"修改成功"];
  216. [self requestUserMessage];
  217. }
  218. else {
  219. [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
  220. }
  221. } faliure:^(NSError * _Nonnull error) {
  222. [LOADING_MANAGER removeHUD];
  223. }];
  224. }
  225. - (void)showModifySexAlert {
  226. KSSmallChoosePicker *picker = [[KSSmallChoosePicker alloc] initWithTitle:@"修改性别" sourceData:@[@"男",@"女"] lastChoose:self.lastChooseIndex chooseColor:CLIENT_THEMECOLOR chooseReturnWithBlock:^(NSString * _Nonnull returnValue, NSInteger chooseIndex) {
  227. self.bodyView.userSex.text = returnValue;
  228. self.lastChooseIndex = chooseIndex;
  229. if (chooseIndex == 1) {
  230. self.userSex = @"1";
  231. }
  232. else {
  233. self.userSex = @"0";
  234. }
  235. [self modifyUserSex];
  236. } cancel:^{
  237. }];
  238. [picker showPicker];
  239. }
  240. - (void)modifyUserSex {
  241. // 更新性别
  242. [self modifyUserMessage:nil gender:self.userSex birthday:nil];
  243. }
  244. - (void)logoutAction {
  245. [KSNetworkingManager logoutRequest:KS_GET success:^(NSDictionary * _Nonnull dic) {
  246. [self clearSource];
  247. } faliure:^(NSError * _Nonnull error) {
  248. [self clearSource];
  249. }];
  250. }
  251. - (void)clearSource {
  252. [APPLOGIN_MANAGER logoutAction];
  253. }
  254. #pragma mark ----- lazying
  255. - (INSSettingBodyView *)bodyView {
  256. if (!_bodyView) {
  257. _bodyView = [INSSettingBodyView shareInstance];
  258. MJWeakSelf;
  259. [_bodyView settingCallback:^(INSETTINGTYPE type) {
  260. [weakSelf settingAction:type];
  261. }];
  262. }
  263. return _bodyView;
  264. }
  265. - (SettingBottomView *)bottomView {
  266. if (!_bottomView) {
  267. _bottomView = [SettingBottomView shareInstance];
  268. MJWeakSelf;
  269. [_bottomView bottomActionCallback:^{
  270. [weakSelf logoutAction];
  271. }];
  272. }
  273. return _bottomView;
  274. }
  275. #pragma mark --- RSKImageCropViewControllerDelegate
  276. /**
  277. 通知 delegate 取消裁剪图像。
  278. */
  279. - (void)imageCropViewControllerDidCancelCrop:(RSKImageCropViewController *)controller {
  280. self.zh_statusBarHidden = NO;
  281. [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
  282. }
  283. /**
  284. 通知 delegate 原始图像已经被裁剪。此外,还提供了一个裁剪矩形和用于生成图像的旋转角度。
  285. */
  286. - (void)imageCropViewController:(RSKImageCropViewController *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect rotationAngle:(CGFloat)rotationAngle {
  287. self.zh_statusBarHidden = NO;
  288. // croppedImage
  289. [self updateWithUserLogo:croppedImage];
  290. [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
  291. }
  292. /*
  293. #pragma mark - Navigation
  294. // In a storyboard-based application, you will often want to do a little preparation before navigation
  295. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  296. // Get the new view controller using [segue destinationViewController].
  297. // Pass the selected object to the new view controller.
  298. }
  299. */
  300. @end