ShareX/ShareX.UploadersLib/ImageUploaders/Chevereto.cs

115 lines
3.8 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
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 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;
2016-06-28 05:20:55 +12:00
using ShareX.UploadersLib.Properties;
2014-09-18 07:25:23 +12:00
using System.Collections.Generic;
2016-03-06 05:46:44 +13:00
using System.Drawing;
2014-09-18 07:25:23 +12:00
using System.IO;
using System.Windows.Forms;
2014-09-18 07:25:23 +12:00
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib.ImageUploaders
2014-09-18 07:25:23 +12:00
{
public class CheveretoImageUploaderService : ImageUploaderService
{
public override ImageDestination EnumValue { get; } = ImageDestination.Chevereto;
2016-06-28 05:20:55 +12:00
public override Image ServiceImage => Resources.Chevereto;
public override bool CheckConfig(UploadersConfig config)
{
return config.CheveretoUploader != null && !string.IsNullOrEmpty(config.CheveretoUploader.UploadURL) &&
!string.IsNullOrEmpty(config.CheveretoUploader.APIKey);
}
public override GenericUploader CreateUploader(UploadersConfig config, TaskReferenceHelper taskInfo)
{
return new Chevereto(config.CheveretoUploader)
{
DirectURL = config.CheveretoDirectURL
};
}
public override TabPage GetUploadersConfigTabPage(UploadersConfigForm form) => form.tpChevereto;
}
2014-09-18 07:25:23 +12:00
public sealed class Chevereto : ImageUploader
{
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 = SendRequestFile(url, stream, fileName, "source", args);
2014-09-18 07:25:23 +12:00
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; }
}
}
2023-10-30 01:05:47 +13:00
}