From d1bf7c82354dad284774ed34f51ad9b2fc17a3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 3 Dec 2024 12:24:57 +0800 Subject: [PATCH] Reload service after remote profile updated --- .../io/nekohasekai/sfa/bg/UpdateProfileWork.kt | 16 +++++++++++++++- .../sfa/ui/profile/EditProfileActivity.kt | 15 ++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/io/nekohasekai/sfa/bg/UpdateProfileWork.kt b/app/src/main/java/io/nekohasekai/sfa/bg/UpdateProfileWork.kt index 2e833b5..9dee852 100644 --- a/app/src/main/java/io/nekohasekai/sfa/bg/UpdateProfileWork.kt +++ b/app/src/main/java/io/nekohasekai/sfa/bg/UpdateProfileWork.kt @@ -11,6 +11,7 @@ import androidx.work.WorkerParameters import io.nekohasekai.libbox.Libbox import io.nekohasekai.sfa.Application import io.nekohasekai.sfa.database.ProfileManager +import io.nekohasekai.sfa.database.Settings import io.nekohasekai.sfa.database.TypedProfile import io.nekohasekai.sfa.utils.HTTPClient import java.io.File @@ -63,10 +64,12 @@ class UpdateProfileWork { appContext: Context, params: WorkerParameters ) : CoroutineWorker(appContext, params) { override suspend fun doWork(): Result { + var selectedProfileUpdated = false val remoteProfiles = ProfileManager.list() .filter { it.typed.type == TypedProfile.Type.Remote && it.typed.autoUpdate } if (remoteProfiles.isEmpty()) return Result.success() var success = true + val selectedProfile = Settings.selectedProfile for (profile in remoteProfiles) { val lastSeconds = (System.currentTimeMillis() - profile.typed.lastUpdated.time) / 1000L @@ -76,7 +79,13 @@ class UpdateProfileWork { try { val content = HTTPClient().use { it.getString(profile.typed.remoteURL) } Libbox.checkConfig(content) - File(profile.typed.path).writeText(content) + val file = File(profile.typed.path) + if (file.readText() != content) { + File(profile.typed.path).writeText(content) + if (profile.id == selectedProfile) { + selectedProfileUpdated = true + } + } profile.typed.lastUpdated = Date() ProfileManager.update(profile) } catch (e: Exception) { @@ -84,6 +93,11 @@ class UpdateProfileWork { success = false } } + if (selectedProfileUpdated) { + runCatching { + Libbox.newStandaloneCommandClient().serviceReload() + } + } return if (success) { Result.success() } else { diff --git a/app/src/main/java/io/nekohasekai/sfa/ui/profile/EditProfileActivity.kt b/app/src/main/java/io/nekohasekai/sfa/ui/profile/EditProfileActivity.kt index 9935a1d..29924c8 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ui/profile/EditProfileActivity.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ui/profile/EditProfileActivity.kt @@ -11,6 +11,7 @@ import io.nekohasekai.sfa.bg.UpdateProfileWork import io.nekohasekai.sfa.constant.EnabledType import io.nekohasekai.sfa.database.Profile import io.nekohasekai.sfa.database.ProfileManager +import io.nekohasekai.sfa.database.Settings import io.nekohasekai.sfa.database.TypedProfile import io.nekohasekai.sfa.databinding.ActivityEditProfileBinding import io.nekohasekai.sfa.ktx.addTextChangedListener @@ -166,10 +167,17 @@ class EditProfileActivity : AbstractActivity() { private fun updateProfile(view: View) { binding.progressView.isVisible = true lifecycleScope.launch(Dispatchers.IO) { + var selectedProfileUpdated = false try { val content = HTTPClient().use { it.getString(profile.typed.remoteURL) } Libbox.checkConfig(content) - File(profile.typed.path).writeText(content) + val file = File(profile.typed.path) + if (file.readText() != content) { + File(profile.typed.path).writeText(content) + if (profile.id == Settings.selectedProfile) { + selectedProfileUpdated = true + } + } profile.typed.lastUpdated = Date() ProfileManager.update(profile) } catch (e: Exception) { @@ -182,6 +190,11 @@ class EditProfileActivity : AbstractActivity() { DateFormat.getDateTimeInstance().format(profile.typed.lastUpdated) binding.progressView.isVisible = false } + if (selectedProfileUpdated) { + runCatching { + Libbox.newStandaloneCommandClient().serviceReload() + } + } } }