123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // VLCSettingsViewController.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 23.05.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCSettingsController.h"
- #import "VLCAppDelegate.h"
- #import "VLCPlaylistViewController.h"
- #import "IASKSettingsReader.h"
- #import "IASKAppSettingsViewController.h"
- #import "PAPasscodeViewController.h"
- #import <DropboxSDK/DropboxSDK.h>
- @interface VLCSettingsController ()<PAPasscodeViewControllerDelegate, IASKSettingsDelegate>
- @end
- @implementation VLCSettingsController
- - (id)init
- {
- self = [super init];
- if (self)
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(settingDidChange:) name:kIASKAppSettingChanged object:nil];
- return self;
- }
- - (void)dealloc
- {
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- - (void)settingDidChange:(NSNotification*)notification
- {
- if ([notification.object isEqual:kVLCSettingPasscodeOnKey]) {
- BOOL passcodeOn = [[notification.userInfo objectForKey:kVLCSettingPasscodeOnKey] boolValue];
- if (passcodeOn) {
- PAPasscodeViewController *passcodeLockController = [[PAPasscodeViewController alloc] initForAction:PasscodeActionSet];
- passcodeLockController.delegate = self;
- [self.viewController presentViewController:passcodeLockController animated:YES completion:nil];
- }
- }
- }
- - (void)settingsViewControllerDidEnd:(IASKAppSettingsViewController*)sender
- {
- [[(VLCAppDelegate*)[UIApplication sharedApplication].delegate revealController] toggleSidebar:![(VLCAppDelegate*)[UIApplication sharedApplication].delegate revealController].sidebarShowing duration:kGHRevealSidebarDefaultAnimationDuration];
- }
- - (void)settingsViewController:(IASKAppSettingsViewController*)sender buttonTappedForSpecifier:(IASKSpecifier*)specifier {
- if ([specifier.key isEqualToString:@"UnlinkDropbox"])
- [[DBSession sharedSession] unlinkAll];
- }
- #pragma mark - PAPasscode delegate
- - (void)PAPasscodeViewControllerDidCancel:(PAPasscodeViewController *)controller
- {
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- [defaults setObject:@(NO) forKey:kVLCSettingPasscodeOnKey];
- [defaults synchronize];
- [controller dismissViewControllerAnimated:YES completion:nil];
- }
- - (void)PAPasscodeViewControllerDidSetPasscode:(PAPasscodeViewController *)controller
- {
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- [defaults setObject:@(YES) forKey:kVLCSettingPasscodeOnKey];
- [defaults setObject:controller.passcode forKey:kVLCSettingPasscodeKey];
- [defaults synchronize];
- VLCAppDelegate* appDelegate = [UIApplication sharedApplication].delegate;
- appDelegate.nextPasscodeCheckDate = [NSDate dateWithTimeIntervalSinceNow:300];
- [controller dismissViewControllerAnimated:YES completion:nil];
- }
- @end
|