OSDN Git Service

pbs.twimg.com の画像URLのフォーマット変更に対応
[opentween/open-tween.git] / OpenTween / ApplicationEvents.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2007-2012 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
3 //           (c) 2008-2012 Moz (@syo68k)
4 //           (c) 2008-2012 takeshik (@takeshik) <http://www.takeshik.org/>
5 //           (c) 2010-2012 anis774 (@anis774) <http://d.hatena.ne.jp/anis774/>
6 //           (c) 2010-2012 fantasticswallow (@f_swallow) <http://twitter.com/f_swallow>
7 //           (c) 2012      Egtra (@egtra) <http://dev.activebasic.com/egtra/>
8 //           (c) 2012      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
9 // All rights reserved.
10 // 
11 // This file is part of OpenTween.
12 // 
13 // This program is free software; you can redistribute it and/or modify it
14 // under the terms of the GNU General public License as published by the Free
15 // Software Foundation; either version 3 of the License, or (at your option)
16 // any later version.
17 // 
18 // This program is distributed in the hope that it will be useful, but
19 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General public License
21 // for more details.
22 // 
23 // You should have received a copy of the GNU General public License along
24 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
25 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
26 // Boston, MA 02110-1301, USA.
27
28 #nullable enable
29
30 using System;
31 using System.Collections.Generic;
32 using System.IO;
33 using System.Linq;
34 using System.Diagnostics;
35 using System.Windows.Forms;
36 using System.Text.RegularExpressions;
37 using System.Threading;
38 using System.Threading.Tasks;
39 using System.Globalization;
40 using System.Reflection;
41 using Microsoft.Win32;
42 using OpenTween.Setting;
43 using System.Security.Principal;
44
45 namespace OpenTween
46 {
47     internal class MyApplication
48     {
49         public static readonly CultureInfo[] SupportedUICulture = new[]
50         {
51             new CultureInfo("en"), // 先頭のカルチャはフォールバック先として使用される
52             new CultureInfo("ja"),
53         };
54
55         /// <summary>
56         /// 起動時に指定されたオプションを取得します
57         /// </summary>
58         public static IDictionary<string, string> StartupOptions { get; private set; } = null!;
59
60         /// <summary>
61         /// アプリケーションのメイン エントリ ポイントです。
62         /// </summary>
63         [STAThread]
64         static int Main(string[] args)
65         {
66             WarnIfRunAsAdministrator();
67
68             if (!CheckRuntimeVersion())
69             {
70                 var message = string.Format(Properties.Resources.CheckRuntimeVersion_Error, ".NET Framework 4.7.2");
71                 MessageBox.Show(message, ApplicationSettings.ApplicationName, MessageBoxButtons.OK, MessageBoxIcon.Error);
72                 return 1;
73             }
74
75             StartupOptions = ParseArguments(args);
76
77             if (!SetConfigDirectoryPath())
78                 return 1;
79
80             SettingManager.LoadAll();
81
82             InitCulture();
83
84             {
85                 // 同じ設定ファイルを使用する OpenTween プロセスの二重起動を防止する
86                 var pt = MyCommon.settingPath.Replace("\\", "/") + "/" + ApplicationSettings.AssemblyName;
87                 using var mt = new Mutex(false, pt);
88
89                 if (!mt.WaitOne(0, false))
90                 {
91                     var text = string.Format(MyCommon.ReplaceAppName(Properties.Resources.StartupText1), ApplicationSettings.AssemblyName);
92                     MessageBox.Show(text, MyCommon.ReplaceAppName(Properties.Resources.StartupText2), MessageBoxButtons.OK, MessageBoxIcon.Information);
93
94                     TryActivatePreviousWindow();
95                     return 1;
96                 }
97
98                 TaskScheduler.UnobservedTaskException += (s, e) =>
99                 {
100                     e.SetObserved();
101                     OnUnhandledException(e.Exception.Flatten());
102                 };
103                 Application.ThreadException += (s, e) => OnUnhandledException(e.Exception);
104                 AppDomain.CurrentDomain.UnhandledException += (s, e) => OnUnhandledException((Exception)e.ExceptionObject);
105                 AsyncTimer.UnhandledException += (s, e) => OnUnhandledException(e.Exception);
106
107                 Application.EnableVisualStyles();
108                 Application.SetCompatibleTextRenderingDefault(false);
109                 Application.Run(new TweenMain());
110
111                 mt.ReleaseMutex();
112             }
113
114             return 0;
115         }
116
117         /// <summary>
118         /// OpenTween が管理者権限で実行されている場合に警告を表示します
119         /// </summary>
120         private static void WarnIfRunAsAdministrator()
121         {
122             // UAC が無効なシステムでは警告を表示しない
123             using var lmKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32);
124             using var systemKey = lmKey.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\");
125
126             var enableLUA = (int?)systemKey?.GetValue("EnableLUA");
127             if (enableLUA != 1)
128                 return;
129
130             using var currentIdentity = WindowsIdentity.GetCurrent();
131             var principal = new WindowsPrincipal(currentIdentity);
132             if (principal.IsInRole(WindowsBuiltInRole.Administrator))
133             {
134                 var message = string.Format(Properties.Resources.WarnIfRunAsAdministrator_Message, ApplicationSettings.ApplicationName);
135                 MessageBox.Show(message, ApplicationSettings.ApplicationName, MessageBoxButtons.OK, MessageBoxIcon.Warning);
136             }
137         }
138
139         /// <summary>
140         /// 動作中の .NET Framework のバージョンが適切かチェックします
141         /// </summary>
142         private static bool CheckRuntimeVersion()
143         {
144             // Mono 上で動作している場合はバージョンチェックを無視します
145             if (Type.GetType("Mono.Runtime", false) != null)
146                 return true;
147
148             // .NET Framework 4.7.2 以降で動作しているかチェックする
149             // 参照: https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed
150
151             using var lmKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32);
152             using var ndpKey = lmKey.OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\");
153
154             var releaseKey = (int)ndpKey.GetValue("Release");
155             return releaseKey >= 461808;
156         }
157
158         /// <summary>
159         /// “/key:value”形式の起動オプションを解釈し IDictionary に変換する
160         /// </summary>
161         /// <remarks>
162         /// 不正な形式のオプションは除外されます。
163         /// また、重複したキーのオプションが入力された場合は末尾に書かれたオプションが採用されます。
164         /// </remarks>
165         internal static IDictionary<string, string> ParseArguments(IEnumerable<string> arguments)
166         {
167             var optionPattern = new Regex(@"^/(.+?)(?::(.*))?$");
168
169             return arguments.Select(x => optionPattern.Match(x))
170                 .Where(x => x.Success)
171                 .GroupBy(x => x.Groups[1].Value)
172                 .ToDictionary(x => x.Key, x => x.Last().Groups[2].Value);
173         }
174
175         private static void TryActivatePreviousWindow()
176         {
177             // 実行中の同じアプリケーションのウィンドウ・ハンドルの取得
178             var prevProcess = GetPreviousProcess();
179             if (prevProcess == null)
180             {
181                 return;
182             }
183
184             var windowHandle = NativeMethods.GetWindowHandle((uint)prevProcess.Id, ApplicationSettings.ApplicationName);
185             if (windowHandle != IntPtr.Zero)
186             {
187                 NativeMethods.SetActiveWindow(windowHandle);
188             }
189         }
190
191         private static Process? GetPreviousProcess()
192         {
193             var currentProcess = Process.GetCurrentProcess();
194             try
195             {
196                 return Process.GetProcessesByName(currentProcess.ProcessName)
197                     .Where(p => p.Id != currentProcess.Id)
198                     .FirstOrDefault(p => p.MainModule.FileName.Equals(currentProcess.MainModule.FileName, StringComparison.OrdinalIgnoreCase));
199             }
200             catch
201             {
202                 return null;
203             }
204         }
205
206         private static void OnUnhandledException(Exception ex)
207         {
208             if (CheckIgnorableError(ex))
209                 return;
210
211             if (MyCommon.ExceptionOut(ex))
212             {
213                 Application.Exit();
214             }
215         }
216
217         /// <summary>
218         /// 無視しても問題のない既知の例外であれば true を返す
219         /// </summary>
220         private static bool CheckIgnorableError(Exception ex)
221         {
222 #if DEBUG
223             return false;
224 #else
225             if (ex is AggregateException aggregated)
226             {
227                 if (aggregated.InnerExceptions.Count != 1)
228                     return false;
229
230                 ex = aggregated.InnerExceptions.Single();
231             }
232
233             switch (ex)
234             {
235                 case System.Net.WebException webEx:
236                     // SSL/TLS のネゴシエーションに失敗した場合に発生する。なぜかキャッチできない例外
237                     // https://osdn.net/ticket/browse.php?group_id=6526&tid=37432
238                     if (webEx.Status == System.Net.WebExceptionStatus.SecureChannelFailure)
239                         return true;
240                     break;
241                 case System.Threading.Tasks.TaskCanceledException cancelEx:
242                     // ton.twitter.com の画像でタイムアウトした場合、try-catch で例外がキャッチできない
243                     // https://osdn.net/ticket/browse.php?group_id=6526&tid=37433
244                     var stackTrace = new System.Diagnostics.StackTrace(cancelEx);
245                     var lastFrameMethod = stackTrace.GetFrame(stackTrace.FrameCount - 1).GetMethod();
246                     if (lastFrameMethod.ReflectedType == typeof(Connection.TwitterApiConnection) &&
247                         lastFrameMethod.Name == nameof(Connection.TwitterApiConnection.GetStreamAsync))
248                         return true;
249                     break;
250             }
251
252             return false;
253 #endif
254         }
255
256         public static void InitCulture()
257         {
258             var currentCulture = CultureInfo.CurrentUICulture;
259
260             var settingCultureStr = SettingManager.Common.Language;
261             if (settingCultureStr != "OS")
262             {
263                 try
264                 {
265                     currentCulture = new CultureInfo(settingCultureStr);
266                 }
267                 catch (CultureNotFoundException) { }
268             }
269
270             var preferredCulture = GetPreferredCulture(currentCulture);
271             CultureInfo.DefaultThreadCurrentUICulture = preferredCulture;
272             Thread.CurrentThread.CurrentUICulture = preferredCulture;
273         }
274
275         /// <summary>
276         /// サポートしているカルチャの中から、指定されたカルチャに対して適切なカルチャを選択して返します
277         /// </summary>
278         public static CultureInfo GetPreferredCulture(CultureInfo culture)
279         {
280             if (SupportedUICulture.Any(x => x.Contains(culture)))
281                 return culture;
282
283             return SupportedUICulture[0];
284         }
285
286         private static bool SetConfigDirectoryPath()
287         {
288             if (StartupOptions.TryGetValue("configDir", out var configDir) && !MyCommon.IsNullOrEmpty(configDir))
289             {
290                 // 起動オプション /configDir で設定ファイルの参照先を変更できます
291                 if (!Directory.Exists(configDir))
292                 {
293                     var text = string.Format(Properties.Resources.ConfigDirectoryNotExist, configDir);
294                     MessageBox.Show(text, ApplicationSettings.ApplicationName, MessageBoxButtons.OK, MessageBoxIcon.Error);
295                     return false;
296                 }
297
298                 MyCommon.settingPath = Path.GetFullPath(configDir);
299             }
300             else
301             {
302                 // OpenTween.exe と同じディレクトリに設定ファイルを配置する
303                 MyCommon.settingPath = Application.StartupPath;
304
305                 SettingManager.LoadAll();
306
307                 try
308                 {
309                     // 設定ファイルが書き込み可能な状態であるかテストする
310                     SettingManager.SaveAll();
311                 }
312                 catch (UnauthorizedAccessException)
313                 {
314                     // 書き込みに失敗した場合 (Program Files 以下に配置されている場合など)
315
316                     // 通常は C:\Users\ユーザー名\AppData\Roaming\OpenTween\ となる
317                     var roamingDir = Path.Combine(new[]
318                     {
319                         Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
320                         ApplicationSettings.ApplicationName,
321                     });
322                     Directory.CreateDirectory(roamingDir);
323
324                     MyCommon.settingPath = roamingDir;
325
326                     /*
327                      * 書き込みが制限されたディレクトリ内で起動された場合の設定ファイルの扱い
328                      *
329                      *  (A) StartupPath に存在する設定ファイル
330                      *  (B) Roaming に存在する設定ファイル
331                      *
332                      *  1. A も B も存在しない場合
333                      *    => B を新規に作成する
334                      *
335                      *  2. A が存在し、B が存在しない場合
336                      *    => A の内容を B にコピーする (警告を表示)
337                      *
338                      *  3. A が存在せず、B が存在する場合
339                      *    => B を使用する
340                      *
341                      *  4. A も B も存在するが、A の方が更新日時が新しい場合
342                      *    => A の内容を B にコピーする (警告を表示)
343                      *
344                      *  5. A も B も存在するが、B の方が更新日時が新しい場合
345                      *    => B を使用する
346                      */
347                     var startupDirFile = new FileInfo(Path.Combine(Application.StartupPath, "SettingCommon.xml"));
348                     var roamingDirFile = new FileInfo(Path.Combine(roamingDir, "SettingCommon.xml"));
349
350                     if (roamingDirFile.Exists && (!startupDirFile.Exists || startupDirFile.LastWriteTime <= roamingDirFile.LastWriteTime))
351                     {
352                         // 既に Roaming に設定ファイルが存在し、Roaming 内のファイルの方が新しい場合は
353                         // StartupPath に設定ファイルが存在しても無視する
354                         SettingManager.LoadAll();
355                     }
356                     else
357                     {
358                         if (startupDirFile.Exists)
359                         {
360                             // StartupPath に設定ファイルが存在し、Roaming 内のファイルよりも新しい場合のみ警告を表示する
361                             var message = string.Format(Properties.Resources.SettingPath_Relocation, Application.StartupPath, MyCommon.settingPath);
362                             MessageBox.Show(message, ApplicationSettings.ApplicationName, MessageBoxButtons.OK, MessageBoxIcon.Information);
363                         }
364
365                         // Roaming に設定ファイルを作成 (StartupPath に読み込みに成功した設定ファイルがあれば内容がコピーされる)
366                         SettingManager.SaveAll();
367                     }
368                 }
369             }
370
371             return true;
372         }
373     }
374 }