Added PortalController

This commit is contained in:
pavelbannov 2019-09-03 18:13:25 +03:00
parent 238e103440
commit c7282888d0
2 changed files with 132 additions and 3 deletions

View File

@ -0,0 +1,129 @@
using System;
using System.Linq;
using ASC.Api.Core;
using ASC.Common.Logging;
using ASC.Core;
using ASC.Core.Billing;
using ASC.Core.Tenants;
using ASC.Core.Users;
using ASC.MessagingSystem;
using ASC.Web.Api.Routing;
using ASC.Web.Core.Utility;
using ASC.Web.Studio.Core.Notify;
using ASC.Web.Studio.Utility;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
namespace ASC.Web.Api.Controllers
{
[DefaultRoute]
[ApiController]
public class PortalController : ControllerBase
{
public Tenant Tenant { get { return ApiContext.Tenant; } }
public ApiContext ApiContext { get; }
public LogManager LogManager { get; }
public MessageService MessageService { get; }
public StudioNotifyService StudioNotifyService { get; }
public IWebHostEnvironment WebHostEnvironment { get; }
public PortalController(LogManager logManager,
MessageService messageService,
StudioNotifyService studioNotifyService,
ApiContext apiContext)
{
LogManager = logManager;
MessageService = messageService;
StudioNotifyService = studioNotifyService;
ApiContext = apiContext;
}
[Read("")]
public Tenant Get()
{
return Tenant;
}
[Read("users/{userID}")]
public UserInfo GetUser(Guid userID)
{
return CoreContext.UserManager.GetUsers(Tenant.TenantId, userID);
}
[Read("users/invite/{employeeType}")]
public string GeInviteLink(EmployeeType employeeType)
{
return CommonLinkUtility.GetConfirmationUrl(Tenant.TenantId, string.Empty, ConfirmType.LinkInvite, (int)employeeType, SecurityContext.CurrentAccount.ID)
+ $"&emplType={employeeType:d}";
}
[Update("getshortenlink")]
public string GetShortenLink(string link)
{
try
{
return UrlShortener.Instance.GetShortenLink(link);
}
catch (Exception ex)
{
LogManager.Get("ASC.Web").Error("getshortenlink", ex);
return link;
}
}
[Read("usedspace")]
public double GetUsedSpace()
{
return Math.Round(
CoreContext.TenantManager.FindTenantQuotaRows(new TenantQuotaRowQuery(Tenant.TenantId))
.Where(q => !string.IsNullOrEmpty(q.Tag) && new Guid(q.Tag) != Guid.Empty)
.Sum(q => q.Counter) / 1024f / 1024f / 1024f, 2);
}
[Read("userscount")]
public long GetUsersCount()
{
return CoreContext.UserManager.GetUserNames(Tenant, EmployeeStatus.Active).Count();
}
[Read("tariff")]
public Tariff GetTariff()
{
return CoreContext.PaymentManager.GetTariff(Tenant.TenantId);
}
[Read("quota")]
public TenantQuota GetQuota()
{
return CoreContext.TenantManager.GetTenantQuota(Tenant.TenantId);
}
[Read("quota/right")]
public TenantQuota GetRightQuota()
{
var usedSpace = GetUsedSpace();
var needUsersCount = GetUsersCount();
return CoreContext.TenantManager.GetTenantQuotas().OrderBy(r => r.Price)
.FirstOrDefault(quota =>
quota.ActiveUsers > needUsersCount
&& quota.MaxTotalSize > usedSpace
&& !quota.Year);
}
[Read("path")]
public string GetFullAbsolutePath(string virtualPath)
{
return CommonLinkUtility.GetFullAbsolutePath(ApiContext.HttpContext, virtualPath);
}
}
}

View File

@ -515,16 +515,16 @@ namespace ASC.Web.Studio.Utility
{
var validationKey = EmailValidationKeyProvider.GetEmailKey(tenantId, email + confirmType + (postfix ?? ""));
var link = string.Format("confirm.aspx?type={0}&key={1}", confirmType, validationKey);
var link = $"confirm?key={validationKey}&type={confirmType}";
if (!string.IsNullOrEmpty(email))
{
link += "&email=" + HttpUtility.UrlEncode(email);
link += $"email={HttpUtility.UrlEncode(email)}";
}
if (userId != default)
{
link += "&uid=" + userId;
link += $"uid={userId}";
}
if (postfix != null)