Compare commits

..

2 Commits

Author SHA1 Message Date
aminecmi
109050d0cf Fixing a todo.
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/pr Build is passing
2022-08-27 13:06:16 +02:00
aminecmi
0392e1b406 Typo fix. 2022-08-27 13:00:19 +02:00
5 changed files with 10 additions and 9 deletions

View File

@ -8,14 +8,13 @@ import java.time.OffsetDateTime
import java.time.ZoneOffset
import java.time.format.DateTimeFormatter
actual class DateUtils actual constructor(appSettingsService: AppSettingsService) {
val ads: AppSettingsService = appSettingsService // TODO: why is this needed now ?
actual class DateUtils actual constructor(actual val appSettingsService: AppSettingsService) {
actual fun parseDate(dateString: String): Long {
val FORMATTERV1 = "yyyy-MM-dd HH:mm:ss"
return if (ads.getApiVersion() >= 4) {
return if (appSettingsService.getApiVersion() >= 4) {
OffsetDateTime.parse(dateString).toInstant().toEpochMilli()
} else {
LocalDateTime.parse(dateString, DateTimeFormatter.ofPattern(FORMATTERV1)).toInstant(

View File

@ -69,7 +69,7 @@ class AppSettingsService {
fun getUserName(): String {
if (_userName.isEmpty()) {
refrershUsername()
refreshUsername()
}
return _userName
}
@ -108,7 +108,7 @@ class AppSettingsService {
_baseUrl = settings.getString("url", "")
}
private fun refrershUsername() {
private fun refreshUsername() {
_userName = settings.getString("login", "")
}
@ -344,7 +344,7 @@ class AppSettingsService {
fun refreshApiSettings() {
refreshPassword()
refrershUsername()
refreshUsername()
refreshBaseUrl()
refreshApiVersion()
}

View File

@ -7,7 +7,9 @@ import bou.amine.apps.readerforselfossv2.service.AppSettingsService
fun SelfossModel.Item.parseDate(dateUtils: DateUtils): Long =
dateUtils.parseDate(this.datetime)
expect class DateUtils(appSettingsService: AppSettingsService) {
expect class DateUtils constructor(appSettingsService: AppSettingsService) {
val appSettingsService: AppSettingsService // This is needed because of https://stackoverflow.com/a/65249085
fun parseDate(dateString: String): Long
fun parseRelativeDate(dateString: String): String

View File

@ -2,7 +2,7 @@ package bou.amine.apps.readerforselfossv2.utils
import bou.amine.apps.readerforselfossv2.service.AppSettingsService
actual class DateUtils actual constructor(appSettingsService: AppSettingsService) {
actual class DateUtils actual constructor(actual val appSettingsService: AppSettingsService) {
actual fun parseDate(dateString: String): Long {
TODO("Not yet implemented")
}

View File

@ -2,7 +2,7 @@ package bou.amine.apps.readerforselfossv2.utils
import bou.amine.apps.readerforselfossv2.service.AppSettingsService
actual class DateUtils actual constructor(appSettingsService: AppSettingsService) {
actual class DateUtils actual constructor(actual val appSettingsService: AppSettingsService) {
actual fun parseDate(dateString: String): Long {
TODO("Not yet implemented")
}