Another attempt on deploy

This commit is contained in:
Alexander Nozik 2022-06-19 14:18:44 +03:00
parent a5121b8637
commit 696ca38efe
No known key found for this signature in database
GPG Key ID: F7FCF2DD25C71357
7 changed files with 181 additions and 36 deletions

View File

@ -1,29 +1,15 @@
import circlet.pipelines.script.put
job("Deploy") {
startOn {
gitPush { enabled = false }
}
container(image = "openjdk:11") {
container(image = "mipt-npm.registry.jetbrains.space/p/mipt-npm/containers/kotlin-ci:1.0.2") {
env["SPC_HOST"] = Params("spc-host")
env["SPC_USER"] = Secrets("spc-webmaster.key-user")
env["SPC_ID"] = Secrets("spc-webmaster.key-id")
kotlinScript { api ->
api.gradlew("installDist")
api.fileShare().put(java.io.File("build/install"))
}
}
container(image = "openjdk:11") {
env["HOST"] = Params("spc-host")
env["USER"] = Secrets("spc-webmaster-user")
env["ID"] = Secrets("spc-webmaster-id")
shellScript {
interpreter = "/bin/bash"
content = """
echo ${'$'}ID > id.key
chmod 400 id.key
scp -r -i id.key /mnt/space/share/spc-site/ "${'$'}USER@${'$'}HOST:/opt"
""".trimIndent()
api.gradlew("uploadDistribution")
api.gradlew("reloadDistribution")
}
}
}
@ -33,19 +19,12 @@ job("Restart service"){
gitPush { enabled = false }
}
container(image = "openjdk:11") {
env["HOST"] = Params("spc-host")
env["USER"] = Secrets("spc-webmaster-user")
env["ID"] = Secrets("spc-webmaster-id")
shellScript {
interpreter = "/bin/bash"
content = """
echo ${'$'}ID > id_ed25519
chmod 400 id_ed25519
echo "$(cat id_ed25519)"
ssh -i id_ed25519 -o StrictHostKeyChecking=no -o HostKeyAlgorithms=ssh-ed25519 -t "${'$'}USER@${'$'}HOST" "systemctl restart sciprog-site"
""".trimIndent()
container(image = "mipt-npm.registry.jetbrains.space/p/mipt-npm/containers/kotlin-ci:1.0.2") {
env["SPC_HOST"] = Params("spc-host")
env["SPC_USER"] = Secrets("spc-webmaster.key-user")
env["SPC_ID"] = Secrets("spc-webmaster.key-id")
kotlinScript { api ->
api.gradlew("reloadDistribution")
}
}
}

View File

@ -68,6 +68,32 @@ val writeBuildDate: Task by tasks.creating {
outputs.upToDateWhen { false }
}
//write build time in build to check outdated external data directory
tasks.getByName("processResources").dependsOn(writeBuildDate)
/* Upload with JSch */
val host = System.getProperty("SPC_HOST")
val user = System.getProperty("SPC_USER")
val identity = System.getProperty("SPC_ID")
if (host != null && user != null && identity != null) {
val uploadDistribution by tasks.creating {
group = "distribution"
dependsOn("installDist")
doLast {
sshUploadDirectory(buildDir.resolve("install"), host, user, "/opt") {
addIdentity("spc-webmaster.key", identity.encodeToByteArray(), null, null)
}
}
}
val reloadDistribution by tasks.creating {
group = "distribution"
doLast {
sshExecute(host, user, "sudo systemctl restart sciprog-site") {
addIdentity("spc-webmaster", identity.encodeToByteArray(), null, null)
}
}
}
}

12
buildSrc/build.gradle.kts Normal file
View File

@ -0,0 +1,12 @@
plugins{
`kotlin-dsl`
}
repositories{
mavenCentral()
gradlePluginPortal()
}
dependencies{
implementation("com.github.mwiede:jsch:0.2.1")
}

View File

@ -0,0 +1,7 @@
dependencyResolutionManagement {
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
gradlePluginPortal()
}
}

View File

@ -0,0 +1,42 @@
import com.jcraft.jsch.ChannelExec
import com.jcraft.jsch.JSch
import com.jcraft.jsch.Session
import java.util.*
fun JSch.execute(
host: String,
user: String,
command: String,
port: Int = 22,
): String {
var session: Session? = null
var channel: ChannelExec? = null
try {
session = getSession(user, host, port)
val config = Properties()
config["StrictHostKeyChecking"] = "no"
session.setConfig(config)
session.connect()
channel = session.openChannel("exec") as ChannelExec
channel.setCommand(command)
channel.inputStream = null
channel.setErrStream(System.err)
val input = channel.inputStream
channel.connect()
return input.use { it.readAllBytes().decodeToString() }
} finally {
channel?.disconnect()
session?.disconnect()
}
}
fun sshExecute(
host: String,
user: String,
command: String,
port: Int = 22,
shellConfig: JSch.() -> Unit,
): String = JSch().apply(shellConfig).execute(host, user, command, port)

View File

@ -0,0 +1,80 @@
import com.jcraft.jsch.ChannelSftp
import com.jcraft.jsch.JSch
import com.jcraft.jsch.Session
import com.jcraft.jsch.SftpATTRS
import java.io.File
import java.io.FileInputStream
import java.util.*
/**
* https://kodehelp.com/java-program-uploading-folder-content-recursively-from-local-to-sftp-server/
*/
private fun ChannelSftp.recursiveFolderUpload(sourceFile: File, destinationPath: String) {
if (sourceFile.isFile) {
// copy if it is a file
cd(destinationPath)
if (!sourceFile.name.startsWith(".")) put(
FileInputStream(sourceFile),
sourceFile.getName(),
ChannelSftp.OVERWRITE
)
} else {
val files = sourceFile.listFiles()
if (files != null && !sourceFile.getName().startsWith(".")) {
cd(destinationPath)
var attrs: SftpATTRS? = null
// check if the directory is already existing
try {
attrs = stat(destinationPath + "/" + sourceFile.getName())
} catch (e: Exception) {
println(destinationPath + "/" + sourceFile.getName() + " not found")
}
// else create a directory
if (attrs != null) {
println("Directory exists IsDir=" + attrs.isDir())
} else {
println("Creating dir " + sourceFile.getName())
mkdir(sourceFile.getName())
}
for (f in files) {
recursiveFolderUpload(f, destinationPath + "/" + sourceFile.getName())
}
}
}
}
fun JSch.uploadDirectory(
file: File,
host: String,
user: String,
targetDirectory: String,
port: Int = 22,
) {
var session: Session? = null
var channel: ChannelSftp? = null
try {
session = getSession(user, host, port)
val config = Properties()
config["StrictHostKeyChecking"] = "no"
session.setConfig(config)
session.connect() // Create SFTP Session
channel = session.openChannel("sftp") as ChannelSftp // Open SFTP Channel
channel.connect()
channel.cd(targetDirectory) // Change Directory on SFTP Server
channel.recursiveFolderUpload(file, targetDirectory)
} finally {
channel?.disconnect()
session?.disconnect()
}
}
fun sshUploadDirectory(
file: File,
host: String,
user: String,
targetDirectory: String,
port: Int = 22,
shellConfig: JSch.() -> Unit,
) = JSch().apply(shellConfig).uploadDirectory(file, host, user, targetDirectory, port)

View File

@ -300,7 +300,6 @@ context(PageContext) private fun HTML.spcHome() {
}
internal fun Application.spcHome(context: Context, rootPath: Path, prefix: String = "") {
val snark = context.fetch(SnarkPlugin)