2020-10-19 19:09:03 +11:00
|
|
|
#! /usr/bin/env nix-shell
|
|
|
|
#! nix-shell -i python3 -p python3Packages.lxml python3Packages.requests
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import requests
|
|
|
|
import subprocess as sp
|
|
|
|
import sys
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
from lxml import etree
|
|
|
|
|
|
|
|
# https://plugins.jetbrains.com/docs/marketplace/product-codes.html
|
|
|
|
PRODUCT_CODE = {
|
|
|
|
"clion": "CL",
|
|
|
|
"datagrip": "DB",
|
|
|
|
"goland": "GO",
|
|
|
|
"idea-community": "IC",
|
|
|
|
"idea-ultimate": "IU",
|
|
|
|
"phpstorm": "PS",
|
|
|
|
"pycharm-community": "PC",
|
|
|
|
"pycharm-professional": "PY",
|
|
|
|
"rider": "RD",
|
|
|
|
"ruby-mine": "RM",
|
|
|
|
"webstorm": "WS",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
PACKAGE_RE = re.compile("[^0-9A-Za-z._-]")
|
|
|
|
HTML_RE = re.compile("<[^>]+/?>")
|
|
|
|
|
|
|
|
|
2020-10-19 19:09:03 +11:00
|
|
|
def to_slug(name):
|
|
|
|
slug = name.replace(" ", "-").lstrip(".")
|
|
|
|
for char in ",/;'\\<>:\"|!@#$%^&*()":
|
|
|
|
slug = slug.replace(char, "")
|
|
|
|
return slug
|
|
|
|
|
|
|
|
|
|
|
|
class Build:
|
|
|
|
"""
|
|
|
|
Transforms a Nixpkgs derivation name into a Jetbrains product code. For
|
|
|
|
example:
|
|
|
|
|
|
|
|
idea-community-2019.3.2 -> IC-193.2
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
m = re.search("([0-9]+\.?)+$", name)
|
|
|
|
version = m.group(0)
|
|
|
|
code = PRODUCT_CODE[name.replace("-" + version, "")]
|
|
|
|
vparts = version.split(".")
|
|
|
|
version = vparts[0][-2:] + vparts[1] + "." + vparts[2]
|
|
|
|
self.code = code
|
|
|
|
self.version = version
|
|
|
|
self.package = name.split("-")[0]
|
|
|
|
|
|
|
|
def builder(self):
|
|
|
|
return self.package + "Build"
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.code + "-" + self.version
|
|
|
|
|
|
|
|
|
|
|
|
class Plugin:
|
2021-01-25 12:01:06 +11:00
|
|
|
def __init__(self, data, build, category=None):
|
|
|
|
self.build = build
|
2020-10-19 19:09:03 +11:00
|
|
|
self.category = category
|
|
|
|
self.name = data.find("name").text
|
2021-01-25 12:01:06 +11:00
|
|
|
self.xml_id = data.find("id").text
|
2020-10-19 19:09:03 +11:00
|
|
|
self._description = data.find("description").text
|
|
|
|
self.url = data.get("url") or data.find("vendor").get("url")
|
2021-01-25 12:01:06 +11:00
|
|
|
self.version = data.find("version").text.replace(" ", "-")
|
2020-10-19 19:09:03 +11:00
|
|
|
self.slug = to_slug(self.name)
|
|
|
|
self.orig_slug = self.slug
|
|
|
|
|
|
|
|
self.depends = []
|
|
|
|
for depend in data.findall("depends"):
|
|
|
|
self.depends.append(depend.text)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return f"<Plugin '{self.name}' {self.version}>"
|
|
|
|
|
|
|
|
def description(self):
|
|
|
|
return re.sub(HTML_RE, "", self._description or "").strip()
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
def get_download_url(self, deref=True):
|
2020-10-19 19:09:03 +11:00
|
|
|
"""
|
|
|
|
Provides the ZIP download URL for this plugin.
|
|
|
|
|
|
|
|
The trivial URL fetches the latest version through a redirect for some
|
|
|
|
build code and provides no locking to a version for the URL. To fetch
|
|
|
|
a stable URL that can be used as a package source, deref must be set
|
|
|
|
(which it is by default). However, this comes at the cost of requiring
|
|
|
|
an HTTP request.
|
|
|
|
"""
|
2021-01-25 12:01:06 +11:00
|
|
|
id = urllib.parse.quote(self.xml_id)
|
|
|
|
url = f"https://plugins.jetbrains.com/pluginManager?action=download&id={id}&build={self.build}"
|
2020-10-19 19:09:03 +11:00
|
|
|
if deref:
|
|
|
|
res = requests.get(url, allow_redirects=not deref)
|
|
|
|
url = "https://plugins.jetbrains.com" + re.sub(
|
|
|
|
"\?.*$", "", res.headers["location"]
|
|
|
|
)
|
2021-01-25 12:01:06 +11:00
|
|
|
self.jetbrains_url = url
|
2020-10-19 19:09:03 +11:00
|
|
|
if url.endswith("external"):
|
|
|
|
res = requests.get(url, allow_redirects=not deref)
|
|
|
|
url = res.headers["location"]
|
|
|
|
return url
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
def fetch_external(self, update_only=False):
|
|
|
|
"""
|
|
|
|
Performs network calls to update this plugin with information that
|
|
|
|
cannot be performed from the public XML API.
|
|
|
|
|
|
|
|
Additional attributes provided after this method:
|
|
|
|
|
|
|
|
download_url : the plugin download location
|
|
|
|
sha : the SHA256 of the download source
|
|
|
|
|
|
|
|
If update_only is true, a full update is performed, also providing:
|
|
|
|
|
|
|
|
id : the plugin integer ID
|
|
|
|
license_url : the plugin license URL
|
|
|
|
license : the Nixpkgs license attribute
|
|
|
|
"""
|
|
|
|
self.download_url = self.get_download_url(deref=True)
|
|
|
|
self.sha = prefetch(self, self.build, self.download_url)
|
|
|
|
|
|
|
|
if update_only:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.id = self.jetbrains_url.split("/")[4]
|
|
|
|
res = requests.get(
|
|
|
|
f"https://plugins.jetbrains.com/api/plugins/{self.id}"
|
|
|
|
).json()
|
|
|
|
try:
|
|
|
|
self.url = self.url or res["urls"]["sourceCodeUrl"]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
self.license_url = res["urls"]["licenseUrl"]
|
|
|
|
self.license = translate_license(self.license_url, fallback=self.url)
|
|
|
|
|
2020-10-19 19:09:03 +11:00
|
|
|
def packagename(self):
|
|
|
|
slug = re.sub(PACKAGE_RE, "", self.slug.lower()).replace(".", "-")
|
|
|
|
if slug[0] in "1234567890":
|
|
|
|
return "_" + slug
|
|
|
|
else:
|
|
|
|
return slug
|
|
|
|
|
|
|
|
def filename(self):
|
|
|
|
"""
|
|
|
|
Returns this plugin's filename without an extension. Rely on the
|
|
|
|
download URL to know the extension.
|
|
|
|
"""
|
|
|
|
return f"{self.slug}-{self.version}"
|
|
|
|
|
|
|
|
|
|
|
|
def list_plugins(build):
|
|
|
|
"""
|
|
|
|
Lists all plugins for the specified build code.
|
|
|
|
|
|
|
|
https://plugins.jetbrains.com/docs/marketplace/plugins-list.html
|
|
|
|
"""
|
|
|
|
resp = requests.get(f"https://plugins.jetbrains.com/plugins/list/?build={build}")
|
2021-01-25 12:01:06 +11:00
|
|
|
return parse_repository(resp.content, build)
|
2020-10-19 19:09:03 +11:00
|
|
|
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
def parse_repository(content, build):
|
2020-10-19 19:09:03 +11:00
|
|
|
tree = etree.XML(content)
|
|
|
|
plugins = []
|
|
|
|
for cat in tree.findall("category"):
|
|
|
|
cat_name = cat.get("name")
|
|
|
|
for plugin in cat.findall("idea-plugin"):
|
2021-01-25 12:01:06 +11:00
|
|
|
plugins.append(Plugin(plugin, build, cat_name))
|
2020-10-19 19:09:03 +11:00
|
|
|
return plugins
|
|
|
|
|
|
|
|
|
|
|
|
def deduplicate(plugins):
|
|
|
|
"""
|
|
|
|
Ensures that the plugin list has unique slugs. Modifies the list in-place.
|
|
|
|
"""
|
|
|
|
prev = plugins[0]
|
|
|
|
for plugin in plugins[1:]:
|
|
|
|
if plugin.orig_slug == prev.orig_slug:
|
|
|
|
prev.slug = prev.orig_slug + "-" + prev.version.replace(".", "_")
|
|
|
|
plugin.slug = plugin.orig_slug + "-" + plugin.version.replace(".", "_")
|
|
|
|
prev = plugin
|
|
|
|
|
|
|
|
|
|
|
|
def prefetch(plugin, build, url=None):
|
|
|
|
if not url:
|
2021-01-25 12:01:06 +11:00
|
|
|
url = plugin.download_url or plugin.get_download_url()
|
2020-10-19 19:09:03 +11:00
|
|
|
res = sp.run(
|
|
|
|
["nix-prefetch-url", "--name", plugin.filename(), url], capture_output=True,
|
|
|
|
)
|
|
|
|
if not res.stdout:
|
|
|
|
raise IOError(f"nix-prefetch-url {plugin} failed: {res.stderr.decode('utf-8')}")
|
|
|
|
return res.stdout.decode("utf-8").strip()
|
|
|
|
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
def custom_license(short, full, url, free=False):
|
|
|
|
return f"""{{
|
|
|
|
shortName = "{short}";
|
|
|
|
fullName = "{full}";
|
|
|
|
url = "{url}";
|
|
|
|
free = {"true" if free else "false"};
|
|
|
|
}}"""
|
2020-10-19 19:09:03 +11:00
|
|
|
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
def arr(url):
|
|
|
|
return custom_license("allrightsreserved", "All Rights Reserved", url)
|
|
|
|
|
|
|
|
|
|
|
|
def translate_license(url, fallback=""):
|
|
|
|
license = url.lower()
|
|
|
|
if license == "":
|
|
|
|
print(f"no license for {fallback}", file=sys.stderr)
|
|
|
|
return arr(fallback)
|
|
|
|
# Common (license) hosts
|
|
|
|
elif "github.com" in license or "raw.githubusercontent.com" in license:
|
2020-10-19 19:09:03 +11:00
|
|
|
try:
|
2021-01-25 12:01:06 +11:00
|
|
|
owner, repo = url.split("/")[3:5]
|
|
|
|
except ValueError:
|
|
|
|
print(f"no license metadata for {url}", file=sys.stderr)
|
|
|
|
return arr(url)
|
|
|
|
res = requests.get(
|
|
|
|
f"https://api.github.com/repos/{owner}/{repo}",
|
|
|
|
headers={"Accept": "application/vnd.github.v3+json"},
|
|
|
|
).json()
|
|
|
|
try:
|
|
|
|
return translate_license(res["license"]["key"])
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
print(f"no license metadata for {url}", file=sys.stderr)
|
|
|
|
return arr(url)
|
|
|
|
elif "opensource.org" in license:
|
|
|
|
os_license = license.rstrip("/").split("/")[-1]
|
|
|
|
if os_license == "alphabetical":
|
|
|
|
# Doesn't actually have a license, it's the listing page
|
|
|
|
return arr(fallback)
|
|
|
|
return translate_license(os_license)
|
|
|
|
# Actual translations now
|
|
|
|
elif "apache.org/licenses/license-2.0" in license or "apache-2.0" in license:
|
|
|
|
return "lib.licenses.asl20"
|
|
|
|
elif "artistic-2" in license:
|
|
|
|
return "lib.licenses.artistic2"
|
|
|
|
elif "bsd-2-clause" in license:
|
|
|
|
return "lib.licenses.bsd2"
|
|
|
|
elif "bsd-3-clause" in license:
|
|
|
|
return "lib.licenses.bsd3"
|
|
|
|
elif "eclipse.org/legal/epl-2.0" in license:
|
|
|
|
return "lib.licenses.epl20"
|
|
|
|
elif "gpl-3.0" in license:
|
|
|
|
return "lib.licenses.gpl3Only"
|
|
|
|
elif "mit" in license:
|
|
|
|
return "lib.licenses.mit"
|
|
|
|
elif "osd" in license:
|
|
|
|
return "lib.licenses.free"
|
|
|
|
elif "other" == license:
|
|
|
|
return arr(fallback)
|
|
|
|
# Custom known licenses
|
|
|
|
elif "plugins.jetbrains.com/legal/terms-of-use" in license:
|
|
|
|
return custom_license(
|
|
|
|
"jetbrains", "Jetbrains Plugin Marketplace Agreement", license
|
|
|
|
)
|
|
|
|
# Fallback
|
|
|
|
else:
|
|
|
|
print(f"unrecognised license {license}", file=sys.stderr)
|
|
|
|
return arr(license)
|
|
|
|
|
|
|
|
|
|
|
|
def write_packages(outfile, plugins):
|
|
|
|
builder = plugins[0].build.builder() or ""
|
|
|
|
outfile.write("{callPackage}:\n{")
|
|
|
|
|
|
|
|
for i, plugin in enumerate(plugins):
|
|
|
|
print(f"{i:04} {plugin.packagename()}")
|
|
|
|
try:
|
|
|
|
plugin.fetch_external()
|
2020-10-19 19:09:03 +11:00
|
|
|
except IOError as e:
|
|
|
|
print(e, file=sys.stderr)
|
|
|
|
continue
|
2021-01-25 12:01:06 +11:00
|
|
|
src_url = plugin.download_url
|
|
|
|
src_ext = os.path.splitext(src_url)[-1]
|
|
|
|
sha = plugin.sha
|
2020-10-19 19:09:03 +11:00
|
|
|
|
|
|
|
build_inputs = []
|
|
|
|
if src_ext == ".zip":
|
|
|
|
build_inputs.append("unzip")
|
|
|
|
|
|
|
|
# TODO: Dependencies are provided as package IDs but refer to both
|
|
|
|
# internal and external plugins; need to find some way to resolve them
|
|
|
|
requires = []
|
|
|
|
# TODO: Licenses are actually on the website, but aren't provided in the API
|
2021-01-25 12:01:06 +11:00
|
|
|
license = plugin.license
|
2020-10-19 19:09:03 +11:00
|
|
|
|
|
|
|
call_args = [str(builder), "fetchurl", "lib"]
|
|
|
|
for binput in build_inputs:
|
|
|
|
call_args.append(binput)
|
|
|
|
|
|
|
|
outfile.write(
|
|
|
|
f"""
|
|
|
|
{plugin.packagename()} = callPackage ({{ {", ".join(sorted(call_args))} }}: {builder} {{
|
|
|
|
pname = "{plugin.slug}";
|
|
|
|
plugname = "{plugin.name}";
|
2021-01-25 12:01:06 +11:00
|
|
|
plugid = "{plugin.xml_id}";
|
2020-10-19 19:09:03 +11:00
|
|
|
version = "{plugin.version}";
|
|
|
|
src = fetchurl {{
|
|
|
|
url = "{src_url}";
|
|
|
|
sha256 = "{sha}";
|
|
|
|
name = "{plugin.filename()}{src_ext}";
|
|
|
|
}};
|
|
|
|
buildInputs = [ {" ".join(build_inputs)} ];
|
|
|
|
packageRequires = [ {" ".join(requires)} ];
|
|
|
|
meta = {{
|
|
|
|
homepage = "{plugin.url or ""}";
|
|
|
|
license = {license};
|
|
|
|
description = ''
|
|
|
|
{plugin.description()}
|
|
|
|
'';
|
|
|
|
}};
|
|
|
|
}}) {{}};
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
outfile.write("}\n")
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
|
|
"-n", "--number", type=int, help="Limit the number of packages to write",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-o", "--out", type=str, help="File to write plugins to",
|
|
|
|
)
|
2021-01-25 12:01:06 +11:00
|
|
|
parser.add_argument("-O", "--offset", type=int, help="Offset number of packages")
|
2020-10-19 19:09:03 +11:00
|
|
|
parser.add_argument(
|
|
|
|
"package",
|
|
|
|
metavar="PACKAGE",
|
|
|
|
type=str,
|
|
|
|
help="The Nixpkgs package name (inc. version)",
|
|
|
|
)
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
build = Build(args.package)
|
|
|
|
plugins = list_plugins(build)
|
|
|
|
plugins.sort(key=lambda p: p.slug)
|
|
|
|
deduplicate(plugins)
|
|
|
|
|
2021-01-25 12:01:06 +11:00
|
|
|
if args.offset:
|
|
|
|
plugins = plugins[args.offset :]
|
2020-10-19 19:09:03 +11:00
|
|
|
if args.number:
|
|
|
|
plugins = plugins[: args.number]
|
|
|
|
|
|
|
|
print(f"Generating packages for {len(plugins)} plugins", file=sys.stderr)
|
|
|
|
if not args.out:
|
2021-01-25 12:01:06 +11:00
|
|
|
write_packages(sys.stdout, plugins)
|
2020-10-19 19:09:03 +11:00
|
|
|
else:
|
|
|
|
with open(args.out, "w") as f:
|
2021-01-25 12:01:06 +11:00
|
|
|
write_packages(f, plugins)
|
2020-10-19 19:09:03 +11:00
|
|
|
|
|
|
|
|
|
|
|
main()
|