UserManager.m 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. //
  2. // UserManager.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/13.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "UserManager.h"
  9. @interface UserManager()
  10. @end
  11. @implementation UserManager
  12. TDShareInstance_implementation(UserManager)
  13. //是否已登录
  14. + (BOOL)isLogin{
  15. return ![UserManager checkStringNull:[self token]];
  16. }
  17. + (NSString *)token {
  18. return kToken;
  19. }
  20. + (BOOL)checkStringNull:(NSString *)str {
  21. if (str == nil || [str isEqual:[NSNull null]] || str.length == 0) {
  22. return YES;
  23. }else {
  24. return NO;
  25. }
  26. }
  27. + (void)getUserInfoDetail {
  28. NSLog(@"");
  29. SHOWLOADING
  30. [self getUserInfoDetailSuccess:^(id _Nonnull responseObject) {
  31. NSLog(@"用户数据 %@",responseObject);
  32. // NSDictionary *dic = responseObject;
  33. // [[AppUserModel sharedAppUserModel] modelSetWithDictionary:dic];
  34. // NSLog(@"用户数据更新解析结果===================\n%@%@%@%@",[AppUserModel sharedAppUserModel].Nick,[AppUserModel sharedAppUserModel].Name,[AppUserModel sharedAppUserModel].Phone,[AppUserModel sharedAppUserModel].Email);
  35. REMOVESHOW
  36. } failure:^(NSError * _Nonnull error) {
  37. REMOVESHOW
  38. // SHOWERROR([ZYCTool handerResultData:error])
  39. }];
  40. }
  41. + (void)getUserInfoDetailSuccess:(void (^)(id responseObject))successful failure:(void (^) (NSError *error))failure{
  42. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,UserDetailGet] parameters:@{} success:^(id _Nonnull responseObject) {
  43. NSLog(@"用户数据 %@",responseObject);
  44. NSDictionary *dic = responseObject;
  45. [[AppUserModel sharedAppUserModel] modelSetWithDictionary:dic];
  46. successful(responseObject);
  47. } failure:^(NSError * _Nonnull error) {
  48. failure(error);
  49. }];
  50. }
  51. + (void)updateUserInfoDetail:(UpadateUseinfoRequstStyle)reuestParamStyle Param:(NSString *)paramText Success:(void (^)(id responseObject))successful failure:(void (^) (NSError *error))failure{
  52. NSString *paramaKey = @"gender";
  53. switch (reuestParamStyle) {
  54. case IMAGE:
  55. paramaKey = @"avatarUrl";
  56. break;
  57. case Sign:
  58. paramaKey = @"signature";
  59. break;
  60. case NAME:
  61. paramaKey = @"name";
  62. break;
  63. case NICK:
  64. paramaKey = @"nick";
  65. break;
  66. case Description:
  67. paramaKey = @"description";
  68. break;
  69. case Sex:
  70. paramaKey = @"gender";
  71. break;
  72. default:
  73. break;
  74. }
  75. WEAKSELF
  76. NSString *modyUrl = [NSString stringWithFormat:@"%@%@",BaseUrl,UpdateUserInfoPUT];
  77. [[HttpManager sharedHttpManager] PUTUrl:modyUrl parameters:@{paramaKey:paramText} success:^(id _Nonnull responseObject) {
  78. STRONGSELF
  79. [strongSelf getUserInfoDetailSuccess:^(id _Nonnull responseObject) {
  80. successful(responseObject);
  81. } failure:^(NSError * _Nonnull error) {
  82. failure(error);
  83. }];
  84. NSLog(@"成功");
  85. } failure:^(NSError * _Nonnull error) {
  86. NSLog(@"失败");
  87. failure(error);
  88. }];
  89. }
  90. @end