DocSpace-client/products/ASC.Files/Server/HttpHandlers/ThirdPartyAppHandler.ashx.cs

149 lines
5.5 KiB
C#
Raw Normal View History

2020-01-27 11:15:18 +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;
2020-02-06 08:56:12 +00:00
using System.Linq;
2020-01-27 11:15:18 +00:00
using System.Threading;
2020-02-06 08:56:12 +00:00
using System.Threading.Tasks;
2020-01-27 11:15:18 +00:00
using System.Web;
2020-02-06 08:56:12 +00:00
2020-04-20 12:08:24 +00:00
using ASC.Common;
2020-02-06 08:56:12 +00:00
using ASC.Common.Logging;
2020-01-27 11:15:18 +00:00
using ASC.Core;
2020-02-06 08:56:12 +00:00
using ASC.Core.Common;
2020-02-18 08:39:28 +00:00
using ASC.Files.Resources;
2020-01-27 11:15:18 +00:00
using ASC.Web.Files.ThirdPartyApp;
using ASC.Web.Studio.Utility;
2020-04-20 12:08:24 +00:00
using Microsoft.AspNetCore.Builder;
2020-02-06 08:56:12 +00:00
using Microsoft.AspNetCore.Http;
2020-04-20 12:08:24 +00:00
using Microsoft.Extensions.DependencyInjection;
2020-02-06 08:56:12 +00:00
using Microsoft.Extensions.Options;
2020-01-27 11:15:18 +00:00
namespace ASC.Web.Files.HttpHandlers
{
2020-04-20 12:08:24 +00:00
public class ThirdPartyAppHandler
2020-01-27 11:15:18 +00:00
{
2020-02-06 08:56:12 +00:00
public RequestDelegate Next { get; }
2020-04-20 12:08:24 +00:00
public IServiceProvider ServiceProvider { get; }
public ThirdPartyAppHandler(RequestDelegate next, IServiceProvider serviceProvider)
{
Next = next;
ServiceProvider = serviceProvider;
}
public async Task Invoke(HttpContext context)
{
using var scope = ServiceProvider.CreateScope();
var thirdPartyAppHandlerService = scope.ServiceProvider.GetService<ThirdPartyAppHandlerService>();
thirdPartyAppHandlerService.Invoke(context);
await Next.Invoke(context);
}
}
public class ThirdPartyAppHandlerService
{
2020-02-06 08:56:12 +00:00
public AuthContext AuthContext { get; }
public CommonLinkUtility CommonLinkUtility { get; }
private ILog Log { get; set; }
public string HandlerPath { get; set; }
2020-04-20 12:08:24 +00:00
public ThirdPartyAppHandlerService(
2020-02-06 08:56:12 +00:00
IOptionsMonitor<ILog> optionsMonitor,
AuthContext authContext,
BaseCommonLinkUtility baseCommonLinkUtility,
CommonLinkUtility commonLinkUtility)
2020-01-27 11:15:18 +00:00
{
2020-02-06 08:56:12 +00:00
AuthContext = authContext;
CommonLinkUtility = commonLinkUtility;
Log = optionsMonitor.CurrentValue;
HandlerPath = baseCommonLinkUtility.ToAbsolute("~/thirdpartyapp");
2020-01-27 11:15:18 +00:00
}
2020-04-20 12:08:24 +00:00
public void Invoke(HttpContext context)
2020-01-27 11:15:18 +00:00
{
2020-02-06 08:56:12 +00:00
Log.Debug("ThirdPartyApp: handler request - " + context.Request.Url());
2020-01-27 11:15:18 +00:00
var message = string.Empty;
try
{
2020-02-06 08:56:12 +00:00
var app = ThirdPartySelector.GetApp(context.Request.Query[ThirdPartySelector.AppAttr]);
Log.Debug("ThirdPartyApp: app - " + app);
2020-01-27 11:15:18 +00:00
if (app.Request(context))
{
return;
}
}
catch (ThreadAbortException)
{
//Thats is responce ending
return;
}
catch (Exception e)
{
2020-02-06 08:56:12 +00:00
Log.Error("ThirdPartyApp", e);
2020-01-27 11:15:18 +00:00
message = e.Message;
}
if (string.IsNullOrEmpty(message))
{
2020-02-06 08:56:12 +00:00
if ((context.Request.Query["error"].FirstOrDefault() ?? "").ToLower() == "access_denied")
2020-01-27 11:15:18 +00:00
{
2020-02-06 08:56:12 +00:00
message = context.Request.Query["error_description"].FirstOrDefault() ?? FilesCommonResource.AppAccessDenied;
2020-01-27 11:15:18 +00:00
}
}
var redirectUrl = CommonLinkUtility.GetDefault();
if (!string.IsNullOrEmpty(message))
{
2020-02-06 08:56:12 +00:00
redirectUrl += AuthContext.IsAuthenticated ? "#error/" : "?m=";
2020-01-27 11:15:18 +00:00
redirectUrl += HttpUtility.UrlEncode(message);
}
context.Response.Redirect(redirectUrl, true);
2020-04-20 12:08:24 +00:00
}
}
public static class ThirdPartyAppHandlerExtention
{
public static DIHelper AddThirdPartyAppHandlerService(this DIHelper services)
{
services.TryAddScoped<ThirdPartyAppHandlerService>();
return services
.AddCommonLinkUtilityService()
.AddBaseCommonLinkUtilityService()
.AddAuthContextService();
}
public static IApplicationBuilder UseThirdPartyAppHandler(this IApplicationBuilder builder)
{
return builder.UseMiddleware<ThirdPartyAppHandler>();
2020-01-27 11:15:18 +00:00
}
}
}