2017-03-09 10:27:37 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This file is a part of Tusky.
|
2017-03-09 10:27:37 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-03-09 10:27:37 +11:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 10:12:31 +10:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-03-09 10:27:37 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
2017-03-09 10:27:37 +11:00
|
|
|
|
2018-03-03 23:24:03 +11:00
|
|
|
package com.keylesspalace.tusky.entity
|
2017-03-09 10:27:37 +11:00
|
|
|
|
2019-03-17 17:57:10 +11:00
|
|
|
import com.google.gson.JsonDeserializationContext
|
|
|
|
import com.google.gson.JsonDeserializer
|
|
|
|
import com.google.gson.JsonElement
|
|
|
|
import com.google.gson.JsonParseException
|
2019-03-17 00:33:16 +11:00
|
|
|
import com.google.gson.annotations.JsonAdapter
|
2017-03-09 10:27:37 +11:00
|
|
|
|
2018-03-03 23:24:03 +11:00
|
|
|
data class Notification(
|
|
|
|
val type: Type,
|
|
|
|
val id: String,
|
|
|
|
val account: Account,
|
|
|
|
val status: Status?) {
|
|
|
|
|
2019-03-17 00:33:16 +11:00
|
|
|
@JsonAdapter(NotificationTypeAdapter::class)
|
2018-03-03 23:24:03 +11:00
|
|
|
enum class Type {
|
2019-03-17 00:33:16 +11:00
|
|
|
UNKNOWN,
|
2017-03-09 10:27:37 +11:00
|
|
|
MENTION,
|
|
|
|
REBLOG,
|
|
|
|
FAVOURITE,
|
2019-03-17 00:33:16 +11:00
|
|
|
FOLLOW;
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
|
|
|
|
@JvmStatic
|
|
|
|
fun byString(s: String): Type {
|
|
|
|
return when (s) {
|
|
|
|
"mention" -> MENTION
|
|
|
|
"reblog" -> REBLOG
|
|
|
|
"favourite" -> FAVOURITE
|
|
|
|
"follow" -> FOLLOW
|
|
|
|
else -> UNKNOWN
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-03-09 10:27:37 +11:00
|
|
|
}
|
|
|
|
|
2018-03-03 23:24:03 +11:00
|
|
|
override fun hashCode(): Int {
|
|
|
|
return id.hashCode()
|
2017-03-09 10:27:37 +11:00
|
|
|
}
|
|
|
|
|
2018-03-03 23:24:03 +11:00
|
|
|
override fun equals(other: Any?): Boolean {
|
|
|
|
if (other !is Notification) {
|
|
|
|
return false
|
2017-03-09 10:27:37 +11:00
|
|
|
}
|
2018-03-03 23:24:03 +11:00
|
|
|
val notification = other as Notification?
|
|
|
|
return notification?.id == this.id
|
2017-03-09 10:27:37 +11:00
|
|
|
}
|
2019-03-17 17:57:10 +11:00
|
|
|
|
|
|
|
class NotificationTypeAdapter : JsonDeserializer<Type> {
|
|
|
|
|
|
|
|
@Throws(JsonParseException::class)
|
|
|
|
override fun deserialize(json: JsonElement, typeOfT: java.lang.reflect.Type, context: JsonDeserializationContext): Notification.Type {
|
|
|
|
return Notification.Type.byString(json.asString)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-03-09 10:27:37 +11:00
|
|
|
}
|