/*
 * Copyright (C) 2019 xuexiangjys(xuexiangjys@163.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package com.dianvonativeandroidxupdate;

import android.text.TextUtils;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

import com.xuexiang.xupdate._XUpdate;
import com.xuexiang.xupdate.entity.UpdateEntity;
import com.xuexiang.xupdate.proxy.impl.DefaultUpdateDownloader;
import com.xuexiang.xupdate.service.OnFileDownloadListener;

/**
 * 重写DefaultUpdateDownloader，在取消下载时，可弹出提示
 *
 * @author xuexiang
 * @since 2019-06-14 23:47
 */
public class RetryUpdateDownloader extends DefaultUpdateDownloader {

    private boolean mIsStartDownload;

    /**
     * 取消下载时，是否弹出重试提示
     */
    private boolean mEnableRetry;

    /**
     * 重试提示弹窗的内容
     */
    private String mRetryContent;
    /**
     * 重试的下载路径
     */
    private String mRetryUrl;

    public RetryUpdateDownloader(boolean enableRetry, String retryContent, String retryUrl) {
        mEnableRetry = enableRetry;
        mRetryContent = retryContent;
        mRetryUrl = retryUrl;
    }

    @Override
    public void startDownload(@NonNull UpdateEntity updateEntity, @Nullable OnFileDownloadListener downloadListener) {
        super.startDownload(updateEntity, downloadListener);
        mIsStartDownload = true;

    }

    @Override
    public void cancelDownload() {
        super.cancelDownload();
        if (mIsStartDownload) {
            mIsStartDownload = false;

            if (mEnableRetry && !TextUtils.isEmpty(mRetryUrl)) {
                RetryUpdateTipDialog.show(mRetryContent, mRetryUrl);
            } else {
                _XUpdate.onUpdateError(4002, "取消下载");
            }
        }
    }



}
