forked from mirrors/linphone-iphone
go to chat conversation view when clicking on the chat notification
This commit is contained in:
parent
ab089faa96
commit
1bce4fd48d
1 changed files with 149 additions and 161 deletions
|
|
@ -576,174 +576,162 @@ didInvalidatePushTokenForType:(NSString *)type {
|
|||
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
|
||||
didReceiveNotificationResponse:(UNNotificationResponse *)response
|
||||
withCompletionHandler:(void (^)(void))completionHandler {
|
||||
LOGD(@"UN : response received");
|
||||
LOGD(response.description);
|
||||
LOGD(@"UN : response received");
|
||||
LOGD(response.description);
|
||||
|
||||
NSString *callId = (NSString *)[response.notification.request.content.userInfo
|
||||
objectForKey:@"CallId"];
|
||||
if (!callId)
|
||||
return;
|
||||
NSString *callId = (NSString *)[response.notification.request.content.userInfo objectForKey:@"CallId"];
|
||||
if (!callId)
|
||||
return;
|
||||
|
||||
LinphoneCall *call = [LinphoneManager.instance callByCallId:callId];
|
||||
if (call) {
|
||||
LinphoneCallAppData *data =
|
||||
(__bridge LinphoneCallAppData *)linphone_call_get_user_data(call);
|
||||
if (data->timer) {
|
||||
[data->timer invalidate];
|
||||
data->timer = nil;
|
||||
}
|
||||
}
|
||||
LinphoneCall *call = [LinphoneManager.instance callByCallId:callId];
|
||||
if (call) {
|
||||
LinphoneCallAppData *data = (__bridge LinphoneCallAppData *)linphone_call_get_user_data(call);
|
||||
if (data->timer) {
|
||||
[data->timer invalidate];
|
||||
data->timer = nil;
|
||||
}
|
||||
}
|
||||
|
||||
if ([response.actionIdentifier isEqual:@"Answer"]) {
|
||||
// use the standard handler
|
||||
[PhoneMainView.instance changeCurrentView:CallView.compositeViewDescription];
|
||||
linphone_call_accept(call);
|
||||
} else if ([response.actionIdentifier isEqual:@"Decline"]) {
|
||||
linphone_call_decline(call, LinphoneReasonDeclined);
|
||||
} else if ([response.actionIdentifier isEqual:@"Reply"]) {
|
||||
NSString *replyText = [(UNTextInputNotificationResponse *)response userText];
|
||||
NSString *peer_address = [response.notification.request.content.userInfo objectForKey:@"peer_addr"];
|
||||
NSString *local_address = [response.notification.request.content.userInfo objectForKey:@"local_addr"];
|
||||
LinphoneAddress *peer = linphone_address_new(peer_address.UTF8String);
|
||||
LinphoneAddress *local = linphone_address_new(local_address.UTF8String);
|
||||
LinphoneChatRoom *room = linphone_core_find_chat_room(LC, peer, local);
|
||||
if(room)
|
||||
[LinphoneManager.instance send:replyText toChatRoom:room];
|
||||
if ([response.actionIdentifier isEqual:@"Answer"]) {
|
||||
// use the standard handler
|
||||
[PhoneMainView.instance changeCurrentView:CallView.compositeViewDescription];
|
||||
linphone_call_accept(call);
|
||||
} else if ([response.actionIdentifier isEqual:@"Decline"]) {
|
||||
linphone_call_decline(call, LinphoneReasonDeclined);
|
||||
} else if ([response.actionIdentifier isEqual:@"Reply"]) {
|
||||
NSString *replyText = [(UNTextInputNotificationResponse *)response userText];
|
||||
NSString *peer_address = [response.notification.request.content.userInfo objectForKey:@"peer_addr"];
|
||||
NSString *local_address = [response.notification.request.content.userInfo objectForKey:@"local_addr"];
|
||||
LinphoneAddress *peer = linphone_address_new(peer_address.UTF8String);
|
||||
LinphoneAddress *local = linphone_address_new(local_address.UTF8String);
|
||||
LinphoneChatRoom *room = linphone_core_find_chat_room(LC, peer, local);
|
||||
if(room)
|
||||
[LinphoneManager.instance send:replyText toChatRoom:room];
|
||||
|
||||
linphone_address_unref(peer);
|
||||
linphone_address_unref(local);
|
||||
} else if ([response.actionIdentifier isEqual:@"Seen"]) {
|
||||
NSString *peer_address = [response.notification.request.content.userInfo objectForKey:@"peer_addr"];
|
||||
NSString *local_address = [response.notification.request.content.userInfo objectForKey:@"local_addr"];
|
||||
LinphoneAddress *peer = linphone_address_new(peer_address.UTF8String);
|
||||
LinphoneAddress *local = linphone_address_new(local_address.UTF8String);
|
||||
LinphoneChatRoom *room = linphone_core_find_chat_room(LC, peer, local);
|
||||
if (room) {
|
||||
linphone_chat_room_mark_as_read(room);
|
||||
TabBarView *tab = (TabBarView *)[PhoneMainView.instance.mainViewController getCachedController:NSStringFromClass(TabBarView.class)];
|
||||
[tab update:YES];
|
||||
[PhoneMainView.instance updateApplicationBadgeNumber];
|
||||
}
|
||||
linphone_address_unref(peer);
|
||||
linphone_address_unref(local);
|
||||
} else if ([response.actionIdentifier isEqual:@"Cancel"]) {
|
||||
LOGI(@"User declined video proposal");
|
||||
if (call == linphone_core_get_current_call(LC)) {
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
}
|
||||
} else if ([response.actionIdentifier isEqual:@"Accept"]) {
|
||||
LOGI(@"User accept video proposal");
|
||||
if (call == linphone_core_get_current_call(LC)) {
|
||||
[[UNUserNotificationCenter currentNotificationCenter]
|
||||
removeAllDeliveredNotifications];
|
||||
[PhoneMainView.instance
|
||||
changeCurrentView:CallView.compositeViewDescription];
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_params_enable_video(params, TRUE);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
}
|
||||
} else if ([response.actionIdentifier isEqual:@"Confirm"]) {
|
||||
if (linphone_core_get_current_call(LC) == call) {
|
||||
linphone_call_set_authentication_token_verified(call, YES);
|
||||
}
|
||||
} else if ([response.actionIdentifier isEqual:@"Deny"]) {
|
||||
if (linphone_core_get_current_call(LC) == call) {
|
||||
linphone_call_set_authentication_token_verified(call, NO);
|
||||
}
|
||||
} else if ([response.actionIdentifier isEqual:@"Call"]) {
|
||||
linphone_address_unref(peer);
|
||||
linphone_address_unref(local);
|
||||
} else if ([response.actionIdentifier isEqual:@"Seen"]) {
|
||||
NSString *peer_address = [response.notification.request.content.userInfo objectForKey:@"peer_addr"];
|
||||
NSString *local_address = [response.notification.request.content.userInfo objectForKey:@"local_addr"];
|
||||
LinphoneAddress *peer = linphone_address_new(peer_address.UTF8String);
|
||||
LinphoneAddress *local = linphone_address_new(local_address.UTF8String);
|
||||
LinphoneChatRoom *room = linphone_core_find_chat_room(LC, peer, local);
|
||||
if (room) {
|
||||
linphone_chat_room_mark_as_read(room);
|
||||
TabBarView *tab = (TabBarView *)[PhoneMainView.instance.mainViewController getCachedController:NSStringFromClass(TabBarView.class)];
|
||||
[tab update:YES];
|
||||
[PhoneMainView.instance updateApplicationBadgeNumber];
|
||||
}
|
||||
linphone_address_unref(peer);
|
||||
linphone_address_unref(local);
|
||||
} else if ([response.actionIdentifier isEqual:@"Cancel"]) {
|
||||
LOGI(@"User declined video proposal");
|
||||
if (call != linphone_core_get_current_call(LC))
|
||||
return;
|
||||
|
||||
} else { // in this case the value is :
|
||||
// com.apple.UNNotificationDefaultActionIdentifier
|
||||
if ([response.notification.request.content.categoryIdentifier
|
||||
isEqual:@"call_cat"]) {
|
||||
[PhoneMainView.instance displayIncomingCall:call];
|
||||
} else if ([response.notification.request.content.categoryIdentifier
|
||||
isEqual:@"msg_cat"]) {
|
||||
[PhoneMainView.instance
|
||||
changeCurrentView:ChatsListView.compositeViewDescription];
|
||||
} else if ([response.notification.request.content.categoryIdentifier
|
||||
isEqual:@"video_request"]) {
|
||||
[PhoneMainView.instance
|
||||
changeCurrentView:CallView.compositeViewDescription];
|
||||
NSTimer *videoDismissTimer = nil;
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
} else if ([response.actionIdentifier isEqual:@"Accept"]) {
|
||||
LOGI(@"User accept video proposal");
|
||||
if (call != linphone_core_get_current_call(LC))
|
||||
return;
|
||||
|
||||
UIConfirmationDialog *sheet = [UIConfirmationDialog
|
||||
ShowWithMessage:response.notification.request.content.body
|
||||
cancelMessage:nil
|
||||
confirmMessage:NSLocalizedString(@"ACCEPT", nil)
|
||||
onCancelClick:^() {
|
||||
LOGI(@"User declined video proposal");
|
||||
if (call == linphone_core_get_current_call(LC)) {
|
||||
LinphoneCallParams *params =
|
||||
linphone_core_create_call_params(LC, call);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
[videoDismissTimer invalidate];
|
||||
}
|
||||
}
|
||||
onConfirmationClick:^() {
|
||||
LOGI(@"User accept video proposal");
|
||||
if (call == linphone_core_get_current_call(LC)) {
|
||||
LinphoneCallParams *params =
|
||||
linphone_core_create_call_params(LC, call);
|
||||
linphone_call_params_enable_video(params, TRUE);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
[videoDismissTimer invalidate];
|
||||
}
|
||||
}
|
||||
inController:PhoneMainView.instance];
|
||||
[[UNUserNotificationCenter currentNotificationCenter] removeAllDeliveredNotifications];
|
||||
[PhoneMainView.instance changeCurrentView:CallView.compositeViewDescription];
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_params_enable_video(params, TRUE);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
} else if ([response.actionIdentifier isEqual:@"Confirm"]) {
|
||||
if (linphone_core_get_current_call(LC) == call)
|
||||
linphone_call_set_authentication_token_verified(call, YES);
|
||||
} else if ([response.actionIdentifier isEqual:@"Deny"]) {
|
||||
if (linphone_core_get_current_call(LC) == call)
|
||||
linphone_call_set_authentication_token_verified(call, NO);
|
||||
} else if ([response.actionIdentifier isEqual:@"Call"]) {
|
||||
return;
|
||||
} else { // in this case the value is : com.apple.UNNotificationDefaultActionIdentifier
|
||||
if ([response.notification.request.content.categoryIdentifier isEqual:@"call_cat"]) {
|
||||
[PhoneMainView.instance displayIncomingCall:call];
|
||||
} else if ([response.notification.request.content.categoryIdentifier isEqual:@"msg_cat"]) {
|
||||
NSString *peer_address = [response.notification.request.content.userInfo objectForKey:@"peer_addr"];
|
||||
NSString *local_address = [response.notification.request.content.userInfo objectForKey:@"local_addr"];
|
||||
LinphoneAddress *peer = linphone_address_new(peer_address.UTF8String);
|
||||
LinphoneAddress *local = linphone_address_new(local_address.UTF8String);
|
||||
LinphoneChatRoom *room = linphone_core_find_chat_room(LC, peer, local);
|
||||
if (room) {
|
||||
ChatConversationView *view = VIEW(ChatConversationView);
|
||||
view.chatRoom = room;
|
||||
[PhoneMainView.instance changeCurrentView:view.compositeViewDescription];
|
||||
return;
|
||||
}
|
||||
[PhoneMainView.instance changeCurrentView:ChatsListView.compositeViewDescription];
|
||||
} else if ([response.notification.request.content.categoryIdentifier isEqual:@"video_request"]) {
|
||||
[PhoneMainView.instance changeCurrentView:CallView.compositeViewDescription];
|
||||
NSTimer *videoDismissTimer = nil;
|
||||
UIConfirmationDialog *sheet = [UIConfirmationDialog ShowWithMessage:response.notification.request.content.body
|
||||
cancelMessage:nil
|
||||
confirmMessage:NSLocalizedString(@"ACCEPT", nil)
|
||||
onCancelClick:^() {
|
||||
LOGI(@"User declined video proposal");
|
||||
if (call != linphone_core_get_current_call(LC))
|
||||
return;
|
||||
|
||||
videoDismissTimer = [NSTimer
|
||||
scheduledTimerWithTimeInterval:30
|
||||
target:self
|
||||
selector:@selector(dismissVideoActionSheet:)
|
||||
userInfo:sheet
|
||||
repeats:NO];
|
||||
} else if ([response.notification.request.content.categoryIdentifier
|
||||
isEqual:@"zrtp_request"]) {
|
||||
NSString *code = [NSString
|
||||
stringWithUTF8String:linphone_call_get_authentication_token(call)];
|
||||
NSString *myCode;
|
||||
NSString *correspondantCode;
|
||||
if (linphone_call_get_dir(call) == LinphoneCallIncoming) {
|
||||
myCode = [code substringToIndex:2];
|
||||
correspondantCode = [code substringFromIndex:2];
|
||||
} else {
|
||||
correspondantCode = [code substringToIndex:2];
|
||||
myCode = [code substringFromIndex:2];
|
||||
}
|
||||
NSString *message = [NSString
|
||||
stringWithFormat:NSLocalizedString(
|
||||
@"Confirm the following SAS with peer:\n"
|
||||
@"Say : %@\n"
|
||||
@"Your correspondant should say : %@",
|
||||
nil),
|
||||
myCode, correspondantCode];
|
||||
[UIConfirmationDialog ShowWithMessage:message
|
||||
cancelMessage:NSLocalizedString(@"DENY", nil)
|
||||
confirmMessage:NSLocalizedString(@"ACCEPT", nil)
|
||||
onCancelClick:^() {
|
||||
if (linphone_core_get_current_call(LC) == call) {
|
||||
linphone_call_set_authentication_token_verified(call, NO);
|
||||
}
|
||||
}
|
||||
onConfirmationClick:^() {
|
||||
if (linphone_core_get_current_call(LC) == call) {
|
||||
linphone_call_set_authentication_token_verified(call, YES);
|
||||
}
|
||||
}];
|
||||
} else if ([response.notification.request.content.categoryIdentifier
|
||||
isEqual:@"lime"]) {
|
||||
return;
|
||||
} else { // Missed call
|
||||
[PhoneMainView.instance
|
||||
changeCurrentView:HistoryListView.compositeViewDescription];
|
||||
}
|
||||
}
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
[videoDismissTimer invalidate];
|
||||
}
|
||||
onConfirmationClick:^() {
|
||||
LOGI(@"User accept video proposal");
|
||||
if (call != linphone_core_get_current_call(LC))
|
||||
return;
|
||||
|
||||
LinphoneCallParams *params = linphone_core_create_call_params(LC, call);
|
||||
linphone_call_params_enable_video(params, TRUE);
|
||||
linphone_call_accept_update(call, params);
|
||||
linphone_call_params_destroy(params);
|
||||
[videoDismissTimer invalidate];
|
||||
}
|
||||
inController:PhoneMainView.instance];
|
||||
|
||||
videoDismissTimer = [NSTimer scheduledTimerWithTimeInterval:30
|
||||
target:self
|
||||
selector:@selector(dismissVideoActionSheet:)
|
||||
userInfo:sheet
|
||||
repeats:NO];
|
||||
} else if ([response.notification.request.content.categoryIdentifier isEqual:@"zrtp_request"]) {
|
||||
NSString *code = [NSString stringWithUTF8String:linphone_call_get_authentication_token(call)];
|
||||
NSString *myCode;
|
||||
NSString *correspondantCode;
|
||||
if (linphone_call_get_dir(call) == LinphoneCallIncoming) {
|
||||
myCode = [code substringToIndex:2];
|
||||
correspondantCode = [code substringFromIndex:2];
|
||||
} else {
|
||||
correspondantCode = [code substringToIndex:2];
|
||||
myCode = [code substringFromIndex:2];
|
||||
}
|
||||
NSString *message = [NSString stringWithFormat:NSLocalizedString(@"Confirm the following SAS with peer:\n"
|
||||
@"Say : %@\n"
|
||||
@"Your correspondant should say : %@", nil), myCode, correspondantCode];
|
||||
[UIConfirmationDialog ShowWithMessage:message
|
||||
cancelMessage:NSLocalizedString(@"DENY", nil)
|
||||
confirmMessage:NSLocalizedString(@"ACCEPT", nil)
|
||||
onCancelClick:^() {
|
||||
if (linphone_core_get_current_call(LC) == call)
|
||||
linphone_call_set_authentication_token_verified(call, NO);
|
||||
}
|
||||
onConfirmationClick:^() {
|
||||
if (linphone_core_get_current_call(LC) == call)
|
||||
linphone_call_set_authentication_token_verified(call, YES);
|
||||
}];
|
||||
} else if ([response.notification.request.content.categoryIdentifier isEqual:@"lime"]) {
|
||||
return;
|
||||
} else { // Missed call
|
||||
[PhoneMainView.instance changeCurrentView:HistoryListView.compositeViewDescription];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
- (void)dismissVideoActionSheet:(NSTimer *)timer {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue