DocSpace-buildtools/common/services/ASC.Notify/NotifyServiceLauncher.cs

143 lines
5.1 KiB
C#
Raw Normal View History

2019-07-29 09:15:48 +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.
*
*/
2019-09-09 12:56:33 +00:00
using System;
2019-07-29 09:15:48 +00:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using ASC.Common.Logging;
2019-11-01 08:49:08 +00:00
using ASC.Core.Common;
2019-07-29 09:15:48 +00:00
using ASC.Notify.Config;
using ASC.Web.Core;
using ASC.Web.Studio.Core.Notify;
using ASC.Web.Studio.Utility;
2019-09-19 15:55:44 +00:00
using Microsoft.Extensions.DependencyInjection;
2019-07-29 09:15:48 +00:00
using Microsoft.Extensions.Hosting;
2019-10-17 15:55:35 +00:00
using Microsoft.Extensions.Options;
2019-07-29 09:15:48 +00:00
namespace ASC.Notify
{
2019-11-01 08:49:08 +00:00
public class ConfigureCommonLinkUtilitySettings : IConfigureOptions<CommonLinkUtilitySettings>
{
public ConfigureCommonLinkUtilitySettings(IOptions<NotifyServiceCfg> notifyServiceCfg)
{
NotifyServiceCfg = notifyServiceCfg.Value;
}
public NotifyServiceCfg NotifyServiceCfg { get; }
public void Configure(CommonLinkUtilitySettings clu)
{
clu.ServerUri = NotifyServiceCfg.ServerRoot;
}
}
2019-07-29 09:15:48 +00:00
public class NotifyServiceLauncher : IHostedService
{
public NotifyServiceCfg NotifyServiceCfg { get; }
2019-08-01 08:47:15 +00:00
public NotifyService NotifyService { get; }
2019-07-29 09:15:48 +00:00
public NotifySender NotifySender { get; }
public NotifyCleaner NotifyCleaner { get; }
public WebItemManager WebItemManager { get; }
2019-09-09 12:56:33 +00:00
public IServiceProvider ServiceProvider { get; }
2019-10-17 15:55:35 +00:00
public ILog Log { get; }
2019-07-29 09:15:48 +00:00
2019-11-01 08:49:08 +00:00
public NotifyServiceLauncher(
IOptions<NotifyServiceCfg> notifyServiceCfg,
2019-08-01 08:47:15 +00:00
NotifySender notifySender,
NotifyService notifyService,
NotifyCleaner notifyCleaner,
2019-09-09 12:56:33 +00:00
WebItemManager webItemManager,
2019-10-17 15:55:35 +00:00
IServiceProvider serviceProvider,
2019-11-06 15:03:09 +00:00
IOptionsMonitor<ILog> options)
2019-07-29 09:15:48 +00:00
{
2019-11-01 08:49:08 +00:00
NotifyServiceCfg = notifyServiceCfg.Value;
2019-08-01 08:47:15 +00:00
NotifyService = notifyService;
2019-07-29 09:15:48 +00:00
NotifySender = notifySender;
NotifyCleaner = notifyCleaner;
WebItemManager = webItemManager;
2019-09-09 12:56:33 +00:00
ServiceProvider = serviceProvider;
2019-10-17 15:55:35 +00:00
Log = options.Get("ASC.Notify");
2019-07-29 09:15:48 +00:00
}
public Task StartAsync(CancellationToken cancellationToken)
{
2019-08-01 08:47:15 +00:00
NotifyService.Start();
2019-07-29 09:15:48 +00:00
NotifySender.StartSending();
if (0 < NotifyServiceCfg.Schedulers.Count)
{
InitializeNotifySchedulers();
}
NotifyCleaner.Start();
return Task.CompletedTask;
}
public Task StopAsync(CancellationToken cancellationToken)
{
2019-08-01 08:47:15 +00:00
NotifyService.Stop();
2019-07-29 09:15:48 +00:00
if (NotifySender != null)
{
NotifySender.StopSending();
}
if (NotifyCleaner != null)
{
NotifyCleaner.Stop();
}
return Task.CompletedTask;
}
private void InitializeNotifySchedulers()
{
2019-09-09 12:56:33 +00:00
NotifyConfiguration.Configure(ServiceProvider);
2019-07-29 09:15:48 +00:00
WebItemManager.LoadItems();
2019-08-15 12:04:42 +00:00
foreach (var pair in NotifyServiceCfg.Schedulers.Where(r => r.MethodInfo != null))
2019-07-29 09:15:48 +00:00
{
2019-10-17 15:55:35 +00:00
Log.DebugFormat("Start scheduler {0} ({1})", pair.Name, pair.MethodInfo);
2019-07-29 09:15:48 +00:00
pair.MethodInfo.Invoke(null, null);
}
}
}
2019-11-01 08:49:08 +00:00
public static class NotifyServiceLauncherExtension
2019-11-01 08:49:08 +00:00
{
public static IServiceCollection AddNotifyServiceLauncher(this IServiceCollection services)
{
return services
.AddCommonLinkUtilityService()
.AddNotifySender()
.AddNotifyService()
.AddWebItemManager()
.AddNotifyCleaner();
}
}
2019-07-29 09:15:48 +00:00
}