Hybrid App 增量/全量更新解决方案

Hybrid App(混合模式移动应用)是指介于web-app、native-app这两者之间的app,兼具“Native App良好用户交互体验的优势”和“Web App跨平台开发的优势”。

1.首次打开App

第一次打开App,自然是先解压Hybrid Zip啦。通过‘CFBundleShortVersionString.CFBundleVersion’生成的版本标识符来判断是否需要重新解压Zip包,主要针对的是app通过更新上来需要解压新安装包中的Zip包。

// 解压Hybrid Zip包
- (void)unzipH5ResourcesFile {
    // 解压代理
    [BLNHybridDelegate sharedInstance].zipDelegate = self;
    [H5ResourceFileManager sharedInstance].versionDict = @{
                                                           @"venue" : @"0",
                                                           };
    
    // 版本标识符
    NSString *key = @"BLN_APP_BUILD_VERSION";
    NSString *value = [[NSUserDefaults standardUserDefaults] valueForKey:key];
    NSString *versionStr = [NSString stringWithFormat:@"%@.%@",APP_VERSION,APP_BUILD_VERSION];
    
    // AppStore更新App,则删除本地解压的Zip包及资源
    if (![value isEqualToString:versionStr]) {
    
        [[H5ResourceFileManager sharedInstance] clearH5Resource];
        [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"BLN_HTML_ISUNZIP"];
    }
    
    // 解压Zip
    @weakify(self)
    [[H5ResourceFileManager sharedInstance] setupHtmlFileWithName:@"venue"
                                                      finishblock:^(id obj, NSInteger err) {
                                                      // 记录版本及标识符,并检查Zip版本更新
                                                          @normalize(self)
                                                          if (![[NSUserDefaults standardUserDefaults] objectForKey:@"BLN_HTML_ISUNZIP"]) {
                                                              [[NSUserDefaults standardUserDefaults] setObject:@"0" forKey:@"BLN_HTML_VERSION"];
                                                              [[NSUserDefaults standardUserDefaults] setObject:@1 forKey:@"BLN_HTML_ISUNZIP"];
                                                              [[NSUserDefaults standardUserDefaults] setObject:versionStr forKey:key];
                                                              [self checkH5ResourcesFile];
                                                          }
                                                          else
                                                              [self checkH5ResourcesFile];
                                                      }];
}

#pragma mark - SSZipArchiveDelegate
// 解压代理
- (BOOL)filePath:(NSString *)filePath unZipToPath:(NSString *)toPath {
    if ([SSZipArchive unzipFileAtPath:filePath toDestination:toPath]) {
        return YES;
    }
    else {
        return NO;
    }
}

2.检查版本更新

需要注意的是,为了避免App长时间停留在后台而导致无法及时更新Zip资源包,我们还需要在App后台进入前台的时候,做一次检查更新。

// 后台进入前台
- (void)applicationWillEnterForeground:(UIApplication *)application {    
    [[H5ResourceFileManager sharedInstance] checkH5ResourcesFile];
}

#pragma mark – Private Methods
// 检查更新
- (void)checkH5ResourcesFile {
    if ([[NSUserDefaults standardUserDefaults] objectForKey:@"BLN_HTML_ISUNZIP"]) {
            [[H5ResourceFileManager sharedInstance] checkH5ResourcesFile];
        }
}

3.获取本地版本号

self.loactionVersion = (NSString *)[[NSUserDefaults standardUserDefaults] objectForKey:@"BLN_HTML_VERSION"];

4.获取服务器最新版本

如App版本为2.0.1,则访问地址为个eg:‘https://ios.download.com/hybird/app_2_0_1.json’ 。这样做的目的是每个app版本都需要访问自己所对应的版本更新文件。

/**
 拼接json文件请求地址
 
 @return 下载地址
 */
- (NSString *)getH5ResourcesDownLoadURL {
    NSArray *numberArry = [APP_VERSION componentsSeparatedByString:@"."];
    
    NSMutableString *localVersion = [[NSMutableString alloc] initWithString:self.baseURL];
    for (int i = 0; i < numberArry.count; i++) {
        NSString *value = numberArry[i];
        [localVersion appendString:[NSString stringWithFormat:@"_%@",value]];
    }
    [localVersion appendString:@".json"];
    
    return localVersion;
}

5.服务器JSON内容

JSON内容如下

{
    "lastVersion": "20161201173611",// 最新版本
    "md5": "be85803fbb78fa2d4d1a95a6f09a6183",// Zip的MD5校验码
    "url": "https://ios.download.com/hybird/20161201173611.zip",// 最新版Zip下载地址
    "data": [
        {
            "version": "20161123194301",// Zip版本
            "url": "https://ios.download.com/hybird/20161123194301-20161201173611.zip",// 下载地址
            "md5": "bd9da2ce1a56a59760483d5097bdd76b"// Zip的MD5校验码
        },
        {
             "version": "20161130140816",// Zip版本
            "url": "https://ios.download.com/hybird/20161130140816-20161201173611.zip",// 下载地址
            "md5": "03d6174f95934ef78c4af3b904096992"// Zip的MD5校验码
        }
    ]
}

6.对比版本号 全量/增量更新

如果本地Zip版本号可以在data数组中找到,则执行执行增量更新,如果找不到则做全量更新,全量更新需要删除本地解压的资源。

NSDictionary *dic = [responseObject mj_JSONObject];
if(dic && [dic objectForKey:@"lastVersion"]) {
    self.lastVersion = [dic valueForKey:@"lastVersion"];
    
    NSLog(@"%s LastVersion zip verson is %@",__FUNCTION__,self.lastVersion);
    // 校验是否是最新版本
    if([self.lastVersion longLongValue] > [self.loactionVersion longLongValue]) {
        NSArray *data = dic[@"data"];
        if (!data) {
            _requestLoadTask = nil;
            return;
        }
        // 增量更新
        for (NSDictionary *info in data) {
            if ([info[@"version"] isEqualToString:self.loactionVersion]) {
                self.lastHashString = info[@"md5"];
                [self downloadH5ResourcesZipWithURL:info[@"url"] clearHTMLResource:NO fractionCompleted:^(double count) {
                }];
                return;
            }
        }
        
        // 全量更新
        self.lastHashString = dic[@"md5"];
        [self downloadH5ResourcesZipWithURL:dic[@"url"] clearHTMLResource:YES fractionCompleted:^(double count) {
        }];
    }
    else {
        _requestLoadTask = nil;
        NSLog(@"%s This zip is lastVersion",__FUNCTION__);
    }
}
else {
    _requestLoadTask = nil;
    NSLog(@"%s No json file",__FUNCTION__);
}

7.下载Hybrid Zip

下载过程中增加SVProgressHUD显示下进度条。

    MJWeakSelf
    _downLoadTask = [[BFHTTPManager sharedInstance] downloadTaskWithRequest:request
                                                                   progress:^(NSProgress * _Nonnull downloadProgress) {
                                                                    // 进度条
                                                                     dispatch_async(dispatch_get_main_queue(), ^{
                                                                           if (downloadProgress)
                                                                           {
                                                                               [SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeGradient];
                                                                               [SVProgressHUD showProgress:downloadProgress.fractionCompleted status:@"更新中..."];
                                                                           }
                                                                       });
                                                                   }
                                                                destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
                                                                // 存放路径
                                                                    NSString *cachesPath = [LKFilePath cachesPath];
                                                                    NSString *finalPath = [cachesPath stringByAppendingString:@"/Resources.zip"];
                                                                    return [NSURL fileURLWithPath:finalPath];
                                                                }
                                                          completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
                                                              [SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeNone];
                                                              [SVProgressHUD dismiss];
                                                              // 错误处理
                                                              ···
                                                              // 下载完成
                                                              ···
                                                              });
                                                          }];
    [_downLoadTask resume];

8.安全校验(MD5值校验)

为了防止Zip包被拦截篡改,对下载到本地的Zip进行MD5值的校验。

//目前文件所在地址
NSString *zipFilePath = [filePath path];// 将NSURL转成NSString
YYFileHash *fileHashSting = [YYFileHash hashForFile:zipFilePath types:YYFileHashTypeMD5];
BOOL same = ([weakSelf.lastHashString compare:fileHashSting.md5String options:NSCaseInsensitiveSearch | NSNumericSearch] == NSOrderedSame);
if (!same) {
    dispatch_async(dispatch_get_main_queue(), ^{
        [BFCustomHUD showInfoWithStatus:@"文件MD5值校验失败"];
    });
    return;
}

9.解压

全量更新

如果是全量更新,则删除原先解压的资源。

// 删除h5资源
[[H5ResourceFileManager sharedInstance] clearH5Resource];
[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"BLN_HTML_ISUNZIP"];

解压

// 目标文件夹地址
NSString *destnation = [[LKFilePath documentPath] stringByAppendingFormat:@"/html5/%@",self.htmlVersion];
if ([LKFilePath touchDirectory:destnation]) {
    dispatch_async(dispatch_get_main_queue(), ^{
        // 更新界面
        [SVProgressHUD showWithStatus:@"解压中..."];
    });
    
    bool unzipSuccess = [SSZipArchive unzipFileAtPath:zipFilePath toDestination:destnation];
    if (unzipSuccess) {
        weakSelf.loactionVersion = weakSelf.lastVersion;
        dispatch_async(dispatch_get_main_queue(), ^{
            // 更新界面
            [BFCustomHUD showSuccessWithStatus:@"更新成功"];
            
            // 如果有H5页面 返回首页
            for (UIViewController *vc in [LKGlobalNavigationController sharedInstance].viewControllers) {
                if ([vc isKindOfClass:[BLNHybridViewController class]]) {
                    [[LKGlobalNavigationController sharedInstance] popToRootViewControllerAnimated:NO];
                    return ;
                }
            }
        });
        
        NSFileManager *fileManager = [NSFileManager defaultManager];
        NSString *toPath = [[LKFilePath documentPath] stringByAppendingFormat:@"/html5/%@",weakSelf.lastVersion];
        
        // prePath 为原路径,cenPath 为目标路径
        if([fileManager moveItemAtPath:destnation toPath:toPath error:nil] != YES) {
            NSLog(@"移动文件失败");
  
            [BFCustomHUD showInfoWithStatus:@"升级失败"];
            return;
        }
        else {
            NSLog(@"移动文件成功");
        }
    }
}

10.更新版本版本号等标识符

[[NSUserDefaults standardUserDefaults] setObject:[NSString stringWithFormat:@"%@",weakSelf.lastVersion] forKey:@"BLN_HTML_VERSION"];
[[NSUserDefaults standardUserDefaults] setObject:@1 forKey:@"BLN_HTML_ISUNZIP"];
                                                                          
[BLNReadAndSavePlist savePlistContent:weakSelf.lastVersion
                       withContentKey:@"venue_H5Version"
                             withPath:ph_updateResourcePlistName];

//初始化模块的最后更新时间
[BLNReadAndSavePlist savePlistContent:[NSDate date]
                       withContentKey:@"venue_H5LastUpdateTime"
                             withPath:ph_updateResourcePlistName];
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,059评论 25 707
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,651评论 18 139
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,090评论 4 62
  • zs 不知道你的踪迹在何方,我唯有默默找寻,你曾经走过的路。时光已逝,空间变得狭小不堪,我不知命运会把我引向何方。...
    zs123阅读 485评论 0 1
  • 没办法把文字粘贴上来,就只能发图片了,第一次写文,希望大家能给我一些建议,谢谢大家(ฅ>ω<*ฅ)
    不轶乐乎依梦阅读 205评论 0 0