ShareX/ShareX.UploadersLib/TextUploaders/Gist.cs

134 lines
4.4 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
2016-01-04 04:16:01 +13:00
Copyright (c) 2007-2016 ShareX Team
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)
2015-09-17 20:37:58 +12:00
// Credits: https://github.com/gpailler
using Newtonsoft.Json;
2014-12-11 12:19:28 +13:00
using ShareX.HelpersLib;
using ShareX.UploadersLib.HelperClasses;
using System.Collections.Generic;
using System.Net;
2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib.TextUploaders
2013-11-03 23:53:49 +13:00
{
public sealed class Gist : TextUploader, IOAuth2Basic
2013-11-03 23:53:49 +13:00
{
2013-12-22 02:38:16 +13:00
private const string URLAPI = "https://api.github.com/";
private const string URLGists = URLAPI + "gists";
public OAuth2Info AuthInfo { get; private set; }
private readonly bool publishPublic;
public Gist(OAuth2Info oAuthInfos)
: this(false, oAuthInfos)
{
}
public Gist(bool publishPublic)
: this(publishPublic, null)
{
}
public Gist(bool publishPublic, OAuth2Info oAuthInfos)
{
this.publishPublic = publishPublic;
2013-12-22 02:38:16 +13:00
AuthInfo = oAuthInfos;
}
public string GetAuthorizationURL()
{
2013-12-21 04:59:26 +13:00
Dictionary<string, string> args = new Dictionary<string, string>();
2013-12-22 02:38:16 +13:00
args.Add("client_id", AuthInfo.Client_ID);
args.Add("redirect_uri", Links.URL_CALLBACK);
2013-12-21 04:59:26 +13:00
args.Add("scope", "gist");
2013-12-21 04:59:26 +13:00
return CreateQuery("https://github.com/login/oauth/authorize", args);
}
public bool GetAccessToken(string code)
{
Dictionary<string, string> args = new Dictionary<string, string>();
2013-12-22 02:38:16 +13:00
args.Add("client_id", AuthInfo.Client_ID);
args.Add("client_secret", AuthInfo.Client_Secret);
args.Add("code", code);
WebHeaderCollection headers = new WebHeaderCollection();
headers.Add("Accept", "application/json");
2014-07-07 04:55:50 +12:00
string response = SendRequest(HttpMethod.POST, "https://github.com/login/oauth/access_token", args, headers);
if (!string.IsNullOrEmpty(response))
{
OAuth2Token token = JsonConvert.DeserializeObject<OAuth2Token>(response);
if (token != null && !string.IsNullOrEmpty(token.access_token))
{
2013-12-22 02:38:16 +13:00
AuthInfo.Token = token;
return true;
}
}
return false;
}
2013-11-03 23:53:49 +13:00
public override UploadResult UploadText(string text, string fileName)
{
UploadResult ur = new UploadResult();
if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(fileName))
{
var gistUploadObject = new
{
2015-08-12 06:58:43 +12:00
@public = publishPublic,
2013-11-03 23:53:49 +13:00
files = new Dictionary<string, object>
{
{ fileName, new { content = text } }
}
};
string argsJson = JsonConvert.SerializeObject(gistUploadObject);
2013-12-22 02:38:16 +13:00
string url = URLGists;
2013-12-21 04:59:26 +13:00
2013-12-22 02:38:16 +13:00
if (AuthInfo != null)
{
2013-12-22 02:38:16 +13:00
url += "?access_token=" + AuthInfo.Token.access_token;
}
string response = SendRequestJSON(url, argsJson);
2013-12-21 04:59:26 +13:00
2013-11-03 23:53:49 +13:00
if (response != null)
{
var gistReturnType = new { html_url = string.Empty };
2013-11-03 23:53:49 +13:00
var gistReturnObject = JsonConvert.DeserializeAnonymousType(response, gistReturnType);
ur.URL = gistReturnObject.html_url;
}
}
return ur;
}
}
}