mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
86 lines
2.8 KiB
Kotlin
86 lines
2.8 KiB
Kotlin
package com.github.libretube.util
|
|
|
|
import android.icu.text.RelativeDateTimeFormatter
|
|
import android.os.Build
|
|
import android.text.format.DateUtils
|
|
import java.time.Instant
|
|
import java.time.LocalDateTime
|
|
import java.time.ZoneId
|
|
import java.time.format.DateTimeFormatter
|
|
import java.time.format.FormatStyle
|
|
import java.time.temporal.ChronoUnit
|
|
import java.util.*
|
|
import kotlin.time.Duration
|
|
import kotlinx.datetime.LocalDate
|
|
import kotlinx.datetime.toJavaLocalDate
|
|
import okhttp3.HttpUrl.Companion.toHttpUrlOrNull
|
|
|
|
object TextUtils {
|
|
/**
|
|
* Separator used for descriptions
|
|
*/
|
|
const val SEPARATOR = " • "
|
|
|
|
/**
|
|
* Reserved characters by unix which can not be used for file name.
|
|
*/
|
|
const val RESERVED_CHARS = "?:\"*|/\\<>\u0000"
|
|
|
|
/**
|
|
* Localize the date from a time string
|
|
* @param date The date to parse
|
|
* @param locale The locale to use, otherwise uses system default
|
|
* return Localized date string
|
|
*/
|
|
fun localizeDate(date: LocalDate, locale: Locale): String {
|
|
val formatter = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM).withLocale(locale)
|
|
return date.toJavaLocalDate().format(formatter)
|
|
}
|
|
|
|
/**
|
|
* Get time in seconds from a youtube video link
|
|
* @param t The time string to parse
|
|
* @return Time in seconds
|
|
*/
|
|
fun parseTimestamp(t: String): Long? {
|
|
return t.toLongOrNull() ?: Duration.parseOrNull(t)?.inWholeSeconds
|
|
}
|
|
|
|
/**
|
|
* Get video id if the link is a valid youtube video link
|
|
*/
|
|
fun getVideoIdFromUri(link: String): String? {
|
|
return link.toHttpUrlOrNull()?.let {
|
|
when (it.host) {
|
|
"www.youtube.com" -> it.queryParameter("v")
|
|
"youtu.be" -> it.pathSegments.lastOrNull()
|
|
else -> null
|
|
}
|
|
}
|
|
}
|
|
|
|
fun formatRelativeDate(unixTime: Long): CharSequence {
|
|
val date = LocalDateTime.ofInstant(Instant.ofEpochMilli(unixTime), ZoneId.systemDefault())
|
|
val now = LocalDateTime.now()
|
|
val weeks = date.until(now, ChronoUnit.WEEKS)
|
|
|
|
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && weeks >= 1) {
|
|
val months = date.until(now, ChronoUnit.MONTHS)
|
|
val (timeFormat, time) = when {
|
|
months / 12 > 0 -> RelativeDateTimeFormatter.RelativeUnit.YEARS to months / 12
|
|
months > 0 -> RelativeDateTimeFormatter.RelativeUnit.MONTHS to months
|
|
else -> RelativeDateTimeFormatter.RelativeUnit.WEEKS to weeks
|
|
}
|
|
RelativeDateTimeFormatter.getInstance()
|
|
.format(time.toDouble(), RelativeDateTimeFormatter.Direction.LAST, timeFormat)
|
|
} else {
|
|
DateUtils.getRelativeTimeSpanString(unixTime)
|
|
}
|
|
}
|
|
|
|
fun formatBitrate(bitrate: Int?): String {
|
|
bitrate ?: return ""
|
|
return "${bitrate / 1024}kbps"
|
|
}
|
|
}
|