fixed #247: Added pomf.se uploader

This commit is contained in:
Jaex 2014-08-22 06:05:48 +03:00
parent 6117adbdd9
commit a41294913c
4 changed files with 75 additions and 0 deletions

View file

@ -970,6 +970,9 @@ public UploadResult UploadFile(Stream stream, string fileName)
UseLongLink = Program.UploadersConfig.MediaFireUseLongLink
};
break;
case FileDestination.Pomf:
fileUploader = new Pomf();
break;
}
if (fileUploader != null)

View file

@ -96,6 +96,8 @@ public enum FileDestination
OwnCloud,
[Description("MediaFire")]
MediaFire,
[Description("Pomf")]
Pomf,
[Description("Gfycat")]
Gfycat,
[Description("Pushbullet")]

View file

@ -0,0 +1,69 @@
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (C) 2007-2014 ShareX Developers
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 Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace UploadersLib.FileUploaders
{
public sealed class Pomf : FileUploader
{
public override UploadResult Upload(Stream stream, string fileName)
{
UploadResult result = UploadData(stream, "http://pomf.se/upload.php", fileName, "files[]");
if (result.IsSuccess)
{
PomfResponse response = JsonConvert.DeserializeObject<PomfResponse>(result.Response);
if (response.success && response.files != null && response.files.Count > 0)
{
result.URL = "http://a.pomf.se/" + response.files[0].url;
}
}
return result;
}
internal class PomfResponse
{
public bool success { get; set; }
public object error { get; set; }
public List<PomfFile> files { get; set; }
}
internal class PomfFile
{
public string hash { get; set; }
public string name { get; set; }
public string url { get; set; }
public string size { get; set; }
}
}
}

View file

@ -113,6 +113,7 @@
<Compile Include="FileUploaders\Mega.cs" />
<Compile Include="FileUploaders\OneDrive.cs" />
<Compile Include="FileUploaders\OwnCloud.cs" />
<Compile Include="FileUploaders\Pomf.cs" />
<Compile Include="FileUploaders\SFTP.cs" />
<Compile Include="FileUploaders\Minus.cs" />
<Compile Include="FileUploaders\SharedFolderUploader.cs" />