Pixelcat-App-Android/app/src/main/kotlin/at/connyduck/pixelcat/db/Converters.kt

55 lines
1.4 KiB
Kotlin
Raw Normal View History

2020-06-12 15:44:45 +02:00
package at.connyduck.pixelcat.db
import androidx.room.TypeConverter
import at.connyduck.pixelcat.model.Attachment
import at.connyduck.pixelcat.model.Status
import com.squareup.moshi.Moshi
import com.squareup.moshi.Types
2020-06-12 19:58:15 +02:00
import java.util.Date
2020-06-12 15:44:45 +02:00
class Converters {
private val moshi = Moshi.Builder().build()
@TypeConverter
fun visibilityToInt(visibility: Status.Visibility): String {
return visibility.name
}
@TypeConverter
fun stringToVisibility(visibility: String): Status.Visibility {
return Status.Visibility.valueOf(visibility)
}
@TypeConverter
fun attachmentListToJson(attachmentList: List<Attachment>?): String {
2020-06-12 19:58:15 +02:00
val type = Types.newParameterizedType(
List::class.java,
Attachment::class.java
)
2020-06-12 15:44:45 +02:00
return moshi.adapter<List<Attachment>>(type).toJson(attachmentList)
}
@TypeConverter
fun jsonToAttachmentList(attachmentListJson: String?): List<Attachment>? {
2020-06-12 19:58:15 +02:00
if (attachmentListJson == null) {
2020-06-12 15:44:45 +02:00
return null
}
val type = Types.newParameterizedType(
List::class.java,
Attachment::class.java
)
return moshi.adapter<List<Attachment>>(type).fromJson(attachmentListJson)
}
@TypeConverter
fun dateToLong(date: Date): Long {
return date.time
}
@TypeConverter
fun longToDate(date: Long): Date {
return Date(date)
}
2020-06-12 19:58:15 +02:00
}