#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (c) 2007-2019 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 . */ #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 arguments = new Dictionary(); 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"); ur.URL = SendRequestMultiPart(APIURL, arguments, responseType: ResponseType.RedirectionURL); } return ur; } } public class SlexySettings { /// language public string TextFormat { get; set; } /// author public string Author { get; set; } /// permissions public Privacy Visibility { get; set; } /// desc public string Description { get; set; } /// linenumbers public bool LineNumbers { get; set; } /// expire [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"; } } }