Our.Umbraco.Extensions.Search
3.0.2
See the version list below for details.
dotnet add package Our.Umbraco.Extensions.Search --version 3.0.2
NuGet\Install-Package Our.Umbraco.Extensions.Search -Version 3.0.2
<PackageReference Include="Our.Umbraco.Extensions.Search" Version="3.0.2" />
paket add Our.Umbraco.Extensions.Search --version 3.0.2
#r "nuget: Our.Umbraco.Extensions.Search, 3.0.2"
// Install Our.Umbraco.Extensions.Search as a Cake Addin #addin nuget:?package=Our.Umbraco.Extensions.Search&version=3.0.2 // Install Our.Umbraco.Extensions.Search as a Cake Tool #tool nuget:?package=Our.Umbraco.Extensions.Search&version=3.0.2
Umbraco Search Extensions
<img src="docs/img/logo.png?raw=true" alt="Umbraco Search Extensions" width="250" align="right" />
Getting started
This package is supported on Umbraco v9, v10, and v11
Installation
Search Extensions is available via NuGet.
To install with the .NET CLI, run the following command:
$ dotnet add package Our.Umbraco.Extensions.Search
To install from within Visual Studio, use the NuGet Package Manager UI or run the following command:
PM> Install-Package Our.Umbraco.Extensions.Search
Usage
Querying
There are several short-hand extension methods for querying Umbraco content in an index – checking if an item is published, is visible, or has a template.
Querying only published content items can be done like this:
query.And().IsPublished()
Similarly, querying all content where the umbracoNaviHide
property is not set can be done like this:
query.And().IsVisible()
It is possible to query content with a specific template ID set. If 0
or no value is passed to the method, the query will match content with any templatee ID set.
query.And().HasTemplate(int templateId)
Finally, it is possible to query for content that has any one of the specified content type aliases. Out of the box Umbraco supports querying for a single content alias.
query.And().NodeTypeAlias(string[] aliases)
Cultures
Umbraco properties that have been set to "vary by culture" are indexed with a specific alias: {fieldName}_{culture}
. For example, if the "pageTitle" field varies by culture and has 2 languages, English and Spanish, the index would contain 2 fields: pageTitle_en
and pageTitle_es
.
A culture can be passed to Field
and NodeName
queries like this:
query.And().Field(string field, string culture)
query.And().NodeName(string nodeName, string culture)
It even works with grouped queries such as GroupedAnd
, GroupedOr
, and GroupedNot
, where multiple fields can be specified:
query.And().GroupedOr(string[] fields, string culture)
Searching
The SearchHelper
class contains logic for commonly performed actions when searching, particularly helpful for creating paged search functionality.
The Get<T>
method gets all results for a query cast to a given type, including IPublishedContent
.
var query = searcher.CreatePublishedQuery();
var results = searchHelper.Get<T>(query, out int totalResults);
The Page<T>
method efficiently gets a given number of items (perPage
) at a specific position (page
) in the results for a query. An optional type constraint can be added to also return paged results cast to IPublishedContent
.
var query = searcher.CreatePublishedQuery();
var results = searchHelper.Page<T>(query, int page, int perPage, out int totalResults);
All helper methods provide the total number of results found as an out
parameter.
Results
For more specific cases where the SearchHelper
is not appropriate, the same features for accessing strongly typed results are available as extension methods.
An entire results collection can be cast to a type like this:
var results = query.Execute().GetResults<T>();
Specific fields from an individual search result can be accessed via the .Value<T>()
extension method like this:
foreach (var result in query.Execute())
{
var value = result.Value<T>(string field);
}
Advanced fields
Search Extensions introduces several new field types into Examine – json
, list
, UDI
and picker
– to ensure Umbraco data is correctly indexed and queryable.
Examine allows controlling an index's fields, field types, and more, via .NET's Named Options pattern:
public class ConfigureIndexOptions : IConfigureNamedOptions<LuceneDirectoryIndexOptions>
{
public void Configure(string name, LuceneDirectoryIndexOptions options)
{
if (name == "ExternalIndex")
{
options.FieldDefinitions.AddOrUpdate(new FieldDefinition("fieldName", "fieldType"));
}
}
}
The options class must be registered in the Dependency Injection container to apply:
builder.Services.ConfigureOptions<ConfigureIndexOptions>();
Core fields
Umbraco's "path" field is automatically indexed as a list and so a content item with the path -1,1050,1100
can be queried like this:
query.Field("path", "1100");
Umbraco's "createDate" and "updateDate" fields are automatically indexed as date
values, whereas they would be regularly indexed as string values.
Pickers
The picker
field type adds search-friendly aliases for the picked items into the index.
A picker with a selected a content item called "Example Page" can be queried like this:
query.Field("somePicker", "example-page");
JSON
The json
field type splits the properties of a JSON object into individual fields within the index.
Imagine a field called "locations" has the following JSON value:
[
{
"city": "London",
"position": {
"latitude": 51.5074,
"longitude": 0.1278
}
},
{
"city": "New York",
"position": {
"latitude": 40.7128,
"longitude": 74.0060
}
}
]
Each property will be created as a field in the index, including any nested properties. In this example these would be called "locations_city", "locations_position_latitude" and "locations_position_longitude".
It is possible to index a subset of a JSON object's properties by supplying a path in JSON Path format.
Register a new ValueTypeFactory
in the index implementing the json
type, and define the path as a parameter, before assigning it to a field:
public class ConfigureIndexOptions : IConfigureNamedOptions<LuceneDirectoryIndexOptions>
{
public void Configure(string name, LuceneDirectoryIndexOptions options)
{
if (name == "ExternalIndex")
{
options.IndexValueTypesFactory = new Dictionary<string, IFieldValueTypeFactory>(options.IndexValueTypesFactory)
{
["position"] = new DelegateFieldValueTypeFactory(fieldName =>
{
return new JsonValueType(fieldName, "$[*].position");
};
};
options.FieldDefinitions.AddOrUpdate(new FieldDefinition("locations", "position"));
}
}
}
Multiple field types
There are advanced cases where indexing a value as multiple field types might be necessary, such as indexing different parts of the same JSON object into separately named fields or indexing specific properties within a JSON object as a defined type.
The MultipleValueTypeFactory
assigns a chain of field types to a field and applies them in sequence:
public class ConfigureIndexOptions : IConfigureNamedOptions<LuceneDirectoryIndexOptions>
{
public void Configure(string name, LuceneDirectoryIndexOptions options)
{
if (name == "ExternalIndex")
{
options.IndexValueTypesFactory = new Dictionary<string, IFieldValueTypeFactory>(options.IndexValueTypesFactory)
{
["locationData"] = new DelegateFieldValueTypeFactory(fieldName =>
{
return new MultipleValueTypeFactory(
fieldName,
new IIndexFieldValueType[]
{
new JsonValueType(x, "$[*].city"),
new JsonValueType("position", "$[*].position")
}
);
};
};
options.FieldDefinitions.AddOrUpdate(new FieldDefinition("locations", "locationData"));
}
}
}
In this example, the same "locations" JSON object will include all cities while an entirely new "position" field will be created including all latitudes and longitudes.
Contribution guidelines
To raise a new bug, create an issue on the GitHub repository. To fix a bug or add new features, fork the repository and send a pull request with your changes. Feel free to add ideas to the repository's issues list if you would to discuss anything related to the library.
Who do I talk to?
This project is maintained by Callum Whyte and contributors. If you have any questions about the project please get in touch on Twitter, or by raising an issue on GitHub.
Credits
The package logo uses the Magnifying Glass icon from the Noun Project by Rohith M S, licensed under CC BY 3.0 US.
A special #h5yr to our contributors
License
Copyright © 2023 Callum Whyte, and other contributors
Licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- Umbraco.Cms.Examine.Lucene (>= 9.0.1 && < 10.0.0)
-
net6.0
- Umbraco.Cms.Examine.Lucene (>= 10.0.0 && < 11.0.0)
-
net7.0
- Umbraco.Cms.Examine.Lucene (>= 11.0.0 && < 13.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Our.Umbraco.Extensions.Search:
Package | Downloads |
---|---|
Our.Umbraco.Extensions.Facets
Extensions for faceted searches in Umbraco |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.2.1 | 1,053 | 6/7/2024 |
3.2.0 | 2,426 | 6/1/2024 |
3.1.0 | 6,037 | 6/22/2023 |
3.0.2 | 2,893 | 2/8/2023 |
3.0.1 | 403 | 1/27/2023 |
3.0.0 | 525 | 11/28/2022 |
2.0.0 | 610 | 5/30/2022 |
1.5.1 | 638 | 5/29/2022 |
1.5.0 | 878 | 2/28/2022 |
1.4.1 | 7,284 | 3/14/2021 |
1.4.0 | 1,082 | 2/22/2021 |
1.3.0 | 459 | 2/10/2021 |
1.2.0 | 369 | 1/26/2021 |
1.1.0 | 429 | 1/23/2021 |
1.0.2 | 603 | 11/10/2020 |
1.0.1 | 486 | 11/9/2020 |
1.0.0 | 729 | 8/25/2020 |