DocSpace-buildtools/web/ASC.Web.Api/Api/Settings/CustomSchemasController.cs
2022-05-23 18:48:23 +03:00

164 lines
7.1 KiB
C#

// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL 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 details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Web.Api.Controllers.Settings;
public class CustomSchemasController : BaseSettingsController
{
private readonly MessageService _messageService;
private readonly CustomNamingPeople _customNamingPeople;
private readonly TenantManager _tenantManager;
private readonly PermissionContext _permissionContext;
public CustomSchemasController(
MessageService messageService,
ApiContext apiContext,
TenantManager tenantManager,
PermissionContext permissionContext,
WebItemManager webItemManager,
CustomNamingPeople customNamingPeople,
IMemoryCache memoryCache,
IHttpContextAccessor httpContextAccessor) : base(apiContext, memoryCache, webItemManager, httpContextAccessor)
{
_messageService = messageService;
_customNamingPeople = customNamingPeople;
_tenantManager = tenantManager;
_permissionContext = permissionContext;
}
[HttpGet("customschemas")]
public List<SchemaRequestsDto> PeopleSchemas()
{
return _customNamingPeople
.GetSchemas()
.Select(r =>
{
var names = _customNamingPeople.GetPeopleNames(r.Key);
return new SchemaRequestsDto
{
Id = names.Id,
Name = names.SchemaName,
UserCaption = names.UserCaption,
UsersCaption = names.UsersCaption,
GroupCaption = names.GroupCaption,
GroupsCaption = names.GroupsCaption,
UserPostCaption = names.UserPostCaption,
RegDateCaption = names.RegDateCaption,
GroupHeadCaption = names.GroupHeadCaption,
GuestCaption = names.GuestCaption,
GuestsCaption = names.GuestsCaption,
};
})
.ToList();
}
[HttpPost("customschemas")]
public SchemaRequestsDto SaveNamingSettings(SchemaRequestsDto inDto)
{
_permissionContext.DemandPermissions(SecutiryConstants.EditPortalSettings);
_customNamingPeople.SetPeopleNames(inDto.Id);
_tenantManager.SaveTenant(_tenantManager.GetCurrentTenant());
_messageService.Send(MessageAction.TeamTemplateChanged);
return PeopleSchema(inDto.Id);
}
[HttpPut("customschemas")]
public SchemaRequestsDto SaveCustomNamingSettings(SchemaRequestsDto inDto)
{
_permissionContext.DemandPermissions(SecutiryConstants.EditPortalSettings);
var usrCaption = (inDto.UserCaption ?? "").Trim();
var usrsCaption = (inDto.UsersCaption ?? "").Trim();
var grpCaption = (inDto.GroupCaption ?? "").Trim();
var grpsCaption = (inDto.GroupsCaption ?? "").Trim();
var usrStatusCaption = (inDto.UserPostCaption ?? "").Trim();
var regDateCaption = (inDto.RegDateCaption ?? "").Trim();
var grpHeadCaption = (inDto.GroupHeadCaption ?? "").Trim();
var guestCaption = (inDto.GuestCaption ?? "").Trim();
var guestsCaption = (inDto.GuestsCaption ?? "").Trim();
if (string.IsNullOrEmpty(usrCaption)
|| string.IsNullOrEmpty(usrsCaption)
|| string.IsNullOrEmpty(grpCaption)
|| string.IsNullOrEmpty(grpsCaption)
|| string.IsNullOrEmpty(usrStatusCaption)
|| string.IsNullOrEmpty(regDateCaption)
|| string.IsNullOrEmpty(grpHeadCaption)
|| string.IsNullOrEmpty(guestCaption)
|| string.IsNullOrEmpty(guestsCaption))
{
throw new Exception(Resource.ErrorEmptyFields);
}
var names = new PeopleNamesItem
{
Id = PeopleNamesItem.CustomID,
UserCaption = usrCaption.Substring(0, Math.Min(30, usrCaption.Length)),
UsersCaption = usrsCaption.Substring(0, Math.Min(30, usrsCaption.Length)),
GroupCaption = grpCaption.Substring(0, Math.Min(30, grpCaption.Length)),
GroupsCaption = grpsCaption.Substring(0, Math.Min(30, grpsCaption.Length)),
UserPostCaption = usrStatusCaption.Substring(0, Math.Min(30, usrStatusCaption.Length)),
RegDateCaption = regDateCaption.Substring(0, Math.Min(30, regDateCaption.Length)),
GroupHeadCaption = grpHeadCaption.Substring(0, Math.Min(30, grpHeadCaption.Length)),
GuestCaption = guestCaption.Substring(0, Math.Min(30, guestCaption.Length)),
GuestsCaption = guestsCaption.Substring(0, Math.Min(30, guestsCaption.Length)),
};
_customNamingPeople.SetPeopleNames(names);
_tenantManager.SaveTenant(_tenantManager.GetCurrentTenant());
_messageService.Send(MessageAction.TeamTemplateChanged);
return PeopleSchema(PeopleNamesItem.CustomID);
}
[HttpGet("customschemas/{id}")]
public SchemaRequestsDto PeopleSchema(string id)
{
var names = _customNamingPeople.GetPeopleNames(id);
var schemaItem = new SchemaRequestsDto
{
Id = names.Id,
Name = names.SchemaName,
UserCaption = names.UserCaption,
UsersCaption = names.UsersCaption,
GroupCaption = names.GroupCaption,
GroupsCaption = names.GroupsCaption,
UserPostCaption = names.UserPostCaption,
RegDateCaption = names.RegDateCaption,
GroupHeadCaption = names.GroupHeadCaption,
GuestCaption = names.GuestCaption,
GuestsCaption = names.GuestsCaption,
};
return schemaItem;
}
}