|
@@ -47,6 +47,7 @@ class BangumiApi(private val client: OkHttpClient, interceptor: BangumiIntercept
|
|
return withIOContext {
|
|
return withIOContext {
|
|
// read status update
|
|
// read status update
|
|
val sbody = FormBody.Builder()
|
|
val sbody = FormBody.Builder()
|
|
|
|
+ .add("rating", track.score.toInt().toString())
|
|
.add("status", track.toBangumiStatus())
|
|
.add("status", track.toBangumiStatus())
|
|
.build()
|
|
.build()
|
|
authClient.newCall(POST("$apiUrl/collection/${track.media_id}/update", body = sbody))
|
|
authClient.newCall(POST("$apiUrl/collection/${track.media_id}/update", body = sbody))
|
|
@@ -98,13 +99,18 @@ class BangumiApi(private val client: OkHttpClient, interceptor: BangumiIntercept
|
|
// Sometimes JsonNull
|
|
// Sometimes JsonNull
|
|
""
|
|
""
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ val totalChapters = if (obj["eps_count"] != null) {
|
|
|
|
+ obj["eps_count"]!!.jsonPrimitive.int
|
|
|
|
+ } else {
|
|
|
|
+ 0
|
|
|
|
+ }
|
|
return TrackSearch.create(TrackManager.BANGUMI).apply {
|
|
return TrackSearch.create(TrackManager.BANGUMI).apply {
|
|
media_id = obj["id"]!!.jsonPrimitive.int
|
|
media_id = obj["id"]!!.jsonPrimitive.int
|
|
title = obj["name_cn"]!!.jsonPrimitive.content
|
|
title = obj["name_cn"]!!.jsonPrimitive.content
|
|
cover_url = coverUrl
|
|
cover_url = coverUrl
|
|
summary = obj["name"]!!.jsonPrimitive.content
|
|
summary = obj["name"]!!.jsonPrimitive.content
|
|
tracking_url = obj["url"]!!.jsonPrimitive.content
|
|
tracking_url = obj["url"]!!.jsonPrimitive.content
|
|
|
|
+ total_chapters = totalChapters
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -127,14 +133,21 @@ class BangumiApi(private val client: OkHttpClient, interceptor: BangumiIntercept
|
|
.build()
|
|
.build()
|
|
|
|
|
|
// TODO: get user readed chapter here
|
|
// TODO: get user readed chapter here
|
|
- authClient.newCall(requestUserRead)
|
|
|
|
- .await()
|
|
|
|
- .parseAs<Collection>()
|
|
|
|
- .let {
|
|
|
|
|
|
+ var response = authClient.newCall(requestUserRead).await()
|
|
|
|
+ var responseBody = response.body?.string().orEmpty()
|
|
|
|
+ if (responseBody.isEmpty()) {
|
|
|
|
+ throw Exception("Null Response")
|
|
|
|
+ }
|
|
|
|
+ if (responseBody.contains("\"code\":400")) {
|
|
|
|
+ null
|
|
|
|
+ } else {
|
|
|
|
+ json.decodeFromString<Collection>(responseBody).let {
|
|
track.status = it.status?.id!!
|
|
track.status = it.status?.id!!
|
|
track.last_chapter_read = it.ep_status!!
|
|
track.last_chapter_read = it.ep_status!!
|
|
|
|
+ track.score = it.rating!!
|
|
track
|
|
track
|
|
}
|
|
}
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|