ShareX/ShareX.UploadersLib/SharingServices/CustomURLSharingService.cs

103 lines
3.9 KiB
C#
Raw Normal View History

2017-09-10 22:55:21 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 ShareX Team
2017-09-10 22:55:21 +12:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using System;
namespace ShareX.UploadersLib.SharingServices
{
public class CustomURLSharingService : URLSharingService
{
public override URLSharingServices EnumValue { get; } = URLSharingServices.CustomURLSharingService;
public override bool CheckConfig(UploadersConfig config)
{
return config.CustomUploadersList != null && config.CustomUploadersList.IsValidIndex(config.CustomURLSharingServiceSelected);
}
public override URLSharer CreateSharer(UploadersConfig config, TaskReferenceHelper taskInfo)
{
int index;
if (taskInfo.OverrideCustomUploader)
{
index = taskInfo.CustomUploaderIndex.BetweenOrDefault(0, config.CustomUploadersList.Count - 1);
}
else
{
index = config.CustomURLSharingServiceSelected;
}
CustomUploaderItem customUploader = config.CustomUploadersList.ReturnIfValidIndex(index);
if (customUploader != null)
{
2017-09-11 00:54:46 +12:00
return new CustomURLSharer(customUploader);
2017-09-10 22:55:21 +12:00
}
return null;
}
}
public sealed class CustomURLSharer : URLSharer
{
private CustomUploaderItem uploader;
2017-09-10 22:55:21 +12:00
public CustomURLSharer(CustomUploaderItem customUploaderItem)
{
uploader = customUploaderItem;
2017-09-10 22:55:21 +12:00
}
public override UploadResult ShareURL(string url)
{
UploadResult result = new UploadResult { URL = url, IsURLExpected = false };
CustomUploaderInput input = new CustomUploaderInput("", url);
2019-01-09 04:02:21 +13:00
if (uploader.Body == CustomUploaderBody.None)
2017-09-10 22:55:21 +12:00
{
result.Response = SendRequest(uploader.RequestMethod, uploader.GetRequestURL(input), null, uploader.GetHeaders(input));
2017-09-10 22:55:21 +12:00
}
2019-01-09 04:02:21 +13:00
else if (uploader.Body == CustomUploaderBody.MultipartFormData)
2017-09-10 22:55:21 +12:00
{
result.Response = SendRequestMultiPart(uploader.GetRequestURL(input), uploader.GetArguments(input), uploader.GetHeaders(input), null, uploader.RequestMethod);
2017-09-10 22:55:21 +12:00
}
2019-01-09 04:02:21 +13:00
else if (uploader.Body == CustomUploaderBody.FormURLEncoded)
{
result.Response = SendRequestURLEncoded(uploader.RequestMethod, uploader.GetRequestURL(input), uploader.GetArguments(input), uploader.GetHeaders(input));
}
else if (uploader.Body == CustomUploaderBody.JSON || uploader.Body == CustomUploaderBody.XML)
{
result.Response = SendRequest(uploader.RequestMethod, uploader.GetRequestURL(input), uploader.GetData(input), uploader.GetContentType(), null,
uploader.GetHeaders(input));
}
else
{
2019-01-09 04:02:21 +13:00
throw new Exception("Unsupported request format: " + uploader.Body);
}
2017-09-10 22:55:21 +12:00
return result;
}
}
}