#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (C) 2008-2013 ShareX Developers 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 . */ #endregion License Information (GPL v3) using HelpersLib; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Net; using System.Web; using UploadersLib.HelperClasses; namespace UploadersLib.TextUploaders { public sealed class Gist : TextUploader { private const string GistUri = "https://api.github.com/gists"; private readonly OAuth2Info oAuthInfos; 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; this.oAuthInfos = oAuthInfos; } public string GetAuthorizationURL() { Dictionary args = new Dictionary(); args.Add("client_id", oAuthInfos.Client_ID); args.Add("redirect_uri", Links.URL_CALLBACK); args.Add("scope", "gist"); return CreateQuery("https://github.com/login/oauth/authorize", args); } public bool GetAccessToken(string code) { Dictionary args = new Dictionary(); args.Add("client_id", this.oAuthInfos.Client_ID); args.Add("client_secret", this.oAuthInfos.Client_Secret); args.Add("code", code); WebHeaderCollection headers = new WebHeaderCollection(); headers.Add("Accept", "application/json"); string response = this.SendPostRequest("https://github.com/login/oauth/access_token", args, headers: headers); if (!string.IsNullOrEmpty(response)) { OAuth2Token token = JsonConvert.DeserializeObject(response); if (token != null && !string.IsNullOrEmpty(token.access_token)) { this.oAuthInfos.Token = token; return true; } } return false; } public override UploadResult UploadText(string text, string fileName) { UploadResult ur = new UploadResult(); if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(fileName)) { var gistUploadObject = new { @public = this.publishPublic, files = new Dictionary { { fileName, new { content = text } } } }; string argsJson = JsonConvert.SerializeObject(gistUploadObject); string url = GistUri; if (this.oAuthInfos != null) { url += "?access_token=" + this.oAuthInfos.Token.access_token; } string response = SendPostRequestJSON(url, argsJson); if (response != null) { var gistReturnType = new { html_url = string.Empty }; var gistReturnObject = JsonConvert.DeserializeAnonymousType(response, gistReturnType); ur.URL = gistReturnObject.html_url; } } return ur; } } }