ShareX/ShareX.UploadersLib/ImageUploaders/Imgur_v3.cs

311 lines
11 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2014-12-31 22:41:32 +13:00
Copyright © 2007-2015 ShareX Developers
2013-11-03 23:53:49 +13: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-07-22 12:12:07 +12:00
using Newtonsoft.Json.Linq;
2014-12-11 12:19:28 +13:00
using ShareX.UploadersLib.HelperClasses;
2013-11-03 23:53:49 +13:00
using System.Collections.Generic;
using System.Collections.Specialized;
2014-04-23 07:13:40 +12:00
using System.ComponentModel;
2013-11-03 23:53:49 +13:00
using System.IO;
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib.ImageUploaders
2013-11-03 23:53:49 +13:00
{
2014-04-23 07:13:40 +12:00
public enum ImgurThumbnailType
{
2014-07-22 12:12:07 +12:00
[Description("Small square")]
2014-04-23 07:13:40 +12:00
Small_Square,
2014-07-22 12:12:07 +12:00
[Description("Big square")]
2014-04-23 07:13:40 +12:00
Big_Square,
2014-07-22 12:12:07 +12:00
[Description("Small thumbnail")]
2014-04-23 07:13:40 +12:00
Small_Thumbnail,
2014-07-22 12:12:07 +12:00
[Description("Medium thumbnail")]
2014-04-23 07:13:40 +12:00
Medium_Thumbnail,
2014-07-22 12:12:07 +12:00
[Description("Large thumbnail")]
2014-04-23 07:13:40 +12:00
Large_Thumbnail,
2014-07-22 12:12:07 +12:00
[Description("Huge thumbnail")]
2014-04-23 07:13:40 +12:00
Huge_Thumbnail
}
2013-11-03 23:53:49 +13:00
public sealed class Imgur_v3 : ImageUploader, IOAuth2
{
public AccountType UploadMethod { get; set; }
public OAuth2Info AuthInfo { get; set; }
public ImgurThumbnailType ThumbnailType { get; set; }
public string UploadAlbumID { get; set; }
2014-07-22 12:12:07 +12:00
public bool DirectLink { get; set; }
2013-11-03 23:53:49 +13:00
public Imgur_v3(OAuth2Info oauth)
{
AuthInfo = oauth;
}
public string GetAuthorizationURL()
{
2013-12-21 04:59:26 +13:00
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("client_id", AuthInfo.Client_ID);
args.Add("response_type", "pin");
return CreateQuery("https://api.imgur.com/oauth2/authorize", args);
2013-11-03 23:53:49 +13:00
}
public bool GetAccessToken(string pin)
{
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("client_id", AuthInfo.Client_ID);
args.Add("client_secret", AuthInfo.Client_Secret);
args.Add("grant_type", "pin");
args.Add("pin", pin);
string response = SendRequest(HttpMethod.POST, "https://api.imgur.com/oauth2/token", args);
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(response))
{
OAuth2Token token = JsonConvert.DeserializeObject<OAuth2Token>(response);
if (token != null && !string.IsNullOrEmpty(token.access_token))
{
token.UpdateExpireDate();
AuthInfo.Token = token;
return true;
}
}
return false;
}
public bool RefreshAccessToken()
{
if (OAuth2Info.CheckOAuth(AuthInfo) && !string.IsNullOrEmpty(AuthInfo.Token.refresh_token))
{
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("refresh_token", AuthInfo.Token.refresh_token);
args.Add("client_id", AuthInfo.Client_ID);
args.Add("client_secret", AuthInfo.Client_Secret);
args.Add("grant_type", "refresh_token");
string response = SendRequest(HttpMethod.POST, "https://api.imgur.com/oauth2/token", args);
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(response))
{
OAuth2Token token = JsonConvert.DeserializeObject<OAuth2Token>(response);
if (token != null && !string.IsNullOrEmpty(token.access_token))
{
token.UpdateExpireDate();
AuthInfo.Token = token;
return true;
}
}
}
return false;
}
private NameValueCollection GetAuthHeaders()
{
NameValueCollection headers = new NameValueCollection();
headers.Add("Authorization", "Bearer " + AuthInfo.Token.access_token);
return headers;
}
2013-11-03 23:53:49 +13:00
public bool CheckAuthorization()
{
if (OAuth2Info.CheckOAuth(AuthInfo))
{
if (AuthInfo.Token.IsExpired && !RefreshAccessToken())
{
Errors.Add("Refresh access token failed.");
return false;
}
}
else
{
2014-04-17 04:18:25 +12:00
Errors.Add("Imgur login is required.");
2013-11-03 23:53:49 +13:00
return false;
}
return true;
}
public List<ImgurAlbumData> GetAlbums()
{
if (CheckAuthorization())
{
string response = SendRequest(HttpMethod.GET, "https://api.imgur.com/3/account/me/albums", headers: GetAuthHeaders());
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(response))
{
ImgurAlbums albums = JsonConvert.DeserializeObject<ImgurAlbums>(response);
if (albums != null)
{
if (albums.success)
{
return albums.data;
}
Errors.Add("Imgur albums failed. Status code: " + albums.status);
}
}
}
return null;
}
public override UploadResult Upload(Stream stream, string fileName)
{
Dictionary<string, string> args = new Dictionary<string, string>();
NameValueCollection headers;
2013-11-03 23:53:49 +13:00
if (UploadMethod == AccountType.User)
{
if (!CheckAuthorization())
{
return null;
}
if (!string.IsNullOrEmpty(UploadAlbumID))
{
args.Add("album", UploadAlbumID);
}
headers = GetAuthHeaders();
2013-11-03 23:53:49 +13:00
}
else
2013-11-03 23:53:49 +13:00
{
headers = new NameValueCollection();
2013-11-03 23:53:49 +13:00
headers.Add("Authorization", "Client-ID " + AuthInfo.Client_ID);
}
2014-07-07 04:55:50 +12:00
UploadResult result = UploadData(stream, "https://api.imgur.com/3/image", fileName, "image", args, headers);
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(result.Response))
{
2014-07-22 12:12:07 +12:00
JToken jsonResponse = JToken.Parse(result.Response);
2013-11-03 23:53:49 +13:00
2014-07-22 12:12:07 +12:00
if (jsonResponse != null)
2013-11-03 23:53:49 +13:00
{
2014-07-22 12:12:07 +12:00
bool success = jsonResponse["success"].Value<bool>();
int status = jsonResponse["status"].Value<int>();
if (success && status == 200)
2013-11-03 23:53:49 +13:00
{
2014-07-22 12:12:07 +12:00
ImgurUploadData uploadData = jsonResponse["data"].ToObject<ImgurUploadData>();
if (uploadData != null && !string.IsNullOrEmpty(uploadData.link))
2013-11-03 23:53:49 +13:00
{
2014-07-22 12:12:07 +12:00
if (DirectLink)
{
result.URL = uploadData.link;
}
else
{
result.URL = "http://imgur.com/" + uploadData.id;
}
2013-11-03 23:53:49 +13:00
int index = result.URL.LastIndexOf('.');
2014-04-23 07:13:40 +12:00
string thumbnail = string.Empty;
2013-11-03 23:53:49 +13:00
2014-04-23 07:13:40 +12:00
switch (ThumbnailType)
2013-11-03 23:53:49 +13:00
{
2014-04-23 07:13:40 +12:00
case ImgurThumbnailType.Small_Square:
thumbnail = "s";
break;
case ImgurThumbnailType.Big_Square:
thumbnail = "b";
break;
case ImgurThumbnailType.Small_Thumbnail:
thumbnail = "t";
break;
case ImgurThumbnailType.Medium_Thumbnail:
thumbnail = "m";
break;
case ImgurThumbnailType.Large_Thumbnail:
thumbnail = "l";
break;
case ImgurThumbnailType.Huge_Thumbnail:
thumbnail = "h";
break;
2013-11-03 23:53:49 +13:00
}
2014-07-22 12:12:07 +12:00
result.ThumbnailURL = string.Format("http://i.imgur.com/{0}{1}.jpg", uploadData.id, thumbnail); // Thumbnails always jpg
result.DeletionURL = "http://imgur.com/delete/" + uploadData.deletehash;
2013-11-03 23:53:49 +13:00
}
}
else
{
2014-07-22 12:12:07 +12:00
ImgurErrorData errorData = jsonResponse["data"].ToObject<ImgurErrorData>();
if (errorData != null && !string.IsNullOrEmpty(errorData.error))
{
string errorMessage = string.Format("Status: {0}, Error: {1}", status, errorData.error);
Errors.Add(errorMessage);
}
2013-11-03 23:53:49 +13:00
}
}
}
return result;
}
}
public class ImgurUploadData
{
public string id { get; set; }
public string deletehash { get; set; }
public string link { get; set; }
}
public class ImgurAlbumData
{
public string id { get; set; }
public string title { get; set; }
public string description { get; set; }
2014-09-07 13:11:55 +12:00
/*public int datetime { get; set; }
2013-11-03 23:53:49 +13:00
public object cover { get; set; }
public string account_url { get; set; }
public string privacy { get; set; }
public string layout { get; set; }
public int views { get; set; }
public string link { get; set; }
public bool favorite { get; set; }
2014-09-07 13:11:55 +12:00
public int order { get; set; }*/
2013-11-03 23:53:49 +13:00
}
2014-07-22 12:12:07 +12:00
public class ImgurErrorData
{
public string error { get; set; }
public string request { get; set; }
public string method { get; set; }
}
2013-11-03 23:53:49 +13:00
public class ImgurAlbums
{
public List<ImgurAlbumData> data { get; set; }
public bool success { get; set; }
public int status { get; set; }
}
}