DocSpace-client/products/ASC.CRM/Server/Configuration/ProductEntryPoint.cs

141 lines
5.7 KiB
C#
Raw Normal View History

2020-03-02 15:38:31 +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.
*
*/
2021-03-19 16:56:26 +00:00
using System;
using System.Linq;
2021-04-01 13:28:36 +00:00
using ASC.Common;
2020-03-02 15:38:31 +00:00
using ASC.Core;
using ASC.CRM.Resources;
using ASC.Web.Core;
2020-04-02 19:42:03 +00:00
using ASC.Web.Files.Api;
2021-03-19 16:56:26 +00:00
2020-03-02 15:38:31 +00:00
namespace ASC.Web.CRM.Configuration
{
2021-04-01 13:28:36 +00:00
[Scope]
2020-03-02 15:38:31 +00:00
public class ProductEntryPoint : Product
{
2021-05-28 17:20:12 +00:00
private ProductContext _context;
private FilesIntegration _filesIntegration;
private PathProvider _pathProvider;
private SecurityContext _securityContext;
private UserManager _userManager;
2020-03-02 15:38:31 +00:00
public ProductEntryPoint(SecurityContext securityContext,
UserManager userManager,
PathProvider pathProvider,
2021-05-05 14:09:05 +00:00
FilesIntegration filesIntegration)
2020-03-02 15:38:31 +00:00
{
2021-05-28 17:20:12 +00:00
_securityContext = securityContext;
_userManager = userManager;
_pathProvider = pathProvider;
_filesIntegration = filesIntegration;
2020-03-02 15:38:31 +00:00
}
2021-03-19 16:56:26 +00:00
2020-03-02 15:38:31 +00:00
public static readonly Guid ID = WebItemManager.CRMProductID;
2021-05-05 14:09:05 +00:00
public override string ApiURL
{
get => "api/2.0/crm/info.json";
}
2020-03-02 15:38:31 +00:00
public override Guid ProductID { get { return ID; } }
public override string Name { get { return CRMCommonResource.ProductName; } }
public override string Description
{
get
{
2021-05-28 17:20:12 +00:00
var id = _securityContext.CurrentAccount.ID;
2020-03-02 15:38:31 +00:00
2021-05-28 17:20:12 +00:00
if (_userManager.IsUserInGroup(id, ASC.Core.Users.Constants.GroupAdmin.ID) || _userManager.IsUserInGroup(id, ID))
2020-03-02 15:38:31 +00:00
return CRMCommonResource.ProductDescriptionEx;
return CRMCommonResource.ProductDescription;
}
}
2021-05-28 17:20:12 +00:00
public override string StartURL { get { return _pathProvider.StartURL(); } }
public override string HelpURL { get { return string.Concat(_pathProvider.BaseVirtualPath, "help.aspx"); } }
2020-03-02 15:38:31 +00:00
public override string ProductClassName { get { return "crm"; } }
public override bool Visible { get { return true; } }
2021-05-05 14:09:05 +00:00
public override ProductContext Context { get { return _context; } }
2020-03-02 15:38:31 +00:00
public string ModuleSysName { get; set; }
public override void Init()
{
2021-05-05 14:09:05 +00:00
_context = new ProductContext
2020-03-02 15:38:31 +00:00
{
DisabledIconFileName = "product_disabled_logo.png",
2021-06-16 14:30:31 +00:00
IconFileName = "images/crm.menu.svg",
LargeIconFileName = "images/crm.svg",
2020-03-02 15:38:31 +00:00
DefaultSortOrder = 30,
2021-03-19 16:56:26 +00:00
// SubscriptionManager = new ProductSubscriptionManager(),
// SpaceUsageStatManager = new CRMSpaceUsageStatManager(),
2020-03-02 15:38:31 +00:00
AdminOpportunities = () => CRMCommonResource.ProductAdminOpportunities.Split('|').ToList(),
UserOpportunities = () => CRMCommonResource.ProductUserOpportunities.Split('|').ToList(),
};
2021-05-05 14:09:05 +00:00
//if (!FilesIntegration.IsRegisteredFileSecurityProvider("crm", "crm_common"))
//{
// FilesIntegration.RegisterFileSecurityProvider("crm", "crm_common", FileSecurityProvider);
//}
//if (!FilesIntegration.IsRegisteredFileSecurityProvider("crm", "opportunity"))
//{
// FilesIntegration.RegisterFileSecurityProvider("crm", "opportunity", FileSecurityProvider);
//}
2020-03-02 15:38:31 +00:00
2021-03-19 16:56:26 +00:00
// SearchHandlerManager.Registry(new SearchHandler());
2020-03-02 15:38:31 +00:00
2020-04-02 19:42:03 +00:00
//GlobalConfiguration.Configuration.Routes.MapHttpRoute(
// name: "Twilio",
// routeTemplate: "twilio/{action}",
// defaults: new {controller = "Twilio", action = "index" });
2020-03-02 15:38:31 +00:00
2021-03-19 16:56:26 +00:00
// ClientScriptLocalization = new ClientLocalizationResources();
2020-03-02 15:38:31 +00:00
}
2020-04-14 07:59:07 +00:00
//public override void Shutdown()
//{
// if (registered)
// {
2020-04-16 19:41:37 +00:00
// NotifyClient.Client.UnregisterSendMethod(NotifyClient.SendAutoReminderAboutTask);
2021-03-19 16:56:26 +00:00
2020-04-14 07:59:07 +00:00
// }
//}
//public static void RegisterSendMethods()
//{
// lock (Locker)
// {
// if (!registered)
// {
// registered = true;
2020-04-16 19:41:37 +00:00
// NotifyClient.Client.RegisterSendMethod(NotifyClient.SendAutoReminderAboutTask, "0 * * ? * *");
2020-04-14 07:59:07 +00:00
// }
// }
//}
2020-03-02 15:38:31 +00:00
}
}