Reload service after remote profile updated

This commit is contained in:
世界 2024-12-03 12:24:57 +08:00
parent 6c1f49a00e
commit d1bf7c8235
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 29 additions and 2 deletions

View file

@ -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 {

View file

@ -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<ActivityEditProfileBinding>() {
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<ActivityEditProfileBinding>() {
DateFormat.getDateTimeInstance().format(profile.typed.lastUpdated)
binding.progressView.isVisible = false
}
if (selectedProfileUpdated) {
runCatching {
Libbox.newStandaloneCommandClient().serviceReload()
}
}
}
}