Kentico CMS 7.0 Developer's Guide

Defining custom index content

Defining custom index content

Previous topic Next topic Mail us feedback on this topic!  

Defining custom index content

Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic!  

When creating a custom index, you do not define the content on the Index tab. Instead, you must implement all functionality of the index by writing code. In the administration interface, you only need to specify the names of the assembly and class that contain the custom index logic.

 

To define a custom index, create a class that implements the CMS.Siteprovider.ICustomSearchIndex interface.

 

To integrate this type of class into the application, you can:

 

Create a new assembly (Class library) in your web project and include the index class there. When using this approach, you must add the appropriate references to both the assembly and the main CMS project. You can find a sample search index in the CustomSearchIndex project located in your Kentico CMS installation directory (typically C:\Program Files\KenticoCMS\<version>\CodeSamples\CustomSearchIndex).

Define the custom index in App_Code and load the class via the API. This ensures that the system automatically compiles the index class and you do not need to use a separate assembly. The example below demonstrates this approach.

 

Writing custom index code

 

The following example shows how to create a custom index that searches the content of text files:

 

1. Open your web project in Visual Studio and add a new class into the App_Code folder (or Old_App_Code if the project is installed as a web application). For example, name the class TextFileIndex.cs.

 

2. Edit the class and add the following references:

 

