123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- //
- // SceneDelegate.m
- // 唔即云相册
- //
- // Created by 余衡武 on 2021/12/8.
- //
- #import "SceneDelegate.h"
- #import "HWWebViewController.h"
- #import "CalculatorViewController.h"
- #import "SetUsePWDViewController.h"
- #import "GuideViewController.h"
- #import "LoginForViewController.h"
- #import "UseAccountManage.h"
- #import "PlayerViewController.h"
- #import "BaseNavigationController.h"
- #import "MySetViewController.h"
- @interface SceneDelegate ()<SetUsePWDViewControllerDelegate,GuideViewControllerDelegate,LoginForViewControllerDelegate>
- @property(nonatomic, strong) CalculatorViewController *calculatorVC;
- @end
- @implementation SceneDelegate
- - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
- if (scene) {
-
- UIWindowScene *windowScene = (UIWindowScene *)scene;
- self.window = [[UIWindow alloc] initWithWindowScene:windowScene];
- self.window.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);
- // 初始化数据库
- [self initBrowserWindow];
- // 加载主页面
- [self enterMainVCFromScene];
- [self.window makeKeyAndVisible];
- }
- }
- /** 进入登录界面 - 内部使用 */
- - (void)enterLoginVCFromScene {
- // UIViewController *vc = [[UIViewController alloc] init];
- // vc.view.backgroundColor = [UIColor redColor];
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- }
- /** 主界面 - 内部使用 */
- - (void)enterMainVCFromScene {
-
- // GuideViewController
- BOOL haveGuide = [HWDataManager getBoolWithKey:Const_Have_Show_Guide];
- if (haveGuide) {
- ;
- }else {
- GuideViewController *guiDeVC = [[GuideViewController alloc] init];
- guiDeVC.delegate = self;
- self.window.rootViewController = guiDeVC;
-
- return;
- }
-
- NSString *launchAppPWDPath = [self documentPathForAccount:@"" fileFolder:@"LaunchPWD"];
- NSString *str = [[NSString alloc] initWithContentsOfFile:launchAppPWDPath encoding:(NSUTF8StringEncoding) error:nil];
- if (!str || [str isEqualToString:@"0"])
- {
- SetUsePWDViewController *loginVC = [[SetUsePWDViewController alloc] init];
- loginVC.delegate = self;
- self.window.rootViewController = loginVC;
-
- return;
- }
-
- NSDictionary *data = [[UseAccountManage shareInstance] getLoginInfo];
- if (data == nil || ![[data allKeys] containsObject:@"token"]){
- /*判断是否有登录 没有登录时提醒登录*/
- LoginForViewController *loginVC = [[LoginForViewController alloc] init];
- loginVC.delegate = self;
- self.window.rootViewController = loginVC;
-
- return;
- }
-
- // PlayerViewController *playerRootVC = [[PlayerViewController alloc] init];
- // BaseNavigationController *playerNav = [[BaseNavigationController alloc] initWithRootViewController:playerRootVC];
- // self.window.rootViewController = playerNav;
- // return;
-
-
- MySetViewController *playerRootVC = [[MySetViewController alloc] init];
- BaseNavigationController *playerNav = [[BaseNavigationController alloc] initWithRootViewController:playerRootVC];
- self.window.rootViewController = playerNav;
-
- // NSArray *dataArray = [BaseModel bg_findAll:DB_BrowserWindows_TableName];
- //
- // if (dataArray.count == 0) { // 浏览器没有窗口
- // // 加载首页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = Const_HomeUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- //
- // }else {
- // // 浏览器当前窗口索引ID
- // NSInteger ID = [HWDataManager getIntegerWithKey:BrowserWindowsCurrentID];
- // NSString *where = [NSString stringWithFormat:@"where %@=%ld",bg_sqlKey(@"ID"),(long)ID];
- // NSArray* finfAlls = [BaseModel bg_find:DB_BrowserWindows_TableName where:where];
- // BaseModel *model = finfAlls.firstObject;
- //
- // // 加载网页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = model.webUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- // }
- }
- - (void)setPwdOk{
- [self enterMainVCFromScene];
-
- // NSArray *dataArray = [BaseModel bg_findAll:DB_BrowserWindows_TableName];
- //
- // if (dataArray.count == 0) { // 浏览器没有窗口
- // // 加载首页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = Const_HomeUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- //
- // }else {
- // // 浏览器当前窗口索引ID
- // NSInteger ID = [HWDataManager getIntegerWithKey:BrowserWindowsCurrentID];
- // NSString *where = [NSString stringWithFormat:@"where %@=%ld",bg_sqlKey(@"ID"),(long)ID];
- // NSArray* finfAlls = [BaseModel bg_find:DB_BrowserWindows_TableName where:where];
- // BaseModel *model = finfAlls.firstObject;
- //
- // // 加载网页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = model.webUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- // }
- }
- /** 登录界面 - 外部使用*/
- + (void)enterLoginVC {
- // SetPWDViewController *vc = [[SetPWDViewController alloc] init];
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // UIWindow *keyWindow = [iTools getKeyWindow];
- // keyWindow.rootViewController = nvc;
- }
- /** 主界面 - 外部使用 */
- + (void)enterMainVC {
- // AlbumHomeViewController *vc = [[AlbumHomeViewController alloc] init];
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // UIWindow *keyWindow = [iTools getKeyWindow];
- // keyWindow.rootViewController = nvc;
- }
- - (void)sceneDidDisconnect:(UIScene *)scene {
-
- }
- - (void)sceneDidBecomeActive:(UIScene *)scene {
- BOOL haveGuide = [HWDataManager getBoolWithKey:Const_Have_Show_Guide];
- if (haveGuide) {
- ;
- }else {
-
- return;
- }
- [self showCalculatorVC];
- }
- - (void)sceneWillResignActive:(UIScene *)scene {
- BOOL haveGuide = [HWDataManager getBoolWithKey:Const_Have_Show_Guide];
- if (haveGuide) {
- ;
- }else {
-
- return;
- }
- [self showCalculatorVC];
- }
- - (void)sceneWillEnterForeground:(UIScene *)scene {
- }
- - (void)sceneDidEnterBackground:(UIScene *)scene {
- BOOL haveGuide = [HWDataManager getBoolWithKey:Const_Have_Show_Guide];
- if (haveGuide) {
- ;
- }else {
-
- return;
- }
- [self showCalculatorVC];
- }
- #pragma mark 初始化数据库-DB_BrowserWindows_TableName
- - (void)initBrowserWindow {
-
- // 浏览器当前所有窗口
- NSArray *dataArray = [BaseModel bg_findAll:DB_BrowserWindows_TableName];
- // 浏览器当前窗口索引ID
- NSInteger ID = [HWDataManager getIntegerWithKey:BrowserWindowsCurrentID];
- NSString *IDValue = [NSString stringWithFormat:@"%ld", ID];
- NSString *where = [NSString stringWithFormat:@"where %@=%@",bg_sqlKey(@"ID"),bg_sqlValue(IDValue)];
- NSArray *modelArr = [BaseModel bg_find:DB_BrowserWindows_TableName where:where];
-
- if (dataArray.count == 0) { // 浏览器没有窗口
-
- BaseModel *model = [[BaseModel alloc] init];
- model.ID = 0;
- model.name = @"主页";
- // model.iconFile = imageUrl;
- model.webUrl = Const_HomeUrl;
-
- // 写入数据库
- model.bg_tableName = DB_BrowserWindows_TableName;
- [model bg_saveOrUpdateAsync:^(BOOL isSuccess) {
- HLog(@"BaseModel写入:%@", isSuccess ? @"成功":@"失败");
- }];
-
- // 浏览器当前窗口索引ID
- [HWDataManager setIntegerWithKey:BrowserWindowsCurrentID value:0];
-
- }else if (modelArr.count == 0) { // 新建窗口
- BaseModel *model = [[BaseModel alloc] init];
- model.ID = ID;
- model.name = @"主页";
- // model.iconFile = imageUrl;
- model.webUrl = Const_HomeUrl;
-
- // 写入数据库
- model.bg_tableName = DB_BrowserWindows_TableName;
- [model bg_saveOrUpdateAsync:^(BOOL isSuccess) {
- HLog(@"BaseModel写入:%@", isSuccess ? @"成功":@"失败");
- }];
-
- }else { // 更新窗口数据
- // 浏览器当前窗口索引ID
- // NSInteger ID = [HWDataManager getIntegerWithKey:BrowserWindowsCurrentID];
- //
- // BaseModel *model = [[BaseModel alloc] init];
- // model.ID = ID;
- // model.name = @"主页";
- //// model.iconFile = imageUrl;
- // model.webUrl = Const_HomeUrl;
- //
- // // 更新数据库
- // model.bg_tableName = DB_BrowserWindows_TableName;
- // [model bg_saveOrUpdateAsync:^(BOOL isSuccess) {
- // HLog(@"BaseModel更新: %@", isSuccess ? @"成功":@"失败");
- // }];
- }
- }
- #pragma mark 获取当前屏幕的截图
- //- (UIImage *)getScreenShotImage {
- // CGSize size = [UIScreen mainScreen].bounds.size;
- // CGFloat scale = [UIScreen mainScreen].scale;
- // UIGraphicsBeginImageContextWithOptions(size, YES, scale);
- // [self.window.layer renderInContext:UIGraphicsGetCurrentContext()];
- // UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
- // UIGraphicsEndImageContext();
- // return image;
- //}
- #pragma mark 计算器伪装视图
- /*CalculatorViewController*/
- - (void)showCalculatorVC{
- NSString *launchAppPWDPath = [self documentPathForAccount:@"" fileFolder:@"LaunchPWD"];
- NSString *str = [[NSString alloc] initWithContentsOfFile:launchAppPWDPath encoding:(NSUTF8StringEncoding) error:nil];
- if (!str || [str isEqualToString:@""])
- {
- return;
- }
-
- [self closeCalculatorVC];
-
- _calculatorVC = [[CalculatorViewController alloc] init];
- _calculatorVC.pwd = str;
- [self.window addSubview:_calculatorVC.view];
- /*浏览器*/
- // _webVC = [[HWWebViewController alloc] init];
- // [self.window addSubview:_webVC.view];
- }
- - (void)closeCalculatorVC{
- if (_calculatorVC){
- [_calculatorVC.view removeFromSuperview];
- }
-
- /*浏览器*/
- // if (_webVC){
- // [_webVC.view removeFromSuperview];
- // }
- }
- - (NSString *)documentPathForAccount:(NSString *)account fileFolder:(NSString *)fileFolder {
-
- NSString *path = DocumentPath;
- if (account.length != 0) {
- path = [NSString stringWithFormat:@"%@/%@/",DocumentPath,account];
- }
-
- if ([fileFolder containsString:@"/"]) {
- NSString *path1 = [path stringByAppendingPathComponent:fileFolder];
- path1 = [path1 stringByDeletingLastPathComponent];
- NSError *error;
- if (![[NSFileManager defaultManager] fileExistsAtPath:path1]) {
- [[NSFileManager defaultManager] createDirectoryAtPath:path1 withIntermediateDirectories:YES attributes:nil error:&error];
- }
- }else{
- NSError *error;
- if (![[NSFileManager defaultManager] fileExistsAtPath:path]) {
- [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:&error];
- }
- }
-
- return [path stringByAppendingPathComponent:fileFolder];
- }
- - (void)startUseBtnBePressed{
- [self enterMainVCFromScene];
- // NSString *launchAppPWDPath = [self documentPathForAccount:@"" fileFolder:@"LaunchPWD"];
- // NSString *str = [[NSString alloc] initWithContentsOfFile:launchAppPWDPath encoding:(NSUTF8StringEncoding) error:nil];
- // if (!str || [str isEqualToString:@"0"])
- // {
- // SetUsePWDViewController *loginVC = [[SetUsePWDViewController alloc] init];
- // loginVC.delegate = self;
- // self.window.rootViewController = loginVC;
- //
- // return;
- // }
- //
- // NSArray *dataArray = [BaseModel bg_findAll:DB_BrowserWindows_TableName];
- //
- // if (dataArray.count == 0) { // 浏览器没有窗口
- // // 加载首页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = Const_HomeUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- //
- // }else {
- // // 浏览器当前窗口索引ID
- // NSInteger ID = [HWDataManager getIntegerWithKey:BrowserWindowsCurrentID];
- // NSString *where = [NSString stringWithFormat:@"where %@=%ld",bg_sqlKey(@"ID"),(long)ID];
- // NSArray* finfAlls = [BaseModel bg_find:DB_BrowserWindows_TableName where:where];
- // BaseModel *model = finfAlls.firstObject;
- //
- // // 加载网页
- // HWWebViewController *vc = [[HWWebViewController alloc] init];
- // vc.webUrl = model.webUrl;
- // UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
- // self.window.rootViewController = nvc;
- // }
- }
- - (void)loginOk{
- [self enterMainVCFromScene];
- }
- @end
|