123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- //
- // errorAlertTool.m
- // Private-X
- //
- // Created by xd h on 2024/7/20.
- //
- #import "errorAlertTool.h"
- #import "ComontAlretViewController.h"
- #import "ComontAlretType2ViewController.h"
- static errorAlertTool *shareInstance = nil;
- @interface errorAlertTool ()
- {
- /*弹窗提示链接失败 网络或者云机*/
- ComontAlretViewController *linkFailAlretVC;
- ComontAlretType2ViewController * linkFailAlretType2VC;
-
- NSTimer *forceStartTimer;//通知服务器重启timer
-
- errorAlert_DidClickButFun curDidClickButFun;
- }
- @end
- @implementation errorAlertTool
- + (instancetype)shareInstance {
-
- static dispatch_once_t onceToken;
-
- dispatch_once(&onceToken, ^{
- shareInstance = [[errorAlertTool alloc] init];
-
- });
-
- return shareInstance;
- }
- #pragma mark 网络异常弹框 消失
- - (void)dismissErrorAlertFun
- {
- KWeakSelf
- mainBlock(^{
- [weakSelf dismissErrorAlertInMainFun];
- });
- }
- - (void)dismissErrorAlertInMainFun{
- if(linkFailAlretVC){
- [self->linkFailAlretVC dismissViewControllerAnimated:YES completion:^{
-
- }];
- self->linkFailAlretVC = nil;
- }
- }
- #pragma mark 网络异常弹框
- -(void)showNetErrorAlertFun:(NSInteger)type didClickBut:(errorAlert_DidClickButFun)didClickBut
- {
- curDidClickButFun = didClickBut;
- KWeakSelf
- mainBlock(^{
- [weakSelf showNetErrorAlertFunInMain:type];
- });
- }
- -(void)showNetErrorAlertFunInMain:(NSInteger)type
- {
-
- [cachesFileManager writeLogsWithMsg:[[NSString alloc] initWithFormat:@"showNetErrorAlertFun %ld",type]];
-
- if(linkFailAlretVC
- //||[connectDeviceManager shareInstance].isReInitType//瑞云重新init 耗时2-7s 他们说的
- ||(ksharedAppDelegate.isWebSockLinkOKAginType && type == 2) //重连上了但是延时消息来了
- ||linkFailAlretType2VC){
- return;
- }
-
- //重启后重连 出来的
- if([webRtcManager shareManager].isRebootIngType){
- // if(![self isPlayerViewIsTopVCFun]){
- // [[iToast makeText:NSLocalizedString(@"player_link_rebooting_Tips",nil)] show];
- // }
- return;
- }
-
- if([webRtcManager shareManager].isResetingType){
- // if(![self isPlayerViewIsTopVCFun]){
- // [[iToast makeText:NSLocalizedString(@"my_set_no_Restore_Factorying_tips",nil)] show];
- // }
- return;
- }
-
- //切换盒子 出来的
- if([webRtcManager shareManager].isChangeBoxType){
- return;
- }
-
- //被挤下线
- if([webRtcManager shareManager].isLogoutByOtherType){
- return;
- }
-
- if(ksharedAppDelegate.isDidShowPwdType){
- //等下再发
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- [self showNetErrorAlertFunInMain:type];
- });
- return;
- }
-
- //未连接成功过
- // if(_isFirstEnterPhone && type == 5){
- // type = 1;
- // }
-
- BOOL isPhoneNetWorkWrongType = NO;
- NSString *linkErrTip = NSLocalizedString(@"player_link_fail_tip_type11",nil);
- if([AFNetworkReachabilityManager sharedManager].networkReachabilityStatus == AFNetworkReachabilityStatusNotReachable){
- linkErrTip = NSLocalizedString(@"netWork_error_tip_content",nil);
- isPhoneNetWorkWrongType = YES;
- }
-
- if(type == 11 && !isPhoneNetWorkWrongType){
- NSString* linkErrTitle = NSLocalizedString(@"player_link_fail_title_type11",nil);
- linkErrTitle = [[NSString alloc] initWithFormat:@"[%ld]%@",type,linkErrTitle];
-
- KWeakSelf
- linkFailAlretType2VC = [[ComontAlretType2ViewController alloc] initWithTitle:linkErrTitle msg:linkErrTip imageStr:@"" cancelTitle:NSLocalizedString(@"single_sign_on_exit",nil) okTitle:NSLocalizedString(@"player_link_fail_tryAgain",nil) otherTitle:NSLocalizedString(@"my_set_no_restart_phone",nil) isOkBtnHighlight:YES didClickOk:^{
- [weakSelf tryAgainInLinkFailFun];
- [cachesFileManager writeLogsWithMsg:@"click tryAgain"];
-
- if(self->curDidClickButFun){
- self->curDidClickButFun(1);
- }
- } didClickCancel:^{
- if(type == 5){
- self->curDidClickButFun(5);
- }
- else{
- exit(0);
- }
-
- } didClickOther:^{//重启云机
- [weakSelf needToRebootFun];
-
- if(self->curDidClickButFun){
- self->curDidClickButFun(3);
- }
- }];
-
-
- linkFailAlretType2VC.modalPresentationStyle = UIModalPresentationCustom;
-
- [ksharedAppDelegate.window.rootViewController presentViewController:linkFailAlretType2VC animated:YES completion:^{
- self->linkFailAlretType2VC.view.superview.backgroundColor = [UIColor clearColor];
- }];
-
- }
- else{
- NSString* linkErrTitle = @"";
- if(type == 2
- ||type==5
- ||type==1
- ||type==12){
- linkErrTitle = NSLocalizedString(@"player_link_fail_title_type2",nil);
- linkErrTip = NSLocalizedString(@"player_link_fail_tip_type2",nil);
- }
- else{
- linkErrTitle = NSLocalizedString(@"player_link_fail_title_type3",nil);
- linkErrTip = NSLocalizedString(@"player_link_fail_tip_type2",nil);
- }
-
- if([AFNetworkReachabilityManager sharedManager].networkReachabilityStatus == AFNetworkReachabilityStatusNotReachable){
- linkErrTip = NSLocalizedString(@"netWork_error_tip_content",nil);
- }
-
- linkErrTitle = [[NSString alloc] initWithFormat:@"[%ld]%@",type,linkErrTitle];
-
- KWeakSelf
- linkFailAlretVC= [[ComontAlretViewController alloc] initWithTiTle:linkErrTitle
- msg:linkErrTip
- imageStr:@""
- cancelTitle:NSLocalizedString(@"single_sign_on_exit",nil)
- okTitle:NSLocalizedString(@"player_link_fail_tryAgain",nil) isOkBtnHighlight:YES
- didClickOk:^{
- [weakSelf tryAgainInLinkFailFun];
- [cachesFileManager writeLogsWithMsg:@"click tryAgain"];
-
- if(self->curDidClickButFun){
- self->curDidClickButFun(1);
- }
- } didClickCancel:^{
- exit(0);
- }];
-
- linkFailAlretVC.modalPresentationStyle = UIModalPresentationCustom;
- [linkFailAlretVC setMsgTextAlignment:NSTextAlignmentLeft];
- [ksharedAppDelegate.window.rootViewController presentViewController:linkFailAlretVC animated:YES completion:^{
- self->linkFailAlretVC.view.superview.backgroundColor = [UIColor clearColor];
- }];
- }
-
- linkFailAlretVC.view.tag = type;
- }
- - (void)tryAgainInLinkFailFun
- {
- linkFailAlretVC = nil;
- linkFailAlretType2VC = nil;
-
- // if([[connectDeviceManager shareInstance] curConnectDeviceState] <= 3)
- // {
- // //瑞云发起重连
- // NSString *snStr = ksharedAppDelegate.DeviceThirdIdMod.data.changeSn;
- // if(snStr){
- // //_checkThridConnectNum = 1;
- // [[connectDeviceManager shareInstance] getThridMsgBySN:snStr needReconnect:YES didNetEnd:^(NSInteger didSuc) {
- // }];
- // }
- // return;
- // }
-
- if(!ksharedAppDelegate.isWebSockLinkOKAginType){
- [[webRtcManager shareManager] beginToLinkWebRtcFun];
- return;
- }
-
- //[[connectDeviceManager shareInstance] tryReconnectFun];
- // [self showNewIndicator];
- // reConnectAccount = 0;
- // [self tryAgain];
-
- }
- #pragma mark 重启云机
- - (void)needToRebootFun
- {
- [[webRtcManager shareManager] needToRebootFun];
-
- [self startForceStartTimerFun];
- }
- #pragma mark 启动timer 秒后检查是否软件重启成功
- - (void)startForceStartTimerFun
- {
- if(forceStartTimer){
- [forceStartTimer invalidate];
- forceStartTimer = nil;
- }
-
- forceStartTimer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(gotoUpdateForceStartFun) userInfo:nil repeats:NO];
- [[NSRunLoop currentRunLoop] addTimer:forceStartTimer forMode:NSRunLoopCommonModes];
- }
- - (void)gotoUpdateForceStartFun
- {
- [self updateForceStartFun];
-
- KWeakSelf
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(30 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- //[weakSelf reconnectDevice];
- [[webRtcManager shareManager] relinkWebRtcFun];
- });
- }
- #pragma mark 需要强制重启
- - (void)updateForceStartFun{
-
- NSString* curSn = ksharedAppDelegate.DeviceThirdIdMod.data.changeSn;
-
- NSMutableDictionary *paraDict = [NSMutableDictionary dictionary];
- [paraDict setValue:curSn forKey:@"sn"];
- [paraDict setValue:[NSNumber numberWithBool:YES] forKey:@"isForceStart"];
-
- [[netWorkManager shareInstance] CommonPostCallBackCode:updateForceStart Parameters:paraDict success:^(id _Nonnull responseObject) {
-
- SuperModel *model = [[SuperModel alloc] initWithDictionary:responseObject error:nil];
- if (model.status == 0) {
-
- }
- else
- {
-
- }
- } failure:^(NSError * _Nonnull error) {
- HLog(@"%@", error);
- }];
- }
- @end
|