SpotiFlyer/maintenance-tasks/src/main/java/main.kt

47 lines
1.4 KiB
Kotlin
Raw Normal View History

2021-06-05 20:43:55 +02:00
import common.GithubService
import common.Secrets
import kotlinx.coroutines.runBlocking
import scripts.updateAnalyticsImage
import scripts.updateDownloadCards
2021-05-18 16:57:33 +02:00
import utils.debug
fun main(args: Array<String>) {
debug("fun main: args -> ${args.joinToString(";")}")
2021-06-05 20:43:55 +02:00
val secrets = Secrets.initSecrets()
2021-05-18 16:57:33 +02:00
2021-06-05 20:43:55 +02:00
runBlocking {
val githubFileContent = GithubService.getGithubFileContent(
secrets = secrets,
fileName = "README.md"
)
// Content To be Processed
var updatedGithubContent: String = githubFileContent.decryptedContent
// TASK -> Update Analytics Image in Readme
updatedGithubContent = updateAnalyticsImage(
updatedGithubContent,
secrets
)
// TASK -> Update Total Downloads Card
updatedGithubContent = updateDownloadCards(
updatedGithubContent,
secrets.copy(tagName = "DCI")
)
// Write New Updated README.md
GithubService.updateGithubFileContent(
token = secrets.githubToken,
ownerName = secrets.ownerName,
repoName = secrets.repoName,
branchName = secrets.branchName,
fileName = secrets.filePath,
commitMessage = secrets.commitMessage,
rawContent = updatedGithubContent,
sha = githubFileContent.sha
)
}
2021-05-18 16:57:33 +02:00
}