Application update checker
parent
3c4e29149f
commit
4e7034cd59
@ -0,0 +1,19 @@
|
|||||||
|
package org.koitharu.kotatsu.core.github
|
||||||
|
|
||||||
|
import android.os.Parcelable
|
||||||
|
import kotlinx.android.parcel.Parcelize
|
||||||
|
|
||||||
|
@Parcelize
|
||||||
|
data class AppVersion(
|
||||||
|
val id: Long,
|
||||||
|
val name: String,
|
||||||
|
val url: String,
|
||||||
|
val apkSize: Long,
|
||||||
|
val apkUrl: String
|
||||||
|
) : Parcelable {
|
||||||
|
|
||||||
|
fun isGreaterThen(version: String) {
|
||||||
|
val thisParts = name.substringBeforeLast('-').split('.')
|
||||||
|
val parts = version.substringBeforeLast('-').split('.')
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,28 @@
|
|||||||
|
package org.koitharu.kotatsu.core.github
|
||||||
|
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import okhttp3.Request
|
||||||
|
import org.koin.core.KoinComponent
|
||||||
|
import org.koin.core.inject
|
||||||
|
import org.koitharu.kotatsu.utils.ext.await
|
||||||
|
import org.koitharu.kotatsu.utils.ext.parseJson
|
||||||
|
|
||||||
|
class GithubRepository : KoinComponent {
|
||||||
|
|
||||||
|
private val okHttp by inject<OkHttpClient>()
|
||||||
|
|
||||||
|
suspend fun getLatestVersion(): AppVersion {
|
||||||
|
val request = Request.Builder()
|
||||||
|
.get()
|
||||||
|
.url("https://api.github.com/repos/nv95/Kotatsu/releases/latest")
|
||||||
|
val json = okHttp.newCall(request.build()).await().parseJson()
|
||||||
|
val asset = json.getJSONArray("assets").getJSONObject(0)
|
||||||
|
return AppVersion(
|
||||||
|
id = json.getLong("id"),
|
||||||
|
url = json.getString("html_url"),
|
||||||
|
name = json.getString("name").removePrefix("v"),
|
||||||
|
apkSize = asset.getLong("size"),
|
||||||
|
apkUrl = asset.getString("browser_download_url")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,57 @@
|
|||||||
|
package org.koitharu.kotatsu.core.github
|
||||||
|
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
data class VersionId(
|
||||||
|
val major: Int,
|
||||||
|
val minor: Int,
|
||||||
|
val build: Int,
|
||||||
|
val variantType: String,
|
||||||
|
val variantNumber: Int
|
||||||
|
) : Comparable<VersionId> {
|
||||||
|
|
||||||
|
override fun compareTo(other: VersionId): Int {
|
||||||
|
var diff = major.compareTo(other.major)
|
||||||
|
if (diff != 0) {
|
||||||
|
return diff
|
||||||
|
}
|
||||||
|
diff = minor.compareTo(other.minor)
|
||||||
|
if (diff != 0) {
|
||||||
|
return diff
|
||||||
|
}
|
||||||
|
diff = build.compareTo(other.build)
|
||||||
|
if (diff != 0) {
|
||||||
|
return diff
|
||||||
|
}
|
||||||
|
diff = variantWeight(variantType).compareTo(variantWeight(other.variantType))
|
||||||
|
if (diff != 0) {
|
||||||
|
return diff
|
||||||
|
}
|
||||||
|
return variantNumber.compareTo(other.variantNumber)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
|
||||||
|
@JvmStatic
|
||||||
|
private fun variantWeight(variantType: String) =
|
||||||
|
when (variantType.toLowerCase(Locale.ROOT)) {
|
||||||
|
"a" -> 1
|
||||||
|
"b" -> 2
|
||||||
|
"rc" -> 4
|
||||||
|
else -> 8
|
||||||
|
}
|
||||||
|
|
||||||
|
@JvmStatic
|
||||||
|
fun parse(versionName: String): VersionId {
|
||||||
|
val parts = versionName.substringBeforeLast('-').split('.')
|
||||||
|
val variant = versionName.substringAfterLast('-', "")
|
||||||
|
return VersionId(
|
||||||
|
major = parts.getOrNull(0)?.toIntOrNull() ?: 0,
|
||||||
|
minor = parts.getOrNull(1)?.toIntOrNull() ?: 0,
|
||||||
|
build = parts.getOrNull(2)?.toIntOrNull() ?: 0,
|
||||||
|
variantType = variant.filter(Char::isLetter),
|
||||||
|
variantNumber = variant.filter(Char::isDigit).toIntOrNull() ?: 0
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
package org.koitharu.kotatsu.ui.settings
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import org.koitharu.kotatsu.R
|
||||||
|
import org.koitharu.kotatsu.ui.common.BasePreferenceFragment
|
||||||
|
|
||||||
|
class AboutSettingsFragment : BasePreferenceFragment(R.string.about_app) {
|
||||||
|
|
||||||
|
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
|
||||||
|
addPreferencesFromResource(R.xml.pref_about)
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,109 @@
|
|||||||
|
package org.koitharu.kotatsu.ui.settings
|
||||||
|
|
||||||
|
import android.app.NotificationChannel
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.graphics.BitmapFactory
|
||||||
|
import android.net.Uri
|
||||||
|
import android.os.Build
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import androidx.core.content.edit
|
||||||
|
import androidx.preference.PreferenceManager
|
||||||
|
import kotlinx.coroutines.CancellationException
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
import org.koitharu.kotatsu.BuildConfig
|
||||||
|
import org.koitharu.kotatsu.R
|
||||||
|
import org.koitharu.kotatsu.core.github.AppVersion
|
||||||
|
import org.koitharu.kotatsu.core.github.GithubRepository
|
||||||
|
import org.koitharu.kotatsu.core.github.VersionId
|
||||||
|
import org.koitharu.kotatsu.ui.common.BaseService
|
||||||
|
import org.koitharu.kotatsu.utils.FileSizeUtils
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
|
class UpdateService : BaseService() {
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
launch(Dispatchers.IO) {
|
||||||
|
try {
|
||||||
|
val repo = GithubRepository()
|
||||||
|
val version = repo.getLatestVersion()
|
||||||
|
val newVersionId = VersionId.parse(version.name)
|
||||||
|
val currentVersionId = VersionId.parse(BuildConfig.VERSION_NAME)
|
||||||
|
if (newVersionId > currentVersionId) {
|
||||||
|
withContext(Dispatchers.Main) {
|
||||||
|
showUpdateNotification(version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PreferenceManager.getDefaultSharedPreferences(this@UpdateService).edit(true) {
|
||||||
|
putLong(getString(R.string.key_app_update), System.currentTimeMillis())
|
||||||
|
}
|
||||||
|
} catch (_: CancellationException) {
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
if (BuildConfig.DEBUG) {
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
withContext(Dispatchers.Main) {
|
||||||
|
stopSelf(startId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return START_NOT_STICKY
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun showUpdateNotification(newVersion: AppVersion) {
|
||||||
|
val manager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O
|
||||||
|
&& manager.getNotificationChannel(CHANNEL_ID) == null
|
||||||
|
) {
|
||||||
|
val channel = NotificationChannel(
|
||||||
|
CHANNEL_ID,
|
||||||
|
getString(R.string.application_update),
|
||||||
|
NotificationManager.IMPORTANCE_DEFAULT
|
||||||
|
)
|
||||||
|
manager.createNotificationChannel(channel)
|
||||||
|
}
|
||||||
|
val builder = NotificationCompat.Builder(this, CHANNEL_ID)
|
||||||
|
builder.setContentTitle(getString(R.string.app_update_available))
|
||||||
|
builder.setContentText(buildString {
|
||||||
|
append(newVersion.name)
|
||||||
|
append(" (")
|
||||||
|
append(FileSizeUtils.formatBytes(this@UpdateService, newVersion.apkSize))
|
||||||
|
append(')')
|
||||||
|
})
|
||||||
|
builder.setContentIntent(
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
NOTIFICATION_ID,
|
||||||
|
Intent(Intent.ACTION_VIEW, Uri.parse(newVersion.url)),
|
||||||
|
PendingIntent.FLAG_CANCEL_CURRENT
|
||||||
|
)
|
||||||
|
)
|
||||||
|
builder.setSmallIcon(R.drawable.ic_stat_update)
|
||||||
|
builder.setAutoCancel(true)
|
||||||
|
builder.setLargeIcon(BitmapFactory.decodeResource(resources, R.mipmap.ic_launcher))
|
||||||
|
manager.notify(NOTIFICATION_ID, builder.build())
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
|
||||||
|
private const val NOTIFICATION_ID = 202
|
||||||
|
private const val CHANNEL_ID = "update"
|
||||||
|
private val PERIOD = TimeUnit.HOURS.toMillis(10)
|
||||||
|
|
||||||
|
fun start(context: Context) =
|
||||||
|
context.startService(Intent(context, UpdateService::class.java))
|
||||||
|
|
||||||
|
fun startIfRequired(context: Context) {
|
||||||
|
val lastUpdate = PreferenceManager.getDefaultSharedPreferences(context)
|
||||||
|
.getLong(context.getString(R.string.key_app_update), 0)
|
||||||
|
if (lastUpdate + PERIOD < System.currentTimeMillis()) {
|
||||||
|
start(context)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 403 B |
Binary file not shown.
|
After Width: | Height: | Size: 358 B |
Binary file not shown.
|
After Width: | Height: | Size: 591 B |
Binary file not shown.
|
After Width: | Height: | Size: 824 B |
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
@ -1,8 +1,11 @@
|
|||||||
<!-- drawable/information_outline.xml -->
|
<vector
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:height="24dp"
|
android:width="24dp"
|
||||||
android:width="24dp"
|
android:height="24dp"
|
||||||
android:viewportWidth="24"
|
android:tint="?attr/colorControlNormal"
|
||||||
android:viewportHeight="24">
|
android:viewportWidth="24"
|
||||||
<path android:fillColor="#000" android:pathData="M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z" />
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z" />
|
||||||
</vector>
|
</vector>
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</PreferenceScreen>
|
||||||
Loading…
Reference in New Issue