blob: dbb030346046d2200876eb6b2f57fa8e1f901550 [file] [log] [blame]
Kim Hansen086964d2013-12-10 11:33:28 +00001/*
2 * Copyright (C) 2013 Fairphone Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.fairphone.updater;
18
19import android.app.DownloadManager;
20import android.app.DownloadManager.Request;
21import android.app.Notification;
22import android.app.NotificationManager;
23import android.app.PendingIntent;
24import android.app.Service;
25import android.app.TaskStackBuilder;
26import android.content.BroadcastReceiver;
27import android.content.Context;
28import android.content.Intent;
29import android.content.IntentFilter;
30import android.content.SharedPreferences;
31import android.content.SharedPreferences.Editor;
32import android.content.res.Resources;
33import android.database.Cursor;
34import android.graphics.BitmapFactory;
35import android.net.ConnectivityManager;
36import android.net.Uri;
Jose Pascoalcf13fde2014-05-21 20:17:17 +010037import android.os.Build;
Kim Hansen086964d2013-12-10 11:33:28 +000038import android.os.Environment;
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +000039import android.os.Handler;
Kim Hansen086964d2013-12-10 11:33:28 +000040import android.os.IBinder;
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +000041import android.os.SystemClock;
Kim Hansen086964d2013-12-10 11:33:28 +000042import android.support.v4.app.NotificationCompat;
Tiago Costac14ea242014-04-24 10:14:41 +010043import android.util.Log;
Jose Pascoal0e966282014-08-12 18:49:05 +010044import android.widget.Toast;
Filipe Gonçalvescd0f33d2014-12-15 15:05:15 +000045
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +000046import com.fairphone.updater.data.UpdaterData;
Jose Pascoal7bf83a02014-10-13 18:30:18 +010047import com.fairphone.updater.data.Version;
48import com.fairphone.updater.data.VersionParserHelper;
Jose Pascoalac6a8462014-09-10 20:12:08 +010049import com.fairphone.updater.gappsinstaller.GappsInstallerHelper;
Filipe Gonçalves49ce23c2015-02-13 16:33:52 +000050import com.fairphone.updater.tools.PrivilegeChecker;
Jose Pascoal02b849e2014-06-26 17:07:51 +010051import com.fairphone.updater.tools.RSAUtils;
52import com.fairphone.updater.tools.Utils;
Jose Pascoalcf13fde2014-05-21 20:17:17 +010053import com.stericson.RootTools.execution.CommandCapture;
54import com.stericson.RootTools.execution.Shell;
Kim Hansen086964d2013-12-10 11:33:28 +000055
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +010056import java.io.File;
57import java.io.FileInputStream;
58import java.io.FileOutputStream;
59import java.io.IOException;
60import java.io.UnsupportedEncodingException;
61import java.net.URLEncoder;
62import java.nio.channels.FileChannel;
63import java.nio.charset.Charset;
64import java.util.concurrent.TimeoutException;
65
Filipe Gonçalvescd0f33d2014-12-15 15:05:15 +000066
Jose Pascoal810950b2014-10-09 17:16:08 +010067public class UpdaterService extends Service
68{
Kim Hansen086964d2013-12-10 11:33:28 +000069
Filipe Gonçalves6ce7b142015-01-22 14:39:29 +000070 public static final String LAST_CONFIG_DOWNLOAD_IN_MS = "LAST_CONFIG_DOWNLOAD_IN_MS";
Filipe Gonçalves8b263ad2015-01-12 12:30:11 +000071 private static final int CONFIG_FILE_DOWNLOAD_TIMEOUT_MILLIS = 23500;
Filipe Gonçalves8f226b02014-12-12 11:21:58 +000072 public static final String EXTRA_FORCE_CONFIG_FILE_DOWNLOAD = "FORCE_DOWNLOAD";
73
Jose Pascoal810950b2014-10-09 17:16:08 +010074 private static final String TAG = UpdaterService.class.getSimpleName();
75
Jose Pascoalc2545cc2014-12-18 16:51:52 +000076 public static final String PREFERENCE_LAST_CONFIG_DOWNLOAD_ID = "LastConfigDownloadId";
Tiago Costa87925fe2014-12-02 17:57:51 +000077 public static final String PREFERENCE_REINSTALL_GAPPS = "ReinstallGappsOmnStartUp";
Filipe Gonçalves80d4b152015-05-26 19:04:02 +010078 public static final String PREFERENCE_CONFIG_MD_5 = "CONFIG_MD5";
Jose Pascoal810950b2014-10-09 17:16:08 +010079 private DownloadManager mDownloadManager = null;
80 private DownloadBroadCastReceiver mDownloadBroadCastReceiver = null;
Kim Hansen086964d2013-12-10 11:33:28 +000081
Jose Pascoal1ee56e22014-05-21 16:58:20 +010082 private static final int MAX_DOWNLOAD_RETRIES = 3;
83 private int mDownloadRetries;
Jose Pascoal810950b2014-10-09 17:16:08 +010084 private long mLatestFileDownloadId;
Filipe Gonçalvesd28bd622014-11-05 11:40:12 +000085 private boolean mInternetConnectionAvailable;
Kim Hansen086964d2013-12-10 11:33:28 +000086
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +000087 private SharedPreferences mSharedPreferences;
Jose Pascoal810950b2014-10-09 17:16:08 +010088
Jose Pascoalb03b55c2015-02-19 17:34:07 +000089 private final static long DOWNLOAD_GRACE_PERIOD_IN_MS = 24 /* hour */ * Utils.MINUTES_IN_HOUR /* minute */ * Utils.SECONDS_IN_MINUTE /* second */ * 1000 /* millisecond */;
Filipe Gonçalves40893132015-05-25 17:45:44 +010090 private BroadcastReceiver networkStateReceiver;
Jose Pascoal29ee1012014-09-12 17:25:36 +010091
Filipe Gonçalves40893132015-05-25 17:45:44 +010092 @Override
Jose Pascoal810950b2014-10-09 17:16:08 +010093 public int onStartCommand(Intent intent, int flags, int startId)
94 {
Jose Pascoal810950b2014-10-09 17:16:08 +010095 // remove the logs
96 clearDataLogs();
Jose Pascoalda00b382015-01-20 18:39:28 +000097
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +000098 if(Utils.isDeviceUnsupported(getApplicationContext())){
Jose Pascoalda00b382015-01-20 18:39:28 +000099 stopSelf();
100 return START_NOT_STICKY;
101 }
Jose Pascoal29ee1012014-09-12 17:25:36 +0100102
Jose Pascoal7bf83a02014-10-13 18:30:18 +0100103 mSharedPreferences = getApplicationContext().getSharedPreferences(FairphoneUpdater.FAIRPHONE_UPDATER_PREFERENCES, MODE_PRIVATE);
Jose Pascoal29ee1012014-09-12 17:25:36 +0100104
Jose Pascoal810950b2014-10-09 17:16:08 +0100105 mLatestFileDownloadId = mSharedPreferences.getLong(PREFERENCE_LAST_CONFIG_DOWNLOAD_ID, 0);
Tiago Costa87925fe2014-12-02 17:57:51 +0000106
Jose Pascoalaa579a82014-11-05 22:17:16 +0000107 setupDownloadManager();
Tiago Costa87925fe2014-12-02 17:57:51 +0000108
Filipe Gonçalvesd28bd622014-11-05 11:40:12 +0000109 setupConnectivityMonitoring();
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100110
Filipe Gonçalves40893132015-05-25 17:45:44 +0100111 if (Utils.isWiFiEnabled(getApplicationContext()))
Jose Pascoal810950b2014-10-09 17:16:08 +0100112 {
Filipe Gonçalves40893132015-05-25 17:45:44 +0100113 downloadConfigFile(intent != null && intent.getBooleanExtra(EXTRA_FORCE_CONFIG_FILE_DOWNLOAD, false));
Jose Pascoal810950b2014-10-09 17:16:08 +0100114 }
115
116 // setup the gapps installer
Jose Pascoal40916302015-02-06 18:43:47 +0000117 GappsInstallerHelper.checkGappsAreInstalled(getApplicationContext());
Jose Pascoal810950b2014-10-09 17:16:08 +0100118
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000119 runInstallationDisclaimer(getApplicationContext());
Tiago Costa87925fe2014-12-02 17:57:51 +0000120
Jose Pascoal810950b2014-10-09 17:16:08 +0100121 return Service.START_STICKY;
122 }
123
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000124 private static void runInstallationDisclaimer(Context context)
Tiago Costa87925fe2014-12-02 17:57:51 +0000125 {
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000126 SharedPreferences sharedPreferences = context.getApplicationContext().getSharedPreferences(FairphoneUpdater.FAIRPHONE_UPDATER_PREFERENCES, MODE_PRIVATE);
127 if (sharedPreferences.getBoolean(PREFERENCE_REINSTALL_GAPPS, true) && !UpdaterData.getInstance().isAppStoreListEmpty())
Tiago Costa87925fe2014-12-02 17:57:51 +0000128 {
Tiago Costa87925fe2014-12-02 17:57:51 +0000129 if(!GappsInstallerHelper.areGappsInstalled()){
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000130 showReinstallAlert(context);
Tiago Costa87925fe2014-12-02 17:57:51 +0000131 }
132
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000133 Editor editor = sharedPreferences.edit();
Tiago Costa87925fe2014-12-02 17:57:51 +0000134 editor.putBoolean(PREFERENCE_REINSTALL_GAPPS, false);
135
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000136 editor.apply();
Tiago Costa87925fe2014-12-02 17:57:51 +0000137 }
138 }
139
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000140 private static void showReinstallAlert(Context context)
Tiago Costa87925fe2014-12-02 17:57:51 +0000141 {
Filipe Gonçalves825414a2015-01-26 14:52:48 +0000142 if ( FairphoneUpdater.BETA_MODE_ENABLED )
Jose Pascoal40916302015-02-06 18:43:47 +0000143 {
Filipe Gonçalves825414a2015-01-26 14:52:48 +0000144 return;
Jose Pascoal40916302015-02-06 18:43:47 +0000145 }
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000146
147 NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Tiago Costa87925fe2014-12-02 17:57:51 +0000148
Tiago Costa73575aa2015-01-19 15:48:26 +0000149 //Intent notificationIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(context.getResources().getString(R.string.supportAppStoreUrl)));
Tiago Costa87925fe2014-12-02 17:57:51 +0000150
Tiago Costa73575aa2015-01-19 15:48:26 +0000151 Intent notificationIntent = new Intent(context, FairphoneUpdater.class);
152 notificationIntent.setAction(GappsInstallerHelper.EXTRA_START_GAPPS_INSTALL);
Tiago Costa87925fe2014-12-02 17:57:51 +0000153
Tiago Costa73575aa2015-01-19 15:48:26 +0000154 PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000155
156 NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context).setSmallIcon(R.drawable.updater_tray_icon)
Filipe Gonçalves071b6752015-06-24 12:37:32 +0100157 .setContentTitle(context.getResources().getString(R.string.app_full_name))
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000158 .setContentText(context.getResources().getString(R.string.appStoreReinstall))
159 .setAutoCancel(true)
160 .setDefaults(Notification.DEFAULT_SOUND)
161 .setContentIntent(contentIntent);
Tiago Costa87925fe2014-12-02 17:57:51 +0000162
163 mNotificationManager.notify(0, mBuilder.build());
164 }
165
Filipe Gonçalves8f226b02014-12-12 11:21:58 +0000166 private void downloadConfigFile(boolean forceDownload)
Jose Pascoal810950b2014-10-09 17:16:08 +0100167 {
Filipe Gonçalves8f226b02014-12-12 11:21:58 +0000168 long now = System.currentTimeMillis();
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000169 long last_download = mSharedPreferences.getLong(LAST_CONFIG_DOWNLOAD_IN_MS, 0L);
Filipe Gonçalves8f226b02014-12-12 11:21:58 +0000170 if( forceDownload || now > (last_download + DOWNLOAD_GRACE_PERIOD_IN_MS) ) {
Filipe Gonçalves40893132015-05-25 17:45:44 +0100171 Log.i(TAG, "Downloading updater configuration file.");
Filipe Gonçalves8f226b02014-12-12 11:21:58 +0000172 // remove the old file if its still there for some reason
173 removeLatestFileDownload(getApplicationContext());
174
175 // start the download of the latest file
176 startDownloadLatest();
Jose Pascoal810950b2014-10-09 17:16:08 +0100177
Jose Pascoal0b48f8d2015-02-06 16:06:41 +0000178 mSharedPreferences.edit().putLong(LAST_CONFIG_DOWNLOAD_IN_MS, now).apply();
Filipe Gonçalves8f226b02014-12-12 11:21:58 +0000179 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100180 }
181
Jose Pascoalcdd82042015-02-06 13:04:26 +0000182// --Commented out by Inspection START (06/02/2015 12:27):
183// public void updateGoogleAppsIntallerWidgets()
184// {
185// AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this);
186// int[] appWidgetIds = appWidgetManager.getAppWidgetIds(new ComponentName(this, GoogleAppsInstallerWidget.class));
187// if (appWidgetIds.length > 0)
188// {
189// new GoogleAppsInstallerWidget().onUpdate(this, appWidgetManager, appWidgetIds);
190// }
191// }
192// --Commented out by Inspection STOP (06/02/2015 12:27)
Jose Pascoal810950b2014-10-09 17:16:08 +0100193
Jose Pascoalcfc2dd42015-02-09 18:00:05 +0000194 private static void clearDataLogs()
Jose Pascoal810950b2014-10-09 17:16:08 +0100195 {
Filipe Gonçalves49ce23c2015-02-13 16:33:52 +0000196 if (PrivilegeChecker.isPrivilegedApp()) {
197 clearDataLogsPrivileged();
198 } else {
199 clearDataLogsUnprivileged();
Tiago Costac14ea242014-04-24 10:14:41 +0100200 }
201 }
Kim Hansen086964d2013-12-10 11:33:28 +0000202
Filipe Gonçalves49ce23c2015-02-13 16:33:52 +0000203 private static void clearDataLogsPrivileged()
204 {
205 try
206 {
207 Log.d(TAG, "Clearing dump log data...");
208 Process p = Runtime.getRuntime().exec("rm /data/log_other_mode/*_log");
209 try
210 {
211 p.waitFor();
212 } catch (InterruptedException e)
213 {
214 e.printStackTrace();
215 }
216 } catch (IOException e)
217 {
218 Log.d(TAG, "Clearing dump log data failed: " + e.getLocalizedMessage());
219 }
220 }
221
222 private static void clearDataLogsUnprivileged()
223 {
224 try
225 {
226 Log.d(TAG, "Clearing dump log data...");
227 Shell.runCommand(new CommandCapture(0, "rm /data/log_other_mode/*_log"));
228 } catch (IOException | TimeoutException e)
229 {
230 Log.d(TAG, "Clearing dump log data failed: " + e.getLocalizedMessage());
231 }
232 }
233
234
Jose Pascoal810950b2014-10-09 17:16:08 +0100235 @Override
236 public IBinder onBind(Intent intent)
237 {
238 return null;
239 }
Kim Hansen086964d2013-12-10 11:33:28 +0000240
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000241 void startDownloadLatest()
Jose Pascoal810950b2014-10-09 17:16:08 +0100242 {
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000243 Resources resources = getApplicationContext().getResources();
244 String downloadLink = getConfigDownloadLink(getApplicationContext());
245 // set the download for the latest version on the download manager
246 Request request = createDownloadRequest(downloadLink, resources.getString(R.string.configFilename) + resources.getString(R.string.config_zip));
Jose Pascoalfd3e43c2014-05-22 20:29:17 +0100247
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000248 if (request != null && mDownloadManager != null)
249 {
Jose Pascoal87758742015-01-28 20:00:22 +0000250 //Guarantee that only we have only one download
251 long oldDownloadId = mSharedPreferences.getLong(PREFERENCE_LAST_CONFIG_DOWNLOAD_ID, 0);
252 if(oldDownloadId != 0){
253 mDownloadManager.remove(oldDownloadId);
254 saveLatestDownloadId(0);
255 }
256
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000257 mLatestFileDownloadId = mDownloadManager.enqueue(request);
258 saveLatestDownloadId(mLatestFileDownloadId);
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +0000259
260 final long currentId = mLatestFileDownloadId;
261 // Cancel download if it is stuck since DownloadManager doesn't seem able to do it.
262 new Handler().postAtTime(new Runnable() {
263 @Override
264 public void run() {
Jose Pascoal46fdb062015-02-05 18:59:32 +0000265 onDownloadStatus(currentId, new Runnable() {
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000266 @Override
267 public void run() {
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +0000268 Log.w(TAG, "Configuration file download timed out");
269 mDownloadManager.remove(currentId);
Jose Pascoal0b48f8d2015-02-06 16:06:41 +0000270 mSharedPreferences.edit().remove(LAST_CONFIG_DOWNLOAD_IN_MS).apply();
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +0000271 }
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000272 });
Filipe Gonçalvesb2536c02015-01-12 11:50:25 +0000273 }
Filipe Gonçalves8b263ad2015-01-12 12:30:11 +0000274 }, SystemClock.uptimeMillis() + CONFIG_FILE_DOWNLOAD_TIMEOUT_MILLIS);
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000275 }
276 else
277 {
278 Log.e(TAG, "Invalid request for link " + downloadLink);
279 Intent i = new Intent(FairphoneUpdater.FAIRPHONE_UPDATER_CONFIG_DOWNLOAD_FAILED);
280 i.putExtra(FairphoneUpdater.FAIRPHONE_UPDATER_CONFIG_DOWNLOAD_LINK, downloadLink);
281 sendBroadcast(i);
Jose Pascoal810950b2014-10-09 17:16:08 +0100282 }
283 }
284
Jose Pascoalc2545cc2014-12-18 16:51:52 +0000285 private void saveLatestDownloadId(long id)
286 {
287 mLatestFileDownloadId = id;
288 Editor editor = mSharedPreferences.edit();
289 editor.putLong(PREFERENCE_LAST_CONFIG_DOWNLOAD_ID, id);
290 editor.commit();
291 }
292
Jose Pascoal810950b2014-10-09 17:16:08 +0100293 private String getConfigDownloadLink(Context context)
294 {
295
296 Resources resources = context.getResources();
297
298 StringBuilder sb = new StringBuilder();
Filipe Gonçalvesafeac2c2015-01-27 17:49:53 +0000299 String download_url = mSharedPreferences.getString(FairphoneUpdater.PREFERENCE_OTA_DOWNLOAD_URL, getResources().getString(R.string.downloadUrl));
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000300
301 sb.append(download_url);
Jose Pascoal810950b2014-10-09 17:16:08 +0100302 sb.append(Build.MODEL.replaceAll("\\s", ""));
Jose Pascoal0a5be012014-11-17 16:55:40 +0000303 sb.append(Utils.getPartitionDownloadPath(resources));
Jose Pascoal810950b2014-10-09 17:16:08 +0100304 sb.append("/");
305
306 sb.append(resources.getString(R.string.configFilename));
307
308 sb.append(resources.getString(R.string.config_zip));
309
310 addModelAndOS(context, sb);
311
312 String downloadLink = sb.toString();
313
314 Log.d(TAG, "Download link: " + downloadLink);
315
316 return downloadLink;
317 }
Jose Pascoalcf13fde2014-05-21 20:17:17 +0100318
Jose Pascoalcfc2dd42015-02-09 18:00:05 +0000319 private static void addModelAndOS(Context context, StringBuilder sb)
Tiago Costab24ef1c2014-07-25 12:02:34 +0100320 {
321 // attach the model and the os
Jose Pascoal810950b2014-10-09 17:16:08 +0100322 sb.append("?");
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000323 sb.append("model=").append(Build.MODEL.replaceAll("\\s", ""));
Jose Pascoal810950b2014-10-09 17:16:08 +0100324 Version currentVersion = VersionParserHelper.getDeviceVersion(context.getApplicationContext());
325
326 if (currentVersion != null)
327 {
Filipe Gonçalvescd0f33d2014-12-15 15:05:15 +0000328 try {
329 final String defaultCharset = Charset.defaultCharset().displayName();
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000330 sb.append("&os=").append(URLEncoder.encode(currentVersion.getAndroidVersion(), defaultCharset));
331 sb.append("&b_n=").append(URLEncoder.encode(currentVersion.getBuildNumber(), defaultCharset));
332 sb.append("&ota_v_n=").append(URLEncoder.encode(String.valueOf(currentVersion.getNumber()), defaultCharset));
333 sb.append("&d=").append(URLEncoder.encode(currentVersion.getReleaseDate(), defaultCharset));
334 sb.append("&beta=").append(URLEncoder.encode(currentVersion.getBetaStatus(), defaultCharset));
335 sb.append("&dev=").append(FairphoneUpdater.DEV_MODE_ENABLED ? "1" : "0");
Filipe Gonçalvescd0f33d2014-12-15 15:05:15 +0000336 } catch (UnsupportedEncodingException e) {
337 Log.e(TAG, "Failed to add extra info on update request: "+e.getLocalizedMessage());
338 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100339 }
Tiago Costab24ef1c2014-07-25 12:02:34 +0100340 }
341
Jose Pascoal810950b2014-10-09 17:16:08 +0100342 private static void setNotification(Context currentContext)
343 {
Kim Hansen086964d2013-12-10 11:33:28 +0000344
Filipe Gonçalves825414a2015-01-26 14:52:48 +0000345 if ( FairphoneUpdater.BETA_MODE_ENABLED )
Jose Pascoal40916302015-02-06 18:43:47 +0000346 {
Filipe Gonçalves825414a2015-01-26 14:52:48 +0000347 return;
Jose Pascoal40916302015-02-06 18:43:47 +0000348 }
Filipe Gonçalves825414a2015-01-26 14:52:48 +0000349
Jose Pascoal810950b2014-10-09 17:16:08 +0100350 Context context = currentContext.getApplicationContext();
Kim Hansen086964d2013-12-10 11:33:28 +0000351
Jose Pascoal810950b2014-10-09 17:16:08 +0100352 NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Kim Hansen086964d2013-12-10 11:33:28 +0000353
Jose Pascoal810950b2014-10-09 17:16:08 +0100354 NotificationCompat.Builder builder =
Pedro Arelo259478b2014-10-10 12:10:37 +0100355 new NotificationCompat.Builder(context).setSmallIcon(R.drawable.updater_tray_icon_small)
356 .setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.drawable.updater_tray_icon))
Filipe Gonçalves071b6752015-06-24 12:37:32 +0100357 .setContentTitle(context.getResources().getString(R.string.app_full_name))
Pedro Arelo773bd822014-10-10 11:57:34 +0100358 .setContentText(context.getResources().getString(R.string.fairphone_update_message));
Kim Hansen086964d2013-12-10 11:33:28 +0000359
Jose Pascoal7bf83a02014-10-13 18:30:18 +0100360 Intent resultIntent = new Intent(context, FairphoneUpdater.class);
Jose Pascoal810950b2014-10-09 17:16:08 +0100361 TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
Kim Hansen086964d2013-12-10 11:33:28 +0000362
Jose Pascoal7bf83a02014-10-13 18:30:18 +0100363 stackBuilder.addParentStack(FairphoneUpdater.class);
Kim Hansen086964d2013-12-10 11:33:28 +0000364
Jose Pascoal810950b2014-10-09 17:16:08 +0100365 stackBuilder.addNextIntent(resultIntent);
366 PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
Kim Hansen086964d2013-12-10 11:33:28 +0000367
Jose Pascoal810950b2014-10-09 17:16:08 +0100368 builder.setContentIntent(resultPendingIntent);
Kim Hansen086964d2013-12-10 11:33:28 +0000369
Jose Pascoal810950b2014-10-09 17:16:08 +0100370 Notification notificationWhileRunnig = builder.build();
Jose Pascoalfd3e43c2014-05-22 20:29:17 +0100371
Jose Pascoal810950b2014-10-09 17:16:08 +0100372 // Add notification
373 manager.notify(0, notificationWhileRunnig);
374 }
Kim Hansen086964d2013-12-10 11:33:28 +0000375
Jose Pascoal810950b2014-10-09 17:16:08 +0100376 private Request createDownloadRequest(String url, String fileName)
377 {
Kim Hansen086964d2013-12-10 11:33:28 +0000378
Jose Pascoal810950b2014-10-09 17:16:08 +0100379 Resources resources = getApplicationContext().getResources();
380 Request request;
Kim Hansen086964d2013-12-10 11:33:28 +0000381
Jose Pascoal810950b2014-10-09 17:16:08 +0100382 try
383 {
384 request = new Request(Uri.parse(url));
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000385 final File externalStoragePublicDirectory = Environment.getExternalStoragePublicDirectory(Environment.getExternalStorageDirectory() + resources.getString(R.string.updaterFolder));
Jose Pascoal46fdb062015-02-05 18:59:32 +0000386 final boolean notMkDirs = !externalStoragePublicDirectory.mkdirs();
387 if(notMkDirs && !externalStoragePublicDirectory.exists()) {
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000388 throw new Exception("Couldn't create updater dir structures.");
389 }
Kim Hansen086964d2013-12-10 11:33:28 +0000390
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000391 request.setDestinationInExternalPublicDir(resources.getString(R.string.updaterFolder), fileName);
Jose Pascoal810950b2014-10-09 17:16:08 +0100392 request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);
393 request.setAllowedOverRoaming(false);
Pedro Arelo773bd822014-10-10 11:57:34 +0100394 request.setTitle(resources.getString(R.string.fairphone_update_message_title));
Jose Pascoal810950b2014-10-09 17:16:08 +0100395 } catch (Exception e)
396 {
397 Log.e(TAG, "Error creating request: " + e.getMessage());
398 request = null;
399 }
Kim Hansen086964d2013-12-10 11:33:28 +0000400
Jose Pascoal810950b2014-10-09 17:16:08 +0100401 return request;
402 }
Kim Hansen086964d2013-12-10 11:33:28 +0000403
Filipe Gonçalvesd28bd622014-11-05 11:40:12 +0000404 private void setupConnectivityMonitoring()
405 {
406
Filipe Gonçalves40893132015-05-25 17:45:44 +0100407 if (networkStateReceiver == null) {
408 // Check current connectivity status
409 mInternetConnectionAvailable = Utils.isWiFiEnabled(getApplicationContext());
Filipe Gonçalvesd28bd622014-11-05 11:40:12 +0000410
Filipe Gonçalves40893132015-05-25 17:45:44 +0100411 // Setup monitoring for future connectivity status changes
412 networkStateReceiver = new BroadcastReceiver()
Tiago Costa87925fe2014-12-02 17:57:51 +0000413 {
Filipe Gonçalves40893132015-05-25 17:45:44 +0100414 @Override
415 public void onReceive(Context context, Intent intent)
Tiago Costa87925fe2014-12-02 17:57:51 +0000416 {
Filipe Gonçalves40893132015-05-25 17:45:44 +0100417 if (intent.getBooleanExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, false)) {
418 Log.i(TAG, "Lost network connectivity.");
419 mInternetConnectionAvailable = false;
420 if (mLatestFileDownloadId != 0 && mDownloadManager != null)
421 {
422 onDownloadStatus(mLatestFileDownloadId, new Runnable() {
423 @Override
424 public void run() {
425 Log.d(TAG, "Removing pending download.");
426 mDownloadManager.remove(mLatestFileDownloadId);
427 saveLatestDownloadId(0);
428 }
429 });
430 }
431 }
432 else
Tiago Costa87925fe2014-12-02 17:57:51 +0000433 {
Filipe Gonçalves40893132015-05-25 17:45:44 +0100434 int conn_type = intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, ConnectivityManager.TYPE_DUMMY);
435 if( conn_type == ConnectivityManager.TYPE_WIFI ) {
436 Log.i(TAG, "Network connectivity potentially available.");
437 if (!mInternetConnectionAvailable) {
438 downloadConfigFile(false);
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000439 }
Filipe Gonçalves40893132015-05-25 17:45:44 +0100440 mInternetConnectionAvailable = true;
441 }
Tiago Costa87925fe2014-12-02 17:57:51 +0000442 }
443 }
Filipe Gonçalves40893132015-05-25 17:45:44 +0100444 };
Filipe Gonçalvesd28bd622014-11-05 11:40:12 +0000445
Filipe Gonçalves40893132015-05-25 17:45:44 +0100446 IntentFilter filter = new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION);
447 registerReceiver(networkStateReceiver, filter);
Tiago Costa87925fe2014-12-02 17:57:51 +0000448
Filipe Gonçalves40893132015-05-25 17:45:44 +0100449 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100450 }
451
452 private void setupDownloadManager()
453 {
454 if (mDownloadManager == null)
455 {
456 mDownloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
457 }
458
Filipe Gonçalvesd0dfe912014-11-04 16:24:25 +0000459 if (mDownloadBroadCastReceiver == null)
Jose Pascoal810950b2014-10-09 17:16:08 +0100460 {
461 mDownloadBroadCastReceiver = new DownloadBroadCastReceiver();
462
463 getApplicationContext().registerReceiver(mDownloadBroadCastReceiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
464 }
465 }
466
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100467 private static void copyConfigToData(Context context) throws IOException {
468 Resources resources = context.getApplicationContext().getResources();
469 String targetPath = Environment.getExternalStorageDirectory() + resources.getString(R.string.updaterFolder);
470 FileInputStream inStream = new FileInputStream(targetPath + resources.getString(R.string.configFilename) + resources.getString(R.string.config_xml));
471 FileOutputStream outStream = context.openFileOutput(resources.getString(R.string.configFilename) + resources.getString(R.string.config_xml), MODE_PRIVATE);
472 FileChannel inChannel = inStream.getChannel();
473 FileChannel outChannel = outStream.getChannel();
474 inChannel.transferTo(0, inChannel.size(), outChannel);
475 inStream.close();
476 outStream.close();
477 }
478
Jose Pascoal810950b2014-10-09 17:16:08 +0100479 private static void checkVersionValidation(Context context)
480 {
Jose Pascoal810950b2014-10-09 17:16:08 +0100481 Version latestVersion = VersionParserHelper.getLatestVersion(context.getApplicationContext());
482 Version currentVersion = VersionParserHelper.getDeviceVersion(context.getApplicationContext());
Jose Pascoal810950b2014-10-09 17:16:08 +0100483 if (latestVersion != null)
484 {
485 if (latestVersion.isNewerVersionThan(currentVersion))
486 {
487 setNotification(context);
488 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100489 }
Filipe Gonçalvesa75e1812015-03-19 12:12:07 +0000490 runInstallationDisclaimer(context);
Jose Pascoald5e4d4a2015-03-13 18:17:48 +0000491
492 // to update the activity
493 Intent updateIntent = new Intent(FairphoneUpdater.FAIRPHONE_UPDATER_NEW_VERSION_RECEIVED);
494 context.sendBroadcast(updateIntent);
Jose Pascoal810950b2014-10-09 17:16:08 +0100495 }
496
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100497 public static boolean readUpdaterData(Context context){
498 Version latestVersion = VersionParserHelper.getLatestVersion(context.getApplicationContext());
499 return latestVersion != null;
500 }
501
502 public static boolean updateUpdaterData(Context context)
Jose Pascoal810950b2014-10-09 17:16:08 +0100503 {
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100504
505 boolean retVal = false;
506 Resources resources = context.getApplicationContext().getResources();
Jose Pascoal810950b2014-10-09 17:16:08 +0100507 String targetPath = Environment.getExternalStorageDirectory() + resources.getString(R.string.updaterFolder);
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100508
Jose Pascoal810950b2014-10-09 17:16:08 +0100509 String filePath = targetPath + resources.getString(R.string.configFilename) + resources.getString(R.string.config_zip);
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100510
511 File file = new File(filePath);
512
Jose Pascoal810950b2014-10-09 17:16:08 +0100513 if (file.exists())
514 {
Filipe Gonçalves80d4b152015-05-26 19:04:02 +0100515 String md5sum = Utils.calculateMD5(file);
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100516 SharedPreferences sp = context.getApplicationContext().getSharedPreferences(FairphoneUpdater.FAIRPHONE_UPDATER_PREFERENCES, MODE_PRIVATE);
Filipe Gonçalves80d4b152015-05-26 19:04:02 +0100517 if(sp.getString(PREFERENCE_CONFIG_MD_5, "").equals(md5sum)){
518 retVal = true;
Filipe Gonçalves80d4b152015-05-26 19:04:02 +0100519 } else {
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100520 if (RSAUtils.checkFileSignature(context, filePath, targetPath)) {
521 try {
522 copyConfigToData(context);
523 checkVersionValidation(context);
524 retVal = true;
525 sp.edit().putString(PREFERENCE_CONFIG_MD_5, md5sum).apply();
526 } catch (IOException e) {
527 Log.e(TAG, "Failed to store configuration " + e.getLocalizedMessage());
528 retVal = false;
529 }
530 } else {
531 //Toast.makeText(context, resources.getString(R.string.invalid_signature_download_message), Toast.LENGTH_LONG).show();
532 final boolean notDeleted = !file.delete();
533 if(notDeleted) {
534 Log.d(TAG, "Unable to delete "+file.getAbsolutePath());
535 }
Filipe Gonçalvesb31d5862015-02-04 17:28:58 +0000536
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100537 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100538 }
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100539 } else {
540 Log.wtf(TAG, "No file");
Jose Pascoal810950b2014-10-09 17:16:08 +0100541 }
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100542
543 return retVal;
544 }
Kim Hansen086964d2013-12-10 11:33:28 +0000545
Jose Pascoal810950b2014-10-09 17:16:08 +0100546 private void removeLatestFileDownload(Context context)
547 {
548 if (mLatestFileDownloadId != 0 && mDownloadManager != null)
549 {
550 mDownloadManager.remove(mLatestFileDownloadId);
Jose Pascoalc2545cc2014-12-18 16:51:52 +0000551 saveLatestDownloadId(0);
Kim Hansen086964d2013-12-10 11:33:28 +0000552 }
Jose Pascoalc2545cc2014-12-18 16:51:52 +0000553 VersionParserHelper.removeConfigFiles(context);
Kim Hansen086964d2013-12-10 11:33:28 +0000554 }
555
Jose Pascoal810950b2014-10-09 17:16:08 +0100556 private boolean retryDownload(Context context)
557 {
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000558 Log.d(TAG, "Retry "+mDownloadRetries+" of "+MAX_DOWNLOAD_RETRIES);
Jose Pascoal810950b2014-10-09 17:16:08 +0100559 // invalid file
560 boolean removeReceiver = true;
561 removeLatestFileDownload(context);
562 if (mDownloadRetries < MAX_DOWNLOAD_RETRIES)
563 {
564 startDownloadLatest();
565 mDownloadRetries++;
566 removeReceiver = false;
567 }
568 if (removeReceiver)
569 {
Pedro Arelo773bd822014-10-10 11:57:34 +0100570 Toast.makeText(getApplicationContext(), getResources().getString(R.string.config_file_download_error_message), Toast.LENGTH_LONG).show();
Jose Pascoal810950b2014-10-09 17:16:08 +0100571 }
572 return removeReceiver;
573 }
Jose Pascoal0e966282014-08-12 18:49:05 +0100574
Jose Pascoal46fdb062015-02-05 18:59:32 +0000575 private void onDownloadStatus(long id, Runnable ifRunning) {
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000576 Cursor cursor = mDownloadManager != null ? mDownloadManager.query(new DownloadManager.Query().setFilterById(id)) : null;
577 if (cursor != null && cursor.moveToFirst())
578 {
579 int status = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_STATUS));
580 switch(status){
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000581 case DownloadManager.STATUS_PAUSED:
582 if (ifRunning != null) {
583 ifRunning.run();
584 }
585 break;
586 case DownloadManager.STATUS_PENDING:
587 if (ifRunning != null) {
588 ifRunning.run();
589 }
590 break;
591 case DownloadManager.STATUS_RUNNING:
592 if (ifRunning != null) {
593 ifRunning.run();
594 }
595 break;
Jose Pascoal46fdb062015-02-05 18:59:32 +0000596 case DownloadManager.STATUS_FAILED:
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000597 case DownloadManager.STATUS_SUCCESSFUL:
Filipe Gonçalves712d5482015-01-13 17:00:44 +0000598 default:
599 break;
600 }
601 }
602 if (cursor != null)
603 {
604 cursor.close();
605 }
606 }
607
Jose Pascoal810950b2014-10-09 17:16:08 +0100608 private class DownloadBroadCastReceiver extends BroadcastReceiver
609 {
Kim Hansen086964d2013-12-10 11:33:28 +0000610
Jose Pascoal1ee56e22014-05-21 16:58:20 +0100611 @Override
Jose Pascoal810950b2014-10-09 17:16:08 +0100612 public void onReceive(Context context, Intent intent)
613 {
Kim Hansen086964d2013-12-10 11:33:28 +0000614
Jose Pascoal810950b2014-10-09 17:16:08 +0100615 boolean removeReceiver = false;
Kim Hansen086964d2013-12-10 11:33:28 +0000616
Jose Pascoal810950b2014-10-09 17:16:08 +0100617 DownloadManager.Query query = new DownloadManager.Query();
618
619 query.setFilterById(mLatestFileDownloadId);
Jose Pascoal810950b2014-10-09 17:16:08 +0100620
Jose Pascoalaa579a82014-11-05 22:17:16 +0000621 Cursor cursor = mDownloadManager != null ? mDownloadManager.query(query) : null;
622
623 if (cursor != null && cursor.moveToFirst())
Jose Pascoal810950b2014-10-09 17:16:08 +0100624 {
625 int columnIndex = cursor.getColumnIndex(DownloadManager.COLUMN_STATUS);
626 int status = cursor.getInt(columnIndex);
627 Resources resources = context.getApplicationContext().getResources();
628
629 switch (status)
630 {
631 case DownloadManager.STATUS_SUCCESSFUL:
632 {
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000633 Log.d(TAG, "Download successful.");
Jose Pascoal810950b2014-10-09 17:16:08 +0100634
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100635 if (updateUpdaterData(context))
Jose Pascoal810950b2014-10-09 17:16:08 +0100636 {
Filipe Gonçalves4cc0b2e2015-05-27 18:12:40 +0100637 removeLatestFileDownload(context);
Jose Pascoal810950b2014-10-09 17:16:08 +0100638 }
639 else
640 {
Pedro Arelo773bd822014-10-10 11:57:34 +0100641 Toast.makeText(getApplicationContext(), resources.getString(R.string.invalid_signature_download_message), Toast.LENGTH_LONG).show();
Jose Pascoal810950b2014-10-09 17:16:08 +0100642 removeReceiver = retryDownload(context);
643 }
644 break;
645 }
646 case DownloadManager.STATUS_FAILED:
647 {
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000648 Log.d(TAG, "Download failed.");
Jose Pascoal810950b2014-10-09 17:16:08 +0100649 removeReceiver = retryDownload(context);
650 break;
651 }
Filipe Gonçalves42ffc322015-01-28 12:51:14 +0000652 default:
653 {
654 Log.d(TAG, "Status broadcast on mLatestFileDownloadId ("+mLatestFileDownloadId+"): "+ status);
655 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100656 }
657 }
Tiago Costa87925fe2014-12-02 17:57:51 +0000658
Jose Pascoalaa579a82014-11-05 22:17:16 +0000659 if (cursor != null)
660 {
661 cursor.close();
662 }
Jose Pascoal810950b2014-10-09 17:16:08 +0100663
664 if (removeReceiver)
665 {
Filipe Gonçalves5b65c012015-01-08 13:49:42 +0000666 Log.d(TAG, "Configuration download failed. Clearing grace period.");
Jose Pascoal0b48f8d2015-02-06 16:06:41 +0000667 mSharedPreferences.edit().remove(LAST_CONFIG_DOWNLOAD_IN_MS).apply();
Jose Pascoal810950b2014-10-09 17:16:08 +0100668 }
669 }
670 }
Kim Hansen086964d2013-12-10 11:33:28 +0000671}