ShareX/ShareX.UploadersLib/CustomUploader/CustomUploaderItem.cs

248 lines
8 KiB
C#
Raw Normal View History

#region License Information (GPL v3)
2013-11-03 23:53:49 +13:00
/*
ShareX - A program that allows you to take screenshots and share any file type
2018-01-02 03:59:14 +13:00
Copyright (c) 2007-2018 ShareX Team
2013-11-03 23:53:49 +13: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)
2014-12-11 09:25:20 +13:00
using ShareX.HelpersLib;
2017-10-29 09:40:50 +13:00
using ShareX.UploadersLib.Properties;
using System;
2013-11-03 23:53:49 +13:00
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
2013-11-03 23:53:49 +13:00
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib
2013-11-03 23:53:49 +13:00
{
public class CustomUploaderItem
{
[DefaultValue("")]
2017-09-03 12:13:07 +12:00
public string Name { get; set; }
public bool ShouldSerializeName() => !string.IsNullOrEmpty(Name) && Name != URLHelpers.GetHostName(RequestURL);
[DefaultValue(CustomUploaderDestinationType.None)]
public CustomUploaderDestinationType DestinationType { get; set; }
[DefaultValue(HttpMethod.POST)]
public HttpMethod RequestType { get; set; }
[DefaultValue("")]
2013-11-03 23:53:49 +13:00
public string RequestURL { get; set; }
[DefaultValue(CustomUploaderRequestFormat.Automatic)]
public CustomUploaderRequestFormat RequestFormat { get; set; }
[DefaultValue("")]
2013-11-03 23:53:49 +13:00
public string FileFormName { get; set; }
public bool ShouldSerializeFileFormName() => (RequestFormat == CustomUploaderRequestFormat.Automatic && RequestType == HttpMethod.POST) ||
RequestFormat == CustomUploaderRequestFormat.MultipartFormData;
[DefaultValue("")]
public string Data { get; set; }
public bool ShouldSerializeData() => RequestFormat == CustomUploaderRequestFormat.JSON;
[DefaultValue(null)]
2017-09-03 12:13:07 +12:00
public Dictionary<string, string> Arguments { get; set; }
public bool ShouldSerializeArguments() => Arguments != null && Arguments.Count > 0;
[DefaultValue(null)]
2017-09-03 12:13:07 +12:00
public Dictionary<string, string> Headers { get; set; }
public bool ShouldSerializeHeaders() => Headers != null && Headers.Count > 0;
[DefaultValue(ResponseType.Text)]
2013-11-03 23:53:49 +13:00
public ResponseType ResponseType { get; set; }
[DefaultValue(null)]
2017-09-03 12:13:07 +12:00
public List<string> RegexList { get; set; }
public bool ShouldSerializeRegexList() => RegexList != null && RegexList.Count > 0;
[DefaultValue("")]
2013-11-03 23:53:49 +13:00
public string URL { get; set; }
[DefaultValue("")]
2013-11-03 23:53:49 +13:00
public string ThumbnailURL { get; set; }
[DefaultValue("")]
2013-11-03 23:53:49 +13:00
public string DeletionURL { get; set; }
public CustomUploaderItem()
{
}
public override string ToString()
{
if (!string.IsNullOrEmpty(Name))
{
return Name;
}
string name = URLHelpers.GetHostName(RequestURL);
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(name))
{
return name;
}
return "Name";
}
public string GetFileName()
{
return ToString() + ".sxcu";
}
public string GetRequestURL(CustomUploaderInput input)
{
if (string.IsNullOrEmpty(RequestURL))
{
2017-10-29 09:40:50 +13:00
throw new Exception(Resources.CustomUploaderItem_GetRequestURL_RequestURLMustBeConfigured);
}
CustomUploaderParser parser = new CustomUploaderParser(input);
parser.URLEncode = true;
2018-10-08 19:10:59 +13:00
string url = parser.Parse(RequestURL);
return URLHelpers.FixPrefix(url);
}
public CustomUploaderRequestFormat GetRequestFormat(CustomUploaderDestinationType destinationType)
{
if (RequestFormat == CustomUploaderRequestFormat.Automatic)
{
switch (destinationType)
{
case CustomUploaderDestinationType.ImageUploader:
case CustomUploaderDestinationType.FileUploader:
return CustomUploaderRequestFormat.MultipartFormData;
case CustomUploaderDestinationType.TextUploader:
case CustomUploaderDestinationType.URLShortener:
case CustomUploaderDestinationType.URLSharingService:
if (RequestType == HttpMethod.POST)
{
return CustomUploaderRequestFormat.MultipartFormData;
}
else
{
return CustomUploaderRequestFormat.URLQueryString;
}
}
}
return RequestFormat;
}
public string GetData(CustomUploaderInput input)
{
CustomUploaderParser parser = new CustomUploaderParser(input);
parser.UseNameParser = true;
parser.JSONEncode = RequestFormat == CustomUploaderRequestFormat.JSON;
return parser.Parse(Data);
}
public string GetFileFormName()
{
if (string.IsNullOrEmpty(FileFormName))
{
2017-10-29 09:40:50 +13:00
throw new Exception(Resources.CustomUploaderItem_GetFileFormName_FileFormNameMustBeConfigured);
}
return FileFormName;
}
public Dictionary<string, string> GetArguments(CustomUploaderInput input)
2013-11-03 23:53:49 +13:00
{
Dictionary<string, string> arguments = new Dictionary<string, string>();
2015-12-23 11:21:19 +13:00
if (Arguments != null)
2013-11-03 23:53:49 +13:00
{
CustomUploaderParser parser = new CustomUploaderParser(input);
parser.UseNameParser = true;
2015-12-23 11:21:19 +13:00
foreach (KeyValuePair<string, string> arg in Arguments)
{
arguments.Add(arg.Key, parser.Parse(arg.Value));
2015-12-23 11:21:19 +13:00
}
2013-11-03 23:53:49 +13:00
}
return arguments;
}
public NameValueCollection GetHeaders(CustomUploaderInput input)
{
if (Headers != null && Headers.Count > 0)
{
NameValueCollection collection = new NameValueCollection();
CustomUploaderParser parser = new CustomUploaderParser(input);
parser.UseNameParser = true;
foreach (KeyValuePair<string, string> header in Headers)
{
collection.Add(header.Key, parser.Parse(header.Value));
}
return collection;
}
return null;
}
public void ParseResponse(UploadResult result, CustomUploaderInput input, bool isShortenedURL = false)
2013-11-03 23:53:49 +13:00
{
2013-12-08 05:08:38 +13:00
if (result != null && !string.IsNullOrEmpty(result.Response))
2013-11-03 23:53:49 +13:00
{
CustomUploaderParser parser = new CustomUploaderParser(result.Response, RegexList)
{
Filename = input.Filename,
URLEncode = true
};
2013-11-03 23:53:49 +13:00
2013-12-08 05:08:38 +13:00
string url;
2013-11-03 23:53:49 +13:00
2013-12-08 05:08:38 +13:00
if (!string.IsNullOrEmpty(URL))
{
2018-10-08 19:10:59 +13:00
url = parser.Parse(URL);
2013-12-08 05:08:38 +13:00
}
else
{
2018-10-08 19:10:59 +13:00
url = parser.Response;
2013-12-08 05:08:38 +13:00
}
if (isShortenedURL)
{
result.ShortenedURL = url;
}
else
{
result.URL = url;
}
2018-10-08 19:10:59 +13:00
result.ThumbnailURL = parser.Parse(ThumbnailURL);
result.DeletionURL = parser.Parse(DeletionURL);
2013-11-03 23:53:49 +13:00
}
2013-12-08 05:08:38 +13:00
}
2013-11-03 23:53:49 +13:00
}
}