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

1256 lines
39 KiB
Kotlin
Raw Normal View History

package jp.juggler.subwaytooter.api.entity
import android.annotation.SuppressLint
import android.content.Context
2019-02-15 02:51:22 +01:00
import androidx.annotation.StringRes
import android.text.Spannable
import android.text.SpannableString
import jp.juggler.subwaytooter.App1
import jp.juggler.subwaytooter.Pref
import jp.juggler.subwaytooter.R
import jp.juggler.subwaytooter.api.TootAccountMap
2018-01-12 10:01:25 +01:00
import jp.juggler.subwaytooter.api.TootApiClient
import jp.juggler.subwaytooter.api.TootParser
import jp.juggler.subwaytooter.table.HighlightWord
import jp.juggler.subwaytooter.table.SavedAccount
import jp.juggler.subwaytooter.util.*
2018-12-01 00:02:18 +01:00
import jp.juggler.util.*
import java.lang.ref.WeakReference
import java.text.SimpleDateFormat
import java.util.*
2018-12-01 00:02:18 +01:00
import java.util.regex.Pattern
import kotlin.collections.ArrayList
import kotlin.collections.LinkedHashMap
import kotlin.math.abs
import kotlin.math.min
class FilterTrees(
val treeIrreversible : WordTrieTree = WordTrieTree(),
val treeReversible : WordTrieTree = WordTrieTree(),
val treeAll : WordTrieTree = WordTrieTree()
)
@Suppress("MemberVisibilityCanPrivate")
class TootStatus(parser : TootParser, src : JsonObject) : TimelineItem() {
val json : JsonObject
// A Fediverse-unique resource ID
2018-01-11 10:31:25 +01:00
// MSP から取得したデータだと uri は提供されずnullになる
val uri : String
2018-01-11 10:31:25 +01:00
// URL to the status page (can be remote)
// ブーストだとnullになる
val url : String?
2018-01-11 10:31:25 +01:00
// 投稿元タンスのホスト名
val host_original : Host
get() = account.host
2018-01-11 10:31:25 +01:00
// 取得タンスのホスト名。トゥート検索サービスでは提供されずnullになる
val host_access : Host?
2018-01-11 10:31:25 +01:00
// ステータスID。
// host_access が null の場合は投稿元タンスでのIDかもしれない。
// 取得に失敗するとINVALID_IDになる
// Misskeyでは文字列のID。
val id : EntityId
// misskey ではページネーションにIDではなくエポック秒を使う
2018-08-24 16:38:32 +02:00
internal var _orderId : EntityId
override fun getOrderId() = _orderId
// The TootAccount which posted the status
val accountRef : TootAccountRef
val account : TootAccount
get() = TootAccountMap.find(accountRef.mapId)
//The number of reblogs for the status
var reblogs_count : Long? = null // アプリから変更する。検索サービスでは提供されない(null)
//The number of favourites for the status
var favourites_count : Long? = null // アプリから変更する。検索サービスでは提供されない(null)
// Whether the authenticated user has reblogged the status
var reblogged : Boolean = false // アプリから変更する
// Whether the authenticated user has favourited the status
var favourited : Boolean = false // アプリから変更する
// Whether the authenticated user has bookmarked the status
var bookmarked : Boolean = false // アプリから変更する
// Whether the authenticated user has muted the conversation this status from
var muted : Boolean = false // アプリから変更する
// 固定されたトゥート
var pinned : Boolean = false // アプリから変更する
//Whether media attachments should be hidden by default
val sensitive : Boolean
// The detected language for the status, if detected
2019-12-13 15:48:38 +01:00
val language : String?
//If not empty, warning text that should be displayed before the actual content
// アプリ内部では空文字列はCWなしとして扱う
// マストドンは「null:CWなし」「空じゃない文字列CWあり」の2種類
// Pleromaは「空文字列CWなし」「空じゃない文字列CWあり」の2種類
// Misskeyは「CWなし」「空欄CW」「CWあり」の3通り。空欄CWはパース時に書き換えてしまう
// Misskeyで投稿が削除された時に変更されるため、val変数にできない
var spoiler_text : String = ""
var decoded_spoiler_text : Spannable
// Body of the status; this will contain HTML (remote HTML already sanitized)
var content : String?
var decoded_content : Spannable
//Application from which the status was posted
val application : TootApplication?
2018-01-11 10:31:25 +01:00
val custom_emojis : HashMap<String, CustomEmoji>?
2018-01-11 10:31:25 +01:00
val profile_emojis : HashMap<String, NicoProfileEmoji>?
// The time the status was created
private val created_at : String?
// null or the ID of the status it replies to
val in_reply_to_id : EntityId?
// null or the ID of the account it replies to
val in_reply_to_account_id : EntityId?
// null or the reblogged Status
val reblog : TootStatus?
//One of: public, unlisted, private, direct
val visibility : TootVisibility
private val misskeyVisibleIds : ArrayList<String>?
// An array of Attachments
val media_attachments : ArrayList<TootAttachmentLike>?
// An array of Mentions
var mentions : ArrayList<TootMention>? = null
//An array of Tags
var tags : ArrayList<TootTag>? = null
// public Spannable decoded_tags;
var decoded_mentions : Spannable = EMPTY_SPANNABLE
var conversation_main : Boolean = false
2019-04-14 05:41:29 +02:00
var enquete : TootPolls? = null
//
2018-08-21 01:20:39 +02:00
var replies_count : Long? = null
var viaMobile : Boolean = false
var reactionCounts : LinkedHashMap<String, Int>? = null
var myReaction : String? = null
var reply : TootStatus?
val serviceType : ServiceType
private val deletedAt : String?
val time_deleted_at : Long
private var localOnly : Boolean = false
var myRenoteId : EntityId? = null
///////////////////////////////////////////////////////////////////
// 以下はentityから取得したデータではなく、アプリ内部で使う
class AutoCW(
var refActivity : WeakReference<Any>? = null,
var cell_width : Int = 0,
var decoded_spoiler_text : Spannable? = null,
var originalLineCount : Int = 0
)
// アプリ内部で使うワークエリア
var auto_cw : AutoCW? = null
// 会話の流れビューで後から追加する
var card : TootCard? = null
var highlightSound : HighlightWord? = null
var highlightSpeech : HighlightWord? = null
var highlightAny : HighlightWord? = null
val time_created_at : Long
var conversationSummary : TootConversationSummary? = null
////////////////////////////////////////////////////////
init {
this.json = src
this.serviceType = parser.serviceType
2018-08-21 01:20:39 +02:00
if(parser.serviceType == ServiceType.MISSKEY) {
val instance = parser.accessHost
2020-01-08 04:23:45 +01:00
val misskeyId = src.string("id")
this.host_access = parser.accessHost
2020-01-08 04:23:45 +01:00
val uri = src.string("uri")
if(uri != null) {
2018-12-02 09:13:14 +01:00
// リモート投稿には uriが含まれる
this.uri = uri
this.url = uri
} else {
2018-12-02 09:13:14 +01:00
this.uri = "https://$instance/notes/$misskeyId"
this.url = "https://$instance/notes/$misskeyId"
}
2020-01-08 04:23:45 +01:00
this.created_at = src.string("createdAt")
this.time_created_at = parseTime(this.created_at)
2018-12-02 09:13:14 +01:00
this.id = EntityId.mayDefault(misskeyId)
// ページネーションには日時を使う
this._orderId = EntityId(time_created_at.toString(), fromTime = true)
2019-03-06 10:49:02 +01:00
2018-08-24 16:38:32 +02:00
// お気に入りカラムなどではパース直後に変更することがある
// 絵文字マップはすぐ後で使うので、最初の方で読んでおく
this.custom_emojis =
2020-01-08 04:23:45 +01:00
parseMapOrNull(CustomEmoji.decodeMisskey, src.jsonArray("emojis"), log)
this.profile_emojis = null
2020-01-08 04:23:45 +01:00
val who = parser.account(src.jsonObject("user"))
?: throw RuntimeException("missing account")
this.accountRef = TootAccountRef(parser, who)
2020-01-08 04:23:45 +01:00
this.reblogs_count = src.long("renoteCount") ?: 0L
this.favourites_count = 0L
2020-01-08 04:23:45 +01:00
this.replies_count = src.long("repliesCount") ?: 0L
this.reblogged = false
this.favourited = src.optBoolean("isFavorited")
2018-08-21 01:20:39 +02:00
this.localOnly = src.optBoolean("localOnly")
this.visibility = TootVisibility.parseMisskey(
2020-01-08 04:23:45 +01:00
src.string("visibility"),
localOnly
) ?: TootVisibility.Public
2020-01-08 04:23:45 +01:00
this.misskeyVisibleIds = parseStringArray(src.jsonArray("visibleUserIds"))
2018-08-21 01:20:39 +02:00
this.media_attachments =
parseListOrNull(
::TootAttachment,
parser,
2020-01-08 04:23:45 +01:00
src.jsonArray("files") ?: src.jsonArray("media") // v11,v10
)
// Misskeyは画像毎にNSFWフラグがある。どれか枚でもNSFWならトゥート全体がNSFWということにする
var bv = src.optBoolean("sensitive")
media_attachments?.forEach {
2018-08-21 01:20:39 +02:00
if((it as? TootAttachment)?.isSensitive == true) {
bv = true
}
}
this.sensitive = bv
2020-01-08 04:23:45 +01:00
this.reply = parser.status(src.jsonObject("reply"))
this.in_reply_to_id = EntityId.mayNull(src.string("replyId"))
this.in_reply_to_account_id = reply?.account?.id
this.pinned = parser.pinned
this.muted = false
this.language = null
2018-08-21 01:20:39 +02:00
// "mentionedRemoteUsers" -> "[{"uri":"https:\/\/mastodon.juggler.jp\/users\/tateisu","username":"tateisu","host":"mastodon.juggler.jp"}]"
2020-01-08 04:23:45 +01:00
this.tags = parseMisskeyTags(src.jsonArray("tags"))
2018-08-21 01:20:39 +02:00
2020-01-08 04:23:45 +01:00
this.application = parseItem(::TootApplication, parser, src.jsonObject("app"), log)
2018-08-21 01:20:39 +02:00
this.viaMobile = src.optBoolean("viaMobile")
// this.decoded_tags = HTMLDecoder.decodeTags( account,status.tags );
// content
2020-01-08 04:23:45 +01:00
this.content = src.string("text")
var options = DecodeOptions(
parser.context,
parser.linkHelper,
short = true,
decodeEmoji = true,
emojiMapCustom = custom_emojis,
emojiMapProfile = profile_emojis,
attachmentList = media_attachments,
highlightTrie = parser.highlightTrie,
mentions = null // MisskeyはMFMをパースし終わるまでメンションが分からない
)
this.decoded_content = options.decodeHTML(content)
if(this.highlightSound == null) this.highlightSound = options.highlightSound
if(this.highlightSpeech == null) this.highlightSpeech = options.highlightSpeech
if(this.highlightAny == null) this.highlightAny = options.highlightAny
// Markdownのデコード結果からmentionsを読むのだった
val mentions1 =
(decoded_content as? MisskeyMarkdownDecoder.SpannableStringBuilderEx)?.mentions
2020-01-08 04:23:45 +01:00
val sv = src.string("cw")?.cleanCW()
this.spoiler_text = when {
sv == null -> "" // CWなし
2020-01-11 03:58:54 +01:00
sv.replace('\u0323',' ').isBlank() ->
parser.context.getString(R.string.blank_cw)
else -> sv
}
// ハイライト検出のためにDecodeOptionsを作り直す
options = DecodeOptions(
parser.context,
2018-12-02 10:35:04 +01:00
parser.linkHelper,
short = true,
decodeEmoji = true,
emojiMapCustom = custom_emojis,
emojiMapProfile = profile_emojis,
2018-12-02 10:35:04 +01:00
attachmentList = media_attachments,
highlightTrie = parser.highlightTrie,
mentions = null // MisskeyはMFMをパースし終わるまでメンションが分からない
)
2018-12-02 10:35:04 +01:00
this.decoded_spoiler_text = options.decodeHTML(spoiler_text)
if(this.highlightSound == null) this.highlightSound = options.highlightSound
if(this.highlightSpeech == null) this.highlightSpeech = options.highlightSpeech
if(this.highlightAny == null) this.highlightAny = options.highlightAny
val mentions2 =
(decoded_spoiler_text as? MisskeyMarkdownDecoder.SpannableStringBuilderEx)?.mentions
this.mentions = mergeMentions(mentions1, mentions2)
this.decoded_mentions = HTMLDecoder.decodeMentions(
parser.linkHelper,
this.mentions,
this
) ?: EMPTY_SPANNABLE
2018-08-21 01:20:39 +02:00
// contentを読んだ後にアンケートのデコード
2019-04-14 05:41:29 +02:00
this.enquete = TootPolls.parse(
2018-08-21 01:20:39 +02:00
parser,
this,
media_attachments,
2020-01-08 04:23:45 +01:00
src.jsonObject("poll"),
2019-04-14 05:41:29 +02:00
TootPollsType.Misskey
2018-08-21 01:20:39 +02:00
)
this.reactionCounts = parseReactionCounts(
2020-01-08 04:23:45 +01:00
src.jsonObject("reactions") ?: src.jsonObject("reactionCounts")
)
2020-01-08 04:23:45 +01:00
this.myReaction = src.string("myReaction")
2020-01-08 04:23:45 +01:00
val reblog = parser.status(src.jsonObject("renote"))
this.reblog = reblog
// めいめいフォークでは myRenoteIdというものがあるらしい
// https://github.com/mei23/misskey/blob/mei-m544/src/models/note.ts#L384-L394
// 直近の一つのrenoteのIdを得られるらしい。
2020-01-08 04:23:45 +01:00
this.myRenoteId = EntityId.mayNull(src.string("myRenoteId"))
if(myRenoteId != null) reblogged = true
// しかしTLにRenoteが露出してるならそのIDを使う方が賢明であろう
// 外側ステータスが自分なら、内側ステータスのmyRenoteIdを設定する
if(reblog != null && parser.linkHelper.cast<SavedAccount>()?.isMe(account) == true) {
reblog.myRenoteId = id
reblog.reblogged = true
}
2018-08-21 01:20:39 +02:00
2020-01-08 04:23:45 +01:00
this.deletedAt = src.string("deletedAt")
this.time_deleted_at = parseTime(deletedAt)
if(card == null) {
if(reblog != null && hasAnyContent()) {
// 引用Renoteにプレビューカードをでっちあげる
card = TootCard(parser, reblog)
} else if(reply != null) {
// 返信にプレビューカードをでっちあげる
card = TootCard(parser, reply !!)
}
}
2018-08-21 01:20:39 +02:00
} else {
misskeyVisibleIds = null
reply = null
deletedAt = null
time_deleted_at = 0L
2020-01-08 04:23:45 +01:00
this.url = src.string("url") // ブースト等では頻繁にnullになる
this.created_at = src.string("created_at")
// 絵文字マップはすぐ後で使うので、最初の方で読んでおく
this.custom_emojis =
2020-01-08 04:23:45 +01:00
parseMapOrNull(CustomEmoji.decode, src.jsonArray("emojis"), log)
this.profile_emojis = when(val o = src["profile_emojis"]) {
is JsonArray -> parseMapOrNull(::NicoProfileEmoji, o, log)
is JsonObject -> parseProfileEmoji2(::NicoProfileEmoji, o, log)
else -> null
}
2020-01-08 04:23:45 +01:00
val who = parser.account(src.jsonObject("account"))
?: throw RuntimeException("missing account")
this.accountRef = TootAccountRef(parser, who)
2020-01-08 04:23:45 +01:00
this.reblogs_count = src.long("reblogs_count")
this.favourites_count = src.long("favourites_count")
this.replies_count = src.long("replies_count")
when(parser.serviceType) {
ServiceType.MASTODON -> {
this.host_access = parser.accessHost
2020-01-08 04:23:45 +01:00
this.id = EntityId.mayDefault(src.string("id"))
this.uri = src.string("uri") ?: error("missing uri")
this.reblogged = src.optBoolean("reblogged")
this.favourited = src.optBoolean("favourited")
this.bookmarked = src.optBoolean("bookmarked")
this.time_created_at = parseTime(this.created_at)
this.media_attachments =
2018-08-21 01:20:39 +02:00
parseListOrNull(
::TootAttachment,
parser,
2020-01-08 04:23:45 +01:00
src.jsonArray("media_attachments"),
2018-08-21 01:20:39 +02:00
log
)
2020-01-08 04:23:45 +01:00
this.visibility = TootVisibility.parseMastodon(src.string("visibility"))
2019-03-06 10:49:02 +01:00
?: TootVisibility.Public
this.sensitive = src.optBoolean("sensitive")
}
ServiceType.TOOTSEARCH -> {
this.host_access = null
// 投稿元タンスでのIDを調べる。失敗するかもしれない
2019-01-28 19:02:09 +01:00
// FIXME: Pleromaだとダメそうな印象
2020-01-08 04:23:45 +01:00
this.uri = src.string("uri") ?: error("missing uri")
2019-01-29 02:56:24 +01:00
this.id = findStatusIdFromUri(uri, url) ?: EntityId.DEFAULT
this.time_created_at = parseTime(this.created_at)
2019-01-28 19:02:09 +01:00
this.media_attachments = parseListOrNull(
::TootAttachment,
parser,
2020-01-08 04:23:45 +01:00
src.jsonArray("media_attachments"),
2019-01-28 19:02:09 +01:00
log
)
this.visibility = TootVisibility.Public
this.sensitive = src.optBoolean("sensitive")
}
ServiceType.MSP -> {
this.host_access = parser.accessHost
// MSPのデータはLTLから呼んだものなので、常に投稿元タンスでのidが得られる
2020-01-08 04:23:45 +01:00
this.id = EntityId.mayDefault(src.string("id"))
// MSPだとuriは提供されない。LTL限定なのでURL的なものを作れるはず
this.uri =
"https://${parser.accessHost}/users/${who.username}/statuses/$id"
this.time_created_at = parseTimeMSP(created_at)
this.media_attachments =
2020-01-08 04:23:45 +01:00
TootAttachmentMSP.parseList(src.jsonArray("media_attachments"))
this.visibility = TootVisibility.Public
this.sensitive = src.optInt("sensitive", 0) != 0
}
2018-08-21 01:20:39 +02:00
ServiceType.MISSKEY -> error("will not happen")
}
this._orderId = this.id
2020-01-08 04:23:45 +01:00
this.in_reply_to_id = EntityId.mayNull(src.string("in_reply_to_id"))
2019-03-06 10:49:02 +01:00
this.in_reply_to_account_id =
2020-01-08 04:23:45 +01:00
EntityId.mayNull(src.string("in_reply_to_account_id"))
this.mentions = parseListOrNull(::TootMention, src.jsonArray("mentions"), log)
this.tags = parseListOrNull(::TootTag, src.jsonArray("tags"))
2018-08-21 01:20:39 +02:00
this.application =
2020-01-08 04:23:45 +01:00
parseItem(::TootApplication, parser, src.jsonObject("application"), log)
this.pinned = parser.pinned || src.optBoolean("pinned")
this.muted = src.optBoolean("muted")
2020-01-08 04:23:45 +01:00
this.language = src.string("language")?.notEmpty()
this.decoded_mentions = HTMLDecoder.decodeMentions(
parser.linkHelper,
this.mentions,
this
) ?: EMPTY_SPANNABLE
// this.decoded_tags = HTMLDecoder.decodeTags( account,status.tags );
// content
2020-01-08 04:23:45 +01:00
this.content = src.string("content")
var options = DecodeOptions(
parser.context,
parser.linkHelper,
short = true,
decodeEmoji = true,
emojiMapCustom = custom_emojis,
emojiMapProfile = profile_emojis,
attachmentList = media_attachments,
highlightTrie = parser.highlightTrie,
mentions = mentions
)
this.decoded_content = options.decodeHTML(content)
if(this.highlightSound == null) this.highlightSound = options.highlightSound
if(this.highlightSpeech == null) this.highlightSpeech = options.highlightSpeech
if(this.highlightAny == null) this.highlightAny = options.highlightAny
2020-01-08 04:23:45 +01:00
var sv = (src.string("spoiler_text") ?: "").cleanCW()
this.spoiler_text = when {
sv.isEmpty() -> "" // CWなし
sv.isBlank() -> parser.context.getString(R.string.blank_cw)
else -> sv
}
// ハイライト検出のためにDecodeOptionsを作り直す
options = DecodeOptions(
parser.context,
emojiMapCustom = custom_emojis,
emojiMapProfile = profile_emojis,
highlightTrie = parser.highlightTrie,
mentions = mentions
)
this.decoded_spoiler_text = options.decodeEmoji(spoiler_text)
if(this.highlightSound == null) this.highlightSound = options.highlightSound
if(this.highlightSpeech == null) this.highlightSpeech = options.highlightSpeech
if(this.highlightAny == null) this.highlightAny = options.highlightAny
2019-03-06 10:49:02 +01:00
this.enquete = try {
2020-01-08 04:23:45 +01:00
sv = src.string("enquete") ?: ""
2019-03-06 10:49:02 +01:00
if(sv.isNotEmpty()) {
2019-04-14 05:41:29 +02:00
TootPolls.parse(
2019-03-06 10:49:02 +01:00
parser,
this,
media_attachments,
sv.decodeJsonObject(),
2019-04-14 05:41:29 +02:00
TootPollsType.FriendsNico
2019-03-06 10:49:02 +01:00
)
} else {
2020-01-08 04:23:45 +01:00
val ov = src.jsonObject("poll")
2019-04-14 05:41:29 +02:00
TootPolls.parse(
2019-03-06 10:49:02 +01:00
parser,
this,
media_attachments,
ov,
2019-04-14 05:41:29 +02:00
TootPollsType.Mastodon
2019-03-06 10:49:02 +01:00
)
}
} catch(ex : Throwable) {
log.trace(ex)
null
}
// Pinned TL を取得した時にreblogが登場することはないので、reblogについてpinned 状態を気にする必要はない
2020-01-08 04:23:45 +01:00
this.reblog = parser.status(src.jsonObject("reblog"))
// 2.6.0からステータスにもカード情報が含まれる
2020-01-08 04:23:45 +01:00
this.card = parseItem(::TootCard, src.jsonObject("card"))
}
}
private fun mergeMentions(
mentions1 : java.util.ArrayList<TootMention>?,
mentions2 : java.util.ArrayList<TootMention>?
) : java.util.ArrayList<TootMention>? {
val size = (mentions1?.size ?: 0) + (mentions2?.size ?: 0)
if(size == 0) return null
val dst = ArrayList<TootMention>(size)
if(mentions1 != null) dst.addAll(mentions1)
if(mentions2 != null) dst.addAll(mentions2)
return dst
}
///////////////////////////////////////////////////
// ユーティリティ
val hostAccessOrOriginal : Host
get() = host_access?.valid() ?: host_original.valid() ?: Host.UNKNOWN
val busyKey : String
get() = "${hostAccessOrOriginal.ascii}:$id"
fun checkMuted() : Boolean {
// app mute
val muted_app = muted_app
if(muted_app != null) {
val name = application?.name
if(name != null && muted_app.contains(name)) return true
}
// word mute
val muted_word = muted_word
if(muted_word != null) {
if(muted_word.matchShort(decoded_content)) return true
if(muted_word.matchShort(decoded_spoiler_text)) return true
}
// reblog
return true == reblog?.checkMuted()
}
fun hasMedia() : Boolean {
return (media_attachments?.size ?: 0) > 0
}
fun canPin(access_info : SavedAccount) : Boolean {
return reblog == null
&& access_info.isMe(account)
2018-08-21 01:20:39 +02:00
&& visibility.canPin(access_info.isMisskey)
}
// 内部で使う
private var _filteredWord : String? = null
val filteredWord : String?
get() = _filteredWord ?: reblog?._filteredWord
2018-08-21 01:20:39 +02:00
val filtered : Boolean
get() = filteredWord != null
private fun hasReceipt(access_info : SavedAccount) : TootVisibility {
val fullAcctMe = access_info.getFullAcct(account)
val reply_account = reply?.account
if(reply_account != null && fullAcctMe != access_info.getFullAcct(reply_account)) {
return TootVisibility.DirectSpecified
}
val in_reply_to_account_id = this.in_reply_to_account_id
if(in_reply_to_account_id != null && in_reply_to_account_id != account.id) {
return TootVisibility.DirectSpecified
}
mentions?.forEach {
if(fullAcctMe != access_info.getFullAcct(it.acct))
return@hasReceipt TootVisibility.DirectSpecified
}
return TootVisibility.DirectPrivate
}
fun getBackgroundColorType(access_info : SavedAccount) =
when(visibility) {
TootVisibility.DirectPrivate,
TootVisibility.DirectSpecified -> hasReceipt(access_info)
else -> visibility
}
fun updateKeywordFilteredFlag(
accessInfo : SavedAccount,
trees : FilterTrees?,
checkIrreversible : Boolean = false
) {
trees ?: return
// status from me or boosted by me is not filtered.
if(accessInfo.isMe(account)) {
_filteredWord = null
return
}
_filteredWord =
isKeywordFilteredSub(if(checkIrreversible) trees.treeAll else trees.treeReversible)
?.joinToString(", ")
reblog?.updateKeywordFilteredFlag(accessInfo, trees, checkIrreversible)
}
fun isKeywordFiltered(accessInfo : SavedAccount, tree : WordTrieTree?) : Boolean {
tree ?: return false
// status from me or boosted by me is not filtered.
if(accessInfo.isMe(account)) return false
if(isKeywordFilteredSub(tree) != null) return true
if(reblog?.isKeywordFilteredSub(tree) != null) return true
return false
}
private fun isKeywordFilteredSub(tree : WordTrieTree) : ArrayList<String>? {
var list : ArrayList<String>? = null
fun check(t : CharSequence?) {
if(t?.isEmpty() != false) return
val matches = tree.matchList(t) ?: return
var dst = list
if(dst == null) {
dst = ArrayList()
list = dst
}
for(m in matches)
dst.add(m.word)
}
check(decoded_spoiler_text)
check(decoded_content)
return list
}
fun hasAnyContent() = when {
reblog == null -> true // reblog以外はオリジナルコンテンツがあると見なす
serviceType != ServiceType.MISSKEY -> false // misskey以外のreblogはコンテンツがないと見なす
content?.isNotEmpty() == true
|| spoiler_text.isNotEmpty()
|| media_attachments?.isNotEmpty() == true
|| enquete != null -> true
else -> false
}
// return true if updated
fun increaseReaction(reaction : String?, byMe : Boolean, caller : String) : Boolean {
reaction ?: return false
MisskeyReaction.shortcodeMap[reaction] ?: return false
synchronized(this) {
if(byMe) {
if(myReaction != null) {
// 自分でリアクションしたらUIで更新した後にストリーミングイベントが届くことがある
return false
}
myReaction = reaction
}
log.d("increaseReaction noteId=$id byMe=$byMe caller=$caller")
// カウントを増やす
var map = this.reactionCounts
if(map == null) {
map = LinkedHashMap()
this.reactionCounts = map
}
map[reaction] = (map[reaction] ?: 0) + 1
return true
}
}
fun decreaseReaction(reaction : String?, byMe : Boolean, caller : String) : Boolean {
reaction ?: return false
MisskeyReaction.shortcodeMap[reaction] ?: return false
synchronized(this) {
if(byMe) {
if(this.myReaction != reaction) {
// 自分でリアクションしたらUIで更新した後にストリーミングイベントが届くことがある
return false
}
myReaction = null
}
log.d("decreaseReaction noteId=$id byMe=$byMe caller=$caller")
// カウントを減らす
var map = this.reactionCounts
if(map == null) {
map = LinkedHashMap()
this.reactionCounts = map
}
map[reaction] = (map[reaction] ?: 1) - 1
return true
}
}
fun markDeleted(context : Context, deletedAt : Long?) : Boolean? {
2019-03-06 10:49:02 +01:00
if(Pref.bpDontRemoveDeletedToot(App1.getAppState(context).pref)) return false
var sv = if(deletedAt != null) {
context.getString(R.string.status_deleted_at, formatTime(context, deletedAt, false))
} else {
context.getString(R.string.status_deleted)
}
this.content = sv
this.decoded_content = SpannableString(sv)
sv = ""
this.spoiler_text = sv
this.decoded_spoiler_text = SpannableString(sv)
return true
}
class FindStatusIdFromUrlResult(
val statusId : EntityId?, // may null
hostArg:String,
val url : String
){
val host = Host.parse(hostArg)
}
companion object {
internal val log = LogCategory("TootStatus")
@Volatile
internal var muted_app : HashSet<String>? = null
@Volatile
internal var muted_word : WordTrieTree? = null
const val LANGUAGE_CODE_UNKNOWN = "unknown"
const val LANGUAGE_CODE_DEFAULT = "default"
2019-12-13 15:48:38 +01:00
val EMPTY_SPANNABLE = SpannableString("")
// OStatus
private val reTootUriOS = Pattern.compile(
2019-01-28 19:02:09 +01:00
"tag:([^,]*),[^:]*:objectId=([^:?#/\\s]+):objectType=Status",
Pattern.CASE_INSENSITIVE
)
// ActivityPub 1
private val reTootUriAP1 =
2019-01-28 19:02:09 +01:00
Pattern.compile("https?://([^/]+)/users/[A-Za-z0-9_]+/statuses/([^?#/\\s]+)")
// ActivityPub 2
2019-01-28 19:02:09 +01:00
private val reTootUriAP2 =
Pattern.compile("https?://([^/]+)/@[A-Za-z0-9_]+/([^?#/\\s]+)")
// 公開ステータスページのURL マストドン
private val reStatusPage =
2019-01-28 19:02:09 +01:00
Pattern.compile("""\Ahttps://([^/]+)/@([A-Za-z0-9_]+)/([^?#/\s]+)(?:\z|[?#])""")
// 公開ステータスページのURL Misskey
internal val reStatusPageMisskey = Pattern.compile(
"""\Ahttps://([^/]+)/notes/([0-9a-f]{24}|[0-9a-z]{10})\b""",
Pattern.CASE_INSENSITIVE
)
2019-03-06 10:49:02 +01:00
2019-01-28 19:02:09 +01:00
// PleromaのStatusのUri
private val reStatusPageObjects =
2019-01-28 19:02:09 +01:00
Pattern.compile("""\Ahttps://([^/]+)/objects/([^?#/\s]+)(?:\z|[?#])""")
// PleromaのStatusの公開ページ
private val reStatusPageNotice =
2019-01-28 19:02:09 +01:00
Pattern.compile("""\Ahttps://([^/]+)/notice/([^?#/\s]+)(?:\z|[?#])""")
// PixelfedのStatusの公開ページ
// https://pixelfed.tokyo/p/tateisu/84169185147621376
private val reStatusPagePixelfed =
Pattern.compile("""\Ahttps://([^/]+)/p/([A-Za-z0-9_]+)/([^?#/\s]+)(?:\z|[?#])""")
// returns null or pair( status_id, host ,url )
fun String.findStatusIdFromUrl() : FindStatusIdFromUrlResult? {
// https://mastodon.juggler.jp/@SubwayTooter/(status_id)
var m = reStatusPage.matcher(this)
if(m.find()) {
return FindStatusIdFromUrlResult(EntityId(m.groupEx(3) !!), m.groupEx(1) !!, this)
}
// https://misskey.xyz/notes/(id)
m = reStatusPageMisskey.matcher(this)
if(m.find()) {
return FindStatusIdFromUrlResult(EntityId(m.groupEx(2) !!), m.groupEx(1) !!, this)
}
// https://misskey.xyz/objects/(id)
m = reStatusPageObjects.matcher(this)
if(m.find()) {
return FindStatusIdFromUrlResult(
null, // ステータスIDではないのでどのタンスで開くにせよ検索APIを通すことになる
m.groupEx(1) !!,
this
)
}
// https://pl.telteltel.com/notice/9fGFPu4LAgbrTby0xc
m = reStatusPageNotice.matcher(this)
if(m.find()) {
return FindStatusIdFromUrlResult(
EntityId(m.groupEx(2) !!),
m.groupEx(1) !!,
this
)
}
m = reStatusPagePixelfed.matcher(this)
if(m.find()) {
return FindStatusIdFromUrlResult(
EntityId(m.groupEx(3) !!),
m.groupEx(1) !!,
this
)
}
return null
}
fun parseListTootsearch(
parser : TootParser,
root : JsonObject
) : ArrayList<TootStatus> {
parser.serviceType = ServiceType.TOOTSEARCH
val result = ArrayList<TootStatus>()
2018-01-12 10:01:25 +01:00
val array = TootApiClient.getTootsearchHits(root)
if(array != null) {
val array_size = array.size
result.ensureCapacity(array_size)
for(i in 0 until array.size) {
try {
2020-01-08 04:23:45 +01:00
val src = array.jsonObject(i)?.jsonObject("_source") ?: continue
result.add(TootStatus(parser, src))
} catch(ex : Throwable) {
log.trace(ex)
}
}
}
return result
}
private val tz_utc = TimeZone.getTimeZone("UTC")
private val reTime =
Pattern.compile("\\A(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)")
private val reMSPTime =
Pattern.compile("\\A(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)\\D+(\\d+)")
fun parseTime(strTime : String?) : Long {
if(strTime != null && strTime.isNotEmpty()) {
try {
val m = reTime.matcher(strTime)
if(! m.find()) {
log.d("invalid time format: %s", strTime)
} else {
val g = GregorianCalendar(tz_utc)
g.set(
2019-09-12 16:05:18 +02:00
m.groupEx(1).optInt() ?: 1,
(m.groupEx(2).optInt() ?: 1) - 1,
m.groupEx(3).optInt() ?: 1,
m.groupEx(4).optInt() ?: 0,
m.groupEx(5).optInt() ?: 0,
m.groupEx(6).optInt() ?: 0
)
2019-09-12 16:05:18 +02:00
g.set(Calendar.MILLISECOND, m.groupEx(7).optInt() ?: 0)
return g.timeInMillis
}
} catch(ex : Throwable) { // ParseException, ArrayIndexOutOfBoundsException
log.trace(ex)
log.e(ex, "TootStatus.parseTime failed. src=%s", strTime)
}
}
return 0L
}
private fun parseTimeMSP(strTime : String?) : Long {
if(strTime != null && strTime.isNotEmpty()) {
try {
val m = reMSPTime.matcher(strTime)
if(! m.find()) {
log.d("invalid time format: %s", strTime)
} else {
val g = GregorianCalendar(tz_utc)
g.set(
2019-09-12 16:05:18 +02:00
m.groupEx(1).optInt() ?: 1,
(m.groupEx(2).optInt() ?: 1) - 1,
m.groupEx(3).optInt() ?: 1,
m.groupEx(4).optInt() ?: 0,
m.groupEx(5).optInt() ?: 0,
m.groupEx(6).optInt() ?: 0
)
g.set(Calendar.MILLISECOND, 500)
return g.timeInMillis
}
} catch(ex : Throwable) { // ParseException, ArrayIndexOutOfBoundsException
log.trace(ex)
log.e(ex, "parseTimeMSP failed. src=%s", strTime)
}
}
return 0L
}
@SuppressLint("SimpleDateFormat")
internal val date_format = SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
@SuppressLint("SimpleDateFormat")
internal val date_format2 = SimpleDateFormat("yyyy-MM-dd")
fun formatTime(context : Context, t : Long, bAllowRelative : Boolean) : String {
if(bAllowRelative && Pref.bpRelativeTimestamp(App1.pref)) {
val now = System.currentTimeMillis()
var delta = now - t
@StringRes val phraseId = if(delta >= 0)
R.string.relative_time_phrase_past
else
R.string.relative_time_phrase_future
delta = abs(delta)
fun f(v : Long, unit1 : Int, units : Int) : String {
val vi = v.toInt()
return context.getString(
phraseId,
vi,
context.getString(if(vi <= 1) unit1 else units)
)
}
when {
delta < 1000L -> return context.getString(R.string.time_within_second)
delta < 60000L -> return f(
delta / 1000L,
R.string.relative_time_unit_second1,
R.string.relative_time_unit_seconds
)
delta < 3600000L -> return f(
delta / 60000L,
R.string.relative_time_unit_minute1,
R.string.relative_time_unit_minutes
)
delta < 86400000L -> return f(
delta / 3600000L,
R.string.relative_time_unit_hour1,
R.string.relative_time_unit_hours
)
delta < 40 * 86400000L -> return f(
delta / 86400000L,
R.string.relative_time_unit_day1,
R.string.relative_time_unit_days
)
else -> {
// fall back to absolute time
}
}
}
return formatDate(t,date_format,omitZeroSecond = false,omitYear = false)
}
// 告知の開始/終了日付
private fun formatDate(
t : Long,
format:SimpleDateFormat ,
omitZeroSecond:Boolean,
omitYear:Boolean
) : String {
var dateTarget = format.format(Date(t))
// 秒の部分を省略する
if( omitZeroSecond && dateTarget.endsWith(":00")){
dateTarget = dateTarget.substring(0,dateTarget.length -3)
}
// 年の部分が現在と同じなら省略する
if(omitYear) {
val dateNow = format.format(Date())
val delm = dateNow.indexOf('-')
if(delm != - 1 && dateNow.substring(0, delm + 1) == dateTarget.substring(
0,
delm + 1
)) {
dateTarget = dateTarget.substring(delm + 1)
}
}
return dateTarget
}
fun formatTimeRange(start : Long, end : Long, allDay : Boolean):Pair<String,String>{
val strStart = when {
start <= 0L -> ""
allDay-> formatDate(start,date_format2,omitZeroSecond = false,omitYear = true)
else -> formatDate(start, date_format,omitZeroSecond = true,omitYear = true)
}
val strEnd = when {
end <= 0L -> ""
allDay-> formatDate(end,date_format2,omitZeroSecond = false,omitYear = true)
else -> formatDate(end, date_format,omitZeroSecond = true,omitYear = true)
}
// 終了日は先頭と同じ部分を省略する
var skip = 0
for(i in 0 until min(strStart.length,strEnd.length)){
val c =strStart[i]
if(c != strEnd[i] ) break
if( c.isDigit() ) continue
skip= i+1
if( c == ' ') break // 時間以降は省略しない
}
return Pair( strStart,strEnd.substring(skip,strEnd.length))
}
fun parseStringArray(src : JsonArray?) : ArrayList<String>? {
var rv : ArrayList<String>? = null
2018-08-21 01:20:39 +02:00
if(src != null) {
for(i in src.indices) {
2020-01-08 04:23:45 +01:00
val s = src.string(i)
2018-08-21 01:20:39 +02:00
if(s?.isNotEmpty() == true) {
if(rv == null) rv = ArrayList()
rv.add(s)
}
}
}
return rv
}
private fun parseReactionCounts(src : JsonObject?) : LinkedHashMap<String, Int>? {
// カスタム絵文字などが含まれるようになったので、内容のバリデーションはできない
var rv : LinkedHashMap<String, Int>? = null
src?.entries?.forEach { entry ->
val key = entry.key.notEmpty() ?: return@forEach
2020-01-08 04:23:45 +01:00
val v = src.int(key)?.notZero() ?: return@forEach
if(rv == null) rv = LinkedHashMap()
rv!![key] = v
}
return rv
}
private fun parseMisskeyTags(src : JsonArray?) : ArrayList<TootTag>? {
var rv : ArrayList<TootTag>? = null
if(src != null) {
for(i in src.indices) {
2020-01-08 04:23:45 +01:00
val sv = src.string(i)
if(sv?.isNotEmpty() == true) {
if(rv == null) rv = ArrayList()
rv.add(TootTag(name = sv))
}
}
}
return rv
}
2019-01-28 19:02:09 +01:00
fun validStatusId(src : EntityId?) : EntityId? =
2019-03-06 10:49:02 +01:00
when {
2019-01-28 19:02:09 +01:00
src == null -> null
2019-01-29 02:56:24 +01:00
src == EntityId.DEFAULT -> null
2019-01-28 19:02:09 +01:00
src.toString().startsWith("-") -> null
else -> src
2018-08-25 10:05:50 +02:00
}
private fun String.cleanCW() =
CharacterGroup.reWhitespace.matcher(this).replaceAll(" ").sanitizeBDI()
/* 空欄かどうかがCW判定条件に影響するので、trimしてはいけない */
// 投稿元タンスでのステータスIDを調べる
fun findStatusIdFromUri(
uri : String?,
2019-01-28 19:02:09 +01:00
url : String?
) : EntityId? {
2018-01-11 10:31:25 +01:00
try {
2018-01-11 10:31:25 +01:00
if(uri?.isNotEmpty() == true) {
// https://friends.nico/users/(who)/statuses/(status_id)
var m = reTootUriAP1.matcher(uri)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-01-28 19:02:09 +01:00
// https://server/@user/(status_id)
m = reTootUriAP2.matcher(uri)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-01-28 19:02:09 +01:00
// https://misskey.xyz/notes/5b802367744b650030a13640
m = reStatusPageMisskey.matcher(uri)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-01-28 19:02:09 +01:00
// https://pl.at7s.me/objects/feeb4399-cd7a-48c8-8999-b58868daaf43
// tootsearch中の投稿からIDを読めるようにしたい
// しかしこのURL中のuuidはステータスIDではないので、無意味
// m = reObjects.matcher(uri)
2019-09-12 16:05:18 +02:00
// if(m.find()) return EntityId(m.groupEx(2))
2019-01-28 19:02:09 +01:00
// https://pl.telteltel.com/notice/9fGFPu4LAgbrTby0xc
m = reStatusPageNotice.matcher(uri)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-01-28 19:02:09 +01:00
// tag:mstdn.osaka,2017-12-19:objectId=5672321:objectType=Status
m = reTootUriOS.matcher(uri)
if(m.find()) return EntityId(m.groupEx(2) !!)
2018-08-25 10:05:50 +02:00
2019-09-22 07:54:46 +02:00
log.w("findStatusIdFromUri: unsupported uri. $uri")
}
2018-01-11 10:31:25 +01:00
if(url?.isNotEmpty() == true) {
// https://friends.nico/users/(who)/statuses/(status_id)
var m = reTootUriAP1.matcher(url)
if(m.find()) return EntityId(m.groupEx(2) !!)
2018-01-11 10:31:25 +01:00
// https://friends.nico/@(who)/(status_id)
m = reTootUriAP2.matcher(url)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-01-28 19:02:09 +01:00
// https://misskey.xyz/notes/5b802367744b650030a13640
m = reStatusPageMisskey.matcher(url)
if(m.find()) return EntityId(m.groupEx(2) !!)
2019-03-06 10:49:02 +01:00
2019-01-28 19:02:09 +01:00
// https://pl.at7s.me/objects/feeb4399-cd7a-48c8-8999-b58868daaf43
// tootsearch中の投稿からIDを読めるようにしたい
// しかしこのURL中のuuidはステータスIDではないので、無意味
// m = reObjects.matcher(url)
2019-09-12 16:05:18 +02:00
// if(m.find()) return EntityId(m.groupEx(2))
2019-01-28 19:02:09 +01:00
// https://pl.telteltel.com/notice/9fGFPu4LAgbrTby0xc
m = reStatusPageNotice.matcher(url)
if(m.find()) return EntityId(m.groupEx(2) !!)
2018-01-11 10:31:25 +01:00
2019-09-22 07:54:46 +02:00
log.w("findStatusIdFromUri: unsupported url. $url")
}
} catch(ex : Throwable) {
2018-08-28 15:53:30 +02:00
log.e(ex, "can't parse status from: $uri,$url")
}
return null
}
private val reLinkUrl = Pattern.compile("""(https?://[\w/:%#@${'$'}&?!()\[\]~.=+\-]+)""")
private val reMention = Pattern.compile(
"""(?<=^|[^/\w\p{Pc}])@((\w+([\w.-]+\w+)?)(?:@[a-z0-9.\-]+[a-z0-9]+)?)""",
Pattern.CASE_INSENSITIVE
)
private val strUrlReplacement = (0 until 23).map { ' ' }.joinToString()
fun countText(s : String) : Int {
return s
.replaceAll(reLinkUrl, strUrlReplacement)
.replaceAll(reMention, "@$2")
.codePointCount()
}
}
}