-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathVersionUpdateHelper.java
More file actions
277 lines (241 loc) · 9.48 KB
/
Copy pathVersionUpdateHelper.java
File metadata and controls
277 lines (241 loc) · 9.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package cn.gnsit.wenwan.app.utils;
import android.app.ProgressDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.support.v7.app.AlertDialog;
import org.greenrobot.eventbus.EventBus;
import java.io.File;
import cn.gnsit.wenwan.app.base.MainApplication;
import cn.gnsit.wenwan.app.event.VersionUpdateEvent;
import cn.gnsit.wenwan.app.model.VersionUpdateModel;
import cn.gnsit.wenwan.app.service.VersionUpdateService;
/**
* Created by guizhigang on 16/6/23.
*/
public class VersionUpdateHelper implements ServiceConnection {
private Context context;
private VersionUpdateService service;
private AlertDialog waitForUpdateDialog;
private ProgressDialog progressDialog;
private static boolean isCanceled;
private boolean showDialogOnStart;
private boolean toastInfo;
public static final int NEED_UPDATE = 2;
public static final int DONOT_NEED_UPDATE = 1;
public static final int CHECK_FAILD = -1;
public static final int USER_CANCELED = 0;
private CheckCallBack checkCallBack;
public interface CheckCallBack{
void callBack(int code);
}
public VersionUpdateHelper(Context context) {
this.context = context;
}
public void setCheckCallBack(CheckCallBack checkCallBack) {
this.checkCallBack = checkCallBack;
}
public static void resetCancelFlag() {
isCanceled = false;
}
/**
* 设置非强制更新时,是否显示更新对话框
*
* @param showDialogOnStart
*/
public void setShowDialogOnStart(boolean showDialogOnStart) {
this.showDialogOnStart = showDialogOnStart;
}
/**
* 是否吐司更新消息
*
* @param toastInfo
*/
public void setToastInfo(boolean toastInfo) {
this.toastInfo = toastInfo;
}
public void startUpdateVersion() {
LogUtil.d("VersionUpdateService", "startUpdateVersion");
if (isCanceled)
return;
if (isWaitForUpdate() || isWaitForDownload()) {
return;
}
if (service == null && context != null) {
context.bindService(new Intent(context, VersionUpdateService.class), this, Context.BIND_AUTO_CREATE);
LogUtil.d("VersionUpdateService", "bindService");
}
}
public void stopUpdateVersion() {
LogUtil.d("VersionUpdateService", "stopUpdateVersion");
unBindService();
}
private void cancel() {
isCanceled = true;
unBindService();
}
private void unBindService() {
if (isWaitForUpdate() || isWaitForDownload()) {
return;
}
if (service != null && !service.isDownLoading()) {
LogUtil.d("VersionUpdateService", "unBindService");
context.unbindService(this);
service = null;
}
}
private boolean isWaitForUpdate() {
return waitForUpdateDialog != null && waitForUpdateDialog.isShowing();
}
private boolean isWaitForDownload() {
return progressDialog != null && progressDialog.isShowing();
}
private void showNotWifiDownloadDialog() {
final AlertDialog.Builder builer = new AlertDialog.Builder(context);
builer.setTitle("下载新版本");
builer.setMessage("检查到您的网络处于非wifi状态,下载新版本将消耗一定的流量,是否继续下载?");
builer.setNegativeButton("以后再说", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//exit app
boolean mustUpdate = service.getVersionUpdateModel().isMustUpgrade();
dialog.cancel();
unBindService();
if (mustUpdate) {
MainApplication.getInstance().exitApp();
}
}
});
builer.setPositiveButton("继续下载", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
service.doDownLoadTask();
}
});
builer.setCancelable(false);
builer.show();
}
@Override
public void onServiceConnected(ComponentName name, IBinder binder) {
service = ((VersionUpdateService.LocalBinder) binder).getService();
service.setCheckVersionCallBack(new VersionUpdateService.CheckVersionCallBack() {
@Override
public void onSuccess() {
VersionUpdateModel versionUpdateModel = service.getVersionUpdateModel();
VersionUpdateEvent versionUpdateEvent = new VersionUpdateEvent();
versionUpdateEvent.setShowTips(versionUpdateModel.isNeedUpgrade());
EventBus.getDefault().postSticky(versionUpdateEvent);
if (!versionUpdateModel.isNeedUpgrade()) {
if (toastInfo) {
ToastUtil.toast(context, "暂无新版本");
}
if(checkCallBack != null){
checkCallBack.callBack(DONOT_NEED_UPDATE);
}
cancel();
return;
}
if (!versionUpdateModel.isMustUpgrade() && !showDialogOnStart) {
cancel();
return;
}
if(checkCallBack != null){
checkCallBack.callBack(NEED_UPDATE);
}
final AlertDialog.Builder builer = new AlertDialog.Builder(context);
builer.setTitle("版本升级");
builer.setMessage(versionUpdateModel.getDescription());
//当点确定按钮时从服务器上下载新的apk 然后安装
builer.setPositiveButton("立即更新", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
if (NetUtil.isWifi(context)) {
service.doDownLoadTask();
} else {
showNotWifiDownloadDialog();
}
}
});
//当点取消按钮时进行登录
if (!versionUpdateModel.isMustUpgrade()) {
builer.setNegativeButton("稍后更新", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
cancel();
if(checkCallBack != null){
checkCallBack.callBack(USER_CANCELED);
}
}
});
}
builer.setCancelable(false);
waitForUpdateDialog = builer.create();
waitForUpdateDialog.show();
}
@Override
public void onError() {
if (toastInfo) {
ToastUtil.toast(context, "检查失败,请检查网络设置");
}
unBindService();
if(checkCallBack != null){
checkCallBack.callBack(CHECK_FAILD);
}
}
});
service.setDownLoadListener(new VersionUpdateService.DownLoadListener() {
@Override
public void begain() {
VersionUpdateModel versionUpdateModel = service.getVersionUpdateModel();
if (versionUpdateModel.isMustUpgrade()) {
progressDialog = new ProgressDialog(context);
progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
progressDialog.setCancelable(false);
progressDialog.setCanceledOnTouchOutside(false);
progressDialog.setMessage("正在下载更新");
progressDialog.show();
}
}
@Override
public void inProgress(float progress, long total) {
if (progressDialog != null) {
progressDialog.setMax(100);
progressDialog.setProgress((int) (progress * 100));
}
}
@Override
public void downLoadLatestSuccess(File file) {
if (progressDialog != null)
progressDialog.cancel();
service.setDownLoading(false);
unBindService();
}
@Override
public void downLoadLatestFailed() {
if (progressDialog != null)
progressDialog.cancel();
service.setDownLoading(false);
unBindService();
}
});
service.doCheckUpdateTask();
}
@Override
public void onServiceDisconnected(ComponentName name) {
if (progressDialog != null && progressDialog.isShowing())
progressDialog.cancel();
if (waitForUpdateDialog != null && waitForUpdateDialog.isShowing())
waitForUpdateDialog.cancel();
if (service != null) {
service.setDownLoadListener(null);
service.setCheckVersionCallBack(null);
}
service = null;
context = null;
}
}