Add 2.gp URL Shortener

This commit is contained in:
Daniel McAssey 2015-07-21 00:25:45 +01:00
parent 90ec3c1623
commit a9502147a5
4 changed files with 73 additions and 0 deletions

View file

@ -162,6 +162,8 @@ public enum UrlShortenerType
QRnet,
[Description("vurl.com")]
VURL,
[Description("2.gp")]
TwoGP,
CustomURLShortener // Localized
}

View file

@ -284,6 +284,7 @@
<Compile Include="TextUploaders\Slexy.cs" />
<Compile Include="Uploader.cs" />
<Compile Include="URLShortener.cs" />
<Compile Include="URLShorteners\TwoGPURLShortener.cs" />
<Compile Include="URLShorteners\AdFlyURLShortener.cs" />
<Compile Include="URLShorteners\BitlyURLShortener.cs" />
<Compile Include="URLShorteners\CoinURLShortener.cs" />

View file

@ -0,0 +1,67 @@
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright © 2007-2015 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 <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using Newtonsoft.Json;
using System.Collections.Generic;
namespace ShareX.UploadersLib.URLShorteners
{
public sealed class TwoGPURLShortener : URLShortener
{
private const string API_ENDPOINT = "http://2.gp/api/short";
public override UploadResult ShortenURL(string url)
{
UploadResult result = new UploadResult { URL = url };
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("longurl", url);
string response = SendRequest(HttpMethod.GET, API_ENDPOINT, args);
if (!string.IsNullOrEmpty(response))
{
TwoGPURLShortenerResponse jsonResponse = JsonConvert.DeserializeObject<TwoGPURLShortenerResponse>(response);
if (jsonResponse != null)
{
result.ShortenedURL = jsonResponse.url;
}
}
return result;
}
}
public class TwoGPURLShortenerResponse
{
public string facebook_url { get; set; }
public string stat_url { get; set; }
public string twitter_url { get; set; }
public string url { get; set; }
public string target_host { get; set; }
public string host { get; set; }
}
}

View file

@ -1093,6 +1093,9 @@ public UploadResult ShortenURL(string url)
case UrlShortenerType.VURL:
urlShortener = new VURLShortener();
break;
case UrlShortenerType.TwoGP:
urlShortener = new TwoGPURLShortener();
break;
case UrlShortenerType.CustomURLShortener:
CustomUploaderItem customUploader = GetCustomUploader(Program.UploadersConfig.CustomURLShortenerSelected);
if (customUploader != null)