SubwayTooter-Android-App/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootAttachment.kt

178 lines
5.3 KiB
Kotlin
Raw Normal View History

package jp.juggler.subwaytooter.api.entity
import android.content.SharedPreferences
import org.json.JSONObject
import jp.juggler.subwaytooter.Pref
import jp.juggler.subwaytooter.api.TootParser
import jp.juggler.subwaytooter.util.clipRange
import jp.juggler.subwaytooter.util.parseLong
import jp.juggler.subwaytooter.util.parseString
class TootAttachment(serviceType:ServiceType,src : JSONObject) : TootAttachmentLike {
companion object {
private fun parseFocusValue(parent : JSONObject?, key : String) : Float {
if(parent != null) {
val dv = parent.optDouble(key)
if(dv.isFinite()) return clipRange(- 1f, 1f, dv.toFloat())
}
return 0f
}
}
constructor(parser:TootParser,src:JSONObject):this(parser.serviceType,src)
val json : JSONObject
// ID of the attachment
val id : EntityId
//One of: "image", "video", "gifv". or may null ? may "unknown" ?
override val type : String?
//URL of the locally hosted version of the image
val url : String?
//For remote images, the remote URL of the original image
val remote_url : String?
// URL of the preview image
val preview_url : String?
// Shorter URL for the image, for insertion into text (only present on local images)
val text_url : String?
// ALT text (Mastodon 2.0.0 or later)
override val description : String?
override val focusX : Float
override val focusY : Float
2018-06-23 04:43:18 +02:00
// 内部フラグ: 再編集で引き継いだ添付メディアなら真
var redraft :Boolean = false
// MisskeyはメディアごとにNSFWフラグがある
val isSensitive :Boolean
///////////////////////////////
override fun hasUrl(url : String) : Boolean = when(url) {
this.preview_url, this.remote_url, this.url, this.text_url -> true
else -> false
}
init {
json = src
when(serviceType) {
ServiceType.MISSKEY -> {
id = EntityId.from( src.parseString("id") ?: error("missing id"))
val mimeType = src.parseString("type") ?: "?"
this.type = when{
mimeType.startsWith("image/") -> TootAttachmentLike.TYPE_IMAGE
mimeType.startsWith("video/") -> TootAttachmentLike.TYPE_VIDEO
else-> TootAttachmentLike.TYPE_UNKNOWN
}
url = src.parseString("url")
preview_url = src.parseString("thumbnailUrl")
remote_url = url
text_url = url
description = src.parseString("comment")
focusX = 0f // TODO
focusY = 0f // TODO
isSensitive = src.optBoolean("isSensitive",false)
}
else->{
id= EntityIdLong(src.parseLong("id") ?: - 1L)
type = src.parseString("type")
url = src.parseString("url")
remote_url = src.parseString("remote_url")
preview_url = src.parseString("preview_url")
text_url = src.parseString("text_url")
description = src.parseString("description")
isSensitive = false
val focus = src.optJSONObject("meta")?.optJSONObject("focus")
focusX = parseFocusValue(focus, "x")
focusY = parseFocusValue(focus, "y")
}
}
}
override val urlForThumbnail : String?
get() = when {
preview_url?.isNotEmpty() == true -> preview_url
remote_url?.isNotEmpty() == true -> remote_url
url?.isNotEmpty() == true -> url
else -> null
}
fun getLargeUrl(pref : SharedPreferences) : String? {
return if(Pref.bpPriorLocalURL(pref)) {
if(url?.isNotEmpty() == true) url else remote_url
} else {
if(remote_url?.isNotEmpty() == true) remote_url else url
}
}
fun getLargeUrlList(pref : SharedPreferences) : ArrayList<String> {
val result = ArrayList<String>()
if(Pref.bpPriorLocalURL(pref)) {
if(url?.isNotEmpty() == true) result.add(url)
if(remote_url?.isNotEmpty() == true) result.add(remote_url)
} else {
if(remote_url?.isNotEmpty() == true) result.add(remote_url)
if(url?.isNotEmpty() == true) result.add(url)
}
return result
}
}
// v1.3 から 添付ファイルの画像のピクセルサイズが取得できるようになった
// https://github.com/tootsuite/mastodon/issues/1985
// "media_attachments" : [
// {
// "id" : 4,
// "type" : "image",
// "remote_url" : "",
// "meta" : {
// "original" : {
// "width" : 600,
// "size" : "600x400",
// "height" : 400,
// "aspect" : 1.5
// },
// "small" : {
// "aspect" : 1.49812734082397,
// "height" : 267,
// "size" : "400x267",
// "width" : 400
// }
// },
// "url" : "http://127.0.0.1:3000/system/media_attachments/files/000/000/004/original/3416fc5188c656da.jpg?1493138517",
// "preview_url" : "http://127.0.0.1:3000/system/media_attachments/files/000/000/004/small/3416fc5188c656da.jpg?1493138517",
// "text_url" : "http://127.0.0.1:3000/media/4hfW3Kt4U9UxDvV_xug"
// },
// {
// "text_url" : "http://127.0.0.1:3000/media/0vTH_B1kjvIvlUBhGBw",
// "preview_url" : "http://127.0.0.1:3000/system/media_attachments/files/000/000/003/small/23519a5e64064e32.png?1493138030",
// "meta" : {
// "fps" : 15,
// "duration" : 5.06,
// "width" : 320,
// "size" : "320x180",
// "height" : 180,
// "length" : "0:00:05.06",
// "aspect" : 1.77777777777778
// },
// "url" : "http://127.0.0.1:3000/system/media_attachments/files/000/000/003/original/23519a5e64064e32.mp4?1493138030",
// "remote_url" : "",
// "type" : "gifv",
// "id" : 3
// }
// ],