Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download and generate Spdx licenses #316

Open
wants to merge 4 commits into
base: trunk
Choose a base branch
from

Conversation

hfhbd
Copy link
Contributor

@hfhbd hfhbd commented Mar 29, 2024

No description provided.

Copy link
Member

@JakeWharton JakeWharton left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have not reviewed the whole thing

abstract val generatedSpdx: DirectoryProperty

init {
inputJson.convention(project.resources.text.fromUri("https://spdx.org/licenses/licenses.json").asString())
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whaaaaaaat is going on here. Gradle has an entire HTTP client hidden in a property factory?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I actually want to revert to continuing the embed the JSON, except we can embed it into the build-logic for this task to use. I'm generally wary of depending on the internet and would prefer updates be explicit rather than it magically getting new values based on whenever you build.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whaaaaaaat is going on here. Gradle has an entire HTTP client hidden in a property factory?

Yup, since 2.2.

I think I actually want to revert to continuing the embed the JSON

So we download the json (manually/ automatically) using Gradle but keep the generator to generate Kotlin code from the Json to have typed Spdx Ids? Sounds okay for me too.

Yeah, and it can't fail a release due connections problems/new entries.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right. And that's basically the goal. We don't want it to change out from underneath us. Also means old builds are reproducible, although not sure why that would ever be needed.

src/test/kotlin/app/cash/licensee/SpdxLicensesTest.kt Outdated Show resolved Hide resolved
@JakeWharton
Copy link
Member

JakeWharton commented Mar 30, 2024

Is sorting needed? I filed a bug upstream a few years ago for them to do stable sorting. The last JSON update for 0.11 seemed to indicate they now sort.

@hfhbd
Copy link
Contributor Author

hfhbd commented Mar 31, 2024

I don't know because I can only get the latest json but let's remove it and see it next update, and add it if needed.

@@ -15,7 +15,7 @@
*/
package app.cash.licensee

internal val fallbackUrls = buildMap {
internal val defaultFallbackUrls: FallbackBuilder.() -> Unit = {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
internal val defaultFallbackUrls: FallbackBuilder.() -> Unit = {
@Suppress("HttpUrlsUsage")
internal val defaultFallbackUrls: FallbackBuilder.() -> Unit = {

Comment on lines +60 to +64
val fileSpec = FileSpec.builder("app.cash.licensee", "licensesSpdx")

fileSpec.addType(addSpdxIdInterface())

return fileSpec.build()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
val fileSpec = FileSpec.builder("app.cash.licensee", "licensesSpdx")
fileSpec.addType(addSpdxIdInterface())
return fileSpec.build()
return FileSpec.builder("app.cash.licensee", "licensesSpdx")
.addType(addSpdxIdInterface())
.build()

* See the License for the specific language governing permissions and
* limitations under the License.
*/
package app.cash.licensee
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
package app.cash.licensee
@file:Suppress("HttpUrlsUsage")
package app.cash.licensee

build.gradle Outdated
Comment on lines 110 to 114
RegularFile jsonFile = layout.projectDirectory.file("src/main/resources/app/cash/licensee/licenses.json")

tasks.register("downloadLicensesJson", app.cash.licensee.SortedSpdx) {
json.set(resources.text.fromUri("https://spdx.org/licenses/licenses.json").asString())
sortedLicencesJson.set(jsonFile)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
RegularFile jsonFile = layout.projectDirectory.file("src/main/resources/app/cash/licensee/licenses.json")
tasks.register("downloadLicensesJson", app.cash.licensee.SortedSpdx) {
json.set(resources.text.fromUri("https://spdx.org/licenses/licenses.json").asString())
sortedLicencesJson.set(jsonFile)
def jsonFile = layout.projectDirectory.file("src/main/resources/app/cash/licensee/licenses.json")
tasks.register("downloadLicensesJson", app.cash.licensee.SortedSpdx) {
json = resources.text.fromUri("https://spdx.org/licenses/licenses.json").asString()
sortedLicencesJson = jsonFile
}

Comment on lines +117 to +120
TaskProvider<app.cash.licensee.GenerateSpdxIdTask> generateSpdx = tasks.register('generateSpdx', app.cash.licensee.GenerateSpdxIdTask) {
// Do not wire the output from writeSortedSpdx here to split downloading the remote file and code gen.
inputJson.set(jsonFile)
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
TaskProvider<app.cash.licensee.GenerateSpdxIdTask> generateSpdx = tasks.register('generateSpdx', app.cash.licensee.GenerateSpdxIdTask) {
// Do not wire the output from writeSortedSpdx here to split downloading the remote file and code gen.
inputJson.set(jsonFile)
}
def generateSpdx = tasks.register('generateSpdx', app.cash.licensee.GenerateSpdxIdTask) {
// Do not wire the output from writeSortedSpdx here to split downloading the remote file and code gen.
inputJson = jsonFile
}

import org.gradle.api.initialization.resolve.RepositoriesMode

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS

import org.gradle.api.initialization.resolve.RepositoriesMode

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS

import assertk.assertions.isNull
import kotlin.test.Test

class SpdxLicensesGeneratorTest {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
class SpdxLicensesGeneratorTest {
@Suppress("HttpUrlsUsage")
class SpdxLicensesGeneratorTest {

Copy link
Member

@JakeWharton JakeWharton left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will try to review the rest tonight

task.doLast {
def destFile = new File(destDir, 'licenses.json')
def json = new JsonSlurper().parse(destFile)
json.licenses = json.licenses.sort { a,b -> a.licenseId <=> b.licenseId }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I COMPLETELY forgot that I was doing this. Maybe we do need sort... I thought they were finally sorting because they said they would.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverting bef2c7b is easy, but on the other hand, we could test it with the next license update.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants