DocSpace-buildtools/common/services/ASC.ElasticSearch/Core/SearchSettings.cs

189 lines
6.3 KiB
C#
Raw Normal View History

2020-01-24 13:07:51 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
2020-02-17 08:58:14 +00:00
using ASC.Common;
2020-05-05 17:40:24 +00:00
using ASC.Common.Caching;
2020-01-24 13:07:51 +00:00
using ASC.Core;
using ASC.Core.Common.Settings;
2020-02-17 08:58:14 +00:00
2020-09-11 14:12:35 +00:00
using Autofac;
using Microsoft.Extensions.Configuration;
2020-02-17 08:58:14 +00:00
using Microsoft.Extensions.DependencyInjection;
2020-01-24 13:07:51 +00:00
using Newtonsoft.Json;
namespace ASC.ElasticSearch.Core
{
[Serializable]
public class SearchSettings : ISettings
{
public string Data { get; set; }
public Guid ID
{
get { return new Guid("{93784AB2-10B5-4C2F-9B36-F2662CCCF316}"); }
}
public ISettings GetDefault(IServiceProvider serviceProvider)
{
return new SearchSettings();
}
private List<SearchSettingsItem> items;
internal List<SearchSettingsItem> Items
{
get
{
if (items != null) return items;
var parsed = JsonConvert.DeserializeObject<List<SearchSettingsItem>>(Data ?? "");
return items = parsed ?? new List<SearchSettingsItem>();
2020-02-17 08:58:14 +00:00
}
set
{
items = value;
2020-01-24 13:07:51 +00:00
}
}
2020-02-17 08:58:14 +00:00
2020-01-24 13:07:51 +00:00
internal bool IsEnabled(string name)
{
var wrapper = Items.FirstOrDefault(r => r.ID == name);
return wrapper != null && wrapper.Enabled;
}
2020-02-17 08:58:14 +00:00
}
2020-10-19 15:53:15 +00:00
[Scope]
2020-02-17 08:58:14 +00:00
public class SearchSettingsHelper
2020-05-05 17:40:24 +00:00
{
2020-08-12 09:58:08 +00:00
private TenantManager TenantManager { get; }
private SettingsManager SettingsManager { get; }
private CoreBaseSettings CoreBaseSettings { get; }
private FactoryIndexer FactoryIndexer { get; }
private ICacheNotify<ReIndexAction> CacheNotify { get; }
2020-09-11 14:12:35 +00:00
private IServiceProvider ServiceProvider { get; }
public IConfiguration Configuration { get; }
2020-05-05 17:40:24 +00:00
public SearchSettingsHelper(
TenantManager tenantManager,
2020-02-17 08:58:14 +00:00
SettingsManager settingsManager,
CoreBaseSettings coreBaseSettings,
2020-05-05 17:40:24 +00:00
FactoryIndexer factoryIndexer,
ICacheNotify<ReIndexAction> cacheNotify,
2020-09-11 14:12:35 +00:00
IServiceProvider serviceProvider,
IConfiguration configuration)
2020-05-05 17:40:24 +00:00
{
TenantManager = tenantManager;
2020-02-17 08:58:14 +00:00
SettingsManager = settingsManager;
CoreBaseSettings = coreBaseSettings;
2020-05-05 17:40:24 +00:00
FactoryIndexer = factoryIndexer;
CacheNotify = cacheNotify;
2020-09-11 14:12:35 +00:00
ServiceProvider = serviceProvider;
Configuration = configuration;
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
public List<SearchSettingsItem> GetAllItems()
{
if (!SearchByContentEnabled) return new List<SearchSettingsItem>();
var settings = SettingsManager.Load<SearchSettings>();
return AllItems.Select(r => new SearchSettingsItem
{
ID = r.IndexName,
Enabled = settings.IsEnabled(r.IndexName),
Title = r.SettingsTitle
}).ToList();
2020-02-17 08:58:14 +00:00
}
2020-04-29 16:01:38 +00:00
private List<IFactoryIndexer> allItems;
internal List<IFactoryIndexer> AllItems
2020-01-24 13:07:51 +00:00
{
get
{
2020-09-29 09:18:16 +00:00
return allItems ??= FactoryIndexer.Builder.Resolve<IEnumerable<IFactoryIndexer>>().ToList();
2020-01-24 13:07:51 +00:00
}
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
public void Set(List<SearchSettingsItem> items)
{
if (!SearchByContentEnabled) return;
2020-02-17 08:58:14 +00:00
var settings = SettingsManager.Load<SearchSettings>();
var settingsItems = settings.Items;
2020-01-24 13:07:51 +00:00
var toReIndex = !settingsItems.Any() ? items.Where(r => r.Enabled).ToList() : items.Where(item => settingsItems.Any(r => r.ID == item.ID && r.Enabled != item.Enabled)).ToList();
settings.Items = items;
settings.Data = JsonConvert.SerializeObject(items);
2020-10-12 19:39:23 +00:00
SettingsManager.Save(settings);
2020-05-05 17:40:24 +00:00
var action = new ReIndexAction() { Tenant = TenantManager.GetCurrentTenant().TenantId };
action.Names.AddRange(toReIndex.Select(r => r.ID).ToList());
CacheNotify.Publish(action, CacheNotifyAction.Any);
2020-02-17 08:58:14 +00:00
}
public bool CanSearchByContent<T>(int tenantId) where T : class, ISearchItem
2020-09-11 14:12:35 +00:00
{
if (typeof(ISearchItemDocument).IsAssignableFrom(typeof(T)))
2020-01-24 13:07:51 +00:00
{
return false;
2020-09-11 14:12:35 +00:00
}
if (Convert.ToBoolean(Configuration["core:search-by-content"] ?? "false")) return true;
if (!SearchByContentEnabled) return false;
2020-02-17 08:58:14 +00:00
var settings = SettingsManager.LoadForTenant<SearchSettings>(tenantId);
2020-01-24 13:07:51 +00:00
2020-02-11 15:10:30 +00:00
return settings.IsEnabled(ServiceProvider.GetService<T>().IndexName);
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
private bool SearchByContentEnabled
{
get
{
return CoreBaseSettings.Standalone;
}
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
}
[Serializable]
public class SearchSettingsItem
{
public string ID { get; set; }
public bool Enabled { get; set; }
public string Title { get; set; }
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
}