-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathTGMessageViewController.m
434 lines (358 loc) · 15.4 KB
/
TGMessageViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#import "TGMessageViewController.h"
#import <WatchCommonWatch/WatchCommonWatch.h>
#import "TGWatchCommon.h"
#import "TGBridgeSendMessageSignals.h"
#import "TGBridgeRemoteSignals.h"
#import "TGBridgeAudioSignals.h"
#import "TGBridgeUserCache.h"
#import "WKInterfaceTable+TGDataDrivenTable.h"
#import "TGInputController.h"
#import "TGUserRowController.h"
#import "TGMessageViewMessageRowController.h"
#import "TGMessageViewWebPageRowController.h"
#import "TGMessageViewFooterController.h"
#import "TGUserInfoController.h"
#import "TGNeoChatsController.h"
#import "TGExtensionDelegate.h"
NSString *const TGMessageViewControllerIdentifier = @"TGMessageViewController";
@implementation TGMessageViewControllerContext
- (instancetype)initWithMessage:(TGBridgeMessage *)message peerId:(int64_t)peerId
{
self = [super init];
if (self != nil)
{
_message = message;
_peerId = peerId;
}
return self;
}
- (instancetype)initWithMessage:(TGBridgeMessage *)message channel:(TGBridgeChat *)channel
{
self = [super init];
if (self != nil)
{
_message = message;
_peerId = channel.identifier;
_channel = channel;
}
return self;
}
@end
@interface TGMessageViewController () <TGTableDataSource>
{
TGMessageViewControllerContext *_context;
SMetaDisposable *_sendMessageDisposable;
SMetaDisposable *_remoteActionDisposable;
SMetaDisposable *_playAudioDisposable;
TGBridgeMediaAttachment *_pendingAudioAttachment;
}
@end
@implementation TGMessageViewController
- (instancetype)init
{
self = [super init];
if (self != nil)
{
_sendMessageDisposable = [[SMetaDisposable alloc] init];
_remoteActionDisposable = [[SMetaDisposable alloc] init];
_playAudioDisposable = [[SMetaDisposable alloc] init];
[self.table _setInitialHidden:true];
self.table.tableDataSource = self;
}
return self;
}
- (void)dealloc
{
[_sendMessageDisposable dispose];
[_remoteActionDisposable dispose];
[_playAudioDisposable dispose];
}
- (void)configureWithContext:(TGMessageViewControllerContext *)context
{
_context = context;
[self configureHandoff];
self.title = TGLocalized(@"Watch.MessageView.Title");
__weak TGMessageViewController *weakSelf = self;
[self performInterfaceUpdate:^(bool animated)
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
strongSelf.table.hidden = false;
strongSelf.activityIndicator.hidden = true;
[strongSelf.table reloadData];
}];
}
- (void)configureHandoff
{
// int64_t peerId = _context.peerId;
// bool isGroup = _context.peerId < 0;
//
// if (isGroup)
// peerId = -peerId;
//
// NSMutableDictionary *peerDict = [[NSMutableDictionary alloc] init];
// peerDict[@"type"] = isGroup ? @"group" : @"user";
// peerDict[@"id"] = @(peerId);
//
// NSMutableDictionary *messageDict = [[NSMutableDictionary alloc] init];
// messageDict[@"autoplay"] = @false;
// messageDict[@"id"] = @(_context.message.identifier);
//
// NSDictionary *userInfo = @{@"user_id": @(_context.authorizedContext.userId), @"peer": peerDict, @"message": messageDict};
// [self updateUserActivity:@"org.telegram.message" userInfo:userInfo webpageURL:[NSURL URLWithString:@"https://telegram.org/dl"]];
}
- (void)willActivate
{
[super willActivate];
[self configureHandoff];
[self.table notifyVisiblityChange];
}
- (void)didDeactivate
{
[super didDeactivate];
}
#pragma mark -
- (Class)headerControllerClassForTable:(WKInterfaceTable *)table
{
return [TGUserRowController class];
}
- (void)table:(WKInterfaceTable *)table updateHeaderController:(TGUserRowController *)controller
{
if (_context.channel != nil)
{
[controller updateWithChannel:_context.channel context:_context.context];
}
else
{
TGBridgeUser *user = [[TGBridgeUserCache instance] userWithId:(int32_t)_context.message.fromUid];
[controller updateWithUser:user context:_context.context];
}
}
- (void)tableDidSelectHeader:(WKInterfaceTable *)table
{
if (_context.channel != nil)
{
TGUserInfoControllerContext *context = [[TGUserInfoControllerContext alloc] initWithChannel:_context.channel];
context.disallowCompose = true;
[self pushControllerWithClass:[TGUserInfoController class] context:context];
}
else
{
TGUserInfoControllerContext *context = [[TGUserInfoControllerContext alloc] initWithUserId:(int32_t)_context.message.fromUid];
[self pushControllerWithClass:[TGUserInfoController class] context:context];
}
}
- (Class)footerControllerClassForTable:(WKInterfaceTable *)table
{
return [TGMessageViewFooterController class];
}
- (void)table:(WKInterfaceTable *)table updateFooterController:(TGMessageViewFooterController *)controller
{
__weak TGMessageViewController *weakSelf = self;
controller.forwardPressed = ^
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
TGNeoChatsControllerContext *context = [[TGNeoChatsControllerContext alloc] init];
context.context = strongSelf->_context.context;
context.initialChats = [[TGExtensionDelegate instance] chatsController].chats;
context.completionBlock = ^(TGBridgeChat *peer)
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf->_sendMessageDisposable setDisposable:[[TGBridgeSendMessageSignals forwardMessageWithPeerId:strongSelf->_context.message.cid mid:strongSelf->_context.message.identifier targetPeerId:peer.identifier] startWithNext:^(TGBridgeMessage *message)
{
}]];
};
[strongSelf presentControllerWithClass:[TGNeoChatsController class] context:context];
};
controller.replyPressed = ^
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[TGInputController presentInputControllerForInterfaceController:strongSelf suggestionsForText:strongSelf->_context.message.text completion:^(NSString *text)
{
[strongSelf->_sendMessageDisposable setDisposable:[[TGBridgeSendMessageSignals sendMessageWithPeerId:strongSelf->_context.peerId text:text replyToMid:strongSelf->_context.message.identifier] startWithNext:^(TGBridgeMessage *message)
{
}]];
}];
};
controller.viewPressed = ^
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf->_remoteActionDisposable setDisposable:[[TGBridgeRemoteSignals openRemoteMessageWithPeerId:strongSelf->_context.peerId messageId:strongSelf->_context.message.identifier type:0 autoPlay:false] startWithNext:^(id next)
{
}]];
};
[controller updateWithMessage:_context.message channel:(_context.channel != nil)];
}
- (NSUInteger)numberOfRowsInTable:(WKInterfaceTable *)table section:(NSUInteger)section
{
return 1 + [self _messageHasWebPage];
}
- (Class)table:(WKInterfaceTable *)table rowControllerClassAtIndexPath:(TGIndexPath *)indexPath
{
if (indexPath.row == 1)
return [TGMessageViewWebPageRowController class];
return [TGMessageViewMessageRowController class];
}
- (void)table:(WKInterfaceTable *)table updateRowController:(TGTableRowController *)rowController forIndexPath:(NSIndexPath *)indexPath
{
__weak TGMessageViewController *weakSelf = self;
rowController.isVisible = ^bool
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return false;
return strongSelf.isVisible;
};
TGBridgeMessage *message = _context.message;
if ([rowController isKindOfClass:[TGMessageViewMessageRowController class]])
{
TGMessageViewMessageRowController *controller = (TGMessageViewMessageRowController *)rowController;
[controller updateWithMessage:message context:_context.context additionalPeers:_context.additionalPeers];
void (^openUserInfo)(int64_t) = ^(int64_t peerId)
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
if (peerId != 0)
{
TGUserInfoControllerContext *context = nil;
if (TGPeerIdIsChannel(peerId))
context = [[TGUserInfoControllerContext alloc] initWithChannel:_context.additionalPeers[@(peerId)]];
else
context = [[TGUserInfoControllerContext alloc] initWithUserId:(int32_t)peerId];
[strongSelf pushControllerWithClass:[TGUserInfoController class] context:context];
}
};
void (^openRemote)(void) = ^
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf->_remoteActionDisposable setDisposable:[[TGBridgeRemoteSignals openRemoteMessageWithPeerId:strongSelf->_context.peerId messageId:message.identifier type:0 autoPlay:true] startWithNext:^(id next)
{
}]];
};
for (TGBridgeMediaAttachment *attachment in message.media)
{
if ([attachment isKindOfClass:[TGBridgeForwardedMessageMediaAttachment class]])
{
TGBridgeForwardedMessageMediaAttachment *forwardAttachment = (TGBridgeForwardedMessageMediaAttachment *)attachment;
controller.forwardPressed = ^
{
openUserInfo(forwardAttachment.peerId);
};
}
else if ([attachment isKindOfClass:[TGBridgeContactMediaAttachment class]])
{
TGBridgeContactMediaAttachment *contactAttachment = (TGBridgeContactMediaAttachment *)attachment;
controller.contactPressed = ^
{
openUserInfo(contactAttachment.uid);
};
}
else if ([attachment isKindOfClass:[TGBridgeVideoMediaAttachment class]])
{
controller.playPressed = ^
{
openRemote();
};
}
else if ([attachment isKindOfClass:[TGBridgeAudioMediaAttachment class]])
{
__weak TGMessageViewMessageRowController *weakMessageRow = controller;
controller.playPressed = ^
{
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
TGBridgeMediaAttachment *audioAttachment = nil;
for (TGBridgeMediaAttachment *attachment in message.media)
{
if ([attachment isKindOfClass:[TGBridgeAudioMediaAttachment class]])
{
audioAttachment = (TGBridgeAudioMediaAttachment *)attachment;
}
else if ([attachment isKindOfClass:[TGBridgeDocumentMediaAttachment class]])
{
TGBridgeDocumentMediaAttachment *documentAttachment = (TGBridgeDocumentMediaAttachment *)attachment;
if (documentAttachment.isVoice)
audioAttachment = documentAttachment;
}
}
if (audioAttachment != nil)
{
__strong TGMessageViewMessageRowController *strongConversationRow = weakMessageRow;
if ([strongSelf->_pendingAudioAttachment isEqual:audioAttachment])
{
if (strongConversationRow != nil)
[strongConversationRow setProcessingState:false];
strongSelf->_pendingAudioAttachment = nil;
[strongSelf->_playAudioDisposable setDisposable:nil];
}
else
{
if (strongConversationRow != nil)
[strongConversationRow setProcessingState:true];
strongSelf->_pendingAudioAttachment = audioAttachment;
[strongSelf->_playAudioDisposable setDisposable:[[[TGBridgeAudioSignals audioForAttachment:audioAttachment conversationId:message.cid messageId:message.identifier] deliverOn:[SQueue mainQueue]] startWithNext:^(NSURL *url)
{
if (url == nil)
return;
__strong TGMessageViewController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
__strong TGMessageViewMessageRowController *strongConversationRow = weakMessageRow;
if (strongConversationRow != nil)
[strongConversationRow setProcessingState:false];
strongSelf->_pendingAudioAttachment = nil;
[strongSelf presentMediaPlayerControllerWithURL:url options:@{ WKMediaPlayerControllerOptionsAutoplayKey: @true } completion:^(BOOL didPlayToEnd, NSTimeInterval endTime, NSError *error) {}];
}]];
}
}
};
}
}
}
else if ([rowController isKindOfClass:[TGMessageViewWebPageRowController class]])
{
TGMessageViewWebPageRowController *controller = (TGMessageViewWebPageRowController *)rowController;
TGBridgeWebPageMediaAttachment *pageAttachment = nil;
for (TGBridgeMediaAttachment *attachment in _context.message.media)
{
if ([attachment isKindOfClass:[TGBridgeWebPageMediaAttachment class]])
{
pageAttachment = (TGBridgeWebPageMediaAttachment *)attachment;
break;
}
}
[controller updateWithAttachment:pageAttachment message:message];
}
}
- (bool)_messageHasWebPage
{
for (TGBridgeMediaAttachment *attachment in _context.message.media)
{
if ([attachment isKindOfClass:[TGBridgeWebPageMediaAttachment class]])
{
TGBridgeWebPageMediaAttachment *webAttachment = (TGBridgeWebPageMediaAttachment *)attachment;
if (webAttachment.title.length == 0 && webAttachment.pageDescription.length == 0)
return false;
return true;
}
}
return false;
}
+ (NSString *)identifier
{
return TGMessageViewControllerIdentifier;
}
@end