blob: af32975fcd24147da99656f702dec9cbbd1f9393 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
import de.undercouch.gradle.tasks.download.Download
import java.io.File
import org.gradle.api.GradleException
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.tasks.Copy
import org.gradle.kotlin.dsl.create
import org.gradle.kotlin.dsl.register
class CrowdinDownloadPlugin : Plugin<Project> {
override fun apply(project: Project) {
with(project) {
val extension = extensions.create<CrowdinExtension>("crowdin")
afterEvaluate {
val projectName = extension.projectName
if (projectName.isEmpty()) {
throw GradleException(
"""
Applying `crowdin-plugin` requires a projectName to be configured via the "crowdin" extension.
""".trimIndent()
)
}
tasks.register<Download>("downloadCrowdin") {
src("https://crowdin.com/backend/download/project/$projectName.zip")
dest("$buildDir/translations.zip")
overwrite(true)
}
tasks.register<Copy>("extractCrowdin") {
setDependsOn(setOf("downloadCrowdin"))
doFirst {
File(buildDir, "translations").deleteRecursively()
}
from(zipTree("$buildDir/translations.zip"))
into("$buildDir/translations")
}
tasks.register<Copy>("extractBaseStrings") {
setDependsOn(setOf("extractCrowdin"))
from("$buildDir/translations/${project.name}/src/main/res")
into("${projectDir}/src/main/res")
}
tasks.register<Copy>("extractNonFreeStrings") {
setDependsOn(setOf("extractCrowdin"))
from("$buildDir/translations/") {
exclude("app/")
}
into("$buildDir/nonFree-translations")
doLast {
File("$buildDir/nonFree-translations")
.listFiles { file: File -> file.isDirectory }?.forEach { file ->
val dest = File("${projectDir}/src/nonFree/values-${file.name}")
val src = File(file, "app/src/nonFree/res/values/strings.xml")
dest.mkdirs()
src.renameTo(File(dest, "strings.xml"))
}
}
}
tasks.register("crowdin") {
setDependsOn(setOf("extractBaseStrings", "extractNonFreeStrings"))
if (!extension.skipCleanup) {
doLast {
File("$buildDir/translations").deleteRecursively()
File("$buildDir/nonFree-translations").deleteRecursively()
File("$buildDir/translations.zip").delete()
}
}
}
}
}
}
}
|