[C#]

 

using CMS.EventLog;
using CMS.SiteProvider;
using CMS.SettingsProvider;
using CMS.GlobalHelper;
using CMS.IO;
 
using Lucene.Net.Index;
using Lucene.Net.Documents;

 

3. Make the class implement the ICustomSearchIndex interface.

 

[C#]

 

public class TextFileIndex : ICustomSearchIndex

 

4. Define the Rebuild method inside the class. You must always include this method when writing a custom index. It fills the index with data, which determines what kind of searches the index provides. The system calls the method when building the index for the first time and on each subsequent rebuild.

 

[C#]

 

/// <summary>
/// Fills the index with content.
/// </summary>
/// <param name="srchInfo">Info object representing the search index</param>
public void Rebuild(SearchIndexInfo srchInfo)
{
    // Checks whether the index info object is defined.
    if (srchInfo != null)
    {
        // Gets an index writer object for the current index.
        IndexWriter iw = srchInfo.GetWriter(true);
 
        // Checks the whether writer is defined.
        if (iw != null)
        {
            try
            {

          // Gets an info object of the index settings.
          SearchIndexSettingsInfo sisi = srchInfo.IndexSettings.Items[SearchHelper.CUSTOM_INDEX_DATA];

 
            // Gets the search path from the Index data field.
            string path = Convert.ToString(sisi.GetValue("CustomData"));
 
            // Checks whether the path is defined.
            if (!String.IsNullOrEmpty(path))
            {
                // Gets all text files from the specified directory.
                string[] files = Directory.GetFiles(path, "*.txt");
 
                // Loops through all files.
                foreach (string file in files)
                {
                    // Gets the current file info.
                    FileInfo fi = FileInfo.New(file);
 
                    // Gets the text content of the current file.
                    string text = fi.OpenText().ReadToEnd();
 
                    // Checks that the file is not empty.
                    if (!String.IsNullOrEmpty(text))
                    {
                    // Converts the text to lower case.
                    text = text.ToLower();
                    // Removes diacritics.
                    text = TextHelper.RemoveDiacritics(text);

 
                  // Creates a new Lucene.Net search document for the current text file.
                  Document doc = SearchHelper.CreateDocument(SearchHelper.CUSTOM_SEARCH_INDEX, Guid.NewGuid().ToString(), SearchHelper.INVARIANT_FIELD_VALUE, fi.CreationTime, SearchHelper.INVARIANT_FIELD_VALUE);
 
                  // Adds a content field. This field is processed when the search looks for matching results.
                  SearchHelper.AddField(doc, SearchHelper.CONTENT_FIELD, text, false, true);
 
                  // Adds a title field. The value of this field is used for the search results title.
                  SearchHelper.AddField(doc, SearchHelper.CUSTOM_TITLE, fi.Name, true, false);
 
                  // Adds a content field. The value of this field is used for the search result excerpt.
                  SearchHelper.AddField(doc, SearchHelper.CUSTOM_CONTENT, TextHelper.LimitLength(text, 200), true, false);
 
                  // Adds a date field. The value of this field is used for the date in the search results.
                  SearchHelper.AddField(doc, SearchHelper.CUSTOM_DATE, fi.CreationTime, true, false);
 
                  // Adds a url field. The value of this field is used for link urls in the search results.
                  SearchHelper.AddField(doc, SearchHelper.CUSTOM_URL, file, true, false);
 
                  // Adds an image field. The value of this field is used for the images in the search results.
                  //SearchHelper.AddField(doc, SearchHelper.CUSTOM_IMAGEURL, "textfile.jpg", true, false);

 
                    // Adds the document to the index.
                    iw.AddDocument(doc);
                    }
                }
 
                // Optimizes the index.
                iw.Optimize();
            }
            }
 
            // Logs any potential exceptions.
            catch (Exception ex)
            {
                EventLogProvider.LogException("CustomTextFileIndex""Rebuild", ex);
            }
            // Always close the index writer.
            finally
            {
                iw.Close();
            }
        }
    }
}

 

You need to write the code of the Rebuild method according to the specific purpose of the index, but all indexes use the following general steps:

 

a. Get an instance of the Lucene.Net.IndexWriter object for the search index.

b. Define search Documents (Lucene.Net.Documents.Document objects) and their fields for the items that you wish to add to the index.

c. Call the AddDocument method of the IndexWriter for every search document.

d. Optimize the index using the Optimize method of the IndexWriter once you have added all required search documents.

e. Call the Close method of the IndexWriter.

 

 

InfoBox_Note

 

Index data parameters

 

The SearchIndexInfo parameter of the Rebuild method allows you to access the data fields of the corresponding search index object. The sample code loads the content of the Index data field and uses it to define the path to the searched text files.

 

When writing your own custom indexes, you can use this field as a string parameter for any required purpose. This way, you may easily modify the behavior of the index directly from the administration interface without having to edit its code.

 

Loading App_Code index classes

 

For indexes defined in the App_Code folder, you need to ensure that the system loads the appropriate class when building the index. You can find additional information related to this topic in Registering custom classes in App_Code.

 

1. Create another class in the App_Code folder (or Old_App_Code if the project is installed as a web application). For example, name the class ClassLoader.cs.

 

2. Edit the class and add the following reference:

 

[C#]

 

using CMS.SettingsProvider;

 

3. Delete the default class declaration and its content. Instead, extend the CMSModuleLoader partial class and define a new attribute inheriting from CMS.SettingsProvider.CMSLoaderAttribute:

 
[C#]

 

[ClassLoader]
public partial class CMSModuleLoader
{
    /// <summary>
    /// Attribute class for loading custom classes.
    /// </summary>
    private class ClassLoader : CMSLoaderAttribute
    {
 
    }
}

 

4. Enter the following code into the ClassLoader attribute class:

 

[C#]

 

/// <summary>
/// Called automatically when the application starts.
/// </summary>
public override void Init()
{
    // Assigns a handler for the OnGetCustomClass event.
    ClassHelper.OnGetCustomClass += ClassHelper_OnGetCustomClass;
}
 
 
/// <summary>
/// Gets a custom class object based on the given parameters.
/// </summary>
private void ClassHelper_OnGetCustomClass(object sender, ClassEventArgs e)
{
    if (e.Object == null)
    {
        // Checks the name of the requested class.
        switch (e.ClassName)
        {
            // Gets an instance of the TextFileIndex class.

          case "TextFileIndex":

               e.Object = new TextFileIndex();

              break;
       }
   }
}

 

For custom indexes, the value of the ClassName property of the ClassHelper_OnGetCustomClass handler's ClassEventArgs parameter matches the Class name specified for the given index on its Index tab (TextFileIndex in this example). The handler checks the class name to identify which index is being rebuilt and then passes on an instance of the appropriate class.

 

Registering custom search indexes

 

1. Open Kentico CMS, go to Site Manager -> Administration -> Smart Search and click NewIndex New Index. Fill in the following properties:

 

Display name: Text file index

Index type: Custom Index

 

Click Save Save.

 

2. Switch to the Index tab and enter the names of the assembly and class where the custom index is implemented:

 

Assembly name: App_Code

Class name: TextFileIndex

 

3. Type any required parameters into the Index data field. In this example, you need to specify the file system path of the folder containing the text files that the index will search. You can create a new folder for this purpose, e.g. C:\SearchExample\ and add some text files into it.

 

devguide_clip1144

 

Click Save Save.

 

4. Go to the General tab and RebuildIndex Rebuild the index.

 

Result

 

The index is now fully functional. To test the index, switch to Search preview tab and try searching for any words from the text files created in the SearchExample folder.