ShareX/ShareX.UploadersLib/ImageUploaders/Chevereto.cs

101 lines
3.7 KiB
C#
Raw Normal View History

2014-09-18 07:25:23 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2016-01-04 04:16:01 +13:00
Copyright (c) 2007-2016 ShareX Team
2014-09-18 07:25:23 +12:00
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;
2014-12-11 12:19:28 +13:00
using ShareX.HelpersLib;
2014-09-18 07:25:23 +12:00
using System.Collections.Generic;
using System.IO;
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib.ImageUploaders
2014-09-18 07:25:23 +12:00
{
public sealed class Chevereto : ImageUploader
{
public static List<CheveretoUploader> Uploaders = new List<CheveretoUploader>()
{
new CheveretoUploader("http://ultraimg.com/api/1/upload", "3374fa58c672fcaad8dab979f7687397"),
2016-02-18 23:35:58 +13:00
new CheveretoUploader("http://yukle.at/api/1/upload", "ee24aee90bcd24e39cead57c65044bde"),
2016-02-19 00:34:47 +13:00
new CheveretoUploader("http://img.patifile.com/api/1/upload", "8320784a9b044510e8c723fb778fe3b7"),
2016-02-19 00:44:43 +13:00
new CheveretoUploader("http://boltimg.com/api/1/upload", "8dfbcb7ab9b5258a90be7cf09e361894"),
2016-02-19 01:08:04 +13:00
new CheveretoUploader("http://snapie.net/myapi/1/upload", "aff7bd5bf65b7e30b675a430049894b3"),
2016-02-19 20:03:23 +13:00
new CheveretoUploader("http://picgur.org/api/1/upload", "0a65553c54cf72127d11281f96518469"),
new CheveretoUploader("https://pixr.co/api/1/upload", "8fff10a8b0d2852c4167db53aa590e94"),
new CheveretoUploader("https://sexr.co/api/1/upload", "46b9aa05ec994098c4b6f18b5eed5e36")
};
public CheveretoUploader Uploader { get; private set; }
2014-09-18 07:33:11 +12:00
public bool DirectURL { get; set; }
2014-09-18 07:25:23 +12:00
public Chevereto(CheveretoUploader uploader)
2014-09-18 07:25:23 +12:00
{
Uploader = uploader;
2014-09-18 07:25:23 +12:00
}
public override UploadResult Upload(Stream stream, string fileName)
{
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("key", Uploader.APIKey);
2014-09-18 07:25:23 +12:00
args.Add("format", "json");
string url = URLHelpers.FixPrefix(Uploader.UploadURL);
2014-09-18 07:25:23 +12:00
UploadResult result = UploadData(stream, url, fileName, "source", args);
if (result.IsSuccess)
{
CheveretoResponse response = JsonConvert.DeserializeObject<CheveretoResponse>(result.Response);
if (response != null && response.Image != null)
{
2014-09-18 07:33:11 +12:00
result.URL = DirectURL ? response.Image.URL : response.Image.URL_Viewer;
2014-09-18 07:25:23 +12:00
if (response.Image.Thumb != null)
{
result.ThumbnailURL = response.Image.Thumb.URL;
}
}
}
return result;
}
private class CheveretoResponse
{
public CheveretoImage Image { get; set; }
}
private class CheveretoImage
{
public string URL { get; set; }
public string URL_Viewer { get; set; }
public CheveretoThumb Thumb { get; set; }
}
private class CheveretoThumb
{
public string URL { get; set; }
}
}
}