Skip to content
forked from foojayio/discoapi

The foojay discovery api (discoapi) is made to discover java packages (jre/jdk) from different distributions.

License

Notifications You must be signed in to change notification settings

Goooler/discoapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

foojay Disco API

Logo

The foojay Disco API is a general purpose API to discover builds of OpenJDK from different distributions

Presentation about the Disco API.

At the moment the following distributions are supported by the API:

  • AdoptOpenJDK
  • AdoptOpenJDK OpenJ9
  • Bi Sheng
  • Corretto
  • Debian (contains only links to download site)
  • Dragonwell
  • GraalVM CE (8, 11, 17)
  • JetBrains
  • Kona
  • Liberica
  • Liberica Native
  • Mandrel
  • Microsoft
  • OJDKBuild
  • OpenLogic
  • Oracle (contains only links to download site)
  • Oracle OpenJDK
  • Red Hat (contains only links to download site)
  • SAP Machine
  • Semeru
  • Semeru Certified
  • Temurin
  • Trava
  • Zulu
  • Zulu Prime

Terms that are used in this document:

  • LTS stands for Long Term Support. It means the version will receive security updates for a long time
  • MTS stands for Mid Term Support. It means the version will receive security updates at least until the next LTS will be released
  • STS stands for Short Term Support. It means the version will receive updates for the next 6 months (Dec 2020)
  • GA stands for General Availability. It means that the release is stable
  • EA stands for Early Access. It means that the release is not stable and will change probably every week
  • Bitness describes 32- or 64-bit architecture

Terms and parameters used in the disco API:

  • archive_type stands more or less for the file extension of the package e.g. tar.gz, zip, dmg, msi etc.
  • distribution stands for the name of the distribution (aoj, aoj_openj9, corretto, dragonwell, liberica, liberica_native, oracle, oracle_open_jdk, sap_machine, semeru, temurin, trava, zulu etc.)
  • major_version stands for the major version of a package e.g. 8, 11, 13, 15 (it is the feature version in the JEP 322)
  • java_version stands for the full version without trailing '0' which can also include '-ea' for early access builds (e.g. 15-ea, 13.0.5.1 etc.)
  • distribution_version stands for a distribution specific version number which could also contain additional information
  • release_status stands for the status of the release which can be either GA (General Availability) or EA (Early Access)
  • term_of_support stands for the time the version will be supported with updates (e.g. STS, MTS, LTS)
  • operating_system stands for the operating system the package was build for (e.g. linux, windows, macos etc.)
  • lib_c_type stands for the type of the standard c library that is used for the build (e.g. glibc, libc, musl or c_std_lib)
  • architecture stands for the architecture that the package was build for (e.g. aarch64, arm, x64, x86 etc.)
  • package_type stands for the type of package (e.g. jdk or jre)
  • javafx_bundled indicates if the package comes bundled with javafx (e.g. true, false)
  • directly_downloadable indicates if the package can directly be downloaded or if you have to go to the download page of the distribution to get it
  • id stands for an id that is unique for each package

There are different endpoints that can be used to drill down to the package the user would like to download.

Please find more information here: foojay API Swagger doc


REST endpoints

/api.foojay.io/disco/v3.0/major_versions
/api.foojay.io/disco/v3.0/distributions
/api.foojay.io/disco/v3.0/packages
/api.foojay.io/disco/v3.0/packages/jdks
/api.foojay.io/disco/v3.0/packages/jres
/api.foojay.io/disco/v3.0/ids

Endpoint: major_versions

/api.foojay.io/disco/v3.0/major_versions => Returns all major versions

/api.foojay.io/disco/v3.0/major_versions?ea=true => Returns all major versions including early access builds

/api.foojay.io/disco/v3.0/major_versions?ga=true => Returns all major versions including only general availability builds

/api.foojay.io/disco/v3.0/major_versions?maintained=true => Returns all major versions that are maintained at the moment (e.g. 7, 8, 11, 13, 15, 16, 17-ea, 18-ea)

Endpoint: distributions

/api.foojay.io/disco/v3.0/distributions => Returns all available distributions incl. their available versions

/api.foojay.io/disco/v3.0/distributions/zulu => Returns the given distribution (here Zulu) with it's available versions

Endpoint: packages

