OSDN Git Service

PostMultipartRequestクラスを追加
[opentween/open-tween.git] / OpenTween / AuthDialog.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2012      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 #nullable enable
23
24 using System;
25 using System.Collections.Generic;
26 using System.ComponentModel;
27 using System.Data;
28 using System.Drawing;
29 using System.Linq;
30 using System.Runtime.InteropServices;
31 using System.Text;
32 using System.Windows.Forms;
33
34 namespace OpenTween
35 {
36     /// <summary>
37     /// OAuth認証のPINコードの入力を求めるダイアログ
38     /// </summary>
39     public partial class AuthDialog : OTBaseForm
40     {
41         public AuthDialog()
42         {
43             this.InitializeComponent();
44
45             // PinTextBox のフォントを OTBaseForm.GlobalFont に変更
46             this.PinTextBox.Font = this.ReplaceToGlobalFont(this.PinTextBox.Font);
47         }
48
49         public string AuthUrl
50         {
51             get => this.AuthLinkLabel.Text;
52             set => this.AuthLinkLabel.Text = value;
53         }
54
55         public string Pin
56         {
57             get => this.PinTextBox.Text.Trim();
58             set => this.PinTextBox.Text = value;
59         }
60
61         public string? BrowserPath { get; set; }
62
63         private async void AuthLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
64         {
65             // 右クリックの場合は無視する
66             if (e.Button == MouseButtons.Right)
67                 return;
68
69             this.AuthLinkLabel.LinkVisited = true;
70             await MyCommon.OpenInBrowserAsync(this, this.BrowserPath, this.AuthUrl);
71         }
72
73         private void MenuItemCopyURL_Click(object sender, EventArgs e)
74         {
75             try
76             {
77                 Clipboard.SetText(this.AuthUrl);
78             }
79             catch (ExternalException)
80             {
81             }
82         }
83
84         /// <summary>
85         /// 指定されたURLにユーザーがアクセスするように指示してPINを入力させるだけ
86         /// </summary>
87         /// <param name="owner">親ウィンドウ</param>
88         /// <param name="authUri">認証URL</param>
89         /// <param name="browserPath">Webブラウザのパス</param>
90         /// <returns>PIN文字列</returns>
91         public static string? DoAuth(IWin32Window owner, Uri authUri, string? browserPath)
92         {
93             using var dialog = new AuthDialog();
94             dialog.AuthUrl = authUri.AbsoluteUri;
95             dialog.BrowserPath = browserPath;
96
97             dialog.ShowDialog(owner);
98
99             if (dialog.DialogResult == DialogResult.OK)
100                 return dialog.Pin;
101             else
102                 return null;
103         }
104     }
105 }