2018-03-28 04:47:00 +11:00
|
|
|
/* Copyright 2018 charlag
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Tusky 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 Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.di
|
|
|
|
|
|
|
|
import android.app.Application
|
|
|
|
import android.content.Context
|
|
|
|
import android.content.SharedPreferences
|
2018-12-18 01:25:35 +11:00
|
|
|
import androidx.localbroadcastmanager.content.LocalBroadcastManager
|
2019-10-23 06:18:20 +11:00
|
|
|
import androidx.preference.PreferenceManager
|
2020-02-26 05:49:15 +11:00
|
|
|
import androidx.room.Room
|
2018-03-28 04:47:00 +11:00
|
|
|
import com.keylesspalace.tusky.TuskyApplication
|
2018-05-27 18:22:12 +10:00
|
|
|
import com.keylesspalace.tusky.appstore.EventHub
|
|
|
|
import com.keylesspalace.tusky.appstore.EventHubImpl
|
2020-09-21 02:43:28 +10:00
|
|
|
import com.keylesspalace.tusky.components.notifications.Notifier
|
|
|
|
import com.keylesspalace.tusky.components.notifications.SystemNotifier
|
2018-05-27 18:22:12 +10:00
|
|
|
import com.keylesspalace.tusky.db.AppDatabase
|
2021-04-25 02:31:16 +10:00
|
|
|
import com.keylesspalace.tusky.db.Converters
|
2018-03-28 04:47:00 +11:00
|
|
|
import com.keylesspalace.tusky.network.MastodonApi
|
|
|
|
import com.keylesspalace.tusky.network.TimelineCases
|
|
|
|
import com.keylesspalace.tusky.network.TimelineCasesImpl
|
|
|
|
import dagger.Module
|
|
|
|
import dagger.Provides
|
|
|
|
import javax.inject.Singleton
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by charlag on 3/21/18.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Module
|
|
|
|
class AppModule {
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesApplication(app: TuskyApplication): Application = app
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesContext(app: Application): Context = app
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesSharedPreferences(app: Application): SharedPreferences {
|
|
|
|
return PreferenceManager.getDefaultSharedPreferences(app)
|
|
|
|
}
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesBroadcastManager(app: Application): LocalBroadcastManager {
|
|
|
|
return LocalBroadcastManager.getInstance(app)
|
|
|
|
}
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
fun providesTimelineUseCases(api: MastodonApi,
|
2018-05-27 18:22:12 +10:00
|
|
|
eventHub: EventHub): TimelineCases {
|
|
|
|
return TimelineCasesImpl(api, eventHub)
|
2018-03-28 04:47:00 +11:00
|
|
|
}
|
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
@Provides
|
|
|
|
@Singleton
|
|
|
|
fun providesEventHub(): EventHub = EventHubImpl
|
|
|
|
|
|
|
|
@Provides
|
|
|
|
@Singleton
|
2021-04-25 02:31:16 +10:00
|
|
|
fun providesDatabase(appContext: Context, converters: Converters): AppDatabase {
|
2020-02-26 05:49:15 +11:00
|
|
|
return Room.databaseBuilder(appContext, AppDatabase::class.java, "tuskyDB")
|
2021-04-25 02:31:16 +10:00
|
|
|
.addTypeConverter(converters)
|
2020-02-26 05:49:15 +11:00
|
|
|
.allowMainThreadQueries()
|
|
|
|
.addMigrations(AppDatabase.MIGRATION_2_3, AppDatabase.MIGRATION_3_4, AppDatabase.MIGRATION_4_5,
|
|
|
|
AppDatabase.MIGRATION_5_6, AppDatabase.MIGRATION_6_7, AppDatabase.MIGRATION_7_8,
|
|
|
|
AppDatabase.MIGRATION_8_9, AppDatabase.MIGRATION_9_10, AppDatabase.MIGRATION_10_11,
|
|
|
|
AppDatabase.MIGRATION_11_12, AppDatabase.MIGRATION_12_13, AppDatabase.MIGRATION_10_13,
|
|
|
|
AppDatabase.MIGRATION_13_14, AppDatabase.MIGRATION_14_15, AppDatabase.MIGRATION_15_16,
|
|
|
|
AppDatabase.MIGRATION_16_17, AppDatabase.MIGRATION_17_18, AppDatabase.MIGRATION_18_19,
|
2020-03-25 07:06:04 +11:00
|
|
|
AppDatabase.MIGRATION_19_20, AppDatabase.MIGRATION_20_21, AppDatabase.MIGRATION_21_22,
|
2021-05-17 03:17:56 +10:00
|
|
|
AppDatabase.MIGRATION_22_23, AppDatabase.MIGRATION_23_24, AppDatabase.MIGRATION_24_25,
|
2021-06-18 02:54:56 +10:00
|
|
|
AppDatabase.MIGRATION_26_27,
|
2021-05-17 03:17:56 +10:00
|
|
|
AppDatabase.Migration25_26(appContext.getExternalFilesDir("Tusky"))
|
|
|
|
)
|
2020-09-21 02:43:28 +10:00
|
|
|
.build()
|
2018-07-24 05:59:10 +10:00
|
|
|
}
|
2019-02-06 06:06:00 +11:00
|
|
|
|
2020-09-21 02:43:28 +10:00
|
|
|
@Provides
|
|
|
|
@Singleton
|
|
|
|
fun notifier(context: Context): Notifier = SystemNotifier(context)
|
|
|
|
|
2020-12-23 22:52:39 +11:00
|
|
|
}
|