EMChatViewController.m 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225
  1. //
  2. // EMChatViewController.m
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/18.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import <AVKit/AVKit.h>
  9. #import <Photos/Photos.h>
  10. #import <AVFoundation/AVFoundation.h>
  11. #import <AssetsLibrary/AssetsLibrary.h>
  12. #import <MobileCoreServices/MobileCoreServices.h>
  13. #import "EMChatViewController.h"
  14. #import "EMImageBrowser.h"
  15. #import "EMDateHelper.h"
  16. #import "EMAudioPlayerHelper.h"
  17. #import "EMConversationHelper.h"
  18. #import "EMMessageModel.h"
  19. #import "EMReadReceiptMemberModel.h"
  20. #import "EMChatBar.h"
  21. #import "EMMessageCell.h"
  22. #import "EMMessageTimeCell.h"
  23. #import "EMLocationViewController.h"
  24. #import "EMMsgTranspondViewController.h"
  25. #import "EMAtGroupMembersViewController.h"
  26. #import "FavoritesViewController.h"
  27. #import "ChatMsgDetailChatInfoVC.h"
  28. #import "ChatMsgPersonInfoVC.h"
  29. #import "ChatMsgListImModel.h"
  30. #import "MailListDetailVC.h"
  31. #import "FWZFileGetTool.h"
  32. #import "EMChatFileShowVC.h"
  33. #import "DrawerView.h"
  34. #import "TabBarController.h"
  35. #import "FWZGetNoteBookTool.h"
  36. #import "NoteBookVC.h"
  37. #import "OtherNoteBookVC.h"
  38. #import "MyFavoriteVC.h"
  39. #import "OtherFavoriteVC.h"
  40. #import "TDGroupInfoListVC.h"
  41. #import "DownFileViewController.h"
  42. #import "WorkFlowDetailsController.h"
  43. #import "MyTDGroupViewController.h"
  44. #import "HomeDetailController.h"
  45. #import "MyApprovalPageDetail.h"
  46. #import "NoteBookShareVC.h"
  47. #import "MoveViewController.h"
  48. #import "CountDataVC.h"
  49. #import "BookWCDetailVC.h"
  50. #import "BookListenVC.h"
  51. @interface EMChatViewController ()<UIScrollViewDelegate, UINavigationControllerDelegate, UIImagePickerControllerDelegate, EMMultiDevicesDelegate, EMChatManagerDelegate, EMGroupManagerDelegate, EMChatroomManagerDelegate, EMChatBarDelegate, EMMessageCellDelegate, EMChatBarEmoticonViewDelegate, EMChatBarRecordAudioViewDelegate,EMMoreFunctionViewDelegate,EMReadReceiptMsgDelegate,NoteBookShareVCDelegate>
  52. @property (nonatomic,strong) dispatch_queue_t msgQueue;
  53. @property (nonatomic,strong) UIView * titleV;
  54. @property (nonatomic,strong) UIButton * backBtn;
  55. @property (nonatomic,strong) UIButton * tabBtn;
  56. @property (nonatomic,strong) UIButton * mangerBtn;
  57. @property (nonatomic,strong) UILabel * titleL;
  58. @property (strong,nonatomic) DrawerView *drawerView;
  59. @property (nonatomic,assign) BOOL isFirstLoadMsg;
  60. @property (nonatomic,assign) BOOL isViewDidAppear;
  61. @property (nonatomic,strong) EMConversationModel *conversationModel;
  62. @property (nonatomic,strong) NSString *moreMsgId; //第一条消息的消息id
  63. @property (nonatomic,strong) UILabel *titleLabel;
  64. @property (nonatomic,strong) UILabel *titleDetailLabel;
  65. @property (nonatomic,strong) EMChatBar *chatBar;
  66. @property (nonatomic,strong) UIImagePickerController *imagePicker;
  67. @property (nonatomic,strong) EMGroup *group;
  68. //阅读回执
  69. @property (nonatomic,strong) EMReadReceiptMsgViewController *readReceiptControl;
  70. //长按操作栏
  71. @property (strong, nonatomic) NSIndexPath *menuIndexPath;
  72. @property (nonatomic, strong) UIMenuController *menuController;
  73. @property (nonatomic, strong) UIMenuItem *deleteMenuItem;
  74. @property (nonatomic, strong) UIMenuItem *copyMenuItem;
  75. @property (nonatomic, strong) UIMenuItem *recallMenuItem;
  76. @property (nonatomic, strong) UIMenuItem *transpondMenuItem;
  77. @property (nonatomic, strong) UIMenuItem *playAndRecordMenuItem;
  78. //消息格式化
  79. @property (nonatomic, assign) NSTimeInterval msgTimelTag;
  80. //@
  81. @property (nonatomic,assign) BOOL isWillInputAt;
  82. @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
  83. @property (strong, nonatomic) UIImage *sendImage;
  84. //Typing
  85. @property (nonatomic,assign) BOOL isTyping;
  86. @property (nonatomic,assign) BOOL enableTyping;
  87. @property (nonatomic,copy) NSMutableArray *userInfoArray;
  88. @property (nonatomic,copy) NSMutableArray *chatDistoryArray;
  89. @property (nonatomic,assign) NSInteger UserId;
  90. @property (nonatomic,assign) BOOL backRoot;
  91. @end
  92. @implementation EMChatViewController
  93. - (instancetype)initWithConversationId:(NSString *)aId
  94. type:(EMConversationType)aType
  95. createIfNotExist:(BOOL)aIsCreate
  96. {
  97. self = [super init];
  98. if (self) {
  99. EMConversation *conversation = [[EMClient sharedClient].chatManager getConversation:aId type:aType createIfNotExist:aIsCreate];
  100. _conversationModel = [[EMConversationModel alloc] initWithEMModel:conversation];
  101. }
  102. return self;
  103. }
  104. - (instancetype)initWithCoversationModel:(EMConversationModel *)aConversationModel
  105. {
  106. self = [super init];
  107. if (self) {
  108. _conversationModel = aConversationModel;
  109. }
  110. return self;
  111. }
  112. - (void)viewDidLoad {
  113. [super viewDidLoad];
  114. NSLog(@"conversationId===%@",_conversationModel.emModel.conversationId);
  115. // Do any additional setup after loading the view.
  116. self.msgQueue = dispatch_queue_create("emmessage.com", NULL);
  117. self.msgTimelTag = -1;
  118. [self _setupChatSubviews];
  119. [[EMClient sharedClient] addMultiDevicesDelegate:self delegateQueue:nil];
  120. [[EMClient sharedClient].chatManager addDelegate:self delegateQueue:nil];
  121. [[EMClient sharedClient].groupManager addDelegate:self delegateQueue:nil];
  122. [[EMClient sharedClient].roomManager addDelegate:self delegateQueue:nil];
  123. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleWillPushCallController:) name:CALL_PUSH_VIEWCONTROLLER object:nil];
  124. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleCleanMessages:) name:CHAT_CLEANMESSAGES object:nil];
  125. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleGroupSubjectUpdated:) name:GROUP_SUBJECT_UPDATED object:nil];
  126. self.isTyping = NO;
  127. self.enableTyping = NO;
  128. if ([EMDemoOptions sharedOptions].isChatTyping && self.conversationModel.emModel.type == EMConversationTypeChat) {
  129. self.enableTyping = YES;
  130. }
  131. if (self.conversationModel.emModel.type == EMConversationTypeChatRoom) {
  132. [self _joinChatroom];
  133. } else {
  134. self.isFirstLoadMsg = YES;
  135. [self tableViewDidTriggerHeaderRefresh];
  136. }
  137. [self.view addSubview:self.noteBookShareVC.view];
  138. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapTableViewAction:)];
  139. [self.tableView addGestureRecognizer:tap];
  140. }
  141. - (void)viewWillAppear:(BOOL)animated
  142. {
  143. [super viewWillAppear:animated];
  144. self.isViewDidAppear = YES;
  145. [EMConversationHelper markAllAsRead:self.conversationModel];
  146. self.navigationController.navigationBar.hidden = YES;
  147. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deleteConversationMsg) name:DELETECONVERSATIONMSG object:nil];
  148. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoardWillShow:) name:UIKeyboardWillShowNotification object:nil];
  149. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoardWillHide:) name:UIKeyboardWillHideNotification object:nil];
  150. }
  151. - (void)viewWillDisappear:(BOOL)animated
  152. {
  153. [super viewWillDisappear:animated];
  154. self.isViewDidAppear = NO;
  155. if (self.enableTyping && self.isTyping) {
  156. [self _sendEndTyping];
  157. }
  158. if (self.chatBar.textView.text.length > 0) {
  159. [self saveUserInfoInDocument:self.chatBar.textView.text];
  160. }else{
  161. [self clearUserInfoInDocument];
  162. }
  163. [self.chatBar mas_updateConstraints:^(MASConstraintMaker *make) {
  164. if (@available(iOS 11.0, *)) {
  165. make.bottom.mas_equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  166. } else {
  167. make.bottom.mas_equalTo(self.view.mas_bottom);
  168. }
  169. }];
  170. [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
  171. [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
  172. }
  173. - (void)dealloc
  174. {
  175. self.isViewDidAppear = NO;
  176. [self.chatBar removeFromSuperview];
  177. [[EMClient sharedClient] removeMultiDevicesDelegate:self];
  178. [[EMClient sharedClient].chatManager removeDelegate:self];
  179. [[EMClient sharedClient].groupManager removeDelegate:self];
  180. [[EMClient sharedClient].roomManager removeDelegate:self];
  181. [[NSNotificationCenter defaultCenter] removeObserver:self];
  182. }
  183. - (BOOL)canBecomeFirstResponder
  184. {
  185. return YES;
  186. }
  187. #pragma mark - Subviews
  188. - (void)_setupChatSubviews
  189. {
  190. NSLog(@"%@",self.conversationModel.emModel.conversationId);
  191. [self _setupNavigationBarTitle];
  192. self.view.backgroundColor = [UIColor whiteColor];
  193. self.showRefreshHeader = YES;
  194. self.chatBar = [[EMChatBar alloc] init];
  195. self.chatBar.delegate = self;
  196. [self.view addSubview:self.chatBar];
  197. [self.chatBar mas_makeConstraints:^(MASConstraintMaker *make) {
  198. make.left.mas_equalTo(self.view);
  199. make.right.mas_equalTo(self.view);
  200. if (@available(iOS 11.0, *)) {
  201. make.bottom.mas_equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  202. } else {
  203. make.bottom.mas_equalTo(self.view.mas_bottom);
  204. }
  205. make.height.offset(56);
  206. }];
  207. if ([self getUserInfoInDocument].length > 0) {
  208. self.chatBar.textView.text = [self getUserInfoInDocument];
  209. }
  210. WS(weakSelf);
  211. self.chatBar.clickMore = ^(NSInteger index, NSString * _Nonnull title) {
  212. [weakSelf selectMoreMenu:index title:title];
  213. };
  214. [self _setupChatBarMoreViews];
  215. self.tableView.backgroundColor = kColor_LightGray;
  216. self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  217. self.tableView.rowHeight = UITableViewAutomaticDimension;
  218. self.tableView.estimatedRowHeight = 130;
  219. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  220. make.top.mas_equalTo(self.titleV.mas_bottom);
  221. make.left.mas_equalTo(self.view);
  222. make.right.mas_equalTo(self.view);
  223. make.bottom.mas_equalTo(self.chatBar.mas_top);
  224. }];
  225. }
  226. -(DrawerView *)drawerView{
  227. if(!_drawerView){
  228. _drawerView = [[DrawerView alloc] init];
  229. }
  230. return _drawerView;
  231. }
  232. - (void)_setupNavigationBarTitle
  233. {
  234. [self.view addSubview:self.titleV];
  235. [self.titleV mas_makeConstraints:^(MASConstraintMaker *make) {
  236. make.top.left.right.mas_equalTo(self.view);
  237. make.height.mas_offset(IS_IPHONEX?88:64);
  238. }];
  239. [self.titleV addSubview:self.backBtn];
  240. [self.titleV addSubview:self.tabBtn];
  241. [self.titleV addSubview:self.titleL];
  242. [self.titleV addSubview:self.mangerBtn];
  243. [self.backBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  244. make.left.bottom.mas_equalTo(self.titleV);
  245. make.size.mas_offset(CGSizeMake(50, 44));
  246. }];
  247. [self.tabBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  248. make.bottom.mas_equalTo(self.titleV);
  249. make.left.mas_equalTo(self.backBtn.mas_right);
  250. make.size.mas_offset(CGSizeMake(35, 44));
  251. }];
  252. [self.mangerBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  253. make.right.bottom.mas_equalTo(self.titleV);
  254. make.size.mas_offset(CGSizeMake(50, 44));
  255. }];
  256. [self.titleL mas_makeConstraints:^(MASConstraintMaker *make) {
  257. make.centerX.mas_equalTo(self.titleV);
  258. make.centerY.mas_equalTo(self.backBtn);
  259. make.height.mas_greaterThanOrEqualTo(10);
  260. make.width.mas_lessThanOrEqualTo(SCREEN_WIDTH - 160);
  261. }];
  262. self.titleL.text = self.conversationModel.name;
  263. WS(weakSelf);
  264. [self.backBtn setAction:^{
  265. if (weakSelf.backRoot) {
  266. [weakSelf back1];
  267. }else{
  268. weakSelf.hidesBottomBarWhenPushed = NO;
  269. [weakSelf.navigationController popViewControllerAnimated:YES];
  270. }
  271. }];
  272. [self.tabBtn setAction:^{
  273. [[UtilsTools getWindow] addSubview:weakSelf.drawerView];
  274. weakSelf.drawerView.SelectDrawerBlock = ^(NSIndexPath * _Nonnull indexPath) {
  275. if (![weakSelf.tabBarController isKindOfClass:[TabBarController class]]) {
  276. [TabBarController sharedTabBarController].tabBar.hidden = NO;
  277. [weakSelf.tabBarController.navigationController popViewControllerAnimated:NO];
  278. }
  279. if ([weakSelf.navigationController.viewControllers count] > 1) {
  280. [weakSelf.navigationController popToRootViewControllerAnimated:NO];
  281. }
  282. switch (indexPath.section) {
  283. case 0:
  284. {
  285. [[TabBarController sharedTabBarController] setSelectedIndex:indexPath.row];
  286. }
  287. break;
  288. case 1:
  289. {
  290. switch (indexPath.row) {
  291. case 0:
  292. {
  293. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  294. }
  295. break;
  296. case 1:
  297. {
  298. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  299. }
  300. break;
  301. default:
  302. {
  303. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  304. }
  305. break;
  306. }
  307. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  308. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(indexPath.row)}];
  309. });
  310. }
  311. break;
  312. default:
  313. {
  314. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  315. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  316. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(4 + indexPath.row)}];
  317. });
  318. }
  319. break;
  320. }
  321. };
  322. weakSelf.drawerView.frame = CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT);// - kNavigationHeight
  323. }];
  324. [self.mangerBtn setAction:^{
  325. if (weakSelf.chatType == ChatType_SingleChat) {
  326. ChatMsgPersonInfoVC * vc = [ChatMsgPersonInfoVC initChatMsgPersonInfoVC];
  327. vc.refreshStatus = ^(BOOL isTop) {
  328. weakSelf.isTop = isTop;
  329. };
  330. vc.listId = weakSelf.listId;
  331. vc.IsTop = weakSelf.isTop;
  332. vc.model = weakSelf.sModel;
  333. [weakSelf.navigationController pushViewController:vc animated:YES];
  334. }else{
  335. ChatMsgDetailChatInfoVC *vc = [ChatMsgDetailChatInfoVC initChatMsgDetailChatInfoVC];
  336. vc.GroupChatImId = weakSelf.toUserId;
  337. vc.GroupId = weakSelf.GroupId;
  338. vc.GroupName = weakSelf.conversationModel.name;
  339. vc.upDataChatBlock = ^(NSString * _Nonnull name) {
  340. weakSelf.titleL.text = name;
  341. };
  342. [weakSelf.navigationController pushViewController:vc animated:YES];
  343. }
  344. }];
  345. }
  346. - (void)back1
  347. {
  348. for (NSInteger i = (self.navigationController.viewControllers.count - 1); i >= 0 ;i --) {
  349. if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicDetailVC")]
  350. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"WorkFlowDetailsController")]
  351. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"SourceGroupSearchVC")]
  352. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicSearchVC")]
  353. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"TDGroupInfoListVC")]
  354. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"CommonNoteVC")]
  355. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"SourceHomeVC")]
  356. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyInfoVC")]
  357. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyFavoriteVC")]
  358. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"BookWCDetailVC")]
  359. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"BookListenVC")]
  360. ||[self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"CommonHomeVC")]) {
  361. [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  362. return;
  363. }
  364. }
  365. }
  366. - (void)_setupChatBarMoreViews
  367. {
  368. //语音
  369. NSString *path = [self _getAudioOrVideoPath];
  370. EMChatBarRecordAudioView *recordView = [[EMChatBarRecordAudioView alloc] initWithRecordPath:path];
  371. recordView.delegate = self;
  372. self.chatBar.recordAudioView = recordView;
  373. //表情
  374. EMChatBarEmoticonView *moreEmoticonView = [[EMChatBarEmoticonView alloc] init];
  375. moreEmoticonView.delegate = self;
  376. self.chatBar.moreEmoticonView = moreEmoticonView;
  377. //更多
  378. if (self.conversationModel.emModel.type == EMConversationTypeGroupChat) {
  379. EMMoreFunctionView *moreFunction = [[EMMoreFunctionView alloc]init];
  380. moreFunction.delegate = self;
  381. self.chatBar.moreFunctionView = moreFunction;
  382. }
  383. }
  384. - (NSString *)_getAudioOrVideoPath
  385. {
  386. NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject];
  387. path = [path stringByAppendingPathComponent:@"EMDemoRecord"];
  388. if (![[NSFileManager defaultManager] fileExistsAtPath:path]) {
  389. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  390. }
  391. return path;
  392. }
  393. #pragma mark - Table view data source
  394. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  395. return 1;
  396. }
  397. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  398. return [self.dataArray count];
  399. }
  400. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  401. id obj = [self.dataArray objectAtIndex:indexPath.row];
  402. NSString *cellString = nil;
  403. if ([obj isKindOfClass:[NSString class]]) {
  404. cellString = (NSString *)obj;
  405. } else if ([obj isKindOfClass:[EMMessageModel class]]) {
  406. EMMessageModel *model = (EMMessageModel *)obj;
  407. if (model.type == EMMessageTypeExtRecall) {
  408. cellString = @"您撤回一条消息";
  409. }
  410. }
  411. if ([cellString length] > 0) {
  412. EMMessageTimeCell *cell = (EMMessageTimeCell *)[tableView dequeueReusableCellWithIdentifier:@"EMMessageTimeCell"];
  413. // Configure the cell...
  414. if (cell == nil || !cell) {
  415. cell = [[EMMessageTimeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"EMMessageTimeCell"];
  416. }
  417. cell.timeLabel.text = cellString;
  418. return cell;
  419. } else {
  420. EMMessageModel *model = (EMMessageModel *)obj;
  421. if ([[model.emModel.ext objectForKey:@"app"] boolValue]) {
  422. model.type = EMMessageTypeExtApp;
  423. }
  424. NSString *identifier = [EMMessageCell cellIdentifierWithDirection:model.direction type:model.type];
  425. EMMessageCell *cell = (EMMessageCell *)[tableView dequeueReusableCellWithIdentifier:identifier];
  426. // Configure the cell...
  427. if (cell == nil || !cell) {
  428. cell = [[EMMessageCell alloc] initWithDirection:model.direction type:model.type];
  429. }
  430. cell.delegate = self;
  431. if (self.chatType == ChatType_SingleChat) {
  432. if (model.emModel.direction == EMMessageDirectionSend){
  433. [cell setIconUrl:[AppUserModel sharedAppUserModel].AvatarUrl];
  434. }else{
  435. [cell setIconUrl:self.ReceiveIcon];
  436. }
  437. }else{
  438. [self.groupUserInfoArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  439. if ([obj isKindOfClass:[NSDictionary class]]) {
  440. if ([[obj objectForKey:@"ImId"] integerValue] == [model.emModel.from integerValue]) {
  441. [cell setIconUrl:[obj objectForKey:@"AvatarUrl"]];
  442. }
  443. }
  444. }];
  445. }
  446. cell.model = model;
  447. return cell;
  448. }
  449. }
  450. #pragma mark - UIScrollViewDelegate
  451. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  452. {
  453. [self.view endEditing:YES];
  454. [self.chatBar clearMoreViewAndSelectedButton];
  455. }
  456. #pragma mark - UIImagePickerControllerDelegate
  457. - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
  458. {
  459. NSString *mediaType = info[UIImagePickerControllerMediaType];
  460. if ([mediaType isEqualToString:(NSString *)kUTTypeMovie]) {
  461. NSURL *videoURL = info[UIImagePickerControllerMediaURL];
  462. // we will convert it to mp4 format
  463. NSURL *mp4 = [self _videoConvert2Mp4:videoURL];
  464. NSFileManager *fileman = [NSFileManager defaultManager];
  465. if ([fileman fileExistsAtPath:videoURL.path]) {
  466. NSError *error = nil;
  467. [fileman removeItemAtURL:videoURL error:&error];
  468. if (error) {
  469. NSLog(@"failed to remove file, error:%@.", error);
  470. }
  471. }
  472. [self _sendVideoAction:mp4];
  473. } else {
  474. NSURL *url = info[UIImagePickerControllerReferenceURL];
  475. if (url == nil) {
  476. UIImage *orgImage = info[UIImagePickerControllerOriginalImage];
  477. NSData *data = UIImageJPEGRepresentation(orgImage, 1);
  478. [self _sendImageDataAction:data];
  479. } else {
  480. if ([[UIDevice currentDevice].systemVersion doubleValue] >= 9.0f) {
  481. PHFetchResult *result = [PHAsset fetchAssetsWithALAssetURLs:@[url] options:nil];
  482. [result enumerateObjectsUsingBlock:^(PHAsset *asset , NSUInteger idx, BOOL *stop){
  483. if (asset) {
  484. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:nil resultHandler:^(NSData *data, NSString *uti, UIImageOrientation orientation, NSDictionary *dic){
  485. if (data != nil) {
  486. [self _sendImageDataAction:data];
  487. } else {
  488. SHOWERROR(@"图片太大,请选择其他图片");
  489. }
  490. }];
  491. }
  492. }];
  493. } else {
  494. ALAssetsLibrary *alasset = [[ALAssetsLibrary alloc] init];
  495. [alasset assetForURL:url resultBlock:^(ALAsset *asset) {
  496. if (asset) {
  497. ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
  498. Byte *buffer = (Byte*)malloc((size_t)[assetRepresentation size]);
  499. NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
  500. NSData *fileData = [NSData dataWithBytesNoCopy:buffer length:bufferSize freeWhenDone:YES];
  501. [self _sendImageDataAction:fileData];
  502. }
  503. } failureBlock:NULL];
  504. }
  505. }
  506. }
  507. [picker dismissViewControllerAnimated:YES completion:nil];
  508. }
  509. - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
  510. {
  511. [self.imagePicker dismissViewControllerAnimated:YES completion:nil];
  512. }
  513. #pragma mark - EMChatBarDelegate
  514. - (void)_willInputAt:(EMTextView *)aInputView
  515. {
  516. do {
  517. if (self.conversationModel.emModel.type != EMConversationTypeGroupChat) {
  518. break;
  519. }
  520. NSString *text = aInputView.text;
  521. // if (![text hasSuffix:@"@"]) {
  522. // break;
  523. // }
  524. EMGroup *group = [EMGroup groupWithId:self.conversationModel.emModel.conversationId];
  525. if (!group) {
  526. break;
  527. }
  528. [self.view endEditing:YES];
  529. EMAtGroupMembersViewController *controller = [[EMAtGroupMembersViewController alloc] initWithGroup:group];
  530. [self.navigationController pushViewController:controller animated:YES];
  531. [controller setSelectedCompletion:^(NSString * _Nonnull aName) {
  532. NSString *newStr = [NSString stringWithFormat:@"%@%@ ", text, aName];
  533. aInputView.text = newStr;
  534. aInputView.selectedRange = NSMakeRange(newStr.length, 0);
  535. [aInputView becomeFirstResponder];
  536. }];
  537. } while (0);
  538. }
  539. - (BOOL)inputView:(EMTextView *)aInputView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
  540. {
  541. self.isWillInputAt = NO;
  542. if ([text isEqualToString:@"\n"]) {
  543. [self _sendTextAction:aInputView.text ext:nil];
  544. return NO;
  545. } else if ([text isEqualToString:@"@"]) {
  546. self.isWillInputAt = YES;
  547. } else if ([text length] == 0) {
  548. }
  549. return YES;
  550. }
  551. - (void)inputViewDidChange:(EMTextView *)aInputView
  552. {
  553. if (self.isWillInputAt && self.conversationModel.emModel.type == EMConversationTypeGroupChat) {
  554. NSString *text = aInputView.text;
  555. if ([text hasSuffix:@"@"]) {
  556. self.isWillInputAt = NO;
  557. [self _willInputAt:aInputView];
  558. }
  559. }
  560. if (self.enableTyping) {
  561. if (!self.isTyping) {
  562. self.isTyping = YES;
  563. [self _sendBeginTyping];
  564. }
  565. }
  566. }
  567. - (void)chatBarClickMoreType:(SmartBarType)type
  568. {
  569. WS(weakSelf);
  570. switch (type) {
  571. case SmartBarPhoto:
  572. {
  573. [self chatBarDidPhotoAction];
  574. }
  575. break;
  576. case SmartBarCamera:
  577. {
  578. [self chatBarDidCameraAction];
  579. }
  580. break;
  581. case SmartBarNotes:
  582. {
  583. [[FWZGetNoteBookTool sharedTool] openNoteBookListChooseNoteBookBlock:^(NSMutableArray<MyNoteBookSubModel *> * _Nonnull noteArr) {
  584. NSLog(@"SmartBarNotes %@",noteArr);
  585. for (MyNoteBookSubModel * model in noteArr) {
  586. switch (model.AttributeValue) {
  587. case 1:
  588. {
  589. [weakSelf _sendTextAction:@"笔记" ext:@{@"app":@(YES),
  590. @"app_type":@(CollectModel_NoteBook),
  591. @"app_title":model.Title,
  592. @"app_id":@(model.MiddleId),
  593. @"app_content":@"来自-笔记",
  594. @"app_sourceUserId":@(model.SourceUserId == 0 ? [AppUserModel sharedAppUserModel].Id : model.SourceUserId),
  595. @"app_min_url":@"",
  596. @"app_url":@""
  597. }];
  598. }
  599. break;
  600. default:
  601. {
  602. [weakSelf _sendTextAction:@"笔记" ext:@{@"app":@(YES),
  603. @"app_type":@(CollectModel_NoteFile),
  604. @"app_title":model.FolderName,
  605. @"app_id":@(model.Id),
  606. @"app_sourceUserId":@(model.SourceUserId == 0 ? [AppUserModel sharedAppUserModel].Id : model.SourceUserId),
  607. @"app_content":@"来自-笔记",
  608. @"app_min_url":@"",
  609. @"app_url":@""
  610. }];
  611. }
  612. break;
  613. }
  614. }
  615. }];
  616. }
  617. break;
  618. case SmartBarCollection:
  619. {
  620. [[FWZGetNoteBookTool sharedTool] openCollectListChooseCollectBlock:^(NSMutableArray<MyFavoriteSubModel *> * _Nonnull collectArr) {
  621. NSLog(@"SmartBarCollection %@",collectArr);
  622. for (MyFavoriteSubModel * model in collectArr) {
  623. [weakSelf sendExtWithCollectModel:model];
  624. }
  625. }];
  626. }
  627. break;
  628. case SmartBarFile:
  629. {
  630. [self chatBarDidFileAction];
  631. }
  632. break;
  633. default:
  634. break;
  635. }
  636. }
  637. - (void)sendExtWithCollectModel:(MyFavoriteSubModel *)model
  638. {
  639. NSString * text = @"";
  640. switch (model.CollectionType) {
  641. case CollectModel_NewTopic:
  642. text = @"话题";
  643. break;
  644. case CollectModel_Toipc:
  645. text = @"小组话题";
  646. break;
  647. case CollectModel_Notice:
  648. text = @"通知";
  649. break;
  650. case CollectModel_NoteBook:
  651. text = @"笔记";
  652. break;
  653. case CollectModel_CollectFile:
  654. text = @"文件夹";
  655. break;
  656. case CollectModel_NoteFile:
  657. text = @"文件夹";
  658. break;
  659. case CollectModel_file:
  660. text = @"文件";
  661. break;
  662. case CollectModel_Image:
  663. text = @"图片";
  664. break;
  665. case CollectModel_meetMian:
  666. text = @"会议纪要";
  667. break;
  668. case CollectModel_InterMail:
  669. text = @"站内信";
  670. break;
  671. case CollectModel_NoSignMail:
  672. text = @"站内信";
  673. break;
  674. default:
  675. text = @"话题";
  676. break;
  677. }
  678. switch (model.AttributeValue) {
  679. case 1:
  680. {
  681. [self _sendTextAction:text ext:@{@"app":@(YES),
  682. @"app_type":@(model.CollectionType),
  683. @"app_title":model.Title,
  684. @"app_content":@"来自-收藏",
  685. @"app_sourceUserId":@(model.SourceUserId == 0 ? [AppUserModel sharedAppUserModel].Id : model.SourceUserId),
  686. @"app_id":@(model.CollectionDataId),
  687. @"app_min_url":model.Data.MinFile,
  688. @"app_url":model.Data.File
  689. }];
  690. }
  691. break;
  692. default:
  693. {
  694. [self _sendTextAction:text ext:@{@"app":@(YES),
  695. @"app_type":@(CollectModel_CollectFile),
  696. @"app_title":model.FolderName,
  697. @"app_content":@"来自-收藏",
  698. @"app_sourceUserId":@(model.SourceUserId == 0 ? [AppUserModel sharedAppUserModel].Id : model.SourceUserId),
  699. @"app_id":@(model.Id),
  700. @"app_min_url":model.Data.MinFile,
  701. @"app_url":model.Data.File
  702. }];
  703. }
  704. break;
  705. }
  706. }
  707. - (void)chatBarDidPhotoAction
  708. {
  709. WS(weakSelf);
  710. [self.view endEditing:YES];
  711. TZImagePickerController *imagePickerVc = [[TZImagePickerController alloc] initWithMaxImagesCount:9 delegate:nil];
  712. [imagePickerVc setNavLeftBarButtonSettingBlock:^(UIButton *leftButton){
  713. leftButton.hidden = YES;
  714. }];
  715. imagePickerVc.showSelectBtn = NO;
  716. imagePickerVc.allowCrop = YES;
  717. imagePickerVc.cropRect = CGRectMake(0, (SCREEN_HEIGHT - SCREEN_WIDTH) * 0.5, SCREEN_WIDTH, SCREEN_WIDTH);
  718. imagePickerVc.allowTakePicture = NO;
  719. imagePickerVc.allowTakeVideo = NO;
  720. imagePickerVc.allowPickingOriginalPhoto = NO;
  721. imagePickerVc.allowPickingGif = NO;
  722. [imagePickerVc setIsStatusBarDefault:YES];
  723. [imagePickerVc setNaviTitleColor:[UIColor blackColor]];
  724. [imagePickerVc setBarItemTextColor:[UIColor blackColor]];
  725. [imagePickerVc setDidFinishPickingPhotosHandle:^(NSArray<UIImage *> *photos, NSArray *assets, BOOL isSelectOriginalPhoto) {
  726. // if (assets.count > 0) {
  727. // for (PHAsset *asset in assets) {
  728. // PHVideoRequestOptions *options = [[PHVideoRequestOptions alloc] init];
  729. // options.version = PHImageRequestOptionsVersionCurrent;
  730. // options.deliveryMode = PHVideoRequestOptionsDeliveryModeAutomatic;
  731. // PHImageManager *manager = [PHImageManager defaultManager];
  732. // [manager requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset * _Nullable asset, AVAudioMix * _Nullable audioMix, NSDictionary * _Nullable info) {
  733. // AVURLAsset *urlAsset = (AVURLAsset *)asset;
  734. // NSURL *url = urlAsset.URL;
  735. // [weakSelf _sendVideoAction:url];
  736. // }];
  737. // }
  738. // }
  739. if (photos.count > 0) {
  740. for (UIImage * image in photos) {
  741. NSData *data = UIImageJPEGRepresentation(image, 1);
  742. [weakSelf _sendImageDataAction:data];
  743. }
  744. }
  745. }];
  746. [self presentViewController:imagePickerVc animated:YES completion:nil];
  747. }
  748. - (void)chatBarDidCameraAction
  749. {
  750. [self.view endEditing:YES];
  751. //#if TARGET_IPHONE_SIMULATOR
  752. // [EMAlertController showErrorAlert:@"模拟器不支持照相机"];
  753. //#elif TARGET_OS_IPHONE
  754. self.imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
  755. self.imagePicker.mediaTypes = @[(NSString *)kUTTypeImage, (NSString *)kUTTypeMovie];
  756. [self presentViewController:self.imagePicker animated:YES completion:nil];
  757. //#endif
  758. }
  759. - (void)chatBarDidFileAction
  760. {
  761. WS(weakSelf);
  762. [[FWZFileGetTool sharedTool] openFileWithCrop:YES showImgBlock:^(NSString * _Nonnull fileUrlStr) {
  763. } choosFileBlock:^(NSData * _Nonnull fileData, NSString * _Nonnull fileName) {
  764. // EMFileMessageBody * body = [[EMFileMessageBody alloc] initWithData:fileData displayName:fileName];
  765. // [weakSelf _sendMessageWithBody:body ext:nil isUpload:YES];
  766. SHOWLOADING
  767. [[HttpManager sharedHttpManager] HeaderUploadFileUrl:Host(Modify_UserImages_Post) parameters:@{} fileData:fileData fileKey:@"file" fileName:fileName mimeType:@"multipart/form-data" success:^(id _Nonnull responseObject) {
  768. REMOVESHOW
  769. NSDictionary * dict = responseObject[0];
  770. if ([dict[@"FileType"] isEqualToString:@"image"]) {
  771. [weakSelf _sendImageDataAction:fileData];
  772. }else{
  773. [weakSelf _sendTextAction:@"文件" ext:@{@"app":@(YES),
  774. @"app_type":@(CollectModel_file),
  775. @"app_title":fileName,
  776. @"app_content":@"来自-文件夹",
  777. @"app_sourceUserId":@([AppUserModel sharedAppUserModel].Id),
  778. @"app_id":@([dict[@"FileId"] integerValue]),
  779. @"app_min_url":dict[@"MinAbsolutePath"],
  780. @"app_url":dict[@"AbsolutePath"]
  781. }];
  782. }
  783. } failure:^(NSError * _Nonnull error) {
  784. REMOVESHOW
  785. }];
  786. }];
  787. }
  788. - (void)chatBarDidLocationAction
  789. {
  790. EMLocationViewController *controller = [[EMLocationViewController alloc] init];
  791. [controller setSendCompletion:^(CLLocationCoordinate2D aCoordinate, NSString * _Nonnull aAddress) {
  792. [self _sendLocationAction:aCoordinate address:aAddress];
  793. }];
  794. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
  795. [self.navigationController presentViewController:navController animated:YES completion:nil];
  796. }
  797. - (void)chatBarDidCallAction
  798. {
  799. self.alertController = [UIAlertController alertControllerWithTitle:@"实时通话类型" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  800. __weak typeof(self) weakself = self;
  801. if (self.conversationModel.emModel.type == EMConversationTypeChat) {
  802. [self.alertController addAction:[UIAlertAction actionWithTitle:@"语音通话" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  803. [weakself.chatBar clearMoreViewAndSelectedButton];
  804. [[NSNotificationCenter defaultCenter] postNotificationName:CALL_MAKE1V1 object:@{CALL_CHATTER:weakself.conversationModel.emModel.conversationId, CALL_TYPE:@(EMCallTypeVoice)}];
  805. }]];
  806. [self.alertController addAction:[UIAlertAction actionWithTitle:@"视频通话" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  807. [weakself.chatBar clearMoreViewAndSelectedButton];
  808. [[NSNotificationCenter defaultCenter] postNotificationName:CALL_MAKE1V1 object:@{CALL_CHATTER:weakself.conversationModel.emModel.conversationId, CALL_TYPE:@(EMCallTypeVideo)}];
  809. }]];
  810. } else {
  811. [self.alertController addAction:[UIAlertAction actionWithTitle:@"会议模式" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  812. [weakself.chatBar clearMoreViewAndSelectedButton];
  813. [[NSNotificationCenter defaultCenter] postNotificationName:CALL_MAKECONFERENCE object:@{CALL_TYPE:@(EMConferenceTypeLargeCommunication), CALL_MODEL:weakself.conversationModel, NOTIF_NAVICONTROLLER:self.navigationController}];
  814. }]];
  815. [self.alertController addAction:[UIAlertAction actionWithTitle:@"互动模式" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  816. [weakself.chatBar clearMoreViewAndSelectedButton];
  817. [[NSNotificationCenter defaultCenter] postNotificationName:CALL_MAKECONFERENCE object:@{CALL_TYPE:@(EMConferenceTypeLive), CALL_MODEL:weakself.conversationModel, NOTIF_NAVICONTROLLER:self.navigationController}];
  818. }]];
  819. }
  820. [self.alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  821. }]];
  822. [[NSNotificationCenter defaultCenter] postNotificationName:@"didAlert" object:@{@"alert":self.alertController}];
  823. [self presentViewController:self.alertController animated:YES completion:nil];
  824. }
  825. //阅读回执跳转
  826. - (void)chatBarMoreFunctionReadReceipt
  827. {
  828. self.readReceiptControl = [[EMReadReceiptMsgViewController alloc]init];
  829. self.readReceiptControl.delegate = self;
  830. self.readReceiptControl.modalPresentationStyle = 0;
  831. //[self.navigationController pushViewController:readReceipt animated:NO];
  832. [self presentViewController:self.readReceiptControl animated:NO completion:nil];
  833. }
  834. //阅读回执发送信息
  835. - (void)sendReadReceiptMsg:(NSString *)msg
  836. {
  837. NSString *str = msg;
  838. NSLog(@"\n%@",str);
  839. if (self.conversationModel.emModel.type == EMConversationTypeGroupChat) {
  840. [[EMClient sharedClient].groupManager getGroupSpecificationFromServerWithId:self.conversationModel.emModel.conversationId completion:^(EMGroup *aGroup, EMError *aError) {
  841. NSLog(@"\n -------- sendError: %@",aError);
  842. if (!aError) {
  843. self.group = aGroup;
  844. //是群主才可以发送阅读回执信息
  845. [self _sendTextAction:str ext:@{MSG_EXT_READ_RECEIPT:@"receipt"}];
  846. } else {
  847. SHOWERROR(@"获取群组失败");
  848. }
  849. }];
  850. }else {
  851. [self _sendTextAction:str ext:nil];
  852. }
  853. }
  854. - (void)chatBarDidShowMoreViewAction:(BOOL)isKeyBord
  855. {
  856. WS(weakSelf);
  857. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  858. dispatch_async(dispatch_get_main_queue(), ^{
  859. [weakSelf.tableView mas_updateConstraints:^(MASConstraintMaker *make) {
  860. make.bottom.mas_equalTo(weakSelf.chatBar.mas_top);
  861. }];
  862. [weakSelf performSelector:@selector(_scrollToBottomRow) withObject:nil afterDelay:0.1];
  863. });
  864. });
  865. }
  866. #pragma mark - EMChatBarRecordAudioViewDelegate
  867. - (void)chatBarRecordAudioViewStartRecord
  868. {
  869. }
  870. - (void)chatBarRecordAudioViewStopRecord:(NSString *)aPath
  871. timeLength:(NSInteger)aTimeLength
  872. {
  873. EMVoiceMessageBody *body = [[EMVoiceMessageBody alloc] initWithLocalPath:aPath displayName:@"audio"];
  874. body.duration = (int)aTimeLength;
  875. if(body.duration < 1){
  876. [self showHint:@"按键时间太短."];
  877. return;
  878. }
  879. [self _sendMessageWithBody:body ext:nil isUpload:YES];
  880. }
  881. - (void)chatBarRecordAudioViewCancelRecord
  882. {
  883. }
  884. #pragma mark - EMChatBarEmoticonViewDelegate
  885. - (void)didSelectedEmoticonModel:(EMEmoticonModel *)aModel
  886. {
  887. if (aModel.type == EMEmotionTypeEmoji) {
  888. [self.chatBar inputViewAppendText:aModel.name];
  889. } if (aModel.type == EMEmotionTypeGif) {
  890. NSDictionary *ext = @{MSG_EXT_GIF:@(YES), MSG_EXT_GIF_ID:aModel.eId};
  891. [self _sendTextAction:aModel.name ext:ext];
  892. }
  893. }
  894. - (void)didChatBarEmoticonViewSendAction
  895. {
  896. [self _sendTextAction:self.chatBar.textView.text ext:nil];
  897. }
  898. #pragma mark - EMMessageCellDelegate
  899. //阅读回执详情
  900. - (void)messageReadReceiptDetil:(EMMessageCell *)aCell
  901. {
  902. self.readReceiptControl = [[EMReadReceiptMsgViewController alloc] initWithMessageCell:aCell groupId:self.conversationModel.emModel.conversationId];
  903. self.readReceiptControl.modalPresentationStyle = 0;
  904. //[self.navigationController pushViewController:readReceiptControl animated:NO];
  905. [self presentViewController:self.readReceiptControl animated:NO completion:nil];
  906. }
  907. - (void)messageCellDidSelected:(EMMessageCell *)aCell
  908. {
  909. if (aCell.model.type == EMMessageTypeImage) {
  910. [self _imageMessageCellDidSelected:aCell];
  911. } else if (aCell.model.type == EMMessageTypeLocation) {
  912. [self _locationMessageCellDidSelected:aCell];
  913. } else if (aCell.model.type == EMMessageTypeVoice) {
  914. [self _audioMessageCellDidSelected:aCell];
  915. } else if (aCell.model.type == EMMessageTypeVideo) {
  916. [self _videoMessageCellDidSelected:aCell];
  917. } else if (aCell.model.type == EMMessageTypeFile) {
  918. [self _fileMessageCellDidSelected:aCell];
  919. } else if (aCell.model.type == EMMessageTypeExtCall) {
  920. [self _callMessageCellDidSelected:aCell];
  921. } else if (aCell.model.type == EMMessageTypeExtApp) {
  922. [self appPushWithDictionary:aCell.model.emModel.ext];
  923. } else if (aCell.model.type == EMMessageTypeText) {
  924. }
  925. }
  926. - (void)messageClickUserIcon:(EMMessageCell *)aCell
  927. {
  928. WS(weakSelf);
  929. EMMessage * eModel = (EMMessage *)aCell.model.emModel;
  930. if (self.chatType == ChatType_SingleChat) {
  931. if (eModel.direction == EMMessageDirectionSend){
  932. self.UserId = [AppUserModel sharedAppUserModel].Id;
  933. }else{
  934. self.UserId = self.toUserId;
  935. }
  936. }else{
  937. [self.groupUserInfoArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  938. if ([obj isKindOfClass:[NSDictionary class]]) {
  939. if ([[obj objectForKey:@"ImId"] integerValue] == [eModel.from integerValue]) {
  940. weakSelf.UserId = [[obj objectForKey:@"UserId"] integerValue];
  941. }
  942. }
  943. }];
  944. }
  945. MailListDetailVC * vc = [MailListDetailVC initMailListDetailVC];
  946. vc.indexId = self.UserId;
  947. [self.navigationController pushViewController:vc animated:YES];
  948. }
  949. #pragma mark - 点击自定义消息体
  950. - (void)appPushWithDictionary:(NSDictionary *)dict
  951. {
  952. WS(weakSelf);
  953. CollectModelType type = [[dict objectForKey:@"app_type"] intValue];
  954. NSInteger sourceUserId = [[dict objectForKey:@"app_sourceUserId"] integerValue];
  955. NSInteger Id = [[dict objectForKey:@"app_id"] integerValue];
  956. NSString * title = [dict objectForKey:@"app_title"];
  957. NSString * url = [dict objectForKey:@"app_url"];
  958. switch (type) {
  959. case CollectModel_Group:
  960. {
  961. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  962. vc.GroupId = Id;
  963. vc.titleStr = title;
  964. [self.navigationController pushViewController:vc animated:YES];
  965. }break;
  966. case CollectModel_file:{
  967. DownFileViewController * vc = [[DownFileViewController alloc] init];
  968. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  969. model.Title = title;
  970. model.SoureId = Id;
  971. model.Url = url;
  972. model.MinUrl = dict[@"app_min_url"];
  973. vc.model = model;
  974. [self.navigationController pushViewController:vc animated:YES];
  975. }break;
  976. case CollectModel_Image:{
  977. DownFileViewController * vc = [[DownFileViewController alloc] init];
  978. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  979. model.Title = title;
  980. model.SoureId = Id;
  981. model.Url = url;
  982. model.MinUrl = dict[@"app_min_url"];
  983. vc.model = model;
  984. [self.navigationController pushViewController:vc animated:YES];
  985. }break;
  986. case CollectModel_Aritle:{
  987. SHOWLOADING
  988. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)Id] parameters:@{} success:^(id _Nonnull responseObject) {
  989. REMOVESHOW;
  990. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  991. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  992. vc.type = CollectModel_Aritle;
  993. vc.Id = itemModel.Id;
  994. [weakSelf.navigationController pushViewController:vc animated:YES];
  995. } failure:^(NSError * _Nonnull error) {
  996. SHOWERROR([ZYCTool handerResultData:error]);
  997. }];
  998. }break;
  999. case CollectModel_Text:{
  1000. SHOWLOADING
  1001. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)Id] parameters:@{} success:^(id _Nonnull responseObject) {
  1002. REMOVESHOW;
  1003. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  1004. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1005. vc.type = CollectModel_Aritle;
  1006. vc.Id = itemModel.Id;
  1007. [weakSelf.navigationController pushViewController:vc animated:YES];
  1008. } failure:^(NSError * _Nonnull error) {
  1009. SHOWERROR([ZYCTool handerResultData:error]);
  1010. }];
  1011. }break;
  1012. case CollectModel_Notice:{
  1013. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1014. vc.type = CollectModel_Notice;
  1015. vc.Id = Id;
  1016. [self.navigationController pushViewController:vc animated:YES];
  1017. }break;
  1018. case CollectModel_Toipc:{
  1019. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1020. vc.type = CollectModel_Toipc;
  1021. vc.Id = Id;
  1022. [self.navigationController pushViewController:vc animated:YES];
  1023. }break;
  1024. case CollectModel_NewTopic:{
  1025. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1026. vc.type = CollectModel_NewTopic;
  1027. vc.Id = Id;
  1028. [self.navigationController pushViewController:vc animated:YES];
  1029. }break;
  1030. case CollectModel_NoteBook:{
  1031. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1032. vc.type = CollectModel_NoteBook;
  1033. vc.Id = Id;
  1034. [self.navigationController pushViewController:vc animated:YES];
  1035. }break;
  1036. case CollectModel_Collect:{
  1037. }break;
  1038. case CollectModel_CollectFile:{
  1039. if (sourceUserId == [AppUserModel sharedAppUserModel].Id || sourceUserId == 0) {
  1040. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  1041. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1042. vc.FolderId = Id;
  1043. vc.myTitle = title;
  1044. [self.navigationController pushViewController:vc animated:YES];
  1045. }else{
  1046. OtherFavoriteVC *vc = [OtherFavoriteVC initOtherFavoriteVC];
  1047. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1048. vc.FolderId = Id;
  1049. vc.myTitle = title;
  1050. vc.VisitUserId = sourceUserId;
  1051. [self.navigationController pushViewController:vc animated:YES];
  1052. }
  1053. }break;
  1054. case CollectModel_NoteFile:{
  1055. if (sourceUserId == [AppUserModel sharedAppUserModel].Id || sourceUserId == 0) {
  1056. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  1057. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1058. vc.FolderId = Id;
  1059. vc.myTitle = title;
  1060. vc.VisitUserId = 0;
  1061. [self.navigationController pushViewController:vc animated:YES];
  1062. }else{
  1063. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  1064. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1065. vc.FolderId = Id;
  1066. vc.myTitle = title;
  1067. vc.VisitUserId = sourceUserId;
  1068. [self.navigationController pushViewController:vc animated:YES];
  1069. }
  1070. }break;
  1071. case CollectModel_TopicBooK:{
  1072. if (sourceUserId == [AppUserModel sharedAppUserModel].Id || sourceUserId == 0) {
  1073. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  1074. vc.listType = MyFavoriteListLevelTypeA;
  1075. vc.FolderId = Id;
  1076. vc.myTitle = title;
  1077. vc.VisitUserId = 0;
  1078. vc.TypeValue = 1;
  1079. [self.navigationController pushViewController:vc animated:YES];
  1080. }else{
  1081. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  1082. vc.listType = MyFavoriteListLevelTypeA ;
  1083. vc.FolderId = Id;
  1084. vc.CollectionDataId = Id;
  1085. vc.CollectionType = CollectModel_TopicBooK;
  1086. vc.TypeValue = 1;
  1087. vc.myTitle = title;
  1088. vc.VisitUserId = sourceUserId;
  1089. [self.navigationController pushViewController:vc animated:YES];
  1090. }
  1091. }break;
  1092. case CollectModel_TopicSubBooK:{
  1093. if (sourceUserId == [AppUserModel sharedAppUserModel].Id || sourceUserId == 0) {
  1094. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  1095. vc.listType = MyFavoriteListLevelTypeB;
  1096. vc.FolderId = Id;
  1097. vc.myTitle = title;
  1098. vc.TypeValue = 1;
  1099. [self.navigationController pushViewController:vc animated:YES];
  1100. }else{
  1101. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  1102. vc.listType = MyFavoriteListLevelTypeB ;
  1103. vc.FolderId = Id;
  1104. vc.CollectionDataId = Id;
  1105. vc.CollectionType = CollectModel_TopicSubBooK;
  1106. vc.TypeValue = 1;
  1107. vc.myTitle = title;
  1108. vc.VisitUserId = sourceUserId;
  1109. [self.navigationController pushViewController:vc animated:YES];
  1110. }
  1111. }break;
  1112. case CollectModel_InterMail:{
  1113. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1114. vc.type = CollectModel_InterMail;
  1115. vc.Id = Id;
  1116. [self.navigationController pushViewController:vc animated:YES];
  1117. }break;
  1118. case CollectModel_NoSignMail:{
  1119. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1120. vc.type = CollectModel_InterMail;
  1121. vc.Id = Id;
  1122. [self.navigationController pushViewController:vc animated:YES];
  1123. }break;
  1124. case CollectModel_meetDetail:{
  1125. WorkFlowDetailsController *vc = [[WorkFlowDetailsController alloc] initWithId:Id];
  1126. [self.navigationController pushViewController:vc animated:YES];
  1127. }break;
  1128. case CollectModel_work:{
  1129. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  1130. vc.pageType = Type_ONEC;
  1131. vc.indexId = Id;
  1132. vc.title = title;
  1133. vc.TodoId = Id;
  1134. [self.navigationController pushViewController:vc animated:YES];
  1135. }break;
  1136. case CollectModel_StoreSound:
  1137. {
  1138. BookListenVC * vc = [BookListenVC initBookListenVC];
  1139. vc.Id = Id;
  1140. vc.MediaType = MediaMusicType;
  1141. [self.navigationController pushViewController:vc animated:YES];
  1142. }
  1143. break;
  1144. case CollectModel_StoreVideo:
  1145. {
  1146. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  1147. vc.Id = Id;
  1148. [self.navigationController pushViewController:vc animated:YES];
  1149. }
  1150. break;
  1151. case CollectModel_meetMian:{
  1152. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1153. vc.type = CollectModel_meetMian;
  1154. vc.Id = Id;
  1155. [self.navigationController pushViewController:vc animated:YES];
  1156. }break;
  1157. case CollectModel_financeCount:{
  1158. CountDataVC *vc = [CountDataVC initCountDataVC];
  1159. vc.index = 0;
  1160. vc.titleStr = @"财务统计";
  1161. [self.navigationController pushViewController:vc animated:YES];
  1162. }break;
  1163. case CollectModel_affairsCount:{
  1164. CountDataVC *vc = [CountDataVC initCountDataVC];
  1165. vc.index = 1;
  1166. vc.titleStr = @"人事统计";
  1167. [self.navigationController pushViewController:vc animated:YES];
  1168. }break;
  1169. case CollectModel_publishCount:{
  1170. CountDataVC *vc = [CountDataVC initCountDataVC];
  1171. vc.index = 2;
  1172. vc.titleStr = @"出版统计";
  1173. [self.navigationController pushViewController:vc animated:YES];
  1174. }break;
  1175. default:
  1176. break;
  1177. }
  1178. }
  1179. // OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  1180. // vc.listType = MyFavoriteListLevelTypeA ;
  1181. // vc.FolderId = model.CollectionDataId;
  1182. // vc.CollectionDataId = model.CollectionDataId;
  1183. // vc.CollectionType = model.CollectionType;
  1184. // vc.Author = model.Data.Author;
  1185. // vc.TypeValue = 1;
  1186. // vc.myTitle = model.Title;
  1187. // vc.VisitUserId = model.SourceUserId;
  1188. // [self.navigationController pushViewController:vc animated:YES];
  1189. //}break;
  1190. //case CollectModel_TopicSubBooK:{
  1191. // OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  1192. // vc.listType = MyFavoriteListLevelTypeB ;
  1193. // vc.FolderId = model.CollectionDataId;
  1194. // vc.CollectionDataId = model.CollectionDataId;
  1195. // vc.CollectionType = model.CollectionType;
  1196. // vc.Author = model.Data.Author;
  1197. // vc.TypeValue = 1;
  1198. // vc.myTitle = model.Title;
  1199. // vc.VisitUserId = model.SourceUserId;
  1200. // [self.navigationController pushViewController:vc animated:YES];
  1201. - (void)_imageMessageCellDidSelected:(EMMessageCell *)aCell
  1202. {
  1203. __weak typeof(self) weakself = self;
  1204. void (^downloadThumbBlock)(EMMessageModel *aModel) = ^(EMMessageModel *aModel) {
  1205. [weakself showHint:@"获取缩略图..."];
  1206. [[EMClient sharedClient].chatManager downloadMessageThumbnail:aModel.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1207. if (!error) {
  1208. [weakself.tableView reloadData];
  1209. }
  1210. }];
  1211. };
  1212. EMImageMessageBody *body = (EMImageMessageBody*)aCell.model.emModel.body;
  1213. BOOL isCustomDownload = !([EMClient sharedClient].options.isAutoTransferMessageAttachments);
  1214. if (body.thumbnailDownloadStatus == EMDownloadStatusFailed) {
  1215. if (isCustomDownload) {
  1216. [self _showCustomTransferFileAlertView];
  1217. } else {
  1218. downloadThumbBlock(aCell.model);
  1219. }
  1220. return;
  1221. }
  1222. BOOL isAutoDownloadThumbnail = [EMClient sharedClient].options.isAutoDownloadThumbnail;
  1223. if (body.thumbnailDownloadStatus == EMDownloadStatusPending && !isAutoDownloadThumbnail) {
  1224. downloadThumbBlock(aCell.model);
  1225. return;
  1226. }
  1227. if (body.downloadStatus == EMDownloadStatusSucceed) {
  1228. UIImage *image = [UIImage imageWithContentsOfFile:body.localPath];
  1229. if (image) {
  1230. [[EMImageBrowser sharedBrowser] showImages:@[image] fromController:self];
  1231. return;
  1232. }
  1233. }
  1234. if (isCustomDownload) {
  1235. [self _showCustomTransferFileAlertView];
  1236. return;
  1237. }
  1238. [self showHudInView:self.view hint:@"下载原图..."];
  1239. [[EMClient sharedClient].chatManager downloadMessageAttachment:aCell.model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1240. [weakself hideHud];
  1241. if (error) {
  1242. SHOWERROR(@"下载原图失败");
  1243. } else {
  1244. if (message.direction == EMMessageDirectionReceive && !message.isReadAcked) {
  1245. [[EMClient sharedClient].chatManager sendMessageReadAck:message.messageId toUser:message.conversationId completion:nil];
  1246. }
  1247. NSString *localPath = [(EMImageMessageBody *)message.body localPath];
  1248. UIImage *image = [UIImage imageWithContentsOfFile:localPath];
  1249. if (image) {
  1250. [[EMImageBrowser sharedBrowser] showImages:@[image] fromController:self];
  1251. } else {
  1252. SHOWERROR(@"获取原图失败");
  1253. }
  1254. }
  1255. }];
  1256. }
  1257. - (void)_locationMessageCellDidSelected:(EMMessageCell *)aCell
  1258. {
  1259. EMLocationMessageBody *body = (EMLocationMessageBody *)aCell.model.emModel.body;
  1260. EMLocationViewController *controller = [[EMLocationViewController alloc] initWithLocation:CLLocationCoordinate2DMake(body.latitude, body.longitude)];
  1261. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
  1262. [self.navigationController presentViewController:navController animated:YES completion:nil];
  1263. }
  1264. - (void)_audioMessageCellDidSelected:(EMMessageCell *)aCell
  1265. {
  1266. if (aCell.model.isPlaying) {
  1267. [[EMAudioPlayerHelper sharedHelper] stopPlayer];
  1268. aCell.model.isPlaying = NO;
  1269. [self.tableView reloadData];
  1270. return;
  1271. }
  1272. EMVoiceMessageBody *body = (EMVoiceMessageBody*)aCell.model.emModel.body;
  1273. if (body.downloadStatus == EMDownloadStatusDownloading) {
  1274. SHOWERROR(@"正在下载语音,稍后点击");
  1275. return;
  1276. }
  1277. __weak typeof(self) weakself = self;
  1278. void (^playBlock)(EMMessageModel *aModel) = ^(EMMessageModel *aModel) {
  1279. id model = [EMAudioPlayerHelper sharedHelper].model;
  1280. if (model && [model isKindOfClass:[EMMessageModel class]]) {
  1281. EMMessageModel *oldModel = (EMMessageModel *)model;
  1282. if (oldModel.isPlaying) {
  1283. oldModel.isPlaying = NO;
  1284. }
  1285. }
  1286. if (!aModel.emModel.isReadAcked) {
  1287. [[EMClient sharedClient].chatManager sendMessageReadAck:aModel.emModel.messageId toUser:aModel.emModel.conversationId completion:nil];
  1288. }
  1289. aModel.isPlaying = YES;
  1290. if (!aModel.emModel.isRead) {
  1291. aModel.emModel.isRead = YES;
  1292. }
  1293. [weakself.tableView reloadData];
  1294. [[EMAudioPlayerHelper sharedHelper] startPlayerWithPath:body.localPath model:aModel AVAudioSessionCategory:AVAudioSessionCategoryPlayback completion:^(NSError * _Nonnull error) {
  1295. aModel.isPlaying = NO;
  1296. [weakself.tableView reloadData];
  1297. }];
  1298. };
  1299. if (body.downloadStatus == EMDownloadStatusSucceed) {
  1300. playBlock(aCell.model);
  1301. return;
  1302. }
  1303. if (![EMClient sharedClient].options.isAutoTransferMessageAttachments) {
  1304. [self _showCustomTransferFileAlertView];
  1305. return;
  1306. }
  1307. [self showHudInView:self.view hint:@"下载语音..."];
  1308. [[EMClient sharedClient].chatManager downloadMessageAttachment:aCell.model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1309. [weakself hideHud];
  1310. if (error) {
  1311. SHOWERROR(@"下载语音失败");
  1312. } else {
  1313. playBlock(aCell.model);
  1314. }
  1315. }];
  1316. }
  1317. - (void)_videoMessageCellDidSelected:(EMMessageCell *)aCell
  1318. {
  1319. EMVideoMessageBody *body = (EMVideoMessageBody*)aCell.model.emModel.body;
  1320. NSFileManager *fileManager = [NSFileManager defaultManager];
  1321. BOOL isCustomDownload = !([EMClient sharedClient].options.isAutoTransferMessageAttachments);
  1322. if (body.thumbnailDownloadStatus == EMDownloadStatusFailed || ![fileManager fileExistsAtPath:body.thumbnailLocalPath]) {
  1323. [self showHint:@"下载缩略图"];
  1324. if (!isCustomDownload) {
  1325. [[EMClient sharedClient].chatManager downloadMessageThumbnail:aCell.model.emModel progress:nil completion:nil];
  1326. }
  1327. }
  1328. if (body.downloadStatus == EMDownloadStatusDownloading) {
  1329. SHOWERROR(@"正在下载视频,稍后点击");
  1330. return;
  1331. }
  1332. void (^playBlock)(NSString *aPath) = ^(NSString *aPathe) {
  1333. NSURL *videoURL = [NSURL fileURLWithPath:aPathe];
  1334. AVPlayerViewController *playerViewController = [[AVPlayerViewController alloc] init];
  1335. playerViewController.player = [AVPlayer playerWithURL:videoURL];
  1336. playerViewController.videoGravity = AVLayerVideoGravityResizeAspect;
  1337. playerViewController.showsPlaybackControls = YES;
  1338. [self presentViewController:playerViewController animated:YES completion:^{
  1339. [playerViewController.player play];
  1340. }];
  1341. };
  1342. if (body.downloadStatus == EMDownloadStatusSuccessed && [fileManager fileExistsAtPath:body.localPath]) {
  1343. playBlock(body.localPath);
  1344. return;
  1345. }
  1346. if (isCustomDownload) {
  1347. [self _showCustomTransferFileAlertView];
  1348. } else {
  1349. [self showHudInView:self.view hint:@"下载视频..."];
  1350. __weak typeof(self) weakself = self;
  1351. [[EMClient sharedClient].chatManager downloadMessageAttachment:aCell.model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1352. [weakself hideHud];
  1353. if (error) {
  1354. SHOWERROR(@"下载视频失败");
  1355. } else {
  1356. if (!message.isReadAcked) {
  1357. [[EMClient sharedClient].chatManager sendMessageReadAck:message.messageId toUser:message.conversationId completion:nil];
  1358. }
  1359. playBlock([(EMVideoMessageBody*)message.body localPath]);
  1360. }
  1361. }];
  1362. }
  1363. }
  1364. - (void)_fileMessageCellDidSelected:(EMMessageCell *)aCell
  1365. {
  1366. WS(weakSelf);
  1367. [[EMClient sharedClient].chatManager downloadMessageAttachment:aCell.model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1368. [weakSelf hideHud];
  1369. if (error) {
  1370. SHOWERROR(@"下载文件失败");
  1371. } else {
  1372. if (message.direction == EMMessageDirectionReceive && !message.isReadAcked) {
  1373. [[EMClient sharedClient].chatManager sendMessageReadAck:message.messageId toUser:message.conversationId completion:nil];
  1374. }
  1375. NSString *remotePath = [(EMImageMessageBody *)message.body remotePath];
  1376. NSString *displayName = [(EMImageMessageBody *)message.body displayName];
  1377. dispatch_async(dispatch_get_main_queue(), ^{
  1378. EMChatFileShowVC * vc = [EMChatFileShowVC initEMChatFileShowVC];
  1379. vc.fileUrl = remotePath;
  1380. vc.titleStr = displayName;
  1381. [weakSelf.navigationController pushViewController:vc animated:YES];
  1382. });
  1383. }
  1384. }];
  1385. }
  1386. - (void)_callMessageCellDidSelected:(EMMessageCell *)aCell
  1387. {
  1388. [[NSNotificationCenter defaultCenter] postNotificationName:CALL_SELECTCONFERENCECELL object:aCell.model.emModel];
  1389. }
  1390. - (void)messageCellDidLongPress:(EMMessageCell *)aCell
  1391. {
  1392. self.menuIndexPath = [self.tableView indexPathForCell:aCell];
  1393. [self _showMenuViewController:aCell model:aCell.model];
  1394. }
  1395. - (void)messageCellDidResend:(EMMessageModel *)aModel
  1396. {
  1397. if (aModel.emModel.status != EMMessageStatusFailed && aModel.emModel.status != EMMessageStatusPending) {
  1398. return;
  1399. }
  1400. __weak typeof(self) weakself = self;
  1401. [[[EMClient sharedClient] chatManager] resendMessage:aModel.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  1402. [weakself.tableView reloadData];
  1403. }];
  1404. [self.tableView reloadData];
  1405. }
  1406. #pragma mark - EMMultiDevicesDelegate
  1407. - (void)multiDevicesGroupEventDidReceive:(EMMultiDevicesEvent)aEvent
  1408. groupId:(NSString *)aGroupId
  1409. ext:(id)aExt
  1410. {
  1411. if (aEvent == EMMultiDevicesEventGroupDestroy || aEvent == EMMultiDevicesEventGroupLeave) {
  1412. if ([self.conversationModel.emModel.conversationId isEqualToString:aGroupId]) {
  1413. [self.navigationController popToViewController:self animated:YES];
  1414. [self.navigationController popViewControllerAnimated:YES];
  1415. }
  1416. }
  1417. }
  1418. #pragma mark - EMChatManagerDelegate
  1419. - (BOOL)_isNeedSendReadAckForMessage:(EMMessage *)aMessage
  1420. isMarkRead:(BOOL)aIsMarkRead
  1421. {
  1422. if (!self.isViewDidAppear || aMessage.direction == EMMessageDirectionSend || aMessage.isReadAcked || aMessage.chatType != EMChatTypeChat) {
  1423. return NO;
  1424. }
  1425. EMMessageBody *body = aMessage.body;
  1426. if (!aIsMarkRead && (body.type == EMMessageBodyTypeVideo || body.type == EMMessageBodyTypeVoice || body.type == EMMessageBodyTypeImage)) {
  1427. return NO;
  1428. }
  1429. return YES;
  1430. }
  1431. - (void)messagesDidReceive:(NSArray *)aMessages
  1432. {
  1433. __weak typeof(self) weakself = self;
  1434. dispatch_async(self.msgQueue, ^{
  1435. NSString *conId = weakself.conversationModel.emModel.conversationId;
  1436. NSMutableArray *msgArray = [[NSMutableArray alloc] init];
  1437. for (int i = 0; i < [aMessages count]; i++) {
  1438. EMMessage *msg = aMessages[i];
  1439. if (![msg.conversationId isEqualToString:conId]) {
  1440. continue;
  1441. }
  1442. if (msg.isNeedGroupAck && !msg.isReadAcked) {
  1443. [[EMClient sharedClient].chatManager sendGroupMessageReadAck:msg.messageId toGroup:msg.conversationId content:@"123" completion:^(EMError *error) {
  1444. if (error) {
  1445. NSLog(@"\n ------ error %@",error.errorDescription);
  1446. }
  1447. }];
  1448. }
  1449. if ([weakself _isNeedSendReadAckForMessage:msg isMarkRead:NO]) {
  1450. [[EMClient sharedClient].chatManager sendMessageReadAck:msg.messageId toUser:msg.conversationId completion:nil];
  1451. }
  1452. [weakself.conversationModel.emModel markMessageAsReadWithId:msg.messageId error:nil];
  1453. [msgArray addObject:msg];
  1454. }
  1455. NSArray *formated = [weakself _formatMessages:msgArray];
  1456. [weakself.dataArray addObjectsFromArray:formated];
  1457. dispatch_async(dispatch_get_main_queue(), ^{
  1458. [weakself.tableView reloadData];
  1459. [weakself _scrollToBottomRow];
  1460. });
  1461. });
  1462. }
  1463. - (void)messagesDidRecall:(NSArray *)aMessages {
  1464. __block NSMutableArray *sameObject = [NSMutableArray array];
  1465. [aMessages enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  1466. EMMessage *msg = (EMMessage *)obj;
  1467. [self.dataArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  1468. if ([obj isKindOfClass:[EMMessageModel class]]) {
  1469. EMMessageModel *model = (EMMessageModel *)obj;
  1470. if ([model.emModel.messageId isEqualToString:msg.messageId]) {
  1471. // 如果上一行是时间,且下一行也是时间
  1472. if (idx - 1 >= 0) {
  1473. id nextMessage = nil;
  1474. id prevMessage = [self.dataArray objectAtIndex:(idx - 1)];
  1475. if (idx + 1 < [self.dataArray count]) {
  1476. nextMessage = [self.dataArray objectAtIndex:(idx + 1)];
  1477. }
  1478. if ((!nextMessage
  1479. || [nextMessage isKindOfClass:[NSString class]])
  1480. && [prevMessage isKindOfClass:[NSString class]]) {
  1481. [sameObject addObject:prevMessage];
  1482. }
  1483. }
  1484. [sameObject addObject:model];
  1485. *stop = YES;
  1486. }
  1487. }
  1488. }];
  1489. }];
  1490. if (sameObject.count > 0) {
  1491. for (id obj in sameObject) {
  1492. [self.dataArray removeObject:obj];
  1493. }
  1494. [self.tableView reloadData];
  1495. }
  1496. }
  1497. //为了从home会话列表切进来触发 群组阅读回执 和 消息已读回执
  1498. - (void)sendDidReadReceipt
  1499. {
  1500. __weak typeof(self) weakself = self;
  1501. NSString *conId = weakself.conversationModel.emModel.conversationId;
  1502. void (^block)(NSArray *aMessages, EMError *aError) = ^(NSArray *aMessages, EMError *aError) {
  1503. NSLog(@"\n-------unread: %d messageCount: %lu msgid: %@",self.conversationModel.emModel.unreadMessagesCount,(unsigned long)[aMessages count],self.moreMsgId);
  1504. if (!aError && [aMessages count]) {
  1505. for (int i = 0; i < [aMessages count]; i++) {
  1506. EMMessage *msg = aMessages[i];
  1507. if (![msg.conversationId isEqualToString:conId]) {
  1508. continue;
  1509. }
  1510. if (msg.isNeedGroupAck && !msg.isReadAcked) {
  1511. [[EMClient sharedClient].chatManager sendGroupMessageReadAck:msg.messageId toGroup:msg.conversationId content:@"123" completion:^(EMError *error) {
  1512. if (error) {
  1513. NSLog(@"\n ------ error %@",error.errorDescription);
  1514. }
  1515. }];
  1516. }
  1517. if ([weakself _isNeedSendReadAckForMessage:msg isMarkRead:NO] && (weakself.conversationModel.emModel.type == EMConversationTypeChat)) {
  1518. [[EMClient sharedClient].chatManager sendMessageReadAck:msg.messageId toUser:msg.conversationId completion:nil];
  1519. [weakself.conversationModel.emModel markMessageAsReadWithId:msg.messageId error:nil];
  1520. }
  1521. }
  1522. }
  1523. };
  1524. [self.conversationModel.emModel loadMessagesStartFromId:self.moreMsgId count:self.conversationModel.emModel.unreadMessagesCount searchDirection:EMMessageSearchDirectionUp completion:block];
  1525. }
  1526. //收到群消息已读回执
  1527. - (void)groupMessageDidRead:(EMMessage *)aMessage groupAcks:(NSArray *)aGroupAcks
  1528. {
  1529. EMMessageModel *msgModel;
  1530. EMGroupMessageAck *msgAck = aGroupAcks[0];
  1531. for (int i=0; i<[self.dataArray count]; i++) {
  1532. if([self.dataArray[i] isKindOfClass:[EMMessageModel class]]){
  1533. msgModel = (EMMessageModel *)self.dataArray[i];
  1534. }else{
  1535. continue;
  1536. }
  1537. if([msgModel.emModel.messageId isEqualToString:msgAck.messageId]){
  1538. msgModel.readReceiptCount = [NSString stringWithFormat:@"阅读回执,已读用户(%d)",msgModel.emModel.groupAckCount];
  1539. msgModel.emModel.isReadAcked = YES;
  1540. [[EMClient sharedClient].chatManager sendMessageReadAck:msgModel.emModel.messageId toUser:msgModel.emModel.conversationId completion:nil];
  1541. [self.dataArray setObject:msgModel atIndexedSubscript:i];
  1542. __weak typeof(self) weakself = self;
  1543. dispatch_async(dispatch_get_main_queue(), ^{
  1544. [weakself.tableView reloadData];
  1545. [weakself _scrollToBottomRow];
  1546. });
  1547. break;
  1548. }
  1549. }
  1550. }
  1551. // 收到已读回执
  1552. - (void)messagesDidRead:(NSArray *)aMessages
  1553. {
  1554. __weak typeof(self) weakself = self;
  1555. dispatch_async(self.msgQueue, ^{
  1556. NSString *conId = weakself.conversationModel.emModel.conversationId;
  1557. __block BOOL isReladView = NO;
  1558. for (EMMessage *message in aMessages) {
  1559. if (![conId isEqualToString:message.conversationId]){
  1560. continue;
  1561. }
  1562. [weakself.dataArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
  1563. if ([obj isKindOfClass:[EMMessageModel class]]) {
  1564. EMMessageModel *model = (EMMessageModel *)obj;
  1565. if ([model.emModel.messageId isEqualToString:message.messageId]) {
  1566. model.emModel.isReadAcked = YES;
  1567. isReladView = YES;
  1568. *stop = YES;
  1569. }
  1570. }
  1571. }];
  1572. }
  1573. BOOL changeRead = NO;
  1574. NSInteger msgCount = weakself.dataArray.count - 1;
  1575. for (NSInteger i = msgCount; i >= 0; i --) {
  1576. if ([weakself.dataArray[i] isKindOfClass:[EMMessageModel class]]) {
  1577. EMMessageModel *model = (EMMessageModel *)weakself.dataArray[i];
  1578. if (model.emModel.isReadAcked == YES)
  1579. {
  1580. changeRead = YES;
  1581. }
  1582. if (changeRead) {
  1583. model.emModel.isReadAcked = YES;
  1584. }
  1585. }
  1586. }
  1587. if (isReladView) {
  1588. dispatch_async(dispatch_get_main_queue(), ^{
  1589. [weakself.tableView reloadData];
  1590. });
  1591. }
  1592. });
  1593. }
  1594. - (void)messageStatusDidChange:(EMMessage *)aMessage
  1595. error:(EMError *)aError
  1596. {
  1597. __weak typeof(self) weakself = self;
  1598. dispatch_async(self.msgQueue, ^{
  1599. NSString *conId = weakself.conversationModel.emModel.conversationId;
  1600. if (![conId isEqualToString:aMessage.conversationId]){
  1601. return ;
  1602. }
  1603. __block NSUInteger index = NSNotFound;
  1604. __block EMMessageModel *reloadModel = nil;
  1605. [self.dataArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
  1606. if ([obj isKindOfClass:[EMMessageModel class]]) {
  1607. EMMessageModel *model = (EMMessageModel *)obj;
  1608. if ([model.emModel.messageId isEqualToString:aMessage.messageId]) {
  1609. reloadModel = model;
  1610. index = idx;
  1611. *stop = YES;
  1612. }
  1613. }
  1614. }];
  1615. if (index != NSNotFound) {
  1616. dispatch_async(dispatch_get_main_queue(), ^{
  1617. [weakself.dataArray replaceObjectAtIndex:index withObject:reloadModel];
  1618. [weakself.tableView beginUpdates];
  1619. [weakself.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:index inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
  1620. [weakself.tableView endUpdates];
  1621. });
  1622. }
  1623. });
  1624. }
  1625. - (void)cmdMessagesDidReceive:(NSArray *)aCmdMessages
  1626. {
  1627. __weak typeof(self) weakself = self;
  1628. dispatch_async(self.msgQueue, ^{
  1629. NSString *conId = weakself.conversationModel.emModel.conversationId;
  1630. for (EMMessage *message in aCmdMessages) {
  1631. if (![conId isEqualToString:message.conversationId]) {
  1632. continue;
  1633. }
  1634. EMCmdMessageBody *body = (EMCmdMessageBody *)message.body;
  1635. NSString *str = @"";
  1636. if ([body.action isEqualToString:MSG_TYPING_BEGIN]) {
  1637. str = @"正在输入...";
  1638. }
  1639. dispatch_async(dispatch_get_main_queue(), ^{
  1640. self.titleDetailLabel.text = str;
  1641. });
  1642. }
  1643. });
  1644. }
  1645. #pragma mark - EMGroupManagerDelegate
  1646. - (void)didLeaveGroup:(EMGroup *)aGroup
  1647. reason:(EMGroupLeaveReason)aReason
  1648. {
  1649. EMConversation *conversation = self.conversationModel.emModel;
  1650. if (conversation.type == EMChatTypeGroupChat && [aGroup.groupId isEqualToString:conversation.conversationId]) {
  1651. [self.navigationController popToViewController:self animated:YES];
  1652. [self.navigationController popViewControllerAnimated:YES];
  1653. }
  1654. }
  1655. #pragma mark - EMChatroomManagerDelegate
  1656. //有用户加入聊天室
  1657. - (void)userDidJoinChatroom:(EMChatroom *)aChatroom
  1658. user:(NSString *)aUsername
  1659. {
  1660. EMConversation *conversation = self.conversationModel.emModel;
  1661. if (conversation.type == EMChatTypeChatRoom && [aChatroom.chatroomId isEqualToString:conversation.conversationId]) {
  1662. NSString *str = [NSString stringWithFormat:@"%@ 进入聊天室", aUsername];
  1663. [self showHint:str];
  1664. }
  1665. }
  1666. - (void)userDidLeaveChatroom:(EMChatroom *)aChatroom
  1667. user:(NSString *)aUsername
  1668. {
  1669. EMConversation *conversation = self.conversationModel.emModel;
  1670. if (conversation.type == EMChatTypeChatRoom && [aChatroom.chatroomId isEqualToString:conversation.conversationId]) {
  1671. NSString *str = [NSString stringWithFormat:@"%@ 离开聊天室", aUsername];
  1672. [self showHint:str];
  1673. }
  1674. }
  1675. - (void)didDismissFromChatroom:(EMChatroom *)aChatroom
  1676. reason:(EMChatroomBeKickedReason)aReason
  1677. {
  1678. EMConversation *conversation = self.conversationModel.emModel;
  1679. if (conversation.type == EMChatTypeChatRoom && [aChatroom.chatroomId isEqualToString:conversation.conversationId]) {
  1680. [self.navigationController popToViewController:self animated:YES];
  1681. [self.navigationController popViewControllerAnimated:YES];
  1682. }
  1683. }
  1684. #pragma mark - KeyBoard
  1685. - (void)keyBoardWillShow:(NSNotification *)note
  1686. {
  1687. // 获取用户信息
  1688. NSDictionary *userInfo = [NSDictionary dictionaryWithDictionary:note.userInfo];
  1689. // 获取键盘高度
  1690. CGRect keyBoardBounds = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
  1691. CGFloat keyBoardHeight = keyBoardBounds.size.height;
  1692. // 获取键盘动画时间
  1693. CGFloat animationTime = [[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];
  1694. // 定义好动作
  1695. WS(weakSelf);
  1696. void (^animation)(void) = ^void(void) {
  1697. [weakSelf.chatBar mas_updateConstraints:^(MASConstraintMaker *make) {
  1698. if (@available(iOS 11.0, *)) {
  1699. make.bottom.mas_equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom).offset(-keyBoardHeight + EMVIEWBOTTOMMARGIN);
  1700. } else {
  1701. make.bottom.mas_equalTo(weakSelf.view.mas_bottom).offset(-keyBoardHeight);
  1702. }
  1703. }];
  1704. };
  1705. if (animationTime > 0) {
  1706. [UIView animateWithDuration:animationTime animations:animation completion:^(BOOL finished) {
  1707. [weakSelf _scrollToBottomRow];
  1708. }];
  1709. } else {
  1710. animation();
  1711. }
  1712. }
  1713. - (void)keyBoardWillHide:(NSNotification *)note
  1714. {
  1715. // 获取用户信息
  1716. NSDictionary *userInfo = [NSDictionary dictionaryWithDictionary:note.userInfo];
  1717. // 获取键盘动画时间
  1718. CGFloat animationTime = [[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];
  1719. // 定义好动作
  1720. WS(weakSelf);
  1721. void (^animation)(void) = ^void(void) {
  1722. [weakSelf.chatBar mas_updateConstraints:^(MASConstraintMaker *make) {
  1723. if (@available(iOS 11.0, *)) {
  1724. make.bottom.mas_equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom);
  1725. } else {
  1726. make.bottom.mas_equalTo(weakSelf.view.mas_bottom);
  1727. }
  1728. }];
  1729. };
  1730. if (animationTime > 0) {
  1731. [UIView animateWithDuration:animationTime animations:animation];
  1732. } else {
  1733. animation();
  1734. }
  1735. if (self.enableTyping) {
  1736. [self _sendEndTyping];
  1737. }
  1738. }
  1739. #pragma mark - NSNotification
  1740. - (UIImagePickerController *)imagePicker
  1741. {
  1742. if (!_imagePicker) {
  1743. _imagePicker = [[UIImagePickerController alloc] init];
  1744. _imagePicker.delegate = self;
  1745. }
  1746. return _imagePicker;
  1747. }
  1748. - (void)handleWillPushCallController:(NSNotification *)aNotif
  1749. {
  1750. [self.imagePicker dismissViewControllerAnimated:YES completion:nil];
  1751. [[EMImageBrowser sharedBrowser] dismissViewController];
  1752. [[EMAudioPlayerHelper sharedHelper] stopPlayer];
  1753. }
  1754. - (void)handleCleanMessages:(NSNotification *)aNotif
  1755. {
  1756. NSString *chatId = aNotif.object;
  1757. if (chatId && [chatId isEqualToString:self.conversationModel.emModel.conversationId]) {
  1758. [self.conversationModel.emModel deleteAllMessages:nil];
  1759. [self.dataArray removeAllObjects];
  1760. [self.tableView reloadData];
  1761. }
  1762. }
  1763. - (void)handleGroupSubjectUpdated:(NSNotification *)aNotif
  1764. {
  1765. EMGroup *group = aNotif.object;
  1766. if (!group) {
  1767. return;
  1768. }
  1769. NSString *groupId = group.groupId;
  1770. if ([groupId isEqualToString:self.conversationModel.emModel.conversationId]) {
  1771. self.conversationModel.name = group.subject;
  1772. self.titleLabel.text = group.subject;
  1773. }
  1774. }
  1775. #pragma mark - Gesture Recognizer
  1776. - (void)handleTapTableViewAction:(UITapGestureRecognizer *)aTap
  1777. {
  1778. if (aTap.state == UIGestureRecognizerStateEnded) {
  1779. [self.view endEditing:YES];
  1780. [self.chatBar clearMoreViewAndSelectedButton];
  1781. [self performSelector:@selector(_scrollToBottomRow) withObject:nil afterDelay:0.1];
  1782. }
  1783. }
  1784. #pragma mark - Private
  1785. - (void)_joinChatroom
  1786. {
  1787. __weak typeof(self) weakself = self;
  1788. [self showHudInView:self.view hint:@"加入聊天室..."];
  1789. [[EMClient sharedClient].roomManager joinChatroom:self.conversationModel.emModel.conversationId completion:^(EMChatroom *aChatroom, EMError *aError) {
  1790. [weakself hideHud];
  1791. if (aError) {
  1792. [EMAlertController showErrorAlert:@"加入聊天室失败"];
  1793. [weakself.navigationController popViewControllerAnimated:YES];
  1794. } else {
  1795. weakself.isFirstLoadMsg = YES;
  1796. [weakself tableViewDidTriggerHeaderRefresh];
  1797. }
  1798. }];
  1799. }
  1800. - (void)_scrollToBottomRow
  1801. {
  1802. if ([self.dataArray count] > 0) {
  1803. NSInteger toRow = self.dataArray.count - 1;
  1804. NSIndexPath *toIndexPath = [NSIndexPath indexPathForRow:toRow inSection:0];
  1805. [self.tableView scrollToRowAtIndexPath:toIndexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];
  1806. }
  1807. }
  1808. - (void)_showCustomTransferFileAlertView
  1809. {
  1810. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"(づ。◕‿‿◕。)づ" message:@"需要自定义实现上传附件方法" preferredStyle:UIAlertControllerStyleAlert];
  1811. UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleCancel handler:nil];
  1812. [alertController addAction:okAction];
  1813. [self presentViewController:alertController animated:YES completion:nil];
  1814. }
  1815. - (NSURL *)_videoConvert2Mp4:(NSURL *)movUrl
  1816. {
  1817. NSURL *mp4Url = nil;
  1818. AVURLAsset *avAsset = [AVURLAsset URLAssetWithURL:movUrl options:nil];
  1819. NSArray *compatiblePresets = [AVAssetExportSession exportPresetsCompatibleWithAsset:avAsset];
  1820. if ([compatiblePresets containsObject:AVAssetExportPresetHighestQuality]) {
  1821. AVAssetExportSession *exportSession = [[AVAssetExportSession alloc]initWithAsset:avAsset presetName:AVAssetExportPresetHighestQuality];
  1822. NSString *mp4Path = [NSString stringWithFormat:@"%@/%d%d.mp4", [self _getAudioOrVideoPath], (int)[[NSDate date] timeIntervalSince1970], arc4random() % 100000];
  1823. mp4Url = [NSURL fileURLWithPath:mp4Path];
  1824. exportSession.outputURL = mp4Url;
  1825. exportSession.shouldOptimizeForNetworkUse = YES;
  1826. exportSession.outputFileType = AVFileTypeMPEG4;
  1827. dispatch_semaphore_t wait = dispatch_semaphore_create(0l);
  1828. [exportSession exportAsynchronouslyWithCompletionHandler:^{
  1829. switch ([exportSession status]) {
  1830. case AVAssetExportSessionStatusFailed: {
  1831. NSLog(@"failed, error:%@.", exportSession.error);
  1832. } break;
  1833. case AVAssetExportSessionStatusCancelled: {
  1834. NSLog(@"cancelled.");
  1835. } break;
  1836. case AVAssetExportSessionStatusCompleted: {
  1837. NSLog(@"completed.");
  1838. } break;
  1839. default: {
  1840. NSLog(@"others.");
  1841. } break;
  1842. }
  1843. dispatch_semaphore_signal(wait);
  1844. }];
  1845. long timeout = dispatch_semaphore_wait(wait, DISPATCH_TIME_FOREVER);
  1846. if (timeout) {
  1847. NSLog(@"timeout.");
  1848. }
  1849. if (wait) {
  1850. //dispatch_release(wait);
  1851. wait = nil;
  1852. }
  1853. }
  1854. return mp4Url;
  1855. }
  1856. #pragma mark - Menu Controller
  1857. - (UIMenuController *)menuController
  1858. {
  1859. if (_menuController == nil) {
  1860. _menuController = [UIMenuController sharedMenuController];
  1861. }
  1862. return _menuController;
  1863. }
  1864. - (UIMenuItem *)deleteMenuItem
  1865. {
  1866. if (_deleteMenuItem == nil) {
  1867. _deleteMenuItem = [[UIMenuItem alloc] initWithTitle:@"删除" action:@selector(deleteMenuItemAction:)];
  1868. }
  1869. return _deleteMenuItem;
  1870. }
  1871. - (UIMenuItem *)copyMenuItem
  1872. {
  1873. if (_copyMenuItem == nil) {
  1874. _copyMenuItem = [[UIMenuItem alloc] initWithTitle:@"复制" action:@selector(copyMenuItemAction:)];
  1875. }
  1876. return _copyMenuItem;
  1877. }
  1878. - (UIMenuItem *)transpondMenuItem
  1879. {
  1880. if (_transpondMenuItem == nil) {
  1881. _transpondMenuItem = [[UIMenuItem alloc] initWithTitle:@"转发" action:@selector(transpondMenuItemAction:)];
  1882. }
  1883. return _transpondMenuItem;
  1884. }
  1885. - (UIMenuItem *)recallMenuItem
  1886. {
  1887. if (_recallMenuItem == nil) {
  1888. _recallMenuItem = [[UIMenuItem alloc] initWithTitle:@"撤回" action:@selector(recallMenuItemAction:)];
  1889. }
  1890. return _recallMenuItem;
  1891. }
  1892. - (UIMenuItem *)playAndRecordMenuItem
  1893. {
  1894. if (_playAndRecordMenuItem == nil) {
  1895. _playAndRecordMenuItem = [[UIMenuItem alloc] initWithTitle:@"听筒播放" action:@selector(playAndRecordMenuItemAction:)];
  1896. }
  1897. return _playAndRecordMenuItem;
  1898. }
  1899. //删除消息
  1900. - (void)deleteMenuItemAction:(UIMenuItem *)aItem
  1901. {
  1902. if (self.menuIndexPath == nil) {
  1903. return;
  1904. }
  1905. EMMessageModel *model = [self.dataArray objectAtIndex:self.menuIndexPath.row];
  1906. [self.conversationModel.emModel deleteMessageWithId:model.emModel.messageId error:nil];
  1907. NSMutableIndexSet *indexs = [NSMutableIndexSet indexSetWithIndex:self.menuIndexPath.row];
  1908. NSMutableArray *indexPaths = [NSMutableArray arrayWithObjects:self.menuIndexPath, nil];
  1909. if (self.menuIndexPath.row - 1 >= 0) {
  1910. id nextMessage = nil;
  1911. id prevMessage = [self.dataArray objectAtIndex:(self.menuIndexPath.row - 1)];
  1912. if (self.menuIndexPath.row + 1 < [self.dataArray count]) {
  1913. nextMessage = [self.dataArray objectAtIndex:(self.menuIndexPath.row + 1)];
  1914. }
  1915. if ((!nextMessage || [nextMessage isKindOfClass:[NSString class]]) && [prevMessage isKindOfClass:[NSString class]]) {
  1916. [indexs addIndex:self.menuIndexPath.row - 1];
  1917. [indexPaths addObject:[NSIndexPath indexPathForRow:(self.menuIndexPath.row - 1) inSection:0]];
  1918. }
  1919. }
  1920. [self.dataArray removeObjectsAtIndexes:indexs];
  1921. [self.tableView beginUpdates];
  1922. [self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationNone];
  1923. [self.tableView endUpdates];
  1924. if ([self.dataArray count] == 0) {
  1925. self.msgTimelTag = -1;
  1926. }
  1927. self.menuIndexPath = nil;
  1928. }
  1929. - (void)copyMenuItemAction:(UIMenuItem *)aItem
  1930. {
  1931. if (self.menuIndexPath == nil) {
  1932. return;
  1933. }
  1934. EMMessageModel *model = [self.dataArray objectAtIndex:self.menuIndexPath.row];
  1935. if (model.type == EMMessageTypeText) {
  1936. EMTextMessageBody *body = (EMTextMessageBody *)model.emModel.body;
  1937. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1938. pasteboard.string = body.text;
  1939. }
  1940. if (model.type == EMMessageTypeImage) {
  1941. EMMessageCell *cell = [self.tableView cellForRowAtIndexPath:self.menuIndexPath];
  1942. [[UIPasteboard generalPasteboard]setData:UIImagePNGRepresentation(cell.bubbleView.image) forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];
  1943. }
  1944. self.menuIndexPath = nil;
  1945. }
  1946. - (void)transpondMenuItemAction:(UIMenuItem *)aItem
  1947. {
  1948. if (self.menuIndexPath == nil) {
  1949. return;
  1950. }
  1951. EMMessageModel *model = [self.dataArray objectAtIndex:self.menuIndexPath.row];
  1952. // EMMsgTranspondViewController *controller = [[EMMsgTranspondViewController alloc] initWithModel:model];
  1953. // [self.navigationController pushViewController:controller animated:YES];
  1954. //
  1955. // __weak typeof(self) weakself = self;
  1956. // [controller setDoneCompletion:^(EMMessageModel * _Nonnull aModel, NSString * _Nonnull aUsername) {
  1957. // [weakself _transpondMsg:aModel toUser:aUsername];
  1958. // }];
  1959. // if (self.IsShareText) {
  1960. // model.Title = self.shareText;
  1961. // model.SoureTypeId = 1;
  1962. // }else{
  1963. // model.SoureId = self.Id;
  1964. // model.SoureTypeId = self.type;
  1965. // model.Title = self.currentNoteModel.Title;
  1966. // model.Author = self.currentNoteModel.UserName;
  1967. // vc.type = CollectModel_NewTopic;
  1968. // }
  1969. switch (model.type) {
  1970. case EMMessageTypeText:
  1971. {
  1972. FlowAttachmentsModel * sendModel = [[FlowAttachmentsModel alloc] init];
  1973. EMTextMessageBody *body = (EMTextMessageBody *)model.emModel.body;
  1974. sendModel.Title = body.text;
  1975. sendModel.SoureTypeId = 1;
  1976. self.sendModel = sendModel;
  1977. [self shareHander];
  1978. }
  1979. break;
  1980. case EMMessageTypeImage:
  1981. {
  1982. [self shareImage:model];
  1983. // EMTextMessageBody *body = (EMTextMessageBody *)model.emModel.body;
  1984. // self.sendModel.image = body.text;
  1985. // self.sendModel.SoureTypeId = 301;
  1986. }
  1987. break;
  1988. case EMMessageTypeExtApp:
  1989. {
  1990. NSDictionary * dict = model.emModel.ext;
  1991. CollectModelType type = [[dict objectForKey:@"app_type"] intValue];
  1992. NSInteger sourceUserId = [[dict objectForKey:@"app_sourceUserId"] integerValue];
  1993. NSInteger Id = [[dict objectForKey:@"app_id"] integerValue];
  1994. NSString * title = [dict objectForKey:@"app_title"];
  1995. NSString * url = [dict objectForKey:@"app_url"];
  1996. FlowAttachmentsModel * sendModel = [[FlowAttachmentsModel alloc] init];
  1997. sendModel.Title = title;
  1998. sendModel.SoureTypeId = type;
  1999. sendModel.SoureId = Id;
  2000. sendModel.Url = url;
  2001. sendModel.SourceUserId = sourceUserId;
  2002. self.sendModel = sendModel;
  2003. [self shareHander];
  2004. }
  2005. break;
  2006. case EMMessageTypeFile:
  2007. {
  2008. EMFileMessageBody *body = (EMFileMessageBody *)model.emModel.body;
  2009. NSLog(@"%@",body.localPath);
  2010. }
  2011. break;
  2012. default:
  2013. break;
  2014. }
  2015. self.menuIndexPath = nil;
  2016. }
  2017. - (void)shareImage:(EMMessageModel *)model
  2018. {
  2019. __weak typeof(self) weakself = self;
  2020. void (^downloadThumbBlock)(EMMessageModel *aModel) = ^(EMMessageModel *aModel) {
  2021. [weakself showHint:@"获取缩略图..."];
  2022. [[EMClient sharedClient].chatManager downloadMessageThumbnail:aModel.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  2023. if (!error) {
  2024. [weakself.tableView reloadData];
  2025. }
  2026. }];
  2027. };
  2028. EMImageMessageBody *body = (EMImageMessageBody*)model.emModel.body;
  2029. BOOL isCustomDownload = !([EMClient sharedClient].options.isAutoTransferMessageAttachments);
  2030. if (body.thumbnailDownloadStatus == EMDownloadStatusFailed) {
  2031. if (isCustomDownload) {
  2032. [self _showCustomTransferFileAlertView];
  2033. } else {
  2034. downloadThumbBlock(model);
  2035. }
  2036. return;
  2037. }
  2038. BOOL isAutoDownloadThumbnail = [EMClient sharedClient].options.isAutoDownloadThumbnail;
  2039. if (body.thumbnailDownloadStatus == EMDownloadStatusPending && !isAutoDownloadThumbnail) {
  2040. downloadThumbBlock(model);
  2041. return;
  2042. }
  2043. FlowAttachmentsModel * sendModel = [[FlowAttachmentsModel alloc] init];
  2044. sendModel.SoureTypeId = 301;
  2045. self.sendModel = sendModel;
  2046. if (body.downloadStatus == EMDownloadStatusSucceed) {
  2047. UIImage *image = [UIImage imageWithContentsOfFile:body.localPath];
  2048. if (image) {
  2049. self.sendImage = image;
  2050. [self shareHander];
  2051. // [[EMImageBrowser sharedBrowser] showImages:@[image] fromController:self];
  2052. return;
  2053. }
  2054. }
  2055. if (isCustomDownload) {
  2056. [self _showCustomTransferFileAlertView];
  2057. return;
  2058. }
  2059. [self showHudInView:self.view hint:@"下载原图..."];
  2060. [[EMClient sharedClient].chatManager downloadMessageAttachment:model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  2061. [weakself hideHud];
  2062. if (error) {
  2063. SHOWERROR(@"下载原图失败");
  2064. } else {
  2065. if (message.direction == EMMessageDirectionReceive && !message.isReadAcked) {
  2066. [[EMClient sharedClient].chatManager sendMessageReadAck:message.messageId toUser:message.conversationId completion:nil];
  2067. }
  2068. NSString *localPath = [(EMImageMessageBody *)message.body localPath];
  2069. UIImage *image = [UIImage imageWithContentsOfFile:localPath];
  2070. if (image) {
  2071. weakself.sendImage = image;
  2072. [weakself shareHander];
  2073. // [[EMImageBrowser sharedBrowser] showImages:@[image] fromController:self];
  2074. } else {
  2075. SHOWERROR(@"获取原图失败");
  2076. }
  2077. }
  2078. }];
  2079. }
  2080. - (void)recallMenuItemAction:(UIMenuItem *)aItem
  2081. {
  2082. if (self.menuIndexPath == nil) {
  2083. return;
  2084. }
  2085. NSIndexPath *indexPath = self.menuIndexPath;
  2086. __weak typeof(self) weakself = self;
  2087. EMMessageModel *model = [self.dataArray objectAtIndex:self.menuIndexPath.row];
  2088. [[EMClient sharedClient].chatManager recallMessage:model.emModel completion:^(EMMessage *aMessage, EMError *aError) {
  2089. if (aError) {
  2090. if (aError.code == EMErrorMessageRecallTimeLimit) {
  2091. SHOWERROR(@"超过限制撤回时间,无法撤回");
  2092. }
  2093. } else {
  2094. EMTextMessageBody *body = [[EMTextMessageBody alloc] initWithText:@"您撤回一条消息"];
  2095. NSString *from = [[EMClient sharedClient] currentUsername];
  2096. NSString *to = self.conversationModel.emModel.conversationId;
  2097. EMMessage *message = [[EMMessage alloc] initWithConversationID:to from:from to:to body:body ext:@{MSG_EXT_RECALL:@(YES)}];
  2098. message.chatType = (EMChatType)self.conversationModel.emModel.type;
  2099. message.isRead = YES;
  2100. message.timestamp = model.emModel.timestamp;
  2101. message.localTime = model.emModel.localTime;
  2102. [weakself.conversationModel.emModel insertMessage:message error:nil];
  2103. EMMessageModel *model = [[EMMessageModel alloc] initWithEMMessage:message];
  2104. [weakself.dataArray replaceObjectAtIndex:indexPath.row withObject:model];
  2105. [weakself.tableView reloadData];
  2106. }
  2107. }];
  2108. self.menuIndexPath = nil;
  2109. }
  2110. - (void)playAndRecordMenuItemAction:(UIMenuItem *)aItem
  2111. {
  2112. if (self.menuIndexPath == nil) {
  2113. return;
  2114. }
  2115. EMMessageModel *model = [self.dataArray objectAtIndex:self.menuIndexPath.row];
  2116. [self playVoice:model];
  2117. self.menuIndexPath = nil;
  2118. }
  2119. - (void)playVoice:(EMMessageModel *)model
  2120. {
  2121. if (model.isPlaying) {
  2122. [[EMAudioPlayerHelper sharedHelper] stopPlayer];
  2123. model.isPlaying = NO;
  2124. [self.tableView reloadData];
  2125. return;
  2126. }
  2127. EMVoiceMessageBody *body = (EMVoiceMessageBody*)model.emModel.body;
  2128. if (body.downloadStatus == EMDownloadStatusDownloading) {
  2129. [EMAlertController showInfoAlert:@"正在下载语音,稍后点击"];
  2130. return;
  2131. }
  2132. __weak typeof(self) weakself = self;
  2133. void (^playBlock)(EMMessageModel *aModel) = ^(EMMessageModel *aModel) {
  2134. id model = [EMAudioPlayerHelper sharedHelper].model;
  2135. if (model && [model isKindOfClass:[EMMessageModel class]]) {
  2136. EMMessageModel *oldModel = (EMMessageModel *)model;
  2137. if (oldModel.isPlaying) {
  2138. oldModel.isPlaying = NO;
  2139. }
  2140. }
  2141. if (!aModel.emModel.isReadAcked) {
  2142. [[EMClient sharedClient].chatManager sendMessageReadAck:aModel.emModel.messageId toUser:aModel.emModel.conversationId completion:nil];
  2143. }
  2144. aModel.isPlaying = YES;
  2145. if (!aModel.emModel.isRead) {
  2146. aModel.emModel.isRead = YES;
  2147. }
  2148. [weakself.tableView reloadData];
  2149. [[EMAudioPlayerHelper sharedHelper] startPlayerWithPath:body.localPath model:aModel AVAudioSessionCategory:AVAudioSessionCategoryPlayAndRecord completion:^(NSError * _Nonnull error) {
  2150. aModel.isPlaying = NO;
  2151. [weakself.tableView reloadData];
  2152. }];
  2153. };
  2154. if (body.downloadStatus == EMDownloadStatusSucceed) {
  2155. playBlock(model);
  2156. return;
  2157. }
  2158. if (![EMClient sharedClient].options.isAutoTransferMessageAttachments) {
  2159. [self _showCustomTransferFileAlertView];
  2160. return;
  2161. }
  2162. [self showHudInView:self.view hint:@"下载语音..."];
  2163. [[EMClient sharedClient].chatManager downloadMessageAttachment:model.emModel progress:nil completion:^(EMMessage *message, EMError *error) {
  2164. [weakself hideHud];
  2165. if (error) {
  2166. [EMAlertController showErrorAlert:@"下载语音失败"];
  2167. } else {
  2168. playBlock(model);
  2169. }
  2170. }];
  2171. }
  2172. - (void)_showMenuViewController:(EMMessageCell *)aCell
  2173. model:(EMMessageModel *)aModel
  2174. {
  2175. [self becomeFirstResponder];
  2176. NSMutableArray *items = [[NSMutableArray alloc] init];
  2177. if (aModel.type == EMMessageTypeText || aModel.type == EMMessageTypeImage) {
  2178. [items addObject:self.copyMenuItem];
  2179. [items addObject:self.transpondMenuItem];
  2180. // } else if (aModel.type == EMMessageTypeLocation || aModel.type == EMMessageTypeImage || aModel.type == EMMessageTypeVideo) {
  2181. // [items addObject:self.transpondMenuItem];
  2182. }else if(aModel.type == EMMessageTypeExtApp){
  2183. [items addObject:self.transpondMenuItem];
  2184. }else if(aModel.type == EMMessageTypeVoice){
  2185. [items addObject:self.playAndRecordMenuItem];
  2186. }
  2187. if (aModel.emModel.direction == EMMessageDirectionSend) {
  2188. [items addObject:self.recallMenuItem];
  2189. }
  2190. [items addObject:self.deleteMenuItem];
  2191. [self.menuController setMenuItems:items];
  2192. [self.menuController setTargetRect:aCell.bubbleView.frame inView:aCell];
  2193. [self.menuController setMenuVisible:YES animated:NO];
  2194. }
  2195. #pragma mark - Transpond Message
  2196. - (void)_forwardMsgWithBody:(EMMessageBody *)aBody
  2197. to:(NSString *)aTo
  2198. ext:(NSDictionary *)aExt
  2199. completion:(void (^)(EMMessage *message))aCompletionBlock
  2200. {
  2201. NSString *from = [[EMClient sharedClient] currentUsername];
  2202. EMMessage *message = [[EMMessage alloc] initWithConversationID:aTo from:from to:aTo body:aBody ext:aExt];
  2203. message.chatType = EMChatTypeChat;
  2204. __weak typeof(self) weakself = self;
  2205. [[EMClient sharedClient].chatManager sendMessage:message progress:nil completion:^(EMMessage *message, EMError *error) {
  2206. if (error) {
  2207. [weakself.conversationModel.emModel deleteMessageWithId:message.messageId error:nil];
  2208. SHOWERROR(@"转发消息失败");
  2209. } else {
  2210. if (aCompletionBlock) {
  2211. aCompletionBlock(message);
  2212. }
  2213. SHOWSUCCESS(@"转发消息成功");
  2214. }
  2215. }];
  2216. }
  2217. - (void)_forwardImageMsg:(EMMessage *)aMsg
  2218. toUser:(NSString *)aUsername
  2219. {
  2220. NSString *thumbnailLocalPath = [(EMImageMessageBody *)aMsg.body thumbnailLocalPath];
  2221. __weak typeof(self) weakself = self;
  2222. void (^block)(EMMessage *aMessage) = ^(EMMessage *aMessage) {
  2223. EMImageMessageBody *oldBody = (EMImageMessageBody *)aMessage.body;
  2224. EMImageMessageBody *newBody = [[EMImageMessageBody alloc] initWithData:nil thumbnailData:[NSData dataWithContentsOfFile:oldBody.thumbnailLocalPath]];
  2225. newBody.thumbnailRemotePath = oldBody.thumbnailRemotePath;
  2226. newBody.remotePath = oldBody.remotePath;
  2227. [weakself _forwardMsgWithBody:newBody to:aUsername ext:aMsg.ext completion:^(EMMessage *message) {
  2228. [(EMImageMessageBody *)message.body setLocalPath:oldBody.localPath];
  2229. [[EMClient sharedClient].chatManager updateMessage:message completion:nil];
  2230. }];
  2231. };
  2232. if (![[NSFileManager defaultManager] fileExistsAtPath:thumbnailLocalPath]) {
  2233. [[EMClient sharedClient].chatManager downloadMessageThumbnail:aMsg progress:nil completion:^(EMMessage *message, EMError *error) {
  2234. if (error) {
  2235. SHOWERROR(@"转发消息失败");
  2236. } else {
  2237. block(aMsg);
  2238. }
  2239. }];
  2240. } else {
  2241. block(aMsg);
  2242. }
  2243. }
  2244. - (void)_forwardVideoMsg:(EMMessage *)aMsg
  2245. toUser:(NSString *)aUsername
  2246. {
  2247. EMVideoMessageBody *oldBody = (EMVideoMessageBody *)aMsg.body;
  2248. __weak typeof(self) weakself = self;
  2249. void (^block)(EMMessage *aMessage) = ^(EMMessage *aMessage) {
  2250. EMVideoMessageBody *newBody = [[EMVideoMessageBody alloc] initWithLocalPath:oldBody.localPath displayName:oldBody.displayName];
  2251. newBody.thumbnailLocalPath = oldBody.thumbnailLocalPath;
  2252. [weakself _forwardMsgWithBody:newBody to:aUsername ext:aMsg.ext completion:^(EMMessage *message) {
  2253. [(EMVideoMessageBody *)message.body setLocalPath:[(EMVideoMessageBody *)aMessage.body localPath]];
  2254. [[EMClient sharedClient].chatManager updateMessage:message completion:nil];
  2255. }];
  2256. };
  2257. if (![[NSFileManager defaultManager] fileExistsAtPath:oldBody.localPath]) {
  2258. [[EMClient sharedClient].chatManager downloadMessageAttachment:aMsg progress:nil completion:^(EMMessage *message, EMError *error) {
  2259. if (error) {
  2260. SHOWERROR(@"转发消息失败");
  2261. } else {
  2262. block(aMsg);
  2263. }
  2264. }];
  2265. } else {
  2266. block(aMsg);
  2267. }
  2268. }
  2269. - (void)_transpondMsg:(EMMessageModel *)aModel
  2270. toUser:(NSString *)aUsername
  2271. {
  2272. EMMessageBodyType type = aModel.emModel.body.type;
  2273. if (type == EMMessageBodyTypeText || type == EMMessageBodyTypeLocation) {
  2274. [self _forwardMsgWithBody:aModel.emModel.body to:aUsername ext:aModel.emModel.ext completion:nil];
  2275. } else if (type == EMMessageBodyTypeImage) {
  2276. [self _forwardImageMsg:aModel.emModel toUser:aUsername];
  2277. } else if (type == EMMessageBodyTypeVideo) {
  2278. [self _forwardVideoMsg:aModel.emModel toUser:aUsername];
  2279. }
  2280. }
  2281. #pragma mark - Send Message
  2282. - (void)_sendTextAction:(NSString *)aText
  2283. ext:(NSDictionary *)aExt
  2284. {
  2285. [self.chatBar clearInputViewText];
  2286. [self clearUserInfoInDocument];
  2287. if ([aText length] == 0) {
  2288. return;
  2289. }
  2290. //TODO: 处理@
  2291. //messageExt
  2292. //TODO: 处理表情
  2293. // NSString *sendText = [EaseConvertToCommonEmoticonsHelper convertToCommonEmoticons:aText];
  2294. EMTextMessageBody *body = [[EMTextMessageBody alloc] initWithText:aText];
  2295. [self _sendMessageWithBody:body ext:aExt isUpload:NO];
  2296. if (self.enableTyping) {
  2297. [self _sendEndTyping];
  2298. }
  2299. }
  2300. - (void)_sendImageDataAction:(NSData *)aImageData
  2301. {
  2302. EMImageMessageBody *body = [[EMImageMessageBody alloc] initWithData:aImageData displayName:@"image"];
  2303. [self _sendMessageWithBody:body ext:nil isUpload:YES];
  2304. }
  2305. - (void)_sendLocationAction:(CLLocationCoordinate2D)aCoord
  2306. address:(NSString *)aAddress
  2307. {
  2308. EMLocationMessageBody *body = [[EMLocationMessageBody alloc] initWithLatitude:aCoord.latitude longitude:aCoord.longitude address:aAddress];
  2309. [self _sendMessageWithBody:body ext:nil isUpload:NO];
  2310. }
  2311. - (void)_sendVideoAction:(NSURL *)aUrl
  2312. {
  2313. EMVideoMessageBody *body = [[EMVideoMessageBody alloc] initWithLocalPath:[aUrl path] displayName:@"video.mp4"];
  2314. [self _sendMessageWithBody:body ext:nil isUpload:YES];
  2315. }
  2316. - (void)_sendBeginTyping
  2317. {
  2318. NSString *from = [[EMClient sharedClient] currentUsername];
  2319. NSString *to = self.conversationModel.emModel.conversationId;
  2320. EMCmdMessageBody *body = [[EMCmdMessageBody alloc] initWithAction:MSG_TYPING_BEGIN];
  2321. body.isDeliverOnlineOnly = YES;
  2322. EMMessage *message = [[EMMessage alloc] initWithConversationID:to from:from to:to body:body ext:nil];
  2323. message.chatType = (EMChatType)self.conversationModel.emModel.type;
  2324. [[EMClient sharedClient].chatManager sendMessage:message progress:nil completion:nil];
  2325. }
  2326. //正在输入
  2327. - (void)_sendEndTyping
  2328. {
  2329. self.isTyping = NO;
  2330. NSString *from = [[EMClient sharedClient] currentUsername];
  2331. NSString *to = self.conversationModel.emModel.conversationId;
  2332. EMCmdMessageBody *body = [[EMCmdMessageBody alloc] initWithAction:MSG_TYPING_END];
  2333. body.isDeliverOnlineOnly = YES;
  2334. EMMessage *message = [[EMMessage alloc] initWithConversationID:to from:from to:to body:body ext:nil];
  2335. message.chatType = (EMChatType)self.conversationModel.emModel.type;
  2336. [[EMClient sharedClient].chatManager sendMessage:message progress:nil completion:nil];
  2337. }
  2338. #pragma mark - Data
  2339. - (NSArray *)_formatMessages:(NSArray<EMMessage *> *)aMessages
  2340. {
  2341. NSMutableArray *formated = [[NSMutableArray alloc] init];
  2342. for (int i = 0; i < [aMessages count]; i++) {
  2343. EMMessage *msg = aMessages[i];
  2344. // cmd消息不展示
  2345. if(msg.body.type == EMMessageBodyTypeCmd) {
  2346. continue;
  2347. }
  2348. if (msg.chatType == EMChatTypeChat && msg.isReadAcked && (msg.body.type == EMMessageBodyTypeText || msg.body.type == EMMessageBodyTypeLocation)) {
  2349. //
  2350. [[EMClient sharedClient].chatManager sendMessageReadAck:msg.messageId toUser:msg.conversationId completion:nil];
  2351. } else if (msg.chatType == EMChatTypeGroupChat && !msg.isReadAcked && (msg.body.type == EMMessageBodyTypeText || msg.body.type == EMMessageBodyTypeLocation)) {
  2352. }
  2353. CGFloat interval = (self.msgTimelTag - msg.timestamp) / 1000;
  2354. if (self.msgTimelTag < 0 || interval > 60 || interval < -60) {
  2355. NSString *timeStr = [EMDateHelper formattedTimeFromTimeInterval:msg.timestamp];
  2356. [formated addObject:timeStr];
  2357. self.msgTimelTag = msg.timestamp;
  2358. }
  2359. EMMessageModel *model = [[EMMessageModel alloc] initWithEMMessage:msg];
  2360. [formated addObject:model];
  2361. }
  2362. return formated;
  2363. }
  2364. - (void)tableViewDidTriggerHeaderRefresh
  2365. {
  2366. __weak typeof(self) weakself = self;
  2367. void (^block)(NSArray *aMessages, EMError *aError) = ^(NSArray *aMessages, EMError *aError) {
  2368. if (!aError && [aMessages count]) {
  2369. EMMessage *msg = aMessages[0];
  2370. weakself.moreMsgId = msg.messageId;
  2371. dispatch_async(self.msgQueue, ^{
  2372. NSArray *formated = [weakself _formatMessages:aMessages];
  2373. [weakself.dataArray insertObjects:formated atIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, [formated count])]];
  2374. if (![weakself.dataArray.firstObject isKindOfClass:[NSString class]]) {
  2375. [weakself.dataArray removeObjectAtIndex:0];
  2376. }
  2377. dispatch_async(dispatch_get_main_queue(), ^{
  2378. [weakself.tableView reloadData];
  2379. [weakself returnMessge];
  2380. if (weakself.isFirstLoadMsg) {
  2381. weakself.isFirstLoadMsg = NO;
  2382. [weakself _scrollToBottomRow];
  2383. }
  2384. });
  2385. });
  2386. }
  2387. if (!aError && [aMessages count] == 0) {
  2388. [weakself returnMessge];
  2389. }
  2390. [weakself tableViewDidFinishTriggerHeader:YES reload:NO];
  2391. };
  2392. if ([EMDemoOptions sharedOptions].isPriorityGetMsgFromServer) {
  2393. EMConversation *conversation = self.conversationModel.emModel;
  2394. [EMClient.sharedClient.chatManager asyncFetchHistoryMessagesFromServer:conversation.conversationId
  2395. conversationType:conversation.type
  2396. startMessageId:self.moreMsgId
  2397. pageSize:50
  2398. completion:^(EMCursorResult *aResult, EMError *aError)
  2399. {
  2400. block(aResult.list, aError);
  2401. }];
  2402. } else {
  2403. [self.conversationModel.emModel loadMessagesStartFromId:self.moreMsgId
  2404. count:50
  2405. searchDirection:EMMessageSearchDirectionUp
  2406. completion:block];
  2407. if(self.conversationModel.emModel.unreadMessagesCount > 0){
  2408. [self sendDidReadReceipt];
  2409. }
  2410. }
  2411. }
  2412. #pragma mark - 转发消息
  2413. - (void)returnMessge
  2414. {
  2415. if (self.isReturn) {
  2416. self.backRoot = YES;
  2417. self.isReturn = NO;
  2418. [[NSNotificationCenter defaultCenter] postNotificationName:MESSAGERETURNSUCCESS object:nil];
  2419. switch (self.sendModel.SoureTypeId) {
  2420. case CollectModel_Text:///文本
  2421. {
  2422. [self _sendTextAction:self.sendModel.Title ext:nil];
  2423. }
  2424. break;
  2425. case CollectModel_Aritle:
  2426. {
  2427. [self _sendTextAction:@"文章" ext:@{@"app":@(YES),
  2428. @"app_type":@(CollectModel_Aritle),
  2429. @"app_title":self.sendModel.Title,
  2430. @"app_id":@(self.sendModel.SoureId),
  2431. @"app_content":@"来自-文章",
  2432. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2433. @"app_min_url":self.sendModel.MinUrl,
  2434. @"app_url":self.sendModel.Url,
  2435. }];
  2436. }
  2437. break;
  2438. case CollectModel_Notice:
  2439. {
  2440. [self _sendTextAction:@"通知" ext:@{@"app":@(YES),
  2441. @"app_type":@(CollectModel_Notice),
  2442. @"app_title":self.sendModel.Title,
  2443. @"app_id":@(self.sendModel.SoureId),
  2444. @"app_content":@"来自-通知",
  2445. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2446. @"app_min_url":self.sendModel.MinUrl,
  2447. @"app_url":self.sendModel.Url,
  2448. }];
  2449. }
  2450. break;
  2451. case CollectModel_NoteBook:
  2452. {
  2453. [self _sendTextAction:@"笔记" ext:@{@"app":@(YES),
  2454. @"app_type":@(CollectModel_NoteBook),
  2455. @"app_title":self.sendModel.Title,
  2456. @"app_id":@(self.sendModel.SoureId),
  2457. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2458. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2459. @"app_min_url":self.sendModel.MinUrl,
  2460. @"app_url":self.sendModel.Url,
  2461. }];
  2462. }
  2463. break;
  2464. case CollectModel_NewTopic:
  2465. {
  2466. [self _sendTextAction:@"话题" ext:@{@"app":@(YES),
  2467. @"app_type":@(CollectModel_NewTopic),
  2468. @"app_title":self.sendModel.Title,
  2469. @"app_id":@(self.sendModel.SoureId),
  2470. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2471. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2472. @"app_min_url":self.sendModel.MinUrl,
  2473. @"app_url":self.sendModel.Url,
  2474. }];
  2475. }
  2476. break;
  2477. case CollectModel_Toipc:
  2478. {
  2479. [self _sendTextAction:@"小组话题" ext:@{@"app":@(YES),
  2480. @"app_type":@(CollectModel_Toipc),
  2481. @"app_title":self.sendModel.Title,
  2482. @"app_id":@(self.sendModel.SoureId),
  2483. @"app_groupname":self.sendModel.GroupName,
  2484. @"app_groupid":@(self.sendModel.GroupId),
  2485. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2486. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2487. @"app_min_url":self.sendModel.MinUrl,
  2488. @"app_url":self.sendModel.Url,
  2489. }];
  2490. }
  2491. break;
  2492. case CollectModel_InterMail:
  2493. {
  2494. [self _sendTextAction:@"站内信" ext:@{@"app":@(YES),
  2495. @"app_type":@(CollectModel_InterMail),
  2496. @"app_title":self.sendModel.Title,
  2497. @"app_id":@(self.sendModel.SoureId),
  2498. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2499. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2500. @"app_min_url":self.sendModel.MinUrl,
  2501. @"app_url":self.sendModel.Url,
  2502. }];
  2503. }
  2504. break;
  2505. case CollectModel_NoSignMail:
  2506. {
  2507. [self _sendTextAction:@"站内信" ext:@{@"app":@(YES),
  2508. @"app_type":@(CollectModel_InterMail),
  2509. @"app_title":self.sendModel.Title,
  2510. @"app_id":@(self.sendModel.SoureId),
  2511. @"app_content":@"匿名",
  2512. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2513. @"app_min_url":self.sendModel.MinUrl,
  2514. @"app_url":self.sendModel.Url,
  2515. }];
  2516. }
  2517. break;
  2518. case CollectModel_CollectFile:
  2519. {
  2520. [self _sendTextAction:@"收藏文件夹" ext:@{@"app":@(YES),
  2521. @"app_type":@(CollectModel_CollectFile),
  2522. @"app_title":self.sendModel.Title,
  2523. @"app_id":@(self.sendModel.SoureId),
  2524. @"app_content":@"来自-收藏文件夹",
  2525. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2526. @"app_min_url":self.sendModel.MinUrl,
  2527. @"app_url":self.sendModel.Url,
  2528. }];
  2529. }
  2530. break;
  2531. case CollectModel_NoteFile:
  2532. {
  2533. [self _sendTextAction:@"笔记文件夹" ext:@{@"app":@(YES),
  2534. @"app_type":@(CollectModel_NoteFile),
  2535. @"app_title":self.sendModel.Title,
  2536. @"app_id":@(self.sendModel.SoureId),
  2537. @"app_content":@"来自-笔记文件夹",
  2538. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2539. @"app_min_url":self.sendModel.MinUrl,
  2540. @"app_url":self.sendModel.Url,
  2541. }];
  2542. }
  2543. break;
  2544. case CollectModel_meetMian:
  2545. {
  2546. [self _sendTextAction:@"会议纪要" ext:@{@"app":@(YES),
  2547. @"app_type":@(CollectModel_meetMian),
  2548. @"app_title":self.sendModel.Title,
  2549. @"app_id":@(self.sendModel.SoureId),
  2550. @"app_content":@"来自-会议纪要",
  2551. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2552. @"app_min_url":self.sendModel.MinUrl,
  2553. @"app_url":self.sendModel.Url,
  2554. }];
  2555. }
  2556. break;
  2557. case CollectModel_Image:///图片
  2558. {
  2559. [self _sendImageDataAction:[NSData dataWithContentsOfURL:[NSURL URLWithString:self.sendModel.Url]]];
  2560. }
  2561. break;
  2562. case CollectModel_file:///文件
  2563. {
  2564. [self _sendTextAction:@"文件" ext:@{@"app":@(YES),
  2565. @"app_type":@(CollectModel_file),
  2566. @"app_title":self.sendModel.Title,
  2567. @"app_id":@(self.sendModel.SoureId),
  2568. @"app_content":@"来自-文件",
  2569. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2570. @"app_min_url":self.sendModel.MinUrl,
  2571. @"app_url":self.sendModel.Url,
  2572. }];
  2573. }
  2574. break;
  2575. case CollectModel_work:///工作
  2576. {
  2577. [self _sendTextAction:@"审批" ext:@{@"app":@(YES),
  2578. @"app_type":@(CollectModel_work),
  2579. @"app_title":self.sendModel.Title,
  2580. @"app_id":@(self.sendModel.SoureId),
  2581. @"app_content":@"来自-审批",
  2582. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2583. @"app_min_url":@"",
  2584. @"app_url":@""
  2585. }];
  2586. }
  2587. break;
  2588. case CollectModel_meetDetail:///会议
  2589. {
  2590. [self _sendTextAction:@"会议" ext:@{@"app":@(YES),
  2591. @"app_type":@(CollectModel_meetDetail),
  2592. @"app_title":self.sendModel.Title,
  2593. @"app_id":@(self.sendModel.SoureId),
  2594. @"app_content":@"来自-会议",
  2595. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2596. @"app_min_url":@"",
  2597. @"app_url":@""
  2598. }];
  2599. }
  2600. break;
  2601. case CollectModel_financeCount:///文本
  2602. {
  2603. [self _sendTextAction:@"财务统计" ext:@{@"app":@(YES),
  2604. @"app_type":@(CollectModel_financeCount),
  2605. @"app_title":self.sendModel.Title,
  2606. @"app_id":@(self.sendModel.SoureId),
  2607. @"app_content":@"来自-财务统计",
  2608. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2609. @"app_min_url":@"",
  2610. @"app_url":@""
  2611. }];
  2612. }
  2613. break;
  2614. case CollectModel_affairsCount:///文本
  2615. {
  2616. [self _sendTextAction:@"人事统计" ext:@{@"app":@(YES),
  2617. @"app_type":@(CollectModel_affairsCount),
  2618. @"app_title":self.sendModel.Title,
  2619. @"app_id":@(self.sendModel.SoureId),
  2620. @"app_content":@"来自-人事统计",
  2621. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2622. @"app_min_url":@"",
  2623. @"app_url":@""
  2624. }];
  2625. }
  2626. break;
  2627. case CollectModel_publishCount:///文本
  2628. {
  2629. [self _sendTextAction:@"出版统计" ext:@{@"app":@(YES),
  2630. @"app_type":@(CollectModel_publishCount),
  2631. @"app_title":self.sendModel.Title,
  2632. @"app_id":@(self.sendModel.SoureId),
  2633. @"app_content":@"来自-出版统计",
  2634. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2635. @"app_min_url":@"",
  2636. @"app_url":@""
  2637. }];
  2638. }
  2639. break;
  2640. case CollectModel_TopicBooK:///文本
  2641. {
  2642. [self _sendTextAction:@"话题本" ext:@{@"app":@(YES),
  2643. @"app_type":@(CollectModel_TopicBooK),
  2644. @"app_title":self.sendModel.Title,
  2645. @"app_id":@(self.sendModel.SoureId),
  2646. @"app_content":@"来自-话题本",
  2647. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2648. @"app_min_url":@"",
  2649. @"app_url":@""
  2650. }];
  2651. }
  2652. break;
  2653. case CollectModel_TopicSubBooK:///文本
  2654. {
  2655. [self _sendTextAction:@"话题本" ext:@{@"app":@(YES),
  2656. @"app_type":@(CollectModel_TopicSubBooK),
  2657. @"app_title":self.sendModel.Title,
  2658. @"app_id":@(self.sendModel.SoureId),
  2659. @"app_content":@"来自-话题本",
  2660. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2661. @"app_min_url":@"",
  2662. @"app_url":@""
  2663. }];
  2664. }
  2665. break;
  2666. case CollectModel_StoreSound:///文本
  2667. {
  2668. [self _sendTextAction:@"音频" ext:@{@"app":@(YES),
  2669. @"app_type":@(CollectModel_StoreSound),
  2670. @"app_title":self.sendModel.Title,
  2671. @"app_id":@(self.sendModel.SoureId),
  2672. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2673. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2674. @"app_min_url":self.sendModel.MinUrl,
  2675. @"app_url":self.sendModel.Url
  2676. }];
  2677. }
  2678. break;
  2679. case CollectModel_StoreVideo:///文本
  2680. {
  2681. [self _sendTextAction:@"视频" ext:@{@"app":@(YES),
  2682. @"app_type":@(CollectModel_StoreVideo),
  2683. @"app_title":self.sendModel.Title,
  2684. @"app_id":@(self.sendModel.SoureId),
  2685. @"app_content":ISEmpty(self.sendModel.Author) ? @"" : self.sendModel.Author,
  2686. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2687. @"app_min_url":self.sendModel.MinUrl,
  2688. @"app_url":self.sendModel.Url
  2689. }];
  2690. }
  2691. break;
  2692. default:
  2693. {
  2694. [self _sendTextAction:@"出版统计" ext:@{@"app":@(YES),
  2695. @"app_type":@(CollectModel_publishCount),
  2696. @"app_title":self.sendModel.Title,
  2697. @"app_id":@(self.sendModel.SoureId),
  2698. @"app_content":@"来自-出版统计",
  2699. @"app_sourceUserId":@(self.sendModel.SourceUserId),
  2700. @"app_min_url":@"",
  2701. @"app_url":@""
  2702. }];
  2703. }
  2704. break;
  2705. }
  2706. }
  2707. }
  2708. #pragma mark - Action
  2709. - (void)backAction
  2710. {
  2711. [[EMAudioPlayerHelper sharedHelper] stopPlayer];
  2712. [EMConversationHelper resortConversationsLatestMessage];
  2713. EMConversation *conversation = self.conversationModel.emModel;
  2714. if (conversation.type == EMChatTypeChatRoom) {
  2715. [[EMClient sharedClient].roomManager leaveChatroom:conversation.conversationId completion:nil];
  2716. }
  2717. [self.navigationController popViewControllerAnimated:YES];
  2718. }
  2719. //删除该会话所有消息,同时清除内存和数据库中的消息
  2720. - (void)deleteAllMessageAction
  2721. {
  2722. EMError *error = nil;
  2723. [self.conversationModel.emModel deleteAllMessages:&error];
  2724. if (!error) {
  2725. [self.dataArray removeAllObjects];
  2726. [self.tableView reloadData];
  2727. }
  2728. }
  2729. - (void)groupOrChatroomInfoAction
  2730. {
  2731. if (self.conversationModel.emModel.type == EMConversationTypeGroupChat) {
  2732. [[NSNotificationCenter defaultCenter] postNotificationName:GROUP_INFO_PUSHVIEWCONTROLLER object:@{NOTIF_ID:self.conversationModel.emModel.conversationId, NOTIF_NAVICONTROLLER:self.navigationController}];
  2733. } else if (self.conversationModel.emModel.type == EMConversationTypeChatRoom) {
  2734. [[NSNotificationCenter defaultCenter] postNotificationName:CHATROOM_INFO_PUSHVIEWCONTROLLER object:@{NOTIF_ID:self.conversationModel.emModel.conversationId, NOTIF_NAVICONTROLLER:self.navigationController}];
  2735. }
  2736. }
  2737. //发送消息体
  2738. - (void)_sendMessageWithBody:(EMMessageBody *)aBody
  2739. ext:(NSDictionary *)aExt
  2740. isUpload:(BOOL)aIsUpload
  2741. {
  2742. if (!([EMClient sharedClient].options.isAutoTransferMessageAttachments) && aIsUpload) {
  2743. [self _showCustomTransferFileAlertView];
  2744. return;
  2745. }
  2746. NSString *from = [[EMClient sharedClient] currentUsername];
  2747. NSString *to = self.conversationModel.emModel.conversationId;
  2748. EMMessage *message = [[EMMessage alloc] initWithConversationID:to from:from to:to body:aBody ext:aExt];
  2749. //是否需要发送阅读回执
  2750. if([aExt objectForKey:MSG_EXT_READ_RECEIPT]) {
  2751. message.isNeedGroupAck = YES;
  2752. }
  2753. message.chatType = (EMChatType)self.conversationModel.emModel.type;
  2754. __weak typeof(self) weakself = self;
  2755. [[EMClient sharedClient].chatManager sendMessage:message progress:nil completion:^(EMMessage *message, EMError *error) {
  2756. NSArray *formated = [weakself _formatMessages:@[message]];
  2757. [weakself.dataArray addObjectsFromArray:formated];
  2758. dispatch_async(dispatch_get_main_queue(), ^{
  2759. [weakself.tableView reloadData];
  2760. [weakself _scrollToBottomRow];
  2761. });
  2762. NSLog(@"%@",@{@"ContactUserId":[NSString stringWithFormat:@"%ld",(long)self.toUserId],@"IndividualGroupId":@(self.IndividualGroupId)});
  2763. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2764. [[HttpManager sharedHttpManager] POSTUrl:Host(Often_Contact_Add_Post) parameters:@{@"ContactUserId":[NSString stringWithFormat:@"%ld",(long)self.toUserId],@"IndividualGroupId":@(self.IndividualGroupId),@"ChatType":@(self.chatType)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  2765. NSLog(@"%@",responseObject);
  2766. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  2767. NSInteger listId = [[responseObject objectForKey:@"Id"] integerValue];
  2768. if (listId > 0) {
  2769. weakself.listId = listId;
  2770. weakself.isTop = [[responseObject objectForKey:@"IsTop"] integerValue];
  2771. }
  2772. }
  2773. } failure:^(NSError * _Nonnull error) {
  2774. }];
  2775. });
  2776. }];
  2777. }
  2778. #pragma mark - CustomView
  2779. - (UIView *)titleV
  2780. {
  2781. if (!_titleV) {
  2782. _titleV = [UIView new];
  2783. _titleV.backgroundColor = [UIColor whiteColor];
  2784. }
  2785. return _titleV;
  2786. }
  2787. - (UIButton *)backBtn
  2788. {
  2789. if (!_backBtn) {
  2790. _backBtn = [UIButton new];
  2791. [_backBtn setImage:[UIImage imageNamed:@"back_black_icon"] forState:UIControlStateNormal];
  2792. }
  2793. return _backBtn;
  2794. }
  2795. - (UIButton *)tabBtn
  2796. {
  2797. if (!_tabBtn) {
  2798. _tabBtn = [UIButton new];
  2799. [_tabBtn setImage:[UIImage imageNamed:@"menu_black_icon"] forState:UIControlStateNormal];
  2800. }
  2801. return _tabBtn;
  2802. }
  2803. - (UILabel *)titleL
  2804. {
  2805. if (!_titleL) {
  2806. _titleL = [UILabel new];
  2807. [_titleL setTextColor: UIColorHex(0A0A0A)];
  2808. _titleL.font = [UIFont systemFontOfSize:18];
  2809. }
  2810. return _titleL;
  2811. }
  2812. - (UIButton *)mangerBtn
  2813. {
  2814. if (!_mangerBtn) {
  2815. _mangerBtn = [UIButton new];
  2816. [_mangerBtn setImage:[UIImage imageNamed:@"chatmsg_detailchat_more_icon"] forState:UIControlStateNormal];
  2817. }
  2818. return _mangerBtn;
  2819. }
  2820. - (NSMutableArray *)userInfoArray
  2821. {
  2822. if (!_userInfoArray) {
  2823. _userInfoArray = [NSMutableArray array];
  2824. }
  2825. return _userInfoArray;
  2826. }
  2827. - (void)selectMoreMenu:(NSInteger)index title:(NSString *)title
  2828. {
  2829. switch (index) {
  2830. case 0:{
  2831. [self chatBarDidCameraAction];
  2832. }break;
  2833. case 1:{
  2834. [self chatBarDidPhotoAction];
  2835. }break;
  2836. case 2:{
  2837. FavoritesViewController *favorites = [[FavoritesViewController alloc] init];
  2838. favorites.title = @"我的笔记";
  2839. [self.navigationController pushViewController:favorites animated:YES];
  2840. }break;
  2841. case 3:{
  2842. FavoritesViewController *favorites = [[FavoritesViewController alloc] init];
  2843. favorites.title = @"我的收藏";
  2844. [self.navigationController pushViewController:favorites animated:YES];
  2845. }break;
  2846. default:
  2847. break;
  2848. }
  2849. }
  2850. - (NSMutableArray *)chatDistoryArray
  2851. {
  2852. if(!_chatDistoryArray)
  2853. {
  2854. _chatDistoryArray = [[NSMutableArray alloc] initWithArray:USERDEFAULTSGET(@"ChatList")];
  2855. }
  2856. return _chatDistoryArray;
  2857. }
  2858. - (NSString *)getUserInfoInDocument{
  2859. for (NSDictionary * dict in self.chatDistoryArray) {
  2860. if ([[dict objectForKey:@"ImId"] isEqualToString:self.conversationModel.emModel.conversationId]) {
  2861. NSString * text = [dict objectForKey:@"text"];
  2862. return text;
  2863. }
  2864. }
  2865. return @"";
  2866. }
  2867. - (void)clearUserInfoInDocument
  2868. {
  2869. for (NSDictionary * dict in self.chatDistoryArray) {
  2870. if ([[dict objectForKey:@"ImId"] isEqualToString:self.conversationModel.emModel.conversationId]) {
  2871. [self.chatDistoryArray removeObject:dict];
  2872. break;
  2873. }
  2874. }
  2875. USERDEFAULTSSET(self.chatDistoryArray,@"ChatList");
  2876. }
  2877. - (void)saveUserInfoInDocument:(NSString *)text{
  2878. for (NSDictionary * dict in self.chatDistoryArray) {
  2879. if ([[dict objectForKey:@"ImId"] isEqualToString:self.conversationModel.emModel.conversationId]) {
  2880. [self.chatDistoryArray removeObject:dict];
  2881. break;
  2882. }
  2883. }
  2884. [self.chatDistoryArray addObject:@{@"ImId":self.conversationModel.emModel.conversationId,@"text":text}];
  2885. USERDEFAULTSSET(self.chatDistoryArray,@"ChatList");
  2886. }
  2887. - (void)deleteConversationMsg
  2888. {
  2889. WS(weakSelf);
  2890. [[EMClient sharedClient].chatManager deleteConversation:self.conversationModel.emModel.conversationId isDeleteMessages:YES completion:^(NSString *aConversationId, EMError *aError) {
  2891. [weakSelf deleteAllMessageAction];
  2892. }];
  2893. }
  2894. #pragma mark - 转发
  2895. - (void)shareHander{
  2896. [self.noteBookShareVC initNoteBookShareData];
  2897. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  2898. }
  2899. - (NoteBookShareVC *)noteBookShareVC{
  2900. if (_noteBookShareVC == nil) {
  2901. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  2902. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  2903. [_noteBookShareVC.view setHidden:YES];
  2904. _noteBookShareVC.delegate = self;
  2905. }
  2906. return _noteBookShareVC;
  2907. }
  2908. -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
  2909. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  2910. if ([typeName isEqualToString:@"发给微信好友"]) {
  2911. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  2912. }else if ([typeName isEqualToString:@"发到微博"]){
  2913. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  2914. }else if ([typeName isEqualToString:@"发到消息"]){
  2915. }else if ([typeName isEqualToString:@"发到小组"]){
  2916. // [self returnToGroup];
  2917. }else if ([typeName isEqualToString:@"发到笔记"]){
  2918. [self returnToNote];
  2919. }else if ([typeName isEqualToString:@"发到话题"]){
  2920. [self returnToTopic];
  2921. }else{
  2922. }
  2923. }
  2924. #pragma mark - 分享功能
  2925. //- (void)returnToGroup
  2926. //{
  2927. // MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  2928. // vc.type = CollectModel_Group;
  2929. // FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  2930. // model.SoureId = self.Id;
  2931. // model.SoureTypeId = self.type;
  2932. // model.Title = self.currentNoteModel.Title;
  2933. // model.Author = self.currentNoteModel.UserName;
  2934. // vc.sendModel = model;
  2935. // vc.isReturn = YES;
  2936. // [self.navigationController pushViewController:vc animated:YES];
  2937. //}
  2938. - (void)returnToNote
  2939. {
  2940. MoveViewController * vc = [MoveViewController initMoveViewController];
  2941. vc.isFromCreateBookVc = YES;
  2942. vc.TypeId = CreateNotesType;
  2943. vc.CollectionType = CollectModel_NoteBook;
  2944. vc.ParentId = 0;
  2945. vc.sendModel = self.sendModel;
  2946. vc.sendImage = self.sendImage;
  2947. vc.isReturn = YES;
  2948. [self.navigationController pushViewController:vc animated:YES];
  2949. }
  2950. - (void)returnToTopic
  2951. {
  2952. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  2953. vc.type = CollectModel_NewTopic;
  2954. vc.sendModel = self.sendModel;
  2955. vc.sendImage = self.sendImage;
  2956. vc.isReturn = YES;
  2957. [self.navigationController pushViewController:vc animated:YES];
  2958. }
  2959. @end