|
|
@ -63,7 +63,7 @@ class Repository(
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun getNewerItems(): ArrayList<SelfossModel.Item> {
|
|
|
|
suspend fun getNewerItems(): ArrayList<SelfossModel.Item> {
|
|
|
|
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
|
|
|
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
fetchedItems =
|
|
|
|
fetchedItems =
|
|
|
|
api.getItems(
|
|
|
|
api.getItems(
|
|
|
|
displayedItems.type,
|
|
|
|
displayedItems.type,
|
|
|
@ -102,7 +102,7 @@ class Repository(
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun getOlderItems(): ArrayList<SelfossModel.Item> {
|
|
|
|
suspend fun getOlderItems(): ArrayList<SelfossModel.Item> {
|
|
|
|
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
|
|
|
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val offset = items.size
|
|
|
|
val offset = items.size
|
|
|
|
fetchedItems =
|
|
|
|
fetchedItems =
|
|
|
|
api.getItems(
|
|
|
|
api.getItems(
|
|
|
@ -122,7 +122,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private suspend fun getMaxItemsForBackground(itemType: ItemType): List<SelfossModel.Item> {
|
|
|
|
private suspend fun getMaxItemsForBackground(itemType: ItemType): List<SelfossModel.Item> {
|
|
|
|
return if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
return if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val items =
|
|
|
|
val items =
|
|
|
|
api.getItems(
|
|
|
|
api.getItems(
|
|
|
|
itemType.type,
|
|
|
|
itemType.type,
|
|
|
@ -146,7 +146,7 @@ class Repository(
|
|
|
|
@Suppress("detekt:ForbiddenComment")
|
|
|
|
@Suppress("detekt:ForbiddenComment")
|
|
|
|
suspend fun reloadBadges(): Boolean {
|
|
|
|
suspend fun reloadBadges(): Boolean {
|
|
|
|
var success = false
|
|
|
|
var success = false
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val response = api.stats()
|
|
|
|
val response = api.stats()
|
|
|
|
if (response.success && response.data != null) {
|
|
|
|
if (response.success && response.data != null) {
|
|
|
|
_badgeUnread.value = response.data.unread ?: 0
|
|
|
|
_badgeUnread.value = response.data.unread ?: 0
|
|
|
@ -168,7 +168,7 @@ class Repository(
|
|
|
|
suspend fun getTags(): List<SelfossModel.Tag> {
|
|
|
|
suspend fun getTags(): List<SelfossModel.Tag> {
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
return if (connectivityService.isNetworkAvailable() == true && !fetchedTags) {
|
|
|
|
return if (connectivityService.isNetworkAvailable() && !fetchedTags) {
|
|
|
|
val apiTags = api.tags()
|
|
|
|
val apiTags = api.tags()
|
|
|
|
if (apiTags.success && apiTags.data != null && isDatabaseEnabled) {
|
|
|
|
if (apiTags.success && apiTags.data != null && isDatabaseEnabled) {
|
|
|
|
resetDBTagsWithData(apiTags.data)
|
|
|
|
resetDBTagsWithData(apiTags.data)
|
|
|
@ -185,7 +185,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun getSpouts(): Map<String, SelfossModel.Spout> =
|
|
|
|
suspend fun getSpouts(): Map<String, SelfossModel.Spout> =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val spouts = api.spouts()
|
|
|
|
val spouts = api.spouts()
|
|
|
|
if (spouts.success && spouts.data != null) {
|
|
|
|
if (spouts.success && spouts.data != null) {
|
|
|
|
spouts.data
|
|
|
|
spouts.data
|
|
|
@ -201,7 +201,7 @@ class Repository(
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
|
|
|
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
|
|
|
if (shouldFetch && connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (shouldFetch && connectivityService.isNetworkAvailable()) {
|
|
|
|
if (appSettingsService.getPublicAccess()) {
|
|
|
|
if (appSettingsService.getPublicAccess()) {
|
|
|
|
val apiSources = api.sourcesStats()
|
|
|
|
val apiSources = api.sourcesStats()
|
|
|
|
if (apiSources.success && apiSources.data != null) {
|
|
|
|
if (apiSources.success && apiSources.data != null) {
|
|
|
@ -223,7 +223,7 @@ class Repository(
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
val isDatabaseEnabled =
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
|
|
|
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
|
|
|
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
|
|
|
if (shouldFetch && connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (shouldFetch && connectivityService.isNetworkAvailable()) {
|
|
|
|
val apiSources = api.sourcesDetailed()
|
|
|
|
val apiSources = api.sourcesDetailed()
|
|
|
|
if (apiSources.success && apiSources.data != null) {
|
|
|
|
if (apiSources.success && apiSources.data != null) {
|
|
|
|
fetchedSources = true
|
|
|
|
fetchedSources = true
|
|
|
@ -248,7 +248,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private suspend fun markAsReadById(id: Int): Boolean =
|
|
|
|
private suspend fun markAsReadById(id: Int): Boolean =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
api.markAsRead(id.toString()).isSuccess
|
|
|
|
api.markAsRead(id.toString()).isSuccess
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
insertDBAction(id.toString(), read = true)
|
|
|
|
insertDBAction(id.toString(), read = true)
|
|
|
@ -265,7 +265,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private suspend fun unmarkAsReadById(id: Int): Boolean =
|
|
|
|
private suspend fun unmarkAsReadById(id: Int): Boolean =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
api.unmarkAsRead(id.toString()).isSuccess
|
|
|
|
api.unmarkAsRead(id.toString()).isSuccess
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
insertDBAction(id.toString(), unread = true)
|
|
|
|
insertDBAction(id.toString(), unread = true)
|
|
|
@ -282,7 +282,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private suspend fun starrById(id: Int): Boolean =
|
|
|
|
private suspend fun starrById(id: Int): Boolean =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
api.starr(id.toString()).isSuccess
|
|
|
|
api.starr(id.toString()).isSuccess
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
insertDBAction(id.toString(), starred = true)
|
|
|
|
insertDBAction(id.toString(), starred = true)
|
|
|
@ -299,7 +299,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private suspend fun unstarrById(id: Int): Boolean =
|
|
|
|
private suspend fun unstarrById(id: Int): Boolean =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
api.unstarr(id.toString()).isSuccess
|
|
|
|
api.unstarr(id.toString()).isSuccess
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
insertDBAction(id.toString(), starred = true)
|
|
|
|
insertDBAction(id.toString(), starred = true)
|
|
|
@ -309,9 +309,7 @@ class Repository(
|
|
|
|
suspend fun markAllAsRead(items: ArrayList<SelfossModel.Item>): Boolean {
|
|
|
|
suspend fun markAllAsRead(items: ArrayList<SelfossModel.Item>): Boolean {
|
|
|
|
var success = false
|
|
|
|
var success = false
|
|
|
|
|
|
|
|
|
|
|
|
if (connectivityService.isNetworkAvailable() != null &&
|
|
|
|
if (connectivityService.isNetworkAvailable() && api.markAllAsRead(items.map { it.id.toString() }).isSuccess
|
|
|
|
connectivityService.isNetworkAvailable()!! &&
|
|
|
|
|
|
|
|
api.markAllAsRead(items.map { it.id.toString() }).isSuccess
|
|
|
|
|
|
|
|
) {
|
|
|
|
) {
|
|
|
|
success = true
|
|
|
|
success = true
|
|
|
|
for (item in items) {
|
|
|
|
for (item in items) {
|
|
|
@ -372,7 +370,7 @@ class Repository(
|
|
|
|
tags: String,
|
|
|
|
tags: String,
|
|
|
|
): Boolean {
|
|
|
|
): Boolean {
|
|
|
|
var response = false
|
|
|
|
var response = false
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
response = api
|
|
|
|
response = api
|
|
|
|
.createSourceForVersion(
|
|
|
|
.createSourceForVersion(
|
|
|
|
title,
|
|
|
|
title,
|
|
|
@ -393,7 +391,7 @@ class Repository(
|
|
|
|
tags: String,
|
|
|
|
tags: String,
|
|
|
|
): Boolean {
|
|
|
|
): Boolean {
|
|
|
|
var response = false
|
|
|
|
var response = false
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
response = api.updateSourceForVersion(id, title, url, spout, tags).isSuccess == true
|
|
|
|
response = api.updateSourceForVersion(id, title, url, spout, tags).isSuccess == true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -405,13 +403,13 @@ class Repository(
|
|
|
|
title: String,
|
|
|
|
title: String,
|
|
|
|
): Boolean {
|
|
|
|
): Boolean {
|
|
|
|
var success = false
|
|
|
|
var success = false
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val response = api.deleteSource(id)
|
|
|
|
val response = api.deleteSource(id)
|
|
|
|
success = response.isSuccess
|
|
|
|
success = response.isSuccess
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// We filter on success or if the network isn't available
|
|
|
|
// We filter on success or if the network isn't available
|
|
|
|
if (success || !(connectivityService.isNetworkAvailable() == true)) {
|
|
|
|
if (success || !connectivityService.isNetworkAvailable()) {
|
|
|
|
items = ArrayList(items.filter { it.sourcetitle != title })
|
|
|
|
items = ArrayList(items.filter { it.sourcetitle != title })
|
|
|
|
setReaderItems(items)
|
|
|
|
setReaderItems(items)
|
|
|
|
db.itemsQueries.deleteItemsWhereSource(title)
|
|
|
|
db.itemsQueries.deleteItemsWhereSource(title)
|
|
|
@ -421,7 +419,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun updateRemote(): Boolean =
|
|
|
|
suspend fun updateRemote(): Boolean =
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
api.update().data.equals("finished")
|
|
|
|
api.update().data.equals("finished")
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
false
|
|
|
@ -429,7 +427,7 @@ class Repository(
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun login(): Boolean {
|
|
|
|
suspend fun login(): Boolean {
|
|
|
|
var result = false
|
|
|
|
var result = false
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
val response = api.login()
|
|
|
|
val response = api.login()
|
|
|
|
result = response.isSuccess == true
|
|
|
|
result = response.isSuccess == true
|
|
|
@ -442,7 +440,7 @@ class Repository(
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun checkIfFetchFails(): Boolean {
|
|
|
|
suspend fun checkIfFetchFails(): Boolean {
|
|
|
|
var fetchFailed = true
|
|
|
|
var fetchFailed = true
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
// Trying to fetch one item, and check someone is trying to use the app with
|
|
|
|
// Trying to fetch one item, and check someone is trying to use the app with
|
|
|
|
// a random rss feed, that would throw a NoTransformationFoundException
|
|
|
|
// a random rss feed, that would throw a NoTransformationFoundException
|
|
|
@ -456,7 +454,7 @@ class Repository(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
suspend fun logout() {
|
|
|
|
suspend fun logout() {
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
val response = api.logout()
|
|
|
|
val response = api.logout()
|
|
|
|
if (!response.isSuccess) {
|
|
|
|
if (!response.isSuccess) {
|
|
|
@ -484,7 +482,7 @@ class Repository(
|
|
|
|
suspend fun updateApiInformation() {
|
|
|
|
suspend fun updateApiInformation() {
|
|
|
|
val apiMajorVersion = appSettingsService.getApiVersion()
|
|
|
|
val apiMajorVersion = appSettingsService.getApiVersion()
|
|
|
|
|
|
|
|
|
|
|
|
if (connectivityService.isNetworkAvailable() == true) {
|
|
|
|
if (connectivityService.isNetworkAvailable()) {
|
|
|
|
val fetchedInformation = api.apiInformation()
|
|
|
|
val fetchedInformation = api.apiInformation()
|
|
|
|
if (fetchedInformation.success && fetchedInformation.data != null) {
|
|
|
|
if (fetchedInformation.success && fetchedInformation.data != null) {
|
|
|
|
if (fetchedInformation.data.getApiMajorVersion() != apiMajorVersion) {
|
|
|
|
if (fetchedInformation.data.getApiMajorVersion() != apiMajorVersion) {
|
|
|
|