ShareX/ShareX.UploadersLib/ImageUploaders/SomeImage.cs
2015-09-17 11:37:58 +03:00

79 lines
2.6 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2015 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)
// Credits: https://github.com/DanielMcAssey
using Newtonsoft.Json;
using System.Collections.Generic;
using System.IO;
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; }
}