ShareX/ShareX.UploadersLib/URLShorteners/CoinURLShortener.cs

80 lines
2.6 KiB
C#
Raw Normal View History

2015-07-21 08:12:13 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2018-01-02 03:59:14 +13:00
Copyright (c) 2007-2018 ShareX Team
2015-07-21 08:12:13 +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)
2015-09-17 20:37:58 +12:00
// Credits: https://github.com/DanielMcAssey
2016-06-28 05:20:55 +12:00
using ShareX.UploadersLib.Properties;
2015-07-21 08:12:13 +12:00
using System.Collections.Generic;
2016-06-28 05:20:55 +12:00
using System.Drawing;
using System.Windows.Forms;
2015-07-21 08:12:13 +12:00
namespace ShareX.UploadersLib.URLShorteners
{
public class CoinURLShortenerService : URLShortenerService
{
public override UrlShortenerType EnumValue { get; } = UrlShortenerType.CoinURL;
2016-06-28 05:20:55 +12:00
public override Icon ServiceIcon => Resources.CoinURL;
public override bool CheckConfig(UploadersConfig config)
{
return !string.IsNullOrEmpty(config.CoinURLUUID);
}
public override URLShortener CreateShortener(UploadersConfig config, TaskReferenceHelper taskInfo)
{
return new CoinURLShortener
{
UUID = config.CoinURLUUID
};
}
public override TabPage GetUploadersConfigTabPage(UploadersConfigForm form) => form.tpCoinURL;
}
2015-07-21 08:12:13 +12:00
public sealed class CoinURLShortener : URLShortener
{
private const string API_ENDPOINT = "https://coinurl.com/api.php";
public string UUID { get; set; }
public override UploadResult ShortenURL(string url)
{
UploadResult result = new UploadResult { URL = url };
Dictionary<string, string> args = new Dictionary<string, string>();
args.Add("uuid", UUID);
args.Add("url", url);
string response = SendRequest(HttpMethod.GET, API_ENDPOINT, args);
if (!string.IsNullOrEmpty(response) && response != "error")
{
result.ShortenedURL = response;
}
return result;
}
}
2015-07-21 12:39:58 +12:00
}