Add SomeImage image uploader

This commit is contained in:
Daniel McAssey 2015-08-02 19:46:02 +01:00
parent 1ef03c2ba2
commit ca610da106
5 changed files with 85 additions and 0 deletions

View file

@ -39,6 +39,7 @@ public static partial class APIKeys
public static string PhotobucketConsumerSecret = "";
public static string TwitsnapsKey = "";
public static string TwitPicKey = "";
public static string SomeImageKey = "";
// File Uploaders
public static string DropboxConsumerKey = "";

View file

@ -50,6 +50,8 @@ public enum ImageDestination
HizliResim,
[Description("vgy.me")]
Vgyme,
[Description("SomeImage")]
SomeImage,
CustomImageUploader, // Localized
FileUploader // Localized
}

View file

@ -0,0 +1,78 @@
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright © 2007-2015 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.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
namespace ShareX.UploadersLib.ImageUploaders
{
public sealed class SomeImage : ImageUploader
{
private const string API_ENDPOINT = "https://someimage.com/api/2/image/upload";
private string API_KEY = "";
public SomeImage(string apiKey)
{
API_KEY = apiKey;
}
public override UploadResult Upload(Stream stream, string fileName)
{
Dictionary<string, string> arguments = new Dictionary<string, string>();
arguments.Add("apikey", API_KEY);
arguments.Add("familysafe", "0"); // Set to 0 as images could possibly not be family safe.
UploadResult result = UploadData(stream, API_ENDPOINT, fileName, "file", arguments);
if (result.IsSuccess)
{
if (!string.IsNullOrEmpty(result.Response))
{
SomeImageResponse jsonResponse = JsonConvert.DeserializeObject<SomeImageResponse>(result.Response);
if (jsonResponse != null)
{
result.URL = jsonResponse.imagelink;
}
}
}
return result;
}
}
}
public class SomeImageResponse
{
public string success { get; set; }
public string imageid { get; set; }
public string imagelink { get; set; }
public string thumblink { get; set; }
public string embedhtml { get; set; }
public string embedbb { get; set; }
}

View file

@ -191,6 +191,7 @@
<Compile Include="HelperClasses\OAuth\IOAuthBase.cs" />
<Compile Include="ImageUploaders\Chevereto.cs" />
<Compile Include="ImageUploaders\HizliResim.cs" />
<Compile Include="ImageUploaders\SomeImage.cs" />
<Compile Include="ImageUploaders\VgymeUploader.cs" />
<Compile Include="TextUploaders\Hastebin.cs" />
<Compile Include="TextUploaders\Upaste.cs" />

View file

@ -751,6 +751,9 @@ public UploadResult UploadImage(Stream stream, string fileName)
case ImageDestination.Vgyme:
imageUploader = new VgymeUploader();
break;
case ImageDestination.SomeImage:
imageUploader = new SomeImage(APIKeys.SomeImageKey);
break;
case ImageDestination.CustomImageUploader:
CustomUploaderItem customUploader = GetCustomUploader(Program.UploadersConfig.CustomImageUploaderSelected);
if (customUploader != null)