ShareX/ShareX.UploadersLib/TextUploaders/Slexy.cs
2024-01-03 02:57:14 +03:00

122 lines
4 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2024 ShareX Team
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 System.Collections.Generic;
using System.ComponentModel;
namespace ShareX.UploadersLib.TextUploaders
{
public class SlexyTextUploaderService : TextUploaderService
{
public override TextDestination EnumValue { get; } = TextDestination.Slexy;
public override bool CheckConfig(UploadersConfig config) => true;
public override GenericUploader CreateUploader(UploadersConfig config, TaskReferenceHelper taskInfo)
{
SlexySettings settings = new SlexySettings()
{
TextFormat = taskInfo.TextFormat
};
return new Slexy(settings);
}
}
public sealed class Slexy : TextUploader
{
private const string APIURL = "http://slexy.org/index.php/submit";
private SlexySettings settings;
public Slexy()
{
settings = new SlexySettings();
}
public Slexy(SlexySettings settings)
{
this.settings = settings;
}
public override UploadResult UploadText(string text, string fileName)
{
UploadResult ur = new UploadResult();
if (!string.IsNullOrEmpty(text))
{
Dictionary<string, string> arguments = new Dictionary<string, string>();
arguments.Add("raw_paste", text);
arguments.Add("author", settings.Author);
arguments.Add("comment", "");
arguments.Add("desc", settings.Description);
arguments.Add("expire", settings.Expiration);
arguments.Add("language", settings.TextFormat);
arguments.Add("linenumbers", settings.LineNumbers ? "1" : "0");
arguments.Add("permissions", settings.Visibility == Privacy.Private ? "1" : "0");
arguments.Add("submit", "Submit Paste");
arguments.Add("tabbing", "true");
arguments.Add("tabtype", "real");
SendRequestMultiPart(APIURL, arguments);
ur.URL = LastResponseInfo.ResponseURL;
}
return ur;
}
}
public class SlexySettings
{
/// <summary>language</summary>
public string TextFormat { get; set; }
/// <summary>author</summary>
public string Author { get; set; }
/// <summary>permissions</summary>
public Privacy Visibility { get; set; }
/// <summary>desc</summary>
public string Description { get; set; }
/// <summary>linenumbers</summary>
public bool LineNumbers { get; set; }
/// <summary>expire</summary>
[Description("Expiration time with seconds. Example: 0 = Forever, 60 = 1 minutes, 3600 = 1 hour, 2592000 = 1 month")]
public string Expiration { get; set; }
public SlexySettings()
{
TextFormat = "text";
Author = "";
Visibility = Privacy.Private;
Description = "";
LineNumbers = true;
Expiration = "2592000";
}
}
}