linphone-ios/Classes/BuschJaegerSettingsView.m
2013-01-30 09:09:10 +01:00

227 lines
8.2 KiB
Objective-C

/* BuschJaegerSettingsView.m
*
* Copyright (C) 2012 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 "BuschJaegerSettingsView.h"
#import "BuschJaegerUtils.h"
#import "BuschJaegerMainView.h"
@interface ZBarReaderViewControllerEx : ZBarReaderViewController {
}
@end
@implementation ZBarReaderViewControllerEx
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return interfaceOrientation == UIInterfaceOrientationPortrait;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
@end
@implementation BuschJaegerSettingsView
@synthesize scanButton;
@synthesize manualButton;
@synthesize backButton;
@synthesize waitView;
#pragma mark - Lifecycle Functions
- (void)initBuschJaegerSettingsView {
scanController = [[ZBarReaderViewControllerEx alloc] init];
scanController.supportedOrientationsMask = ZBarOrientationMask(UIInterfaceOrientationPortrait);
[scanController setReaderDelegate:self];
}
- (id)init {
self = [super init];
if(self != nil) {
[self initBuschJaegerSettingsView];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if(self != nil) {
[self initBuschJaegerSettingsView];
}
return self;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if(self != nil) {
[self initBuschJaegerSettingsView];
}
return self;
}
- (void)dealloc {
[scanController release];
[scanButton release];
[manualButton release];
[waitView release];
[super dealloc];
}
#pragma mark - ViewController Functions
- (void)viewDidLoad {
[super viewDidLoad];
/* init gradients */
{
UIColor* col1 = BUSCHJAEGER_NORMAL_COLOR;
UIColor* col2 = BUSCHJAEGER_NORMAL_COLOR2;
[BuschJaegerUtils createGradientForView:scanButton withTopColor:col1 bottomColor:col2 cornerRadius:BUSCHJAEGER_DEFAULT_CORNER_RADIUS];
[BuschJaegerUtils createGradientForView:manualButton withTopColor:col1 bottomColor:col2 cornerRadius:BUSCHJAEGER_DEFAULT_CORNER_RADIUS];
[BuschJaegerUtils createGradientForView:backButton withTopColor:col1 bottomColor:col2 cornerRadius:BUSCHJAEGER_DEFAULT_CORNER_RADIUS];
}
[waitView setHidden:TRUE];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[BuschJaegerUtils resizeGradient:self.view];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if ([LinphoneManager runningOnIpad]) {
return YES;
} else {
return interfaceOrientation == UIInterfaceOrientationPortrait;
}
}
- (NSUInteger)supportedInterfaceOrientations {
if ([LinphoneManager runningOnIpad]) {
return UIInterfaceOrientationMaskAll;
} else {
return UIInterfaceOrientationMaskPortrait;
}
}
#pragma mark - Action Functions
- (IBAction)onScanClick:(id)sender {
[[BuschJaegerMainView instance].navigationController pushViewController:scanController animated:FALSE];
[[BuschJaegerMainView instance].navigationController setNavigationBarHidden:FALSE];
[[BuschJaegerMainView instance].navigationController setNavigationBarHidden:TRUE];
}
- (IBAction)onManualClick:(id)sender {
[self reloadConfiguration];
}
- (IBAction)onBackClick:(id)sender {
if([BuschJaegerMainView instance].navigationController.topViewController == self) {
[[BuschJaegerMainView instance].navigationController popViewControllerAnimated:FALSE];
}
}
#pragma mark -
- (void)reloadConfiguration {
NSString *address = [[NSUserDefaults standardUserDefaults] stringForKey:@"ipgateway_preference"];
NSString *username = [[NSUserDefaults standardUserDefaults] stringForKey:@"username_preference"];
NSString *password = [[NSUserDefaults standardUserDefaults] stringForKey:@"password_preference"];
if ([address length] != 0 && [username length] != 0 && [password length] != 0) {
NSRange range = [address rangeOfString:@"http://"];
if (range.location == NSNotFound)
{
address = [@"http://" stringByAppendingString:address];
}
NSString *dataString = [NSString stringWithFormat:@"URL=%@/config.ini USER=%@ PW=%@", address, username, password];
if([[[LinphoneManager instance] configuration] parseQRCode:dataString delegate:self]) {
[waitView setHidden:FALSE];
}
}
}
#pragma mark - ZBarReaderDelegate Functions
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
ZBarSymbolSet *zbs = [info objectForKey:ZBarReaderControllerResults];
if(zbs != nil) {
BOOL handled = FALSE;
for(ZBarSymbol *symbol in zbs) {
if([[[LinphoneManager instance] configuration] parseQRCode:[symbol data] delegate:self]) {
handled = TRUE;
[waitView setHidden:FALSE];
}
}
if(handled) {
if([BuschJaegerMainView instance].navigationController.topViewController == scanController) {
[[BuschJaegerMainView instance].navigationController popViewControllerAnimated:FALSE];
}
}
}
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
if([BuschJaegerMainView instance].navigationController.topViewController == scanController) {
[[BuschJaegerMainView instance].navigationController popViewControllerAnimated:FALSE];
}
}
#pragma mark - BuschJaegerConfigurationDelegate Functions
- (void)buschJaegerConfigurationSuccess {
UIAlertView* errorView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Provisioning Success",nil)
message:NSLocalizedString(@"The providing configuration is successfully applied", nil)
delegate:nil
cancelButtonTitle:NSLocalizedString(@"Continue",nil)
otherButtonTitles:nil,nil];
[errorView show];
[errorView release];
[waitView setHidden:TRUE];
NSDictionary *dict = [NSDictionary dictionaryWithObject:[[LinphoneManager instance] configuration] forKey:@"configuration"];
[[NSNotificationCenter defaultCenter] postNotificationName:kLinphoneConfigurationUpdate object:self userInfo:dict];
[[[LinphoneManager instance] configuration] saveFile:kLinphoneConfigurationPath];
}
- (void)buschJaegerConfigurationError:(NSString *)error {
UIAlertView* errorView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Provisioning error",nil)
message:[NSString stringWithFormat:NSLocalizedString(@"Connection issue: %@", nil), error]
delegate:nil
cancelButtonTitle:NSLocalizedString(@"Continue",nil)
otherButtonTitles:nil,nil];
[errorView show];
[errorView release];
[waitView setHidden:TRUE];
NSDictionary *dict = [NSDictionary dictionaryWithObject:[[LinphoneManager instance] configuration] forKey:@"configuration"];
[[NSNotificationCenter defaultCenter] postNotificationName:kLinphoneConfigurationUpdate object:self userInfo:dict];
[[[LinphoneManager instance] configuration] saveFile:kLinphoneConfigurationPath];
}
@end