fix: 正常に絵文字が出力されない問題を修正
This commit is contained in:
parent
434560ecd4
commit
7d1063b0c3
|
@ -2,10 +2,16 @@ import io.ktor.client.*
|
||||||
import io.ktor.client.engine.cio.*
|
import io.ktor.client.engine.cio.*
|
||||||
import io.ktor.client.request.*
|
import io.ktor.client.request.*
|
||||||
import io.ktor.client.statement.*
|
import io.ktor.client.statement.*
|
||||||
|
import io.ktor.http.*
|
||||||
import kotlinx.coroutines.runBlocking
|
import kotlinx.coroutines.runBlocking
|
||||||
import org.gradle.api.Action
|
import org.gradle.api.Action
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
|
import java.net.URI
|
||||||
|
import java.net.http.HttpClient
|
||||||
|
import java.net.http.HttpRequest
|
||||||
|
import java.net.http.HttpResponse
|
||||||
|
import java.time.Duration
|
||||||
|
|
||||||
class EmojiPlugin : Plugin<Project> {
|
class EmojiPlugin : Plugin<Project> {
|
||||||
override fun apply(project: Project) {
|
override fun apply(project: Project) {
|
||||||
|
@ -13,10 +19,25 @@ class EmojiPlugin : Plugin<Project> {
|
||||||
.doLast(Action {
|
.doLast(Action {
|
||||||
runBlocking {
|
runBlocking {
|
||||||
|
|
||||||
val httpClient = HttpClient(CIO)
|
|
||||||
val bodyAsText =
|
val httpClient = HttpClient.newBuilder()
|
||||||
httpClient.get("https://unicode.org/Public/emoji/15.0/emoji-test.txt")
|
.version(HttpClient.Version.HTTP_1_1)
|
||||||
.bodyAsText()
|
.followRedirects(HttpClient.Redirect.NORMAL)
|
||||||
|
.connectTimeout(Duration.ofSeconds(10))
|
||||||
|
.build()
|
||||||
|
|
||||||
|
val req = HttpRequest
|
||||||
|
.newBuilder(URI.create("https://unicode.org/Public/emoji/15.1/emoji-test.txt"))
|
||||||
|
.GET()
|
||||||
|
.setHeader(
|
||||||
|
"User-Agent",
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.3"
|
||||||
|
)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
|
||||||
|
val bodyAsText = httpClient.send(req, HttpResponse.BodyHandlers.ofString()).body()
|
||||||
|
|
||||||
println(project.buildDir.path)
|
println(project.buildDir.path)
|
||||||
// println(bodyAsText)
|
// println(bodyAsText)
|
||||||
|
|
||||||
|
@ -58,7 +79,6 @@ class EmojiPlugin : Plugin<Project> {
|
||||||
else -> {
|
else -> {
|
||||||
val description = s.substringAfterLast("E").substringAfter(" ")
|
val description = s.substringAfterLast("E").substringAfter(" ")
|
||||||
val status = s.substringAfter(";").substringBefore("#").trim()
|
val status = s.substringAfter(";").substringBefore("#").trim()
|
||||||
if (true) {
|
|
||||||
|
|
||||||
val code =
|
val code =
|
||||||
s.substringBefore(";").replace(Regex(" +"), " ").trim()
|
s.substringBefore(";").replace(Regex(" +"), " ").trim()
|
||||||
|
@ -75,7 +95,7 @@ class EmojiPlugin : Plugin<Project> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enumList.put(
|
enumList.putIfAbsent(
|
||||||
description,
|
description,
|
||||||
Emoji(
|
Emoji(
|
||||||
group + groupCount,
|
group + groupCount,
|
||||||
|
@ -124,7 +144,6 @@ class EmojiPlugin : Plugin<Project> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
val emojis = mutableMapOf<String, MutableList<Emoji>>()
|
val emojis = mutableMapOf<String, MutableList<Emoji>>()
|
||||||
enumList.values.forEach {
|
enumList.values.forEach {
|
||||||
emojis.getOrPut(
|
emojis.getOrPut(
|
||||||
|
|
Loading…
Reference in New Issue