-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1e87a8
commit cb33869
Showing
11 changed files
with
5,023 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
|
||
# Ignore Gradle build output directory | ||
build | ||
|
||
# schema file | ||
/openapi/portone-v2-openapi.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.20" | ||
kotlin("plugin.serialization") version "2.0.20" | ||
} | ||
|
||
dependencies { | ||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1") | ||
implementation("com.squareup:kotlinpoet-jvm:1.18.1") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} |
32 changes: 32 additions & 0 deletions
32
buildSrc/src/main/kotlin/io/portone/openapi/GenerateSchemaCodeTask.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package io.portone.openapi | ||
|
||
import kotlinx.serialization.json.Json | ||
import kotlinx.serialization.json.jsonObject | ||
import org.gradle.api.DefaultTask | ||
import org.gradle.api.file.DirectoryProperty | ||
import org.gradle.api.file.RegularFileProperty | ||
import org.gradle.api.tasks.InputFile | ||
import org.gradle.api.tasks.OutputDirectory | ||
import org.gradle.api.tasks.TaskAction | ||
import java.nio.file.Files | ||
|
||
abstract class GenerateSchemaCodeTask : DefaultTask() { | ||
@get:InputFile | ||
abstract val inputFile: RegularFileProperty | ||
|
||
@get:OutputDirectory | ||
abstract val outputDirectory: DirectoryProperty | ||
|
||
@TaskAction | ||
fun generateSchemaCode() { | ||
val document = Json.parseToJsonElement(Files.readString(inputFile.get().asFile.toPath())).jsonObject | ||
SchemaGenerator(document, listOf( | ||
"/payments", | ||
"/payment-schedules", | ||
"/identity-verifications", | ||
"/billing-keys", | ||
"/cash-receipts", | ||
"/kakaopay", | ||
), outputDirectory.get().asFile.toPath()).generateFiles() | ||
} | ||
} |
Oops, something went wrong.