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

add golang package mirroring #165

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

taoufik07
Copy link

No description provided.

@@ -4,6 +4,7 @@
import subprocess
import urllib.request

import lxml.html
Copy link
Member

Choose a reason for hiding this comment

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

you should not need an external dependency to read xml -- there's an xml stdlib module

@@ -0,0 +1,3 @@
module github.com/pre-commit/dummy
Copy link
Member

Choose a reason for hiding this comment

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

please use the word "placeholder" instead as to avoid ableist language

@@ -48,9 +64,11 @@ def rust_get_additional_dependencies(
'python': python_get_package_versions,
'ruby': ruby_get_package_versions,
'rust': rust_get_package_versions,
'golang': golang_get_package_versions,
Copy link
Member

Choose a reason for hiding this comment

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

order

@@ -66,7 +66,7 @@ def git(*cmd: str) -> None:
# Commit and tag
git('add', '.')
git('commit', '-m', f'Mirror: {version}')
git('tag', f'v{version}')
git('tag', f'v{version.lstrip("v")}')
Copy link
Member

Choose a reason for hiding this comment

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

hmmm this seems not right

Comment on lines +36 to +41
url = f'https://pkg.go.dev/{package_name}?tab=versions'
resp = urllib.request.urlopen(url)
versions = lxml.html.parse(resp).xpath(
"//a[@class='js-versionLink']//text()",
)
return [str(version) for version in versions[::-1]]
Copy link
Member

Choose a reason for hiding this comment

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

we should not be parsing html to get the answers here -- this needs to come from an actual documented api

Copy link
Author

Choose a reason for hiding this comment

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

As far as I know, go doesn't provide an actual documented API, the only workaround was to scrape it : /

Copy link
Author

Choose a reason for hiding this comment

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

Copy link
Member

Choose a reason for hiding this comment

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

aren't they just git tags?

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

Successfully merging this pull request may close these issues.

None yet

2 participants