forked from mirrors/linphone-iphone
Conflicts: Classes/BuschJaegerHistoryView.xib Classes/ChatRoomTableViewController.h Classes/ChatRoomTableViewController.m Classes/ChatRoomViewController.h Classes/ChatRoomViewController.m Classes/ChatViewController.h Classes/ChatViewController.m Classes/ChatViewController.xib Classes/ConsoleViewController.h Classes/ConsoleViewController.m Classes/ConsoleViewController.xib Classes/DialerViewController.m Classes/FirstLoginViewController.m Classes/HistoryDetailsViewController.h Classes/HistoryDetailsViewController.m Classes/HistoryTableViewController.h Classes/HistoryViewController.h Classes/HistoryViewController.m Classes/InCallTableViewController.m Classes/InCallViewController.m Classes/LinphoneAppDelegate.m Classes/LinphoneCoreSettingsStore.h Classes/LinphoneCoreSettingsStore.m Classes/LinphoneManager.h Classes/LinphoneManager.m Classes/LinphoneUI/UICallBar.m Classes/LinphoneUI/UIChatCell.m Classes/LinphoneUI/UIChatRoomCell.h Classes/LinphoneUI/UIChatRoomCell.m Classes/LinphoneUI/UIChatRoomCell.xib Classes/LinphoneUI/UICompositeViewController.m Classes/LinphoneUI/UIContactDetailsFooter.xib Classes/LinphoneUI/UIContactDetailsHeader.m Classes/LinphoneUI/UIHistoryDetailsCell.xib Classes/LinphoneUI/UIStateBar.m Classes/LinphoneUI/UIStateBar.xib Classes/LinphoneUI/en.lproj/UICallBar~ipad.xib Classes/LinphoneUI/en.lproj/UICallCell.xib Classes/LinphoneUI/en.lproj/UIConferenceHeader.xib Classes/LinphoneUI/en.lproj/UIContactDetailsHeader.xib Classes/LinphoneUI/en.lproj/UIMainBar.xib Classes/Model/ChatModel.h Classes/Model/ChatModel.m Classes/PhoneMainView.h Classes/PhoneMainView.m Classes/SettingsViewController.h Classes/SettingsViewController.m Classes/Utils/FastAddressBook.m Classes/WizardViewController.m Classes/en.lproj/DialerViewController.xib Classes/en.lproj/FirstLoginViewController.xib Classes/en.lproj/HistoryViewController.xib Classes/en.lproj/InCallViewController.xib Resources/chat_add_default.png Resources/chat_add_over.png Resources/chat_back_default.png Resources/chat_back_over.png Resources/chat_edit_default.png Resources/chat_edit_over.png Resources/chat_ok_default.png Resources/chat_ok_over.png Resources/contact_back_default.png Resources/contact_back_over.png Resources/contact_cancel_default.png Resources/contact_cancel_over.png Resources/contact_edit_default.png Resources/contact_edit_over.png Resources/contact_ok_default.png Resources/contact_ok_disabled.png Resources/contacts_add_default.png Resources/contacts_add_over.png Resources/en.lproj/Localizable.strings Resources/history_details_add_default.png Resources/history_details_add_over.png Resources/history_details_back_default.png Resources/history_details_back_over.png Resources/history_edit_default.png Resources/history_edit_over.png Resources/history_ok_default.png Resources/history_ok_over.png Resources/linphonerc-factory Settings.bundle/video.plist Settings/InAppSettings.bundle/Advanced.plist Settings/InAppSettings.bundle/Call.plist linphone-Info.plist linphone.ldb/Resources/Classes/ChatRoomViewController/1/ChatRoomViewController.xib linphone.ldb/Resources/Classes/ChatViewController/1/ChatViewController.xib linphone.ldb/Resources/Classes/ContactDetailsLabelViewController/1/ContactDetailsLabelViewController.xib linphone.ldb/Resources/Classes/ContactDetailsViewController/1/ContactDetailsViewController.xib linphone.ldb/Resources/Classes/ContactsViewController/1/ContactsViewController.xib linphone.ldb/Resources/Classes/DialerViewController~ipad/2/DialerViewController~ipad.xib linphone.ldb/Resources/Classes/HistoryDetailsViewController/2/HistoryDetailsViewController.xib linphone.ldb/Resources/Classes/IncomingCallViewController/1/IncomingCallViewController.xib linphone.ldb/Resources/Classes/WizardViewController/2/WizardViewController.xib linphone.ldb/Resources/LinphoneUI/UICallBar/2/UICallBar.xib linphone.ldb/Resources/LinphoneUI/UIContactDetailsFooter/1/UIContactDetailsFooter.xib linphone.ldb/Resources/LinphoneUI/UIMainBar~ipad/2/UIMainBar~ipad.xib linphone.xcodeproj/project.pbxproj submodules/linphone
307 lines
12 KiB
Objective-C
307 lines
12 KiB
Objective-C
/* LinphoneAppDelegate.m
|
||
*
|
||
* Copyright (C) 2009 Belledonne Comunications, Grenoble, France
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program; if not, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
*/
|
||
|
||
#import "linphoneAppDelegate.h"
|
||
#import "AddressBook/ABPerson.h"
|
||
|
||
#import "BuschJaegerMainView.h"
|
||
#import "CoreTelephony/CTCallCenter.h"
|
||
#import "CoreTelephony/CTCall.h"
|
||
|
||
#include "LinphoneManager.h"
|
||
#include "linphonecore.h"
|
||
|
||
@implementation UILinphoneWindow
|
||
|
||
@end
|
||
|
||
@implementation LinphoneAppDelegate
|
||
|
||
@synthesize started;
|
||
|
||
|
||
#pragma mark - Lifecycle Functions
|
||
|
||
- (id)init {
|
||
self = [super init];
|
||
if(self != nil) {
|
||
self->started = FALSE;
|
||
}
|
||
return self;
|
||
}
|
||
|
||
- (void)dealloc {
|
||
[super dealloc];
|
||
}
|
||
|
||
|
||
#pragma mark -
|
||
|
||
- (void)handleGSMCallInteration: (id) cCenter {
|
||
CTCallCenter* ct = (CTCallCenter*) cCenter;
|
||
|
||
int callCount = [ct.currentCalls count];
|
||
if (!callCount) {
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"No GSM call -> enabling SIP calls"];
|
||
linphone_core_set_max_calls([LinphoneManager getLc], 3);
|
||
} else {
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"%d GSM call(s) -> disabling SIP calls", callCount];
|
||
/* pause current call, if any */
|
||
LinphoneCall* call = linphone_core_get_current_call([LinphoneManager getLc]);
|
||
if (call) {
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"Pausing SIP call"];
|
||
linphone_core_pause_call([LinphoneManager getLc], call);
|
||
}
|
||
linphone_core_set_max_calls([LinphoneManager getLc], 0);
|
||
}
|
||
}
|
||
|
||
- (void)applicationDidEnterBackground:(UIApplication *)application{
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"applicationDidEnterBackground"];
|
||
if(![LinphoneManager isLcReady]) return;
|
||
[[LinphoneManager instance] enterBackgroundMode];
|
||
}
|
||
|
||
- (void)applicationWillResignActive:(UIApplication *)application {
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"applicationWillResignActive"];
|
||
if(![LinphoneManager isLcReady]) return;
|
||
LinphoneCore* lc = [LinphoneManager getLc];
|
||
LinphoneCall* call = linphone_core_get_current_call(lc);
|
||
|
||
|
||
if (call){
|
||
/* save call context */
|
||
LinphoneManager* instance = [LinphoneManager instance];
|
||
instance->currentCallContextBeforeGoingBackground.call = call;
|
||
instance->currentCallContextBeforeGoingBackground.cameraIsEnabled = linphone_call_camera_enabled(call);
|
||
|
||
const LinphoneCallParams* params = linphone_call_get_current_params(call);
|
||
if (linphone_call_params_video_enabled(params)) {
|
||
linphone_call_enable_camera(call, false);
|
||
}
|
||
}
|
||
|
||
if (![[LinphoneManager instance] resignActive]) {
|
||
// destroying eventHandler if app cannot go in background.
|
||
// Otherwise if a GSM call happen and Linphone is resumed,
|
||
// the handler will be called before LinphoneCore is built.
|
||
// Then handler will be restored in appDidBecomeActive cb
|
||
callCenter.callEventHandler = nil;
|
||
[callCenter release];
|
||
callCenter = nil;
|
||
}
|
||
|
||
}
|
||
|
||
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
||
[LinphoneLogger logc:LinphoneLoggerLog format:"applicationDidBecomeActive"];
|
||
[self startApplication];
|
||
|
||
[[LinphoneManager instance] becomeActive];
|
||
|
||
// check call state at startup
|
||
[self handleGSMCallInteration:callCenter];
|
||
|
||
LinphoneCore* lc = [LinphoneManager getLc];
|
||
LinphoneCall* call = linphone_core_get_current_call(lc);
|
||
|
||
if (call){
|
||
LinphoneManager* instance = [LinphoneManager instance];
|
||
if (call == instance->currentCallContextBeforeGoingBackground.call) {
|
||
const LinphoneCallParams* params = linphone_call_get_current_params(call);
|
||
if (linphone_call_params_video_enabled(params)) {
|
||
linphone_call_enable_camera(
|
||
call,
|
||
instance->currentCallContextBeforeGoingBackground.cameraIsEnabled);
|
||
}
|
||
instance->currentCallContextBeforeGoingBackground.call = 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
- (void)setupGSMInteraction {
|
||
if (callCenter == nil) {
|
||
callCenter = [[CTCallCenter alloc] init];
|
||
callCenter.callEventHandler = ^(CTCall* call) {
|
||
// post on main thread
|
||
[self performSelectorOnMainThread:@selector(handleGSMCallInteration:)
|
||
withObject:callCenter
|
||
waitUntilDone:YES];
|
||
};
|
||
}
|
||
}
|
||
|
||
/* MODIFICATION: Add default settings */
|
||
- (void) loadDefaultSettings {
|
||
NSString *settingsBundle = [[NSBundle mainBundle] pathForResource:@"Settings" ofType:@"bundle"];
|
||
if(!settingsBundle) {
|
||
[LinphoneLogger log:LinphoneLoggerError format:@"Could not find Settings.bundle"];
|
||
return;
|
||
}
|
||
|
||
NSMutableDictionary *rootSettings = [NSDictionary dictionaryWithContentsOfFile:[settingsBundle stringByAppendingPathComponent:@"Root.plist"]];
|
||
NSMutableArray *preferences = [rootSettings objectForKey:@"PreferenceSpecifiers"];
|
||
NSMutableDictionary *defaultsToRegister = [[NSMutableDictionary alloc] initWithCapacity:[preferences count]];
|
||
|
||
NSDictionary *appDefaults = [NSDictionary dictionaryWithObjectsAndKeys:
|
||
@"YES", @"debugenable_preference",
|
||
@"YES", @"enable_video_preference",
|
||
@"YES", @"start_video_preference",
|
||
@"YES", @"h264_preference",
|
||
@"YES", @"vp8_preference",
|
||
@"NO", @"mpeg4_preference",
|
||
@"YES", @"pcmu_preference",
|
||
@"YES", @"pcma_preference",
|
||
@"tcp", @"transport_preference",
|
||
@"NO", @"enable_srtp_preference",
|
||
@"YES", @"backgroundmode_preference",
|
||
@"YES", @"outbound_proxy_preference",
|
||
nil];
|
||
|
||
[defaultsToRegister addEntriesFromDictionary:appDefaults];
|
||
[[NSUserDefaults standardUserDefaults] registerDefaults:defaultsToRegister];
|
||
[defaultsToRegister release];
|
||
[[NSUserDefaults standardUserDefaults] synchronize];
|
||
|
||
}
|
||
|
||
/**/
|
||
|
||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||
/* MODIFICATION: Add default settings */
|
||
[self loadDefaultSettings];
|
||
/**/
|
||
|
||
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound|UIRemoteNotificationTypeBadge];
|
||
|
||
if ([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]
|
||
&& [UIApplication sharedApplication].applicationState == UIApplicationStateBackground
|
||
&& (![[NSUserDefaults standardUserDefaults] boolForKey:@"start_at_boot_preference"] ||
|
||
![[NSUserDefaults standardUserDefaults] boolForKey:@"backgroundmode_preference"])) {
|
||
// autoboot disabled, doing nothing
|
||
return YES;
|
||
}
|
||
|
||
[self startApplication];
|
||
|
||
return YES;
|
||
}
|
||
|
||
- (void)startApplication {
|
||
// Restart Linphone Core if needed
|
||
if(![LinphoneManager isLcReady]) {
|
||
[[LinphoneManager instance] startLibLinphone];
|
||
}
|
||
if([LinphoneManager isLcReady]) {
|
||
[self setupGSMInteraction];
|
||
|
||
// Only execute one time at application start
|
||
if(!started) {
|
||
started = TRUE;
|
||
/* MODIFICATION: Change Main View
|
||
[[PhoneMainView instance] startUp];
|
||
*/
|
||
[window setRootViewController:[[[BuschJaegerMainView alloc] initWithNibName:@"BuschJaegerMainView" bundle:[NSBundle mainBundle]] autorelease]];
|
||
/**/
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
- (void)applicationWillTerminate:(UIApplication *)application {
|
||
}
|
||
|
||
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
|
||
[self startApplication];
|
||
if([LinphoneManager isLcReady]) {
|
||
if([[url scheme] isEqualToString:@"sip"]) {
|
||
/* MODIFICATION: Remove URL handling
|
||
// Go to ChatRoom view
|
||
DialerViewController *controller = DYNAMIC_CAST([[PhoneMainView instance] changeCurrentView:[DialerViewController compositeViewDescription]], DialerViewController);
|
||
if(controller != nil) {
|
||
[controller setAddress:[url absoluteString]];
|
||
}
|
||
*/
|
||
}
|
||
}
|
||
return YES;
|
||
}
|
||
|
||
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
|
||
[LinphoneLogger log:LinphoneLoggerDebug format:@"PushNotification: Receive %@", userInfo];
|
||
NSDictionary *aps = [userInfo objectForKey:@"aps"];
|
||
if(aps != nil) {
|
||
NSDictionary *alert = [aps objectForKey:@"alert"];
|
||
if(alert != nil) {
|
||
NSString *loc_key = [alert objectForKey:@"loc-key"];
|
||
/*if we receive a remote notification, it is because our TCP background socket was no more working.
|
||
As a result, break it and refresh registers in order to make sure to receive incoming INVITE or MESSAGE*/
|
||
LinphoneCore *lc=[LinphoneManager getLc];
|
||
linphone_core_set_network_reachable(lc,FALSE);
|
||
linphone_core_set_network_reachable(lc,TRUE);
|
||
if(loc_key != nil) {
|
||
if([loc_key isEqualToString:@"IM_MSG"]) {
|
||
/* MODIFICATION: Remove remote notification
|
||
[[LinphoneManager instance] addInhibitedEvent:kLinphoneTextReceivedSound];
|
||
[[PhoneMainView instance] changeCurrentView:[ChatViewController compositeViewDescription]];
|
||
*/
|
||
}else{
|
||
//it's a call
|
||
[[LinphoneManager instance] didReceiveRemoteNotification];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
|
||
if([notification.userInfo objectForKey:@"call"] != nil) {
|
||
LinphoneCall* call;
|
||
[(NSData*)[notification.userInfo objectForKey:@"call"] getBytes:&call];
|
||
if (!call) {
|
||
[LinphoneLogger logc:LinphoneLoggerWarning format:"Local notification received with nil call"];
|
||
return;
|
||
}
|
||
linphone_core_accept_call([LinphoneManager getLc], call);
|
||
} else if([notification.userInfo objectForKey:@"chat"] != nil) {
|
||
/* MODIFICATION: Remove chat local notificaiton
|
||
NSString *remoteContact = (NSString*)[notification.userInfo objectForKey:@"chat"];
|
||
// Go to ChatRoom view
|
||
ChatRoomViewController *controller = DYNAMIC_CAST([[PhoneMainView instance] changeCurrentView:[ChatRoomViewController compositeViewDescription] push:TRUE], ChatRoomViewController);
|
||
if(controller != nil) {
|
||
[controller setRemoteAddress:remoteContact];
|
||
}
|
||
*/
|
||
}
|
||
}
|
||
|
||
|
||
#pragma mark - PushNotification Functions
|
||
|
||
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken {
|
||
[LinphoneLogger log:LinphoneLoggerDebug format:@"PushNotification: Token %@", deviceToken];
|
||
[[LinphoneManager instance] setPushNotificationToken:deviceToken];
|
||
}
|
||
|
||
- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error {
|
||
[LinphoneLogger log:LinphoneLoggerDebug format:@"PushNotification: Error %@", error];
|
||
[[LinphoneManager instance] setPushNotificationToken:nil];
|
||
}
|
||
|
||
@end
|