mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-31 14:25:28 +00:00
buildSrc: add removeIncompleteStrings step to Crowdin plugin
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
@@ -5,12 +5,14 @@
|
|||||||
|
|
||||||
import de.undercouch.gradle.tasks.download.Download
|
import de.undercouch.gradle.tasks.download.Download
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory
|
||||||
import org.gradle.api.GradleException
|
import org.gradle.api.GradleException
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.api.tasks.Copy
|
import org.gradle.api.tasks.Copy
|
||||||
import org.gradle.kotlin.dsl.create
|
import org.gradle.kotlin.dsl.create
|
||||||
import org.gradle.kotlin.dsl.register
|
import org.gradle.kotlin.dsl.register
|
||||||
|
import org.w3c.dom.Document
|
||||||
|
|
||||||
private const val EXCEPTION_MESSAGE =
|
private const val EXCEPTION_MESSAGE =
|
||||||
"""Applying `crowdin-plugin` requires a projectName to be configured via the "crowdin" extension."""
|
"""Applying `crowdin-plugin` requires a projectName to be configured via the "crowdin" extension."""
|
||||||
@@ -40,6 +42,30 @@ class CrowdinDownloadPlugin : Plugin<Project> {
|
|||||||
setDependsOn(setOf("extractCrowdin"))
|
setDependsOn(setOf("extractCrowdin"))
|
||||||
from("$buildDir/translations/")
|
from("$buildDir/translations/")
|
||||||
into("${projectDir}/src/")
|
into("${projectDir}/src/")
|
||||||
|
setFinalizedBy(setOf("removeIncompleteStrings"))
|
||||||
|
}
|
||||||
|
tasks.register("removeIncompleteStrings") {
|
||||||
|
doLast {
|
||||||
|
val sourceSets = arrayOf("main", "nonFree")
|
||||||
|
for (sourceSet in sourceSets) {
|
||||||
|
val stringFiles = File("${projectDir}/src/$sourceSet").walkTopDown().filter { it.name == "strings.xml" }
|
||||||
|
val sourceFile =
|
||||||
|
stringFiles.firstOrNull { it.path.endsWith("values/strings.xml") }
|
||||||
|
?: throw GradleException("No root strings.xml found in '$sourceSet' sourceSet")
|
||||||
|
val sourceDoc = parseDocument(sourceFile)
|
||||||
|
val baselineStringCount = countStrings(sourceDoc)
|
||||||
|
val threshold = 0.80 * baselineStringCount
|
||||||
|
stringFiles.forEach { file ->
|
||||||
|
if (file != sourceFile) {
|
||||||
|
val doc = parseDocument(file)
|
||||||
|
val stringCount = countStrings(doc)
|
||||||
|
if (stringCount < threshold) {
|
||||||
|
file.delete()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tasks.register("crowdin") {
|
tasks.register("crowdin") {
|
||||||
setDependsOn(setOf("extractStrings"))
|
setDependsOn(setOf("extractStrings"))
|
||||||
@@ -54,4 +80,17 @@ class CrowdinDownloadPlugin : Plugin<Project> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun parseDocument(file: File): Document {
|
||||||
|
val dbFactory = DocumentBuilderFactory.newInstance()
|
||||||
|
val documentBuilder = dbFactory.newDocumentBuilder()
|
||||||
|
return documentBuilder.parse(file)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun countStrings(document: Document): Int {
|
||||||
|
// Normalization is beneficial for us
|
||||||
|
// https://stackoverflow.com/questions/13786607/normalization-in-dom-parsing-with-java-how-does-it-work
|
||||||
|
document.documentElement.normalize()
|
||||||
|
return document.getElementsByTagName("string").length
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user