2014-07-25 22:14:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
import android.app.Application;
|
|
|
|
import android.content.Context;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.PRNGFixes;
|
2014-11-12 03:57:53 +00:00
|
|
|
import org.thoughtcrime.securesms.dependencies.AxolotlStorageModule;
|
|
|
|
import org.thoughtcrime.securesms.dependencies.InjectableType;
|
|
|
|
import org.thoughtcrime.securesms.dependencies.TextSecureCommunicationModule;
|
2014-11-12 05:11:57 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.GcmRefreshJob;
|
|
|
|
import org.thoughtcrime.securesms.jobs.persistence.EncryptingJobSerializer;
|
2014-11-14 23:44:49 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.MasterSecretRequirementProvider;
|
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.ServiceRequirementProvider;
|
2014-07-25 22:14:29 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-08-04 23:15:13 +00:00
|
|
|
import org.whispersystems.jobqueue.JobManager;
|
2014-11-12 03:57:53 +00:00
|
|
|
import org.whispersystems.jobqueue.dependencies.DependencyInjector;
|
2014-11-14 23:44:49 +00:00
|
|
|
import org.whispersystems.jobqueue.requirements.NetworkRequirementProvider;
|
2014-07-25 22:14:29 +00:00
|
|
|
|
2014-11-21 00:46:35 +00:00
|
|
|
import java.security.Security;
|
|
|
|
|
2014-11-12 03:57:53 +00:00
|
|
|
import dagger.ObjectGraph;
|
|
|
|
|
2014-07-25 22:14:29 +00:00
|
|
|
/**
|
|
|
|
* Will be called once when the TextSecure process is created.
|
|
|
|
*
|
|
|
|
* We're using this as an insertion point to patch up the Android PRNG disaster,
|
|
|
|
* to initialize the job manager, and to check for GCM registration freshness.
|
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*/
|
2014-11-12 03:57:53 +00:00
|
|
|
public class ApplicationContext extends Application implements DependencyInjector {
|
2014-07-25 22:14:29 +00:00
|
|
|
|
|
|
|
private JobManager jobManager;
|
2014-11-12 03:57:53 +00:00
|
|
|
private ObjectGraph objectGraph;
|
2014-07-25 22:14:29 +00:00
|
|
|
|
|
|
|
public static ApplicationContext getInstance(Context context) {
|
|
|
|
return (ApplicationContext)context.getApplicationContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate() {
|
|
|
|
initializeRandomNumberFix();
|
2014-11-12 03:57:53 +00:00
|
|
|
initializeDependencyInjection();
|
2014-07-25 22:14:29 +00:00
|
|
|
initializeJobManager();
|
|
|
|
initializeGcmCheck();
|
|
|
|
}
|
|
|
|
|
2014-11-12 03:57:53 +00:00
|
|
|
@Override
|
|
|
|
public void injectDependencies(Object object) {
|
|
|
|
if (object instanceof InjectableType) {
|
|
|
|
objectGraph.inject(object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 22:14:29 +00:00
|
|
|
public JobManager getJobManager() {
|
|
|
|
return jobManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeRandomNumberFix() {
|
|
|
|
PRNGFixes.apply();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeJobManager() {
|
2014-11-12 05:11:57 +00:00
|
|
|
this.jobManager = JobManager.newBuilder(this)
|
|
|
|
.withName("TextSecureJobs")
|
|
|
|
.withDependencyInjector(this)
|
2014-11-17 00:15:12 +00:00
|
|
|
.withJobSerializer(new EncryptingJobSerializer())
|
2014-11-14 23:44:49 +00:00
|
|
|
.withRequirementProviders(new MasterSecretRequirementProvider(this),
|
|
|
|
new ServiceRequirementProvider(this),
|
|
|
|
new NetworkRequirementProvider(this))
|
2014-11-12 05:11:57 +00:00
|
|
|
.withConsumerThreads(5)
|
|
|
|
.build();
|
2014-07-25 22:14:29 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 03:57:53 +00:00
|
|
|
private void initializeDependencyInjection() {
|
|
|
|
this.objectGraph = ObjectGraph.create(new TextSecureCommunicationModule(this),
|
|
|
|
new AxolotlStorageModule(this));
|
|
|
|
}
|
|
|
|
|
2014-07-25 22:14:29 +00:00
|
|
|
private void initializeGcmCheck() {
|
|
|
|
if (TextSecurePreferences.isPushRegistered(this) &&
|
|
|
|
TextSecurePreferences.getGcmRegistrationId(this) == null)
|
|
|
|
{
|
2014-08-04 23:15:13 +00:00
|
|
|
this.jobManager.add(new GcmRefreshJob(this));
|
2014-07-25 22:14:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|