The packages endpoint can be used with the following url parameters:

  • version (e.g. 1.8.0_262, 11.0.9.1, 17-ea.1, 11.0.8..<11.0.10)

  • distro (e.g. aoj, aoj_openj9, corretto, dragonwell, graalvm_ce8, graalvm_ce11, graalvm_ce16, jetbrains, liberica, liberica_native, mandrel, microsoft, ojdk_build, openlogic, oracle, oracle_open_jdk, redhat, sap_machine, semeru, temurin, trava, zulu, zulu_prime)

  • architecture (e.g. aarch64, amd64, arm, arm64, ia64, mips, ppc, ppc64el, ppc64le, ppc64, riscv64, s390, s390x, sparc, sparcv9, x64, x86-64, x86, i386, i486, i586, i686, x86-32)

  • archive_type (e.g. apk, cab, deb, dmg, exe, msi, pkg, rpm, tar, tar.gz, tar.Z, zip)

  • package_type (e.g. jdk, jre)

  • operating_system (e.g. aix, alpine_linux, linux, linux_musl, macos, qnx, solaris, windows)

  • libc_type (e.g. c_std_lib, glibc, libc, musl)

  • release_status (e.g. ea, ga)

  • term_of_support (e.g. sts, mts, lts)

  • bitness (e.g. 32, 64)

  • javafx_bundled (e.g. true, false)

  • directly_downloadable (e.g. true, false)

  • latest (e.g. all_of_version, per_distro, overall, available)

Get the download link of a package

Let's assume we are looking for the latest version of JDK 11, including JavaFX for MacOS with Intel processor and we would like to use an installer, so it should be either dmg or pkg. The url parameters will look as follows:

  • latest=available
  • package_type=jdk
  • version=11
  • javafx_bundled=true
  • operating_system=macos
  • architecture=x64 (because of the Intel processor)
  • archive_type=dmg
  • archive_type=pkg

So the http request will look as follows: https://api.foojay.io/disco/v3.0/packages?package_type=jdk&latest=available&version=11&javafx_bundled=true&operating_system=macos&architecture=x64&archive_type=dmg&archive_type=pkg

The response to this request is the following:

{
  "result": [
    {
      "id": "2dd07b11553c798fa49274d937ba88e9",
      "archive_type": "dmg",
      "distribution": "zulu",
      "major_version": 11,
      "java_version": "11.0.15+10",
      "distribution_version": "11.56.19",
      "jdk_version": 11,
      "latest_build_available": true,
      "release_status": "ga",
      "term_of_support": "lts",
      "operating_system": "macos",
      "lib_c_type": "libc",
      "architecture": "x64",
      "fpu": "unknown",
      "package_type": "jdk",
      "javafx_bundled": true,
      "directly_downloadable": true,
      "filename": "zulu11.56.19-ca-fx-jdk11.0.15-macosx_x64.dmg",
      "links": {
        "pkg_info_uri": "https://api.foojay.io/disco/v3.0/ids/2dd07b11553c798fa49274d937ba88e9",
        "pkg_download_redirect": "https://api.foojay.io/disco/v3.0/ids/2dd07b11553c798fa49274d937ba88e9/redirect"
      },
      "free_use_in_production": true,
      "tck_tested": "yes",
      "tck_cert_uri": "https://cdn.azul.com/zulu/pdf/cert.zulu11.56.19-ca-fx-jdk11.0.15-macosx_x64.dmg.pdf",
      "aqavit_certified": "unknown",
      "aqavit_cert_uri": "",
      "size": 278223218,
      "feature": []
    },
    {
      "id": "2fd1b59e76244fb2a5e553c4eaba0b27",
      "archive_type": "dmg",
      "distribution": "liberica",
      "major_version": 11,
      "java_version": "11.0.15+10",
      "distribution_version": "11",
      "jdk_version": 11,
      "latest_build_available": true,
      "release_status": "ga",
      "term_of_support": "lts",
      "operating_system": "macos",
      "lib_c_type": "libc",
      "architecture": "amd64",
      "fpu": "unknown",
      "package_type": "jdk",
      "javafx_bundled": true,
      "directly_downloadable": true,
      "filename": "bellsoft-jdk11.0.15+10-macos-amd64-full.dmg",
      "links": {
        "pkg_info_uri": "https://api.foojay.io/disco/v3.0/ids/2fd1b59e76244fb2a5e553c4eaba0b27",
        "pkg_download_redirect": "https://api.foojay.io/disco/v3.0/ids/2fd1b59e76244fb2a5e553c4eaba0b27/redirect"
      },
      "free_use_in_production": true,
      "tck_tested": "unknown",
      "tck_cert_uri": "",
      "aqavit_certified": "unknown",
      "aqavit_cert_uri": "",
      "size": 289889581,
      "feature": []
    },
    {
      "id": "b19c6478c8424946f2dfc61d2b71b865",
      "archive_type": "pkg",
      "distribution": "liberica",
      "major_version": 11,
      "java_version": "11.0.15+10",
      "distribution_version": "11",
      "jdk_version": 11,
      "latest_build_available": true,
      "release_status": "ga",
      "term_of_support": "lts",
      "operating_system": "macos",
      "lib_c_type": "libc",
      "architecture": "amd64",
      "fpu": "unknown",
      "package_type": "jdk",
      "javafx_bundled": true,
      "directly_downloadable": true,
      "filename": "bellsoft-jdk11.0.15+10-macos-amd64-full.pkg",
      "links": {
        "pkg_info_uri": "https://api.foojay.io/disco/v3.0/ids/b19c6478c8424946f2dfc61d2b71b865",
        "pkg_download_redirect": "https://api.foojay.io/disco/v3.0/ids/b19c6478c8424946f2dfc61d2b71b865/redirect"
      },
      "free_use_in_production": true,
      "tck_tested": "unknown",
      "tck_cert_uri": "",
      "aqavit_certified": "unknown",
      "aqavit_cert_uri": "",
      "size": 287112728,
      "feature": []
    }
  ],
  "message": "3 package(s) found"
}

As you can see the API found 3 packages in 2 distributions, Zulu and Liberica.

Attention:

The list of packages will always be in reverse alphabetical order. This will lead to the fact that in most cases the first package that will be shown will be from the Zulu distribution. The reason for this is simple and it is the fact that Zulu has the most packages available for all versions and there always is a good chance that if you need a specific Java version that there is a package from Zulu.

If you know that you would like to have a package from Liberica you simply add the url parameter distro=liberica to the call above and you will only get the packages from Liberica for the given parameters.

As you can see there is no download link in the response and the reason for that is that we somehow need a way to create some kind of statistics. For this reason you have to do another request to the ids endpoint with the id of the package you would like to download.

So if we make the following request: https://api.foojay.io/disco/v3.0/ids/2dd07b11553c798fa49274d937ba88e9 we will get this response back:

{
  "result":[
    {
      "filename":"zulu11.56.19-ca-fx-jdk11.0.15-macosx_x64.dmg",
      "direct_download_uri":"https://cdn.azul.com/zulu/bin/zulu11.56.19-ca-fx-jdk11.0.15-macosx_x64.dmg",
      "download_site_uri":"",
      "signature_uri":"",
      "checksum_uri":"",
      "checksum":"b6a13e91a10011d05b3daa53339bef97b8a949aea00bf671af0feecd979a24b9",
      "checksum_type":"sha256"
    }
  ],
  "message":""
}

In this response you will now get the direct_download_uri which will let you download the package.


IDE Plugins

There are several plugins and extensions available that already make use of the DiscoAPI and that can help you to get the JDK of your choice even faster.

IntelliJ Idea plugin

In the IntelliJ Idea Plugin marketplace you will find the DiscoIdea plugin.

Eclipse plugin

In Eclipse you can find the DiscoEclipse plugin on the marketplace

Visual Studio Code

In Visual Studio Code you can find the DiscoVSC plugin on the marketplace


Browser plugins

More or less the same plugin that is available for the different IDE's is also available as a browser plugin.

Chrome

For Google Chrome please look for DiscoChrome in the chrome web store

Firefox

For Firefox please look for DiscoFox on the firefox addons page

Safari

For Safari please look for DiscoSafari on the Mac app store

Edge

For Microsoft Edge please look for DiscoEdge on Edge plugins page

About

The foojay discovery api (discoapi) is made to discover java packages (jre/jdk) from different distributions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%