In this article you will find:
Table of Contents |
---|
Goal
This article provides information on how to index documents which are above the document size limit.
Prerequisite
Info |
---|
Configure Connector - Configure Hawksearch |
...
In this article you will find:
Table of Contents |
---|
Goal
This article provides information on how to index documents which are above the document size limit.
Prerequisite
Info |
---|
Configure Connector - Configure Hawksearch |
Setup document size limit
Open the backend of your Sitefinity instance
Navigate to Administartion → Settings and click Advanced (your-site-domain/Sitefinity/Administration/Settings/Advanced)
Open the Hawksearch configuration
Under document size limit enter 4000KB
Save the changes
Upload content above the limit
For the purpose of this example we are going to upload .docx, .txt and .pdf files.
Open the backend of your Sitefinity instance
Navigate to Administartion → Settings and click Advanced (your-site-domain/Sitefinity/Administration/Settings/Advanced)
Open the Hawksearch configuration
Under document size limit enter 4000KB
Save the changes
Upload content above the limit
For the purpose of this example we are going to upload .docx, .txt and .pdf files.
Open the backend of your Sitefinity instance
Navigate to Content → Documents & Files
Upload Content → Documents & Files
Upload files above the document size limit e.g. 10MB
...
Code Block | ||||
---|---|---|---|---|
| ||||
using System;
using System.Collections.Generic;
using System.Linq;
using Hawksearch.Search;
using Telerik.Sitefinity.Services.Search.Data;
using Telerik.Sitefinity.Configuration;
using Telerik.Sitefinity.Services.Search.Model;
using Hawksearch.Configuration;
using Hawksearch.SDK.Indexing;
using Field = Telerik.Sitefinity.Services.Search.Publishing.Field;
namespace SitefinityWebApp
{
public class CustomSearchService : HawksearchService
{
private const string DocumentContentType = "Telerik.Sitefinity.Libraries.Model.Document";
protected override List<SubmitDocument> AdaptDocuments(IEnumerable<IDocument> documents)
{
var doc = documents.ToList().FirstOrDefault();
var documentList = new List<IDocument>(documents);
if (doc != null)
{
var contentTypeField = doc.Fields.FirstOrDefault(f => f.Name == "ContentType");
if (contentTypeField != null)
{
if (string.Equals(contentTypeField.Value.ToString(), DocumentContentType, StringComparison.InvariantCultureIgnoreCase))
{
var configManager = ConfigManager.GetManager();
var hawkConfig = configManager.GetSection<HawkSearchConfig>();
documentList.Clear();
foreach (var document in documents)
{
var modifiedDocument = document;
var documentSize = this.CalculateDocumentSize(document);
if (documentSize > hawkConfig.DocumentSizeLimit)
{
modifiedDocument = this.ModifyDocument(document);
}
documentList.Add(modifiedDocument);
}
}
}
}
return base.AdaptDocuments(documentList);
}
private double CalculateDocumentSize(IDocument document)
{
var documentSize = 0.0;
foreach (var field in document.Fields)
{
if (field.Value != null)
{
documentSize += System.Text.Encoding.Unicode.GetByteCount(field.Value.ToString()) / 1024.0;
}
}
return documentSize;
}
private IDocument ModifyDocument(IDocument document)
{
var wordLimit = 500;
var fields = new List<IField>(document.Fields);
var contentField = document.Fields.FirstOrDefault(f => f.Name == "Content");
fields.Remove(contentField);
contentField = this.ExtractFieldContent(contentField, wordLimit);
fields.Add(contentField);
var modifiedDocument = new Document(fields, document.IdentityField.Name);
return modifiedDocument;
}
private IField ExtractFieldContent(IField contentField, int wordLimit)
{
var fieldValue = contentField.Value.ToString();
if (!string.IsNullOrWhiteSpace(fieldValue))
{
var modifiedContent = string.Join(" ", fieldValue.Split(' ').Take(wordLimit).ToArray());
contentField = new Field
{
Name = "Content",
Value = modifiedContent
};
}
return contentField;
}
}
} |
Register Custom Search Service
In order to use your custom search service instead of the built-in one you need to register it in the backend.
...
Open the backend of your Sitefinity instance.
...
Navigate to Administration → Settings (your-site-domain/Sitefinity/Administration/Settings)
...
Go to Advanced (your-site-domain/Sitefinity/Administration/Settings/Advanced)
...
Under Search → Search services → Hawksearch enter the TypeName of you custom search service (e.g. SitefinityWebApp.CustomSearchService)
...
} |
Register Custom Search Service
In order to use your custom search service instead of the built-in one you need to register it in the backend.
Info |
---|
Please refer to this documentation - Register custom search service |