-
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.
* docs: README * feat: add schema generator * feat: edit roadmap * fix: ci * fix: dokka * docs: add javadoc badge * docs: remove sourcelink * feat: make PortOneApi properties private * style: unused import
- Loading branch information
1 parent
d33a30c
commit e27e0d8
Showing
327 changed files
with
67,988 additions
and
28 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 |
---|---|---|
|
@@ -11,6 +11,18 @@ jobs: | |
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install git-filter-repo | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: git-filter-repo | ||
version: "1.0" | ||
|
||
- name: Set github username | ||
run: | | ||
git config --global user.name runner | ||
git config --global user.email "[email protected]" | ||
git config --global init.defaultBranch main | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
|
||
|
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
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
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,14 @@ | ||
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() | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
buildSrc/src/main/kotlin/io/portone/openapi/GenerateVersionCodeTask.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,28 @@ | ||
package io.portone.openapi | ||
|
||
import com.squareup.kotlinpoet.FileSpec | ||
import com.squareup.kotlinpoet.KModifier | ||
import com.squareup.kotlinpoet.PropertySpec | ||
import org.gradle.api.DefaultTask | ||
import org.gradle.api.file.DirectoryProperty | ||
import org.gradle.api.provider.Property | ||
import org.gradle.api.tasks.Input | ||
import org.gradle.api.tasks.OutputDirectory | ||
import org.gradle.api.tasks.TaskAction | ||
|
||
abstract class GenerateVersionCodeTask : DefaultTask() { | ||
@get:Input | ||
abstract val version: Property<String> | ||
|
||
@get:OutputDirectory | ||
abstract val outputDirectory: DirectoryProperty | ||
|
||
@TaskAction | ||
fun generateVersionCode() { | ||
val outputDirectory = this.outputDirectory.get().asFile.toPath() | ||
|
||
FileSpec.builder("io.portone.sdk.server", "Version") | ||
.addProperty(PropertySpec.builder("SDK_VERSION", String::class, KModifier.CONST, KModifier.INTERNAL).initializer("%S", version.get()).build()) | ||
.build().writeTo(outputDirectory) | ||
} | ||
} |
90 changes: 90 additions & 0 deletions
90
buildSrc/src/main/kotlin/io/portone/openapi/PatchCodeTask.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,90 @@ | ||
package io.portone.openapi | ||
|
||
import org.gradle.api.DefaultTask | ||
import org.gradle.api.file.DirectoryProperty | ||
import org.gradle.api.tasks.InputDirectory | ||
import org.gradle.api.tasks.OutputDirectory | ||
import org.gradle.api.tasks.TaskAction | ||
import java.io.ByteArrayOutputStream | ||
import java.nio.file.Files | ||
import kotlin.io.path.listDirectoryEntries | ||
import kotlin.io.path.relativeTo | ||
|
||
abstract class PatchCodeTask : DefaultTask() { | ||
@get:InputDirectory | ||
abstract val originDirectory: DirectoryProperty | ||
|
||
@get:InputDirectory | ||
abstract val patchesDirectory: DirectoryProperty | ||
|
||
@get:OutputDirectory | ||
abstract val outputDirectory: DirectoryProperty | ||
|
||
companion object { | ||
private const val TAG_NAME = "patch-base" | ||
} | ||
|
||
@TaskAction | ||
fun patchCode() { | ||
val originDirectory = this.originDirectory.get().asFile.toPath() | ||
val patchesDirectory = this.patchesDirectory.get().asFile.toPath() | ||
val outputDirectory = this.outputDirectory.get().asFile.toPath() | ||
|
||
Files.createDirectories(outputDirectory) | ||
|
||
project.exec { | ||
it.workingDir = outputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("init") | ||
it.isIgnoreExitValue = true | ||
} | ||
|
||
project.exec { | ||
it.workingDir = outputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("config", "commit.gpgSign", "false") | ||
} | ||
|
||
project.exec { | ||
it.workingDir = project.rootProject.projectDir | ||
it.executable = "git" | ||
it.args = listOf("tag", TAG_NAME) | ||
} | ||
|
||
project.exec { | ||
it.workingDir = project.rootProject.projectDir | ||
it.executable = "git" | ||
// use joinToString("/") because git filter-repo doesn't support '\' (windows path separator) in filter | ||
it.args = listOf("filter-repo", "--force", "--subdirectory-filter", originDirectory.relativeTo(project.rootProject.projectDir.toPath()).joinToString("/"), "--target", outputDirectory.toString()) | ||
} | ||
|
||
project.exec { | ||
it.workingDir = project.rootProject.projectDir | ||
it.executable = "git" | ||
it.args = listOf("tag", "-d", TAG_NAME) | ||
} | ||
|
||
project.exec { | ||
it.workingDir = outputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("checkout", TAG_NAME) | ||
} | ||
|
||
project.exec { | ||
it.workingDir = outputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("am", "--abort") | ||
it.standardOutput = ByteArrayOutputStream() | ||
it.errorOutput = ByteArrayOutputStream() | ||
it.isIgnoreExitValue = true | ||
} | ||
|
||
val patchFiles = patchesDirectory.listDirectoryEntries("*.patch").sorted() | ||
|
||
project.exec { | ||
it.workingDir = outputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("am", "--3way", *patchFiles.map { it.toString() }.toTypedArray()) | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
buildSrc/src/main/kotlin/io/portone/openapi/SavePatchTask.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,36 @@ | ||
package io.portone.openapi | ||
|
||
import org.gradle.api.DefaultTask | ||
import org.gradle.api.file.DirectoryProperty | ||
import org.gradle.api.tasks.InputDirectory | ||
import org.gradle.api.tasks.OutputDirectory | ||
import org.gradle.api.tasks.TaskAction | ||
import java.nio.file.Files | ||
|
||
abstract class SavePatchTask : DefaultTask() { | ||
@get:InputDirectory | ||
abstract val inputDirectory: DirectoryProperty | ||
|
||
@get:OutputDirectory | ||
abstract val outputDirectory: DirectoryProperty | ||
|
||
|
||
companion object { | ||
private const val TAG_NAME = "patch-base" | ||
} | ||
|
||
@TaskAction | ||
fun patchCode() { | ||
val inputDirectory = this.inputDirectory.get().asFile.toPath() | ||
val outputDirectory = this.outputDirectory.get().asFile.toPath() | ||
|
||
Files.createDirectories(outputDirectory) | ||
|
||
project.exec { | ||
it.workingDir = inputDirectory.toFile() | ||
it.executable = "git" | ||
it.args = listOf("format-patch", "--zero-commit", "--no-stat", "--minimal", "-N", "-o", outputDirectory.toString(), TAG_NAME) | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.