-
Notifications
You must be signed in to change notification settings - Fork 697
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 support for package type queries in both local and remote sources #5991
base: dev
Are you sure you want to change the base?
Conversation
var types = string.Join("&", | ||
filters.PackageTypes.Select( | ||
s => "packageTypeFilter=" + s)); | ||
s => "packageType=" + s)); | ||
queryString += "&" + types; |
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.
@joelverhagen are multiple package types defined as &packageType=type1&packageType=type2
or &packageType=type1+type2
?
Additionally, are the semantics that the package must contain all package types, or just one? This is important, to make sure that local folder feed sources behave in the same way.
the docs are not sufficiently specific about multiple values.
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.
Only a single package type filter is supported. The package type parameter is plumbed through in our search service as a single string:
https://github.com/NuGet/NuGetGallery/blob/dc7abf2bd145d91596b032c19e1c9abe8b276956/src/NuGet.Services.AzureSearch/SearchService/SearchParametersBuilder.cs#L169-L172
PRs on the docs are welcome if they are unclear!
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.
Regarding multiple package types on the package, the package type parameter matches the package if ANY of the package types match, per:
The
packageType
parameter is used to further filter the search results to only packages that have at least one package type matching the package type name.
Emphasis mine.
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.
@joelverhagen @zivkan Thank you both for the feedback. In that case, it seems that the API surface of SearchFilter
might be slightly inconsistent with current SearchQueryService/3.5.0
capabilities, since SearchFilter
allows for multiple package types to be specified.
How do you prefer to address this? Shall PackageSearchResourceV3
and LocalPackageSearchResource
throw if more than one package type is provided? Or shall we deprecate the entire PackageTypes
property and introduce a new PackageType
property with a single value?
Personally I would prefer not touching the current surface API, since this feature is very much needed and breaking the surface API might delay adoption and confuse existing API consumers (having two properties vary their names by a single letter is usually very much discouraged).
@joelverhagen Is there any expectation that multiple package type filters will ever be supported? That might inform whether the deprecation route might be preferred.
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.
There is no expectation that NuGet.org should support multiple package type filters. If this is needed, we would need to design, implement, and document a protocol enhancement. I am not aware of any other package source that implements multiple package type filters.
IMHO, PackageTypes
should be deprecated and PackageType
should be introduced, to match the current state of the protocol. But I do not work on the client side much so I may be missing something.
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.
I don't know of any plans to add multiple package type support. It's not even clear to what existing scenario could benefit from such a filter.
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.
Personally I would prefer not touching the current surface API
To be fair, this PR is breaking server APIs, even if it's not breaking the assembly's API. If there are any servers (that are not nuget.org) that use the current packageTypeFilter
, this PR will break clients using those servers. There's evidence that (in 2018) neither nuget.org nor myget implemented packageTypeFilter
, but there's no way to know if some other server uses it. On the other hand, the V2 protocol isn't documented, and packageTypeFilter
was never part of the official V3 protocol.
I'm trying to rush reviewing a bunch of old PRs that I haven't reviewed in a long time, so I haven't yet formed an opinion about breaking APIs (about changing NuGet.Protocol to remove the plural PackageTypes
and have a singular PackageType
). There's a case to be made that NuGet.Client should implement the official protocol spec.
query = query | ||
.Where(package => package.Nuspec | ||
.GetPackageTypes() | ||
.Any(packageType => StringComparer.OrdinalIgnoreCase.Equals( | ||
packageType.Name, | ||
packageTypeName))); |
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.
As per the PR checklist, please add tests. There's already a test class named LocalpackageSearchResourceTests
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.
@zivkan I would love to, but I am blocked setting up a working full environment due to package restore issues:
Failed to download package 'Microsoft.VisualStudio.Sdk.17.10.40171' from 'https://pkgs.dev.azure.com/azure-public/3ccf6661-f8ce-4e8a-bb2e-eff943ddd3c7/_packaging/36a629e1-6c5b-4bcd-aa2e-6018802d6b99@2f2420a2-f975-407f-ad27-d1e0f85b9b15/nuget/v3/flat2/microsoft.visualstudio.sdk/17.10.40171/microsoft.visualstudio.sdk.17.10.40171.nupkg'.
An error occurred while sending the request.
The underlying connection was closed: An unexpected error occurred on a send.
Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
An existing connection was forcibly closed by the remote host
I can restore nuget packages from any other project successfully on my machine and have confirmed all TLS mitigation strategies are in place as per https://github.com/microsoft/azure-devops-tls12 and mentioned in NuGet/NuGetGallery#9121.
I will continue investigating, but if I am missing anything obvious, please advise.
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.
This is extremely weird, but solved this problem by forcing IPv4 using https://community.fabric.microsoft.com/t5/Power-Query/The-underlying-connection-was-closed-An-unexpected-error/m-p/3442332#M112277
Working on tests now, but just leaving this here as it might indicate some kind of possible TLS issue with IPv6 on some machines / connections that was hard to find / diagnose.
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.
@zivkan One last API design question which just occurred to me: what should the behavior of LocalPackageSearchResource
be if the package type Dependency
is specified and the local package does not specify package types, e.g. for older packages without the packageTypes
metadata?
In the docs it is stated that "Packages not marked with a type, including all packages created with earlier versions of NuGet, default to the Dependency
type."
This would suggest that we should accept matches for all packages without packageTypes
metadata if the specified package type filter is Dependency
.
Alternatively we could change the implementation of GetPackageTypes()
to return Dependency
instead of an empty list, if no packageTypes
node is found in the metadata, but that might break some client code.
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.
sorry for the delay in replying. Too much work and not enough time.
This would suggest that we should accept matches for all packages without packageTypes metadata if the specified package type filter is Dependency.
This is my preference. I'd rather GetPackageTypes
return what the package's nuspec actually reports, just in case there are scenarios where the difference between Dependency
not "not specified" is important elsewhere.
the reason is that I could not find a way to filter on a package type for a search, i'm not aware of any workaround |
This PR has been automatically marked as stale because it has no activity for 7 days. It will be closed if no further activity occurs within another 90 days of this comment. If it is closed, you may reopen it anytime when you're ready again, as long as you don't delete the branch. |
Bug
Fixes: NuGet/Home#8915
Description
nuget.org allows filtering by package type using the
packageType
query parameter sinceSearchQueryService/3.5.0
. This parameter has not been officially surfaced by the client API, although relevant infrastructure has already been introduced in theSearchFilter
class:NuGet.Client/src/NuGet.Core/NuGet.Protocol/SearchFilter.cs
Line 60 in c8d14f3
Upon inspection of relevant source code, it looks like the relevant bits had already been introduced in
PackageSearchResourceV3
but using the old query parameter namepackageTypeFilter
. The fix is simply replacing the below query parameter withpackageType
:NuGet.Client/src/NuGet.Core/NuGet.Protocol/Resources/PackageSearchResourceV3.cs
Lines 140 to 147 in c8d14f3
For completeness, we also add package type filtering functionality to
LocalPackageSearchResource
by filtering over the package types available throughpackage.Nuspec.GetPackageTypes()
.PR Checklist