ShareX/ShareX.UploadersLib/Controls/OAuthLoopbackControl.cs

101 lines
3 KiB
C#
Raw Normal View History

2022-12-09 00:21:16 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2023-01-10 09:31:02 +13:00
Copyright (c) 2007-2023 ShareX Team
2022-12-09 00:21:16 +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)
using ShareX.UploadersLib.Properties;
using System;
using System.Drawing;
using System.Windows.Forms;
namespace ShareX.UploadersLib
{
public partial class OAuthLoopbackControl : UserControl
{
public event Action ConnectButtonClicked;
public event Action DisconnectButtonClicked;
2022-12-11 02:10:35 +13:00
public bool Connected { get; private set; }
2022-12-09 00:21:16 +13:00
2022-12-11 02:10:35 +13:00
public OAuthUserInfo UserInfo { get; private set; }
2022-12-09 00:21:16 +13:00
public OAuthLoopbackControl()
{
InitializeComponent();
UpdateStatus();
}
private void btnConnect_Click(object sender, EventArgs e)
{
if (Connected)
{
DisconnectButtonClicked?.Invoke();
2022-12-09 01:15:52 +13:00
2022-12-11 02:32:39 +13:00
UpdateStatus(null);
2022-12-09 00:21:16 +13:00
}
else
{
ConnectButtonClicked?.Invoke();
}
}
2022-12-11 02:10:35 +13:00
public void UpdateStatus(OAuth2Info oauth, OAuthUserInfo userInfo = null)
{
Connected = OAuth2Info.CheckOAuth(oauth);
if (Connected)
{
UserInfo = userInfo;
}
2022-12-11 02:32:39 +13:00
else
{
UserInfo = null;
}
2022-12-11 02:10:35 +13:00
UpdateStatus();
}
2022-12-09 00:21:16 +13:00
private void UpdateStatus()
{
if (Connected)
{
btnConnect.Text = Resources.Disconnect;
2022-12-09 00:21:16 +13:00
if (UserInfo != null && !string.IsNullOrEmpty(UserInfo.name))
{
lblStatusValue.Text = string.Format(Resources.LoggedInAs0, UserInfo.name);
}
else
{
lblStatusValue.Text = Resources.OAuthControl_Status_LoggedIn;
}
2022-12-09 01:15:52 +13:00
lblStatusValue.ForeColor = Color.FromArgb(0, 180, 0);
2022-12-09 00:21:16 +13:00
}
else
{
btnConnect.Text = Resources.Connect;
2022-12-09 00:21:16 +13:00
lblStatusValue.Text = Resources.OAuthControl_Status_NotLoggedIn;
2022-12-09 01:15:52 +13:00
lblStatusValue.ForeColor = Color.FromArgb(220, 0, 0);
2022-12-09 00:21:16 +13:00
}
}
}
}