& not required in arguments

This commit is contained in:
Jaex 2016-12-12 10:58:35 +03:00
parent ba2ac1c44b
commit bfe0fa5f4a

View file

@ -1,18 +1,41 @@
using ShareX.UploadersLib.Properties;
using System;
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2016 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 ShareX.UploadersLib.Properties;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ShareX.UploadersLib.TextUploaders
{
class PastieTextUploaderService : TextUploaderService
internal class PastieTextUploaderService : TextUploaderService
{
public override TextDestination EnumValue { get; } = TextDestination.Pastie;
public override bool CheckConfig(UploadersConfig config) => true;
public override Image ServiceImage => Resources.Pastie;
public override GenericUploader CreateUploader(UploadersConfig config, TaskReferenceHelper taskInfo)
@ -21,13 +44,13 @@ public override GenericUploader CreateUploader(UploadersConfig config, TaskRefer
{
IsPublic = config.PastieIsPublic
};
}
public override TabPage GetUploadersConfigTabPage(UploadersConfigForm form) => form.tpPastie;
}
public sealed class Pastie : TextUploader
{
public bool IsPublic { get; set; }
public override UploadResult UploadText(string text, string fileName)
@ -36,22 +59,20 @@ public override UploadResult UploadText(string text, string fileName)
if (!string.IsNullOrEmpty(text))
{
Dictionary<string, string> arguments = new Dictionary<string, string>();
arguments.Add("&paste[body]", text);
arguments.Add("&paste[restricted]", IsPublic ? "0" : "1");
arguments.Add("&paste[authorization]", "burger");
arguments.Add("paste[body]", text);
arguments.Add("paste[restricted]", IsPublic ? "0" : "1");
arguments.Add("paste[authorization]", "burger");
ur.Response = SendRequestURLEncoded("http://pastie.org/pastes", arguments, responseType: ResponseType.RedirectionURL);
if (!string.IsNullOrEmpty(ur.Response))
{
ur.URL = ur.Response;
}
}
}
return ur;
}
}
}
}