2022-09-03 11:54:56 +03:00
|
|
|
import space.kscience.gradle.KScienceVersions
|
2022-06-30 20:51:57 +03:00
|
|
|
import space.kscience.snark.plugin.JSch
|
|
|
|
import space.kscience.snark.plugin.execute
|
|
|
|
import space.kscience.snark.plugin.uploadDirectory
|
|
|
|
import space.kscience.snark.plugin.useSession
|
2022-04-23 10:48:53 +03:00
|
|
|
|
|
|
|
plugins {
|
2022-09-03 11:54:56 +03:00
|
|
|
id("space.kscience.gradle.project")
|
|
|
|
id("space.kscience.gradle.jvm")
|
2022-06-30 20:51:57 +03:00
|
|
|
id("space.kscience.snark")
|
2022-04-30 10:32:00 +03:00
|
|
|
application
|
|
|
|
}
|
|
|
|
|
2022-04-23 10:48:53 +03:00
|
|
|
group = "ru.mipt.npm"
|
2022-06-26 13:14:57 +03:00
|
|
|
version = "0.1.0"
|
2022-04-23 10:48:53 +03:00
|
|
|
|
|
|
|
application {
|
2022-05-14 11:08:28 +03:00
|
|
|
mainClass.set("io.ktor.server.netty.EngineMain")
|
2022-04-23 10:48:53 +03:00
|
|
|
|
|
|
|
val isDevelopment: Boolean = project.ext.has("development")
|
2022-05-03 13:33:43 +03:00
|
|
|
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment", "-Xmx200M")
|
2022-04-23 10:48:53 +03:00
|
|
|
}
|
|
|
|
|
2022-07-03 16:39:38 +03:00
|
|
|
val snarkVersion: String by extra
|
2022-05-06 15:54:59 +03:00
|
|
|
val ktorVersion = KScienceVersions.ktorVersion
|
2022-04-30 10:32:00 +03:00
|
|
|
|
2022-04-23 10:48:53 +03:00
|
|
|
dependencies {
|
2022-06-30 20:51:57 +03:00
|
|
|
implementation("space.kscience:snark-ktor:$snarkVersion")
|
|
|
|
|
2022-04-30 10:32:00 +03:00
|
|
|
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
2022-06-23 11:02:26 +03:00
|
|
|
implementation("io.ktor:ktor-server-http-redirect:$ktorVersion")
|
2022-07-03 16:28:53 +03:00
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
2022-04-23 10:59:05 +03:00
|
|
|
|
2022-04-30 10:32:00 +03:00
|
|
|
testImplementation("io.ktor:ktor-server-tests:$ktorVersion")
|
2022-04-23 10:48:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
explicitApi = org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode.Disabled
|
2022-05-21 13:38:15 +03:00
|
|
|
}
|
|
|
|
|
2022-06-30 20:51:57 +03:00
|
|
|
apiValidation{
|
|
|
|
validationDisabled = true
|
|
|
|
}
|
|
|
|
|
2022-06-19 14:18:44 +03:00
|
|
|
/* Upload with JSch */
|
|
|
|
|
2022-06-19 19:36:48 +03:00
|
|
|
val host = System.getenv("SPC_HOST")
|
|
|
|
val user = System.getenv("SPC_USER")
|
2022-06-20 11:55:18 +03:00
|
|
|
val identityString = System.getenv("SPC_ID")
|
|
|
|
val serviceName = "sciprog-site"
|
2022-06-19 14:18:44 +03:00
|
|
|
|
2022-06-20 11:55:18 +03:00
|
|
|
if (host != null && user != null || identityString != null) {
|
2022-06-19 14:18:44 +03:00
|
|
|
val uploadDistribution by tasks.creating {
|
|
|
|
group = "distribution"
|
|
|
|
dependsOn("installDist")
|
|
|
|
doLast {
|
2022-06-20 11:55:18 +03:00
|
|
|
JSch {
|
|
|
|
addIdentity("spc-webmaster", identityString.encodeToByteArray(), null, null)
|
|
|
|
}.useSession(host, user) {
|
|
|
|
//stopping service during the upload
|
|
|
|
execute("sudo systemctl stop $serviceName")
|
|
|
|
uploadDirectory(buildDir.resolve("install/spc-site"), "/opt")
|
|
|
|
//adding executable flag to the entry point
|
|
|
|
execute("sudo chmod +x /opt/spc-site/bin/spc-site")
|
|
|
|
execute("sudo systemctl start $serviceName")
|
2022-06-19 14:18:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val reloadDistribution by tasks.creating {
|
|
|
|
group = "distribution"
|
|
|
|
doLast {
|
2022-06-20 11:55:18 +03:00
|
|
|
JSch {
|
|
|
|
addIdentity("spc-webmaster", identityString.encodeToByteArray(), null, null)
|
|
|
|
}.useSession(host, user) {
|
|
|
|
execute("sudo systemctl restart $serviceName")
|
2022-06-19 14:18:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-19 19:36:48 +03:00
|
|
|
|
2022-06-20 11:55:18 +03:00
|
|
|
} else {
|
2022-06-20 11:05:13 +03:00
|
|
|
logger.error("Host, user or ID are not defined. Skipping deployment tasks.")
|
2022-06-19 14:18:44 +03:00
|
|
|
}
|