UserSettingViewController.m 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. //
  2. // UserSettingViewController.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/5/27.
  6. //
  7. #import "UserSettingViewController.h"
  8. #import "UseBodyView.h"
  9. #import "RCConnectionManager.h"
  10. #import "LoginViewController.h"
  11. #import "AppDelegate.h"
  12. #import "CustomNavViewController.h"
  13. #import "JPUSHService.h"
  14. #import "KSBaseWKWebViewController.h"
  15. #import "ModifyNameViewController.h"
  16. #import "PasswordCheckViewController.h"
  17. #import "ModifyPhoneCheckController.h"
  18. #import "KSChoosePicker.h"
  19. #import "KSMediaManager.h"
  20. #import "UserAuthViewController.h"
  21. #import "UserInfoManager.h"
  22. #import <RSKImageCropper/RSKImageCropper.h>
  23. #import "KSSmallChoosePicker.h"
  24. @interface UserSettingViewController ()<RSKImageCropViewControllerDelegate>
  25. @property (nonatomic, strong) UseBodyView *bodyView;
  26. @property (nonatomic, strong) NSString *userSex;
  27. @property (nonatomic, strong) KSMediaManager *mediaManager;
  28. @property (nonatomic, strong) UserInfo *mineInfo;
  29. @property (nonatomic, assign) NSInteger lastChooseIndex;
  30. @end
  31. @implementation UserSettingViewController
  32. - (void)viewDidLoad {
  33. [super viewDidLoad];
  34. // Do any additional setup after loading the view.
  35. [self allocTitle:@"设置"];
  36. [self configUI];
  37. [self requestUserMessage];
  38. }
  39. - (void)requestUserMessage {
  40. [USER_MANAGER queryUserInfoCallback:^(UserInfo * _Nonnull userInfo) {
  41. self.mineInfo = userInfo;
  42. [self configMessage];
  43. }];
  44. }
  45. - (void)configMessage {
  46. if (![NSString isEmptyString:self.mineInfo.heardUrl]) {
  47. [self.bodyView.userAvatal sd_setImageWithURL:[NSURL URLWithString:[self.mineInfo.heardUrl getUrlEndcodeString]] placeholderImage:[UIImage imageNamed:USERDEFAULT_LOGO]];
  48. }
  49. else {
  50. [self.bodyView.userAvatal setImage:[UIImage imageNamed:USERDEFAULT_LOGO]];
  51. }
  52. self.bodyView.nickNameLabel.text = [NSString returnNoNullStringWithString:self.mineInfo.username];
  53. NSString *userSex = @"";
  54. if (self.mineInfo.gender == 1) {
  55. userSex = @"男";
  56. self.userSex = @"1";
  57. self.lastChooseIndex = 1;
  58. }
  59. else {
  60. userSex = @"女";
  61. self.userSex = @"0";
  62. self.lastChooseIndex = 2;
  63. }
  64. self.bodyView.genderLabel.text = userSex;
  65. self.bodyView.phoneLabel.text = [NSString returnNoNullStringWithString:self.mineInfo.phone];
  66. NSString *authStatus = @"";
  67. if (USER_MANAGER.hasAuth) {
  68. authStatus = @"已认证";
  69. }
  70. else {
  71. authStatus = @"未认证";
  72. }
  73. self.bodyView.authStatusLabel.text = authStatus;
  74. }
  75. - (void)configUI {
  76. [self.scrollView mas_remakeConstraints:^(MASConstraintMaker *make) {
  77. make.left.right.mas_equalTo(self.view);
  78. make.top.mas_equalTo(self.view.mas_top);
  79. make.bottom.mas_equalTo(self.view.mas_bottom).offset(-iPhoneXSafeBottomMargin);
  80. }];
  81. self.bodyView = [UseBodyView shareInstance];
  82. CGFloat viewHeight = KPortraitHeight - kNaviBarHeight - iPhoneXSafeBottomMargin;
  83. [self.scrollView addSubview:self.bodyView];
  84. [self.bodyView mas_makeConstraints:^(MASConstraintMaker *make) {
  85. make.top.mas_equalTo(self.scrollView.mas_top);
  86. make.right.left.mas_equalTo(self.view);
  87. make.height.mas_equalTo(viewHeight);
  88. }];
  89. [self.scrollView setContentSize:CGSizeMake(kScreenWidth, viewHeight)];
  90. KSWeakSelf(weakSelf);
  91. [self.bodyView userSettingAction:^(USERSETTING type) {
  92. [weakSelf operationAction:type];
  93. }];
  94. }
  95. - (void)operationAction:(USERSETTING)type {
  96. switch (type) {
  97. case USERSETTING_AVATAL: // 头像
  98. {
  99. [self chooseImage];
  100. }
  101. break;
  102. case USERSETTING_NAME:
  103. {
  104. ModifyNameViewController *nameCtrl = [[ModifyNameViewController alloc] init];
  105. nameCtrl.preNickName = self.mineInfo.username;
  106. MJWeakSelf;
  107. [nameCtrl successCallback:^{
  108. [weakSelf requestUserMessage];
  109. }];
  110. [self.navigationController pushViewController:nameCtrl animated:YES];
  111. }
  112. break;
  113. case USERSETTING_SEX:
  114. {
  115. [self showModifySexAlert];
  116. }
  117. break;
  118. case USERSETTING_PHONE:
  119. {
  120. ModifyPhoneCheckController *checkCtrl = [[ModifyPhoneCheckController alloc] init];
  121. [self.navigationController pushViewController:checkCtrl animated:YES];
  122. }
  123. break;
  124. case USERSETTING_PWD:
  125. {
  126. PasswordCheckViewController *modifyVC = [[PasswordCheckViewController alloc] init];
  127. [self.navigationController pushViewController:modifyVC animated:YES];
  128. }
  129. break;
  130. case USERSETTING_VEFI:
  131. {
  132. if (USER_MANAGER.hasAuth == NO) {
  133. UserAuthViewController *ctrl = [[UserAuthViewController alloc] init];
  134. MJWeakSelf;
  135. [ctrl sureCallback:^{
  136. [weakSelf requestUserMessage];
  137. }];
  138. [self.navigationController pushViewController:ctrl animated:YES];
  139. }
  140. }
  141. break;
  142. case USERSETTING_LOGOUT:
  143. {
  144. [self logoutAction];
  145. }
  146. break;
  147. default:
  148. break;
  149. }
  150. }
  151. - (void)chooseImage {
  152. // 调用相册
  153. self.mediaManager = [[KSMediaManager alloc] init];
  154. self.mediaManager.mediaType = MEDIATYPE_PHOTO;
  155. self.mediaManager.maxPhotoNumber = 1;
  156. self.mediaManager.baseCtrl = self;
  157. self.mediaManager.needCropImage = NO;
  158. MJWeakSelf;
  159. [self.mediaManager noAlertCallback:^(NSString * _Nullable videoUrl, NSMutableArray * _Nullable imageArray, NSMutableArray * _Nullable imageAsset) {
  160. UIImage *sendImg = [imageArray lastObject];
  161. // 跳转到裁剪功能
  162. RSKImageCropViewController *imageCropVC = [[RSKImageCropViewController alloc] initWithImage:sendImg cropMode:RSKImageCropModeSquare];
  163. imageCropVC.avoidEmptySpaceAroundImage = YES;
  164. imageCropVC.rotationEnabled = YES;
  165. imageCropVC.delegate = weakSelf;
  166. CustomNavViewController *navCtrl = [[CustomNavViewController alloc] initWithRootViewController:imageCropVC];
  167. navCtrl.modalPresentationStyle = UIModalPresentationFullScreen;
  168. [weakSelf.navigationController presentViewController:navCtrl animated:YES completion:nil];
  169. }];
  170. [self.mediaManager pushImagePickerController];
  171. }
  172. - (void)updateWithUserLogo:(UIImage *)image {
  173. NSData *imgData = [UIImage turnsImaegDataByImage:image];
  174. NSString *fileName = @"image";
  175. [[KSUploadManager shareInstance] configBucketName:@"daya"];
  176. [[KSUploadManager shareInstance] uploadImage:imgData fileName:fileName successCallback:^(NSMutableArray * _Nonnull fileUrlArray) {
  177. NSString *avatarUrl = [fileUrlArray lastObject];
  178. [self modifyUserMessage:avatarUrl gender:nil];
  179. } faliure:^(NSError * _Nullable error, NSString *descMessaeg) {
  180. if (![NSString isEmptyString:descMessaeg]) {
  181. [LOADING_MANAGER MBShowAUTOHidingInWindow:descMessaeg];
  182. }
  183. }];
  184. }
  185. - (void)modifyUserMessage:(NSString *)imgUrl gender:(NSString *)gender {
  186. NSString *userName = nil;
  187. [LOADING_MANAGER showHUD];
  188. [KSNetworkingManager modifyTeacherMessage:KS_POST avatal:imgUrl gender:gender username:userName success:^(NSDictionary * _Nonnull dic) {
  189. [LOADING_MANAGER removeHUD];
  190. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  191. [LOADING_MANAGER MBShowAUTOHidingInWindow:@"修改成功"];
  192. if (![NSString isEmptyString:imgUrl]) {
  193. UserDefaultSetObjectForKey(imgUrl, AvatarUrlKey);
  194. [self updateRongCloudUserInfo];
  195. }
  196. [self requestUserMessage];
  197. }
  198. else {
  199. [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
  200. }
  201. } faliure:^(NSError * _Nonnull error) {
  202. [LOADING_MANAGER removeHUD];
  203. }];
  204. }
  205. - (void)updateRongCloudUserInfo {
  206. // 设置个人信息
  207. RCUserInfo *currentUserInfo =
  208. [[RCUserInfo alloc] initWithUserId:UserDefault(UIDKey) name:UserDefault(NicknameKey) portrait:UserDefault(AvatarUrlKey)];
  209. NSMutableDictionary *extraDic = [NSMutableDictionary dictionary];
  210. [extraDic setValue:@"TEACHER" forKey:@"role"];
  211. currentUserInfo.extra = [extraDic mj_JSONString];
  212. [RCIM sharedRCIM].currentUserInfo = currentUserInfo;
  213. [[RCIM sharedRCIM] refreshUserInfoCache:currentUserInfo withUserId:UserDefault(UIDKey)];
  214. }
  215. - (void)showModifySexAlert {
  216. KSSmallChoosePicker *picker = [[KSSmallChoosePicker alloc] initWithTitle:@"修改性别" sourceData:@[@"男",@"女"] lastChoose:self.lastChooseIndex chooseReturnWithBlock:^(NSString * _Nonnull returnValue, NSInteger chooseIndex) {
  217. self.bodyView.genderLabel.text = returnValue;
  218. self.lastChooseIndex = chooseIndex;
  219. if (chooseIndex == 1) {
  220. self.userSex = @"1";
  221. }
  222. else {
  223. self.userSex = @"0";
  224. }
  225. [self modifyUserSex];
  226. } cancel:^{
  227. }];
  228. [picker showPicker];
  229. }
  230. - (void)modifyUserSex {
  231. // 更新性别
  232. [self modifyUserMessage:nil gender:self.userSex];
  233. }
  234. - (void)logoutAction {
  235. [KSNetworkingManager logoutRequest:KS_GET success:^(NSDictionary * _Nonnull dic) {
  236. [self clearSource];
  237. } faliure:^(NSError * _Nonnull error) {
  238. [self clearSource];
  239. }];
  240. }
  241. - (void)clearSource {
  242. [APPLOGIN_MANAGER logoutAction];
  243. }
  244. #pragma mark --- RSKImageCropViewControllerDelegate
  245. /**
  246. 通知 delegate 取消裁剪图像。
  247. */
  248. - (void)imageCropViewControllerDidCancelCrop:(RSKImageCropViewController *)controller {
  249. [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
  250. }
  251. /**
  252. 通知 delegate 原始图像已经被裁剪。此外,还提供了一个裁剪矩形和用于生成图像的旋转角度。
  253. */
  254. - (void)imageCropViewController:(RSKImageCropViewController *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect rotationAngle:(CGFloat)rotationAngle {
  255. // croppedImage
  256. [self updateWithUserLogo:croppedImage];
  257. [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
  258. }
  259. /*
  260. #pragma mark - Navigation
  261. // In a storyboard-based application, you will often want to do a little preparation before navigation
  262. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  263. // Get the new view controller using [segue destinationViewController].
  264. // Pass the selected object to the new view controller.
  265. }
  266. */
  267. @end