ShareX/ShareX.UploadersLib/OAuth/OAuthInfo.cs
2023-01-09 23:31:02 +03:00

121 lines
3.7 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2023 ShareX Team
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 ShareX.HelpersLib;
using ShareX.UploadersLib.Properties;
using System;
using System.ComponentModel;
namespace ShareX.UploadersLib
{
public class OAuthInfo : ICloneable
{
public enum OAuthInfoSignatureMethod
{
HMAC_SHA1,
RSA_SHA1
}
public string Description { get; set; }
[Browsable(false)]
public string OAuthVersion { get; set; }
[Browsable(false)]
public string ConsumerKey { get; set; }
// Used for HMAC_SHA1 signature
[Browsable(false)]
public string ConsumerSecret { get; set; }
// Used for RSA_SHA1 signature
[Browsable(false)]
public string ConsumerPrivateKey { get; set; }
[Browsable(false)]
public OAuthInfoSignatureMethod SignatureMethod { get; set; }
[Browsable(false)]
public string AuthToken { get; set; }
[Browsable(false), JsonEncrypt]
public string AuthSecret { get; set; }
[JsonEncrypt, Description("Verification Code from the Authorization Page")]
public string AuthVerifier { get; set; }
[Browsable(false)]
public string UserToken { get; set; }
[Browsable(false), JsonEncrypt]
public string UserSecret { get; set; }
public OAuthInfo()
{
Description = Resources.OAuthInfo_OAuthInfo_New_account;
OAuthVersion = "1.0";
}
public OAuthInfo(string consumerKey) : this()
{
ConsumerKey = consumerKey;
}
public OAuthInfo(string consumerKey, string consumerSecret) : this()
{
ConsumerKey = consumerKey;
ConsumerSecret = consumerSecret;
}
public OAuthInfo(string consumerKey, string consumerSecret, string userToken, string userSecret) : this(consumerKey, consumerSecret)
{
UserToken = userToken;
UserSecret = userSecret;
}
public static bool CheckOAuth(OAuthInfo oauth)
{
return oauth != null && !string.IsNullOrEmpty(oauth.ConsumerKey) &&
((oauth.SignatureMethod == OAuthInfoSignatureMethod.HMAC_SHA1 && !string.IsNullOrEmpty(oauth.ConsumerSecret)) ||
(oauth.SignatureMethod == OAuthInfoSignatureMethod.RSA_SHA1 && !string.IsNullOrEmpty(oauth.ConsumerPrivateKey))) &&
!string.IsNullOrEmpty(oauth.UserToken) && !string.IsNullOrEmpty(oauth.UserSecret);
}
public OAuthInfo Clone()
{
return MemberwiseClone() as OAuthInfo;
}
object ICloneable.Clone()
{
return Clone();
}
public override string ToString()
{
return Description;
}
}
}