-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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 [Conan] version service #7460
Conversation
Thanks for the PR! Are you aware of any documentation for the API? That's something we typically strive for with new services given the breadth of integration points we have, and I think it's going to be especially important in this case given what looks like non-trivial processing of the response |
Unfortunately I didn’t find much. However, the conan CLI tool is a client and is totally open source: https://github.com/conan-io/conan I believe my code mirrors what happens when you run |
There's also some documentation at https://docs.gitlab.com/ee/api/packages/conan.html#search By the way, does shields.io do any sort of caching? I found that some of these responses are slow for certain packages (such as |
We do cache pretty extensively, but that's done post-badge creation (local/browser cache, CDN, etc.). We don't cache raw responses from upstream providers though, so a request for the same badge doesn't result in the upstream API call that often, but if there happens to be two separate badges that make the same API call then that can indeed happen twice. Do you have a ballpark for how slow they are? The vast majority of the badges we provided are rendered by GitHub, and due to the way GitHub handles (and times out) on static content requests, we typically need the entire request/response loop for a badge to complete in 3-4 seconds max |
I don't have a lot of data, but I just tried a handful of packages, and...it seems to vary a lot. Maybe their server is doing some caching, and/or maybe it depends on the number of versions of the package (although I didn't see any responses returning particularly large numbers of versions). I tried querying Here's how you can test it out:
I'll reach out to some conan folks and see if they can comment on whether there's a better API to use. |
Those numbers are rather concerning, and certainly give me pause. I'd be curious to know why the API is so sluggish, any chance there's some additional info we could send in the request that would reduce the scope of work on the backend and improve performance? |
So far on the Conan Slack I haven't learned of any better solutions. I posted a question at conan-io/conan#10298. Is this PR unshippable with the current API response times? |
Thanks for opening that issue! In my opinion, yes, the current response times aren't going to be acceptable, so let's put this on hold for a bit and wait to see how things evolve upstream |
Hi @calebcartwright – based on other discussions around the upstream issue, I've given up on the Conan API and have reworked this version service to use the GitHub API to access each package's version info Looks like my attempt at mocking the github response has failed in CI (but it passes locally, probably due to the use of |
Not sure off hand, but nock is understandably very pedantic so the slightest variation in the actual request vs. the configured request in the test will result in the request being fired off. Something I like to do when I'm having trouble getting nock to intercept is to enable |
Ok, just added some conditional logic, that seems to do it! Please take a look when you get a chance 😄 |
Thanks for following up, this does seem like a more viable path! A few thoughts/questions for you:
|
Thanks for the suggestion, I've removed the response mocking and just refactored to a separate function that processes the yaml, which can be tested in mocha.
I also wasn't very closely familiar with Conan's version conventions. Basically I think each package is allowed to put whatever it wants as version names, there's no explicitly enforced format. So I was initially trying to match the logic they use here for version comparison: https://github.com/conan-io/conan/blob/0e22f9e84bb2953ef48de8e32decc5a1a3613fb1/conans/model/version.py#L131 However, after taking a look at the existing version parsing functionality in this repo, I decided to just use Thanks for your thorough review! |
Gotcha. If the simple route looks "right" then I'm fine with starting there 👍 We can always revisit and revert back to the more customized route if need be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks again for sticking with this! Things generally LGTM and I think this is on the verge of being ready. Few minor comments left inline below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, thank you!
**Public-Facing Changes** None **Description** Update to use badges/shields#7460
Hi there! (Here the team lead of ConanCenter) Thanks a lot for this implementation! It is wonderful to see people out there implementing things from our own backlog 😅 We were already starting an effort to provide badges for the libraries in ConanCenter, using Shields.io. Besides the typical badge for each library version, we were also going to provide the latest version (the one implemented here) and maybe some other badges with extra data like the number of downloads or platforms where the library is available. For dynamic badges, our plan was to use the endpoint implementation with an endpoint provided by us that returns the latest version for the given library, or the number of downloads,... It is out of scope right now to create a stable API to get information from ConanCenter, but we can create these very few endpoints with specific information, especially if they are going to be used by some cached services like Shields.io. As you can read here (conan-io/conan-center-index#9418) we also have the problem of knowing which one is the latest version. We do our best in that I would like to know how we can contribute, or modify our backlog so we can better serve our community. I would like to know (from the point of view of shields resources) if it is better to implement the badges using that shields-endpoint approach, or better to modify the logic here after we have the endpoint ready, or... well, we are open to any feedback or suggestions. Thanks! |
Summarizing our offline discussion from Cpplang Slack:
|
Thanks for reaching out @jgsogo! In short, there's probably some easier/simpler options that don't require a full blown Endpoint badge, as the Endpoint model and schema isn't how we typically like to provide native badges anyway. At a high level I'd describe the Endpoint badge as being a good solution for more individual, and often power user, type use cases. Examples would include scenarios where users want to manipulate our native service badges beyond the customization options we're willing/able to support, or where a user wants to create a badge with data from a platform that requires an unscopable, user-specific authorization mechanism that we can't utilize in the SaaS Shields.io. In many ways it's a more powerful/extensible version of our Dynamic Json/Xml/Yaml badges. For our more first-class badges for various platforms, we strongly prefer to consume a standard API surface that provides the raw platform specific data for a package as opposed to the type of contract we expect on an Endpoint which is focused on rendering concerns (label, color, text of message, etc.). This helps provide better ergonomics to our users and ensures that the badges we provide for upstream platforms and services are consistent with our design goals and specification by default. That being said, if Conan's documented API service includes an endpoint that delivers those key data points (version, downloads, etc.) that's perfect and we can certainly use those; just want to stress there's no need to force your API and response schema to align with our Endpoint Badge model. It's easier for us to e.g. grab a numeric value from a
Whenever there's an API ready for consumption anyone should feel to drop a note either here or in a new issue, or even submit a PR to change the implementation to take advantage. It shouldn't be too big a lift from the sounds of it, though we're definitely open to having some more detailed discussions if there's other considerations or topics of interest, including any concerns around request volume (I gather from some of the other threads there may be) |
Thanks a lot for your words, @calebcartwright . We are currently working on that API, so we will adapt to your suggestion, it is also better for us to provide actual and meaningful data than to prepare an endpoint serving the fields requested by your shields-endpoint implementation (as you said, more about rendering concerns). Just one more question before moving to actual implementation. We would like to keep these endpoints under control, so the suggestion about using a TOKEN would be great for us, or we can add shields-IPs to some whitelist so they can get to the actual endpoints. Which approach do you think is better if the API cannot be public? Thanks! |
The short answer is a token is preferable. There is a longer thread about why that is here #7574 |
Hi, |
Adds a new Version service for Conan Center packages.
Example:
/conan/v/zeromq
(https://conan.io/center/zeromq)