Merge pull request 'fix: initial status loading issues.' (#192) from connectivity into master
Reviewed-on: Louvorg/ReaderForSelfoss-multiplatform#192
This commit is contained in:
commit
62354ec70a
@ -10,30 +10,44 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: "Check android app changes"
|
||||
id: check-android-changes
|
||||
uses: tj-actions/changed-files@v45
|
||||
with:
|
||||
files: |
|
||||
androidApp/src/**
|
||||
- name: Fetch tags
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
run: git fetch --tags -p
|
||||
- uses: actions/setup-java@v4
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '17'
|
||||
cache: gradle
|
||||
- uses: gradle/actions/setup-gradle@v3
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
- uses: android-actions/setup-android@v3
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
- name: Configure gradle...
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true" >> ~/.gradle/gradle.properties
|
||||
- name: Build and test
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
run: ./gradlew build -x testReleaseUnitTest -x testDebugUnitTest -x testGithubConfigReleaseUnitTest -x testGithubConfigDebugUnitTest # These tests will be done
|
||||
- uses: KengoTODA/actions-setup-docker-compose@v1
|
||||
with:
|
||||
version: "2.23.3"
|
||||
# TESTS ARE RUN LOCALLY
|
||||
# - uses: KengoTODA/actions-setup-docker-compose@v1
|
||||
# with:
|
||||
# version: "2.23.3"
|
||||
# - name: run selfoss
|
||||
# run: |
|
||||
# docker compose -f .gitea/workflows/assets/docker-compose.yml up -d
|
||||
- name: coverage
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
run: |
|
||||
./gradlew :koverHtmlReport
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: steps.check-android-changes.outputs.any_modified == 'true'
|
||||
with:
|
||||
name: coverage
|
||||
path: build/reports/kover/html
|
||||
|
@ -29,7 +29,16 @@ jobs:
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: "Check translations changes"
|
||||
id: check-translations-changes
|
||||
uses: tj-actions/changed-files@v45
|
||||
with:
|
||||
files: |
|
||||
androidApp/src/main/res/values/strings.xml
|
||||
- name: upload translation sources
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true'
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
config: './.gitea/workflows/assets/crowdin.yml'
|
||||
@ -42,8 +51,10 @@ jobs:
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||
- name: wait
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true'
|
||||
run: sleep 10s
|
||||
- name: download translations
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true'
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
config: './.gitea/workflows/assets/crowdin.yml'
|
||||
@ -56,17 +67,18 @@ jobs:
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||
- name: Check for uncommitted changes
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true'
|
||||
id: check-changes
|
||||
uses: mskri/check-uncommitted-changes-action@v1.0.1
|
||||
- name: Commit Changes
|
||||
if: steps.check-changes.outputs.changes != ''
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true' && steps.check-changes.outputs.changes != ''
|
||||
run: |
|
||||
git config --global user.email aminecmi+giteadrone@pm.me
|
||||
git config --global user.name giteadrone
|
||||
git add ./androidApp/src/main/res/*
|
||||
git commit -m "translation: translation files"
|
||||
- name: Push changes
|
||||
if: steps.check-changes.outputs.changes != ''
|
||||
if: steps.check-api-changes.outputs.any_modified == 'true' && steps.check-changes.outputs.changes != ''
|
||||
uses: appleboy/git-push-action@v1.0.0
|
||||
with:
|
||||
author_name: giteadrone
|
||||
|
@ -170,7 +170,7 @@ class ArticleFragment :
|
||||
|
||||
private fun handleContent() {
|
||||
if (contentText.isEmptyOrNullOrNullString()) {
|
||||
if (connectivityService.isNetworkAvailable() == true && url.isUrlValid()) {
|
||||
if (connectivityService.isNetworkAvailable() && url.isUrlValid()) {
|
||||
getContentFromMercury(url!!)
|
||||
}
|
||||
} else {
|
||||
|
@ -55,7 +55,7 @@ class RepositoryTest {
|
||||
private val connectivityService = mockk<ConnectivityService>()
|
||||
private lateinit var repository: Repository
|
||||
|
||||
private fun initializeRepository(isNetworkAvailable: Boolean? = true) {
|
||||
private fun initializeRepository(isNetworkAvailable: Boolean = true) {
|
||||
every { connectivityService.isNetworkAvailable() } returns isNetworkAvailable
|
||||
repository = Repository(api, appSettingsService, connectivityService, db)
|
||||
|
||||
|
@ -63,7 +63,7 @@ class Repository(
|
||||
|
||||
suspend fun getNewerItems(): ArrayList<SelfossModel.Item> {
|
||||
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
fetchedItems =
|
||||
api.getItems(
|
||||
displayedItems.type,
|
||||
@ -102,7 +102,7 @@ class Repository(
|
||||
|
||||
suspend fun getOlderItems(): ArrayList<SelfossModel.Item> {
|
||||
var fetchedItems: StatusAndData<List<SelfossModel.Item>> = StatusAndData.error()
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
val offset = items.size
|
||||
fetchedItems =
|
||||
api.getItems(
|
||||
@ -122,7 +122,7 @@ class Repository(
|
||||
}
|
||||
|
||||
private suspend fun getMaxItemsForBackground(itemType: ItemType): List<SelfossModel.Item> {
|
||||
return if (connectivityService.isNetworkAvailable() == true) {
|
||||
return if (connectivityService.isNetworkAvailable()) {
|
||||
val items =
|
||||
api.getItems(
|
||||
itemType.type,
|
||||
@ -146,7 +146,7 @@ class Repository(
|
||||
@Suppress("detekt:ForbiddenComment")
|
||||
suspend fun reloadBadges(): Boolean {
|
||||
var success = false
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
val response = api.stats()
|
||||
if (response.success && response.data != null) {
|
||||
_badgeUnread.value = response.data.unread ?: 0
|
||||
@ -168,7 +168,7 @@ class Repository(
|
||||
suspend fun getTags(): List<SelfossModel.Tag> {
|
||||
val isDatabaseEnabled =
|
||||
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
||||
return if (connectivityService.isNetworkAvailable() == true && !fetchedTags) {
|
||||
return if (connectivityService.isNetworkAvailable() && !fetchedTags) {
|
||||
val apiTags = api.tags()
|
||||
if (apiTags.success && apiTags.data != null && isDatabaseEnabled) {
|
||||
resetDBTagsWithData(apiTags.data)
|
||||
@ -185,7 +185,7 @@ class Repository(
|
||||
}
|
||||
|
||||
suspend fun getSpouts(): Map<String, SelfossModel.Spout> =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
val spouts = api.spouts()
|
||||
if (spouts.success && spouts.data != null) {
|
||||
spouts.data
|
||||
@ -201,7 +201,7 @@ class Repository(
|
||||
val isDatabaseEnabled =
|
||||
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
||||
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
||||
if (shouldFetch && connectivityService.isNetworkAvailable() == true) {
|
||||
if (shouldFetch && connectivityService.isNetworkAvailable()) {
|
||||
if (appSettingsService.getPublicAccess()) {
|
||||
val apiSources = api.sourcesStats()
|
||||
if (apiSources.success && apiSources.data != null) {
|
||||
@ -223,7 +223,7 @@ class Repository(
|
||||
val isDatabaseEnabled =
|
||||
appSettingsService.isItemCachingEnabled() || !appSettingsService.isUpdateSourcesEnabled()
|
||||
val shouldFetch = if (!appSettingsService.isUpdateSourcesEnabled()) !fetchedSources else true
|
||||
if (shouldFetch && connectivityService.isNetworkAvailable() == true) {
|
||||
if (shouldFetch && connectivityService.isNetworkAvailable()) {
|
||||
val apiSources = api.sourcesDetailed()
|
||||
if (apiSources.success && apiSources.data != null) {
|
||||
fetchedSources = true
|
||||
@ -248,7 +248,7 @@ class Repository(
|
||||
}
|
||||
|
||||
private suspend fun markAsReadById(id: Int): Boolean =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
api.markAsRead(id.toString()).isSuccess
|
||||
} else {
|
||||
insertDBAction(id.toString(), read = true)
|
||||
@ -265,7 +265,7 @@ class Repository(
|
||||
}
|
||||
|
||||
private suspend fun unmarkAsReadById(id: Int): Boolean =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
api.unmarkAsRead(id.toString()).isSuccess
|
||||
} else {
|
||||
insertDBAction(id.toString(), unread = true)
|
||||
@ -282,7 +282,7 @@ class Repository(
|
||||
}
|
||||
|
||||
private suspend fun starrById(id: Int): Boolean =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
api.starr(id.toString()).isSuccess
|
||||
} else {
|
||||
insertDBAction(id.toString(), starred = true)
|
||||
@ -299,7 +299,7 @@ class Repository(
|
||||
}
|
||||
|
||||
private suspend fun unstarrById(id: Int): Boolean =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
api.unstarr(id.toString()).isSuccess
|
||||
} else {
|
||||
insertDBAction(id.toString(), starred = true)
|
||||
@ -309,9 +309,7 @@ class Repository(
|
||||
suspend fun markAllAsRead(items: ArrayList<SelfossModel.Item>): Boolean {
|
||||
var success = false
|
||||
|
||||
if (connectivityService.isNetworkAvailable() != null &&
|
||||
connectivityService.isNetworkAvailable()!! &&
|
||||
api.markAllAsRead(items.map { it.id.toString() }).isSuccess
|
||||
if (connectivityService.isNetworkAvailable() && api.markAllAsRead(items.map { it.id.toString() }).isSuccess
|
||||
) {
|
||||
success = true
|
||||
for (item in items) {
|
||||
@ -372,7 +370,7 @@ class Repository(
|
||||
tags: String,
|
||||
): Boolean {
|
||||
var response = false
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
response = api
|
||||
.createSourceForVersion(
|
||||
title,
|
||||
@ -393,7 +391,7 @@ class Repository(
|
||||
tags: String,
|
||||
): Boolean {
|
||||
var response = false
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
response = api.updateSourceForVersion(id, title, url, spout, tags).isSuccess == true
|
||||
}
|
||||
|
||||
@ -405,13 +403,13 @@ class Repository(
|
||||
title: String,
|
||||
): Boolean {
|
||||
var success = false
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
val response = api.deleteSource(id)
|
||||
success = response.isSuccess
|
||||
}
|
||||
|
||||
// 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 })
|
||||
setReaderItems(items)
|
||||
db.itemsQueries.deleteItemsWhereSource(title)
|
||||
@ -421,7 +419,7 @@ class Repository(
|
||||
}
|
||||
|
||||
suspend fun updateRemote(): Boolean =
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
api.update().data.equals("finished")
|
||||
} else {
|
||||
false
|
||||
@ -429,7 +427,7 @@ class Repository(
|
||||
|
||||
suspend fun login(): Boolean {
|
||||
var result = false
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
try {
|
||||
val response = api.login()
|
||||
result = response.isSuccess == true
|
||||
@ -442,7 +440,7 @@ class Repository(
|
||||
|
||||
suspend fun checkIfFetchFails(): Boolean {
|
||||
var fetchFailed = true
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
try {
|
||||
// Trying to fetch one item, and check someone is trying to use the app with
|
||||
// a random rss feed, that would throw a NoTransformationFoundException
|
||||
@ -456,7 +454,7 @@ class Repository(
|
||||
}
|
||||
|
||||
suspend fun logout() {
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
try {
|
||||
val response = api.logout()
|
||||
if (!response.isSuccess) {
|
||||
@ -484,7 +482,7 @@ class Repository(
|
||||
suspend fun updateApiInformation() {
|
||||
val apiMajorVersion = appSettingsService.getApiVersion()
|
||||
|
||||
if (connectivityService.isNetworkAvailable() == true) {
|
||||
if (connectivityService.isNetworkAvailable()) {
|
||||
val fetchedInformation = api.apiInformation()
|
||||
if (fetchedInformation.success && fetchedInformation.data != null) {
|
||||
if (fetchedInformation.data.getApiMajorVersion() != apiMajorVersion) {
|
||||
|
@ -10,7 +10,7 @@ import kotlinx.coroutines.launch
|
||||
class ConnectivityService {
|
||||
private val _networkAvailableProvider = MutableSharedFlow<Boolean>()
|
||||
val networkAvailableProvider = _networkAvailableProvider.asSharedFlow()
|
||||
private var currentStatus: Boolean? = null
|
||||
private var currentStatus = true
|
||||
private lateinit var connectivity: Connectivity
|
||||
|
||||
fun start() {
|
||||
@ -20,11 +20,14 @@ class ConnectivityService {
|
||||
connectivity.statusUpdates.collect { status ->
|
||||
when (status) {
|
||||
is Connectivity.Status.Connected -> {
|
||||
if (!currentStatus) {
|
||||
currentStatus = true
|
||||
_networkAvailableProvider.emit(true)
|
||||
}
|
||||
}
|
||||
|
||||
is Connectivity.Status.Disconnected -> {
|
||||
if (currentStatus) {
|
||||
currentStatus = false
|
||||
_networkAvailableProvider.emit(false)
|
||||
}
|
||||
@ -32,11 +35,12 @@ class ConnectivityService {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun isNetworkAvailable(): Boolean? = currentStatus
|
||||
fun isNetworkAvailable(): Boolean = currentStatus
|
||||
|
||||
fun stop() {
|
||||
currentStatus = null
|
||||
currentStatus = true
|
||||
connectivity.stop()
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user