USiteSearch 0.650.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package USiteSearch --version 0.650.0
NuGet\Install-Package USiteSearch -Version 0.650.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="USiteSearch" Version="0.650.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add USiteSearch --version 0.650.0
#r "nuget: USiteSearch, 0.650.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install USiteSearch as a Cake Addin
#addin nuget:?package=USiteSearch&version=0.650.0

// Install USiteSearch as a Cake Tool
#tool nuget:?package=USiteSearch&version=0.650.0

Current version

0.650.nupkg This version can be installed and works!

Why Create USiteSearch?

I build websites using the Umbraco content management system, and one feature that is often necessary is a site search. While you can use Examine for this purpose, my sites often require a Google-like search rather than a search specific to the site's content. Additionally, I need a user-friendly interface for the search and syntax highlighting to make the results more readable.

In the past, I have copied and pasted my site search code between projects, but this has not been efficient and has resulted in bugs and other issues. To improve the quality of my code and make it easier to use, I have decided to add unit and integration tests and turn it into a system that can be easily installed in just 15 minutes. This system is called USiteSearch.

Earlier versions of the code used in USiteSearch can be seen in action on the Energy Council and Mysterious Universe which has a total of 20,000 blog posts.

Need an Umbraco developer?

You can reach me at my website

Support

Contact me if you need support, this is free 😃

Installation

Let's get USiteSearch working in a sample Umbraco website so you can see exactly how it works. Installing on the sample site will teach you how to install it in your own site. Set up should take no longer than 15 minutes.

Note: This help can also be viewed as a YouTube tutorial if you prefer seeing a video. The video should solve most installation problems.

Installation steps

  1. Clone this basic Umbraco 10 website. The website comes with an embedded database so it should run without further modifications. The back office login for the website is:

    Username: admin@admin.com
    Password: admin12345

    Alternatively clone the same website in Umbraco 11 if you are using Umbraco 11.
    Check the website runs and you can log in to the backoffice.

  2. Install the latest nuget USiteSearch package via the NuGet package manager:

    <img src="https://raw.githubusercontent.com/petrassurna/usitesearch/main/USiteSearch/images/nuget-install.jpg" style="height:500px">

  3. Install https://github.com/petrassurna/usitesearch/raw/main/nuget/USiteSearchProjectFiles-0.650.zip
    Unzip the files in the project folder.

    This installs some css, images, javascript and a partial view. The files it installs are show below:

    <img src="https://raw.githubusercontent.com/petrassurna/usitesearch/main/USiteSearch/images/setup-sample.jpg" style="height:500px">

  4. Run the project to view the sample website. Now let's add USiteSearch. 'Open startup.cs and add these three using statements at the top of the file:

     using Umbraco.Cms.Core.Notifications;
     using UmbracoExtensions;
    
     //add this line
     using USiteSearch.Notifications;
    

    Add AddUSiteSearch to ConfigureServices:

     public void ConfigureServices(IServiceCollection services)
     {
     	services.AddUmbraco(_env, _config)
     		.AddBackOffice()
     		.AddWebsite()
     		.AddComposers()
     		.AddNotificationHandler<UmbracoApplicationStartingNotification, Bundling>()
     		.AddUSiteSearch(services, "app_data/USiteSearch", 9) //add this
     		.Build();
     }
    

    This configures the USiteSearch to a LuceneProvider search provider:

    app_data/USiteSearch - is the relative path where Lucene will store data in the application.

    9 - When displaying search results, the number of words to display each side of a word match.

    Note the line AddNotificationHandler which adds bundling via Bundling.cs. This is an addition to the base Umbraco project but is something you should probably be adding for all css and javascript. Read more about Umbraco Bundling

  5. Next we need to enable the css and javascript used by USiteSearch. Add these lines in views/master.cshtml in the head section:

     <link rel="stylesheet" href="usitesearch-css-bundle" />
     <script src="usitesearch-js-bundle"></script>
    

    This includes these files via bundling:

    ~/USiteSearch/css/usitesearch.min.css and
    ~/USiteSearch/scripts/usitesearch.js

  6. Add this line in Views/master.cshtml under the body tag:

    @Html.Partial("~/Views/Partials/USiteSearch/USiteSearch.cshtml")
    
  7. Next we need to index the site, to do this, log into the backoffice and save and publish each of the pages.
    This will create the lucene index under the app_data folder as specified in startup.cs:

    app_data folder

    This folder can be deleted to clear the search.

  8. In order to engage the search, we need to give a front end element the attribute id="site-search"
    This has been done for you in master.cshtml:

     <li>
     	<a href="#" id="site-search" title="Search the site">Site search</a>
     </li>
    

    Click on the element and you should see the search bar, enter the term animals. After typing a few characters you should see these results:

    app_data folder

    Refine the search, search for animals lions. Note the results reduce and each search term is highlighted with 9 words either side of the word match. This is the variable we set earlier in startup.cs.

  9. Search for the term play close and notice it matches all pages:

    Search for pay close

    This is because this text is in the margin. In order to remove this text from the search, add this tag to html elements you want excluded from the site search:

    Search exclusion

    Typically you would exclude the navigation, footer and common margins. You will need to save each page again to reindex these pages.

  10. If you want to remove whole pages from the site search, add the property blockFromSearch to document types:

    Search exclusion

    This is already present in the sample project and when you check it on, pages will be removed from the search if you save them after checking the option.

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.6675.0 194 10/16/2023
0.6674.0 140 7/29/2023
0.6673.0 122 7/29/2023
0.6672.0 124 7/28/2023
0.667.0 136 7/28/2023
0.666.0 157 7/28/2023
0.665.0 148 7/28/2023
0.664.0 133 7/28/2023
0.662.0 195 6/17/2023
0.652.0 325 1/12/2023
0.651.0 277 1/11/2023
0.650.0 286 1/10/2023
0.650.0-alpha 131 1/10/2023
0.641.0 275 12/21/2022
0.66.1 131 6/17/2023
0.66.0 134 6/17/2023
0.66.0-alpha 100 1/10/2023
0.65.0-alpha 117 1/10/2023

Prerelease - for testing only