106 lines
3.7 KiB
Kotlin
106 lines
3.7 KiB
Kotlin
import org.openapitools.generator.gradle.plugin.tasks.GenerateTask
|
|
|
|
/*
|
|
* Ani
|
|
* Copyright (C) 2022-2024 Him188
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.serialization")
|
|
idea
|
|
`ani-mpp-lib-targets`
|
|
id("org.openapi.generator") version "7.6.0"
|
|
}
|
|
|
|
val generatedRoot = "generated/openapi"
|
|
|
|
kotlin {
|
|
sourceSets.commonMain.dependencies {
|
|
api(projects.datasource.datasourceApi)
|
|
api(libs.kotlinx.datetime)
|
|
api(libs.kotlinx.coroutines.core)
|
|
|
|
implementation(projects.utils.serialization)
|
|
implementation(libs.ktor.client.logging)
|
|
implementation(libs.ktor.client.content.negotiation)
|
|
implementation(libs.ktor.serialization.kotlinx.json)
|
|
}
|
|
sourceSets.commonMain {
|
|
kotlin.srcDirs(file("src/commonMain/gen"))
|
|
}
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
generatedSourceDirs.add(file("src/commonMain/gen"))
|
|
}
|
|
}
|
|
|
|
// https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator-gradle-plugin/README.adoc
|
|
val generateApi = tasks.register("generateApiV0", GenerateTask::class) {
|
|
generatorName.set("kotlin")
|
|
inputSpec.set("$projectDir/openapi.yaml")
|
|
outputDir.set(layout.buildDirectory.file(generatedRoot).get().asFile.absolutePath)
|
|
packageName.set("me.him188.ani.client")
|
|
modelNamePrefix.set("Ani")
|
|
apiNameSuffix.set("Ani")
|
|
removeOperationIdPrefix = true
|
|
// https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/kotlin.md
|
|
additionalProperties.set(
|
|
mapOf(
|
|
"apiSuffix" to "AniApi",
|
|
"library" to "multiplatform",
|
|
"dateLibrary" to "kotlinx-datetime",
|
|
// "serializationLibrary" to "kotlinx_serialization", // 加了这个他会生成两个 `@Serializable`
|
|
"enumPropertyNaming" to "UPPERCASE",
|
|
// "generateOneOfAnyOfWrappers" to "true",
|
|
"omitGradleWrapper" to "true",
|
|
),
|
|
)
|
|
generateModelTests.set(false)
|
|
generateApiTests.set(false)
|
|
generateApiDocumentation.set(false)
|
|
generateModelDocumentation.set(false)
|
|
|
|
// typeMappings.put("BangumiValue", "kotlinx.serialization.json.JsonElement")
|
|
// schemaMappings.put("WikiV0", "kotlinx.serialization.json.JsonElement") // works
|
|
// schemaMappings.put("Item", "kotlinx.serialization.json.JsonElement")
|
|
// schemaMappings.put("Value", "kotlinx.serialization.json.JsonElement")
|
|
// typeMappings.put(
|
|
// "kotlin.Double",
|
|
// "@Serializable(me.him188.ani.utils.serialization.BigNumAsDoubleStringSerializer::class) me.him188.ani.utils.serialization.BigNum",
|
|
// )
|
|
// typeMappings.put("BangumiEpisodeCollectionType", "/*- `0`: 未收藏 - `1`: 想看 - `2`: 看过 - `3`: 抛弃*/ Int")
|
|
}
|
|
|
|
val fixGeneratedOpenApi = tasks.register("fixGeneratedOpenApi") {
|
|
dependsOn(generateApi)
|
|
|
|
doLast {
|
|
}
|
|
}
|
|
|
|
val copyGeneratedToSrc = tasks.register("copyGeneratedToSrc", Copy::class) {
|
|
dependsOn(fixGeneratedOpenApi)
|
|
from(layout.buildDirectory.file("$generatedRoot/src/commonMain/kotlin"))
|
|
into("src/commonMain/gen")
|
|
}
|
|
|
|
tasks.register("generateOpenApi") {
|
|
dependsOn(copyGeneratedToSrc)
|
|
}
|