Newer
Older
flutterBaseApp / lib / utils / version_util.dart
StephanieGitHub on 9 Feb 2021 2 KB first commit
import 'dart:io';

import 'package:dio/dio.dart';
import 'package:flustars/flustars.dart';
import 'package:install_apk_plugin/install_apk_plugin.dart';

import 'utils.dart';

/// 版本更新工具类
class VersionUtil {
  static final VersionUtil _singleton = VersionUtil._init();

  static Dio _dio = Dio();

  List<OnDownloadProgress> listeners = List();

  bool isDownload = false;

  factory VersionUtil() {
    return _singleton;
  }

  VersionUtil._init();

  void downloadApk(String urlPath, String appId) async {
    if (isDownload == true || ObjectUtil.isEmpty(urlPath)) return;
    try {
      await DirectoryUtil.getInstance();
      String apkDirPath = DirectoryUtil.getStoragePath(category: 'Download');
      LogUtil.e("apkDirPath: $apkDirPath");
      Directory apkDir = DirectoryUtil.createDirSync(apkDirPath);

      String apkName = Utils.getFileName(urlPath);
      String apkPath = '$apkDirPath/$apkName';
      String apkTempPath = '$apkDirPath/temp_$apkName';

      LogUtil.e("apkPath: $apkPath");
      LogUtil.e("apkTempPath: $apkTempPath");

      File file = File(apkPath);
      if (file.existsSync()) {
        _install(apkPath, appId);
        isDownload = false;
        listeners.forEach((listener) {
          listener(1, 1);
        });
        return;
      }
      isDownload = true;
      Response response = await _dio.download(
        urlPath,
        apkTempPath,
        onProgress: (int count, int total) {
          LogUtil.e(
              "onReceiveProgress total: $total, count: $count, prect: ${count / total}");
          listeners.forEach((listener) {
            listener(count, total);
          });
          if (count == total) {
            isDownload = false;
            File file = File(apkTempPath);
            File fileNew = file.copySync(apkPath);
            file.deleteSync();
            _install(apkPath, appId);
          }
        },
      );
    } catch (e) {
      LogUtil.e("download apk error: ${e?.toString()}");
      isDownload = false;
      listeners.forEach((listener) {
        listener(-1, 1);
      });
    }
  }

  void _install(String filePath, String appId) {
    InstallPlugin.installApk(filePath, appId).then((result) {
      LogUtil.e('install apk $result');
    }).catchError((error) {
      LogUtil.e('install apk error: $error');
    });
  }

  void addListener(OnDownloadProgress listener) {
    if (listener == null) return;
    if (!listeners.contains(listener)) {
      listeners.add(listener);
    }
  }

  void removeListener(OnDownloadProgress listener) {
    if (listener == null) return;
    if (listeners.contains(listener)) {
      listeners.remove(listener);
    }
  }
}