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

Hybrid App(混合模式移動應(yīng)用)是指介于web-app、native-app這兩者之間的app耘柱,兼具“Native App良好用戶交互體驗(yàn)的優(yōu)勢”和“Web App跨平臺開發(fā)的優(yōu)勢”虚循。

1.首次打開App

第一次打開App同欠,自然是先解壓Hybrid Zip啦。通過‘CFBundleShortVersionString.CFBundleVersion’生成的版本標(biāo)識符來判斷是否需要重新解壓Zip包横缔,主要針對的是app通過更新上來需要解壓新安裝包中的Zip包铺遂。

// 解壓Hybrid Zip包
- (void)unzipH5ResourcesFile {
    // 解壓代理
    [BLNHybridDelegate sharedInstance].zipDelegate = self;
    [H5ResourceFileManager sharedInstance].versionDict = @{
                                                           @"venue" : @"0",
                                                           };
    
    // 版本標(biāo)識符
    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) {
                                                      // 記錄版本及標(biāo)識符剪廉,并檢查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長時(shí)間停留在后臺而導(dǎo)致無法及時(shí)更新Zip資源包,我們還需要在App后臺進(jìn)入前臺的時(shí)候斗蒋,做一次檢查更新捌斧。

// 后臺進(jìn)入前臺
- (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.獲取服務(wù)器最新版本

如App版本為2.0.1,則訪問地址為個(gè)eg:‘https://ios.download.com/hybird/app_2_0_1.json’ 泉沾。這樣做的目的是每個(gè)app版本都需要訪問自己所對應(yīng)的版本更新文件纸兔。

/**
 拼接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.服務(wù)器JSON內(nèi)容

JSON內(nèi)容如下

{
    "lastVersion": "20161201173611",// 最新版本
    "md5": "be85803fbb78fa2d4d1a95a6f09a6183",// Zip的MD5校驗(yàn)碼
    "url": "https://ios.download.com/hybird/20161201173611.zip",// 最新版Zip下載地址
    "data": [
        {
            "version": "20161123194301",// Zip版本
            "url": "https://ios.download.com/hybird/20161123194301-20161201173611.zip",// 下載地址
            "md5": "bd9da2ce1a56a59760483d5097bdd76b"http:// Zip的MD5校驗(yàn)碼
        },
        {
             "version": "20161130140816",// Zip版本
            "url": "https://ios.download.com/hybird/20161130140816-20161201173611.zip",// 下載地址
            "md5": "03d6174f95934ef78c4af3b904096992"http:// Zip的MD5校驗(yàn)碼
        }
    ]
}

6.對比版本號 全量/增量更新

如果本地Zip版本號可以在data數(shù)組中找到突勇,則執(zhí)行執(zhí)行增量更新,如果找不到則做全量更新,全量更新需要刪除本地解壓的資源伴郁。

NSDictionary *dic = [responseObject mj_JSONObject];
if(dic && [dic objectForKey:@"lastVersion"]) {
    self.lastVersion = [dic valueForKey:@"lastVersion"];
    
    NSLog(@"%s LastVersion zip verson is %@",__FUNCTION__,self.lastVersion);
    // 校驗(yàn)是否是最新版本
    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顯示下進(jìn)度條。

    MJWeakSelf
    _downLoadTask = [[BFHTTPManager sharedInstance] downloadTaskWithRequest:request
                                                                   progress:^(NSProgress * _Nonnull downloadProgress) {
                                                                    // 進(jìn)度條
                                                                     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.安全校驗(yàn)(MD5值校驗(yàn))

為了防止Zip包被攔截篡改兵怯,對下載到本地的Zip進(jìn)行MD5值的校驗(yàn)敷存。

//目前文件所在地址
NSString *zipFilePath = [filePath path];// 將NSURL轉(zhuǎn)成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值校驗(yàn)失敗"];
    });
    return;
}

9.解壓

全量更新

如果是全量更新,則刪除原先解壓的資源柴我。

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

解壓

// 目標(biāo)文件夾地址
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 為目標(biāo)路徑
        if([fileManager moveItemAtPath:destnation toPath:toPath error:nil] != YES) {
            NSLog(@"移動文件失敗");
  
            [BFCustomHUD showInfoWithStatus:@"升級失敗"];
            return;
        }
        else {
            NSLog(@"移動文件成功");
        }
    }
}

10.更新版本版本號等標(biāo)識符

[[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];

//初始化模塊的最后更新時(shí)間
[BLNReadAndSavePlist savePlistContent:[NSDate date]
                       withContentKey:@"venue_H5LastUpdateTime"
                             withPath:ph_updateResourcePlistName];
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市艘儒,隨后出現(xiàn)的幾起案子聋伦,更是在濱河造成了極大的恐慌,老刑警劉巖界睁,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件觉增,死亡現(xiàn)場離奇詭異,居然都是意外死亡翻斟,警方通過查閱死者的電腦和手機(jī)逾礁,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來访惜,“玉大人敞斋,你說我怎么就攤上這事〖采” “怎么了植捎?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長阳柔。 經(jīng)常有香客問我焰枢,道長,這世上最難降的妖魔是什么舌剂? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任济锄,我火速辦了婚禮,結(jié)果婚禮上霍转,老公的妹妹穿的比我還像新娘荐绝。我一直安慰自己,他們只是感情好避消,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布低滩。 她就那樣靜靜地躺著召夹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪恕沫。 梳的紋絲不亂的頭發(fā)上监憎,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天,我揣著相機(jī)與錄音婶溯,去河邊找鬼鲸阔。 笑死,一個(gè)胖子當(dāng)著我的面吹牛迄委,可吹牛的內(nèi)容都是我干的褐筛。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼叙身,長吁一口氣:“原來是場噩夢啊……” “哼渔扎!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起曲梗,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤赞警,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后虏两,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體愧旦,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年定罢,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了笤虫。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡祖凫,死狀恐怖琼蚯,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情惠况,我是刑警寧澤遭庶,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站稠屠,受9級特大地震影響峦睡,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜权埠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一榨了、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧攘蔽,春花似錦龙屉、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽作岖。三九已至,卻和暖如春瓜富,著一層夾襖步出監(jiān)牢的瞬間鳍咱,已是汗流浹背降盹。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工与柑, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蓄坏。 一個(gè)月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓价捧,卻偏偏與公主長得像,于是被迫代替她去往敵國和親涡戳。 傳聞我的和親對象是個(gè)殘疾皇子结蟋,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,524評論 25 707
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn)渔彰,斷路器嵌屎,智...
    卡卡羅2017閱讀 134,601評論 18 139
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫、插件恍涂、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,033評論 4 62
  • zs 不知道你的蹤跡在何方宝惰,我唯有默默找尋,你曾經(jīng)走過的路再沧。時(shí)光已逝尼夺,空間變得狹小不堪,我不知命運(yùn)會把我引向何方炒瘸。...
    zs123閱讀 474評論 0 1
  • 沒辦法把文字粘貼上來淤堵,就只能發(fā)圖片了,第一次寫文顷扩,希望大家能給我一些建議拐邪,謝謝大家(?>ω<*?)
    不軼樂乎依夢閱讀 203評論 0 0