프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / App.xaml.cs @ a7578175

이력 | 보기 | 이력해설 | 다운로드 (13.4 KB)

1

2
using KCOM.Common;
3
using KCOM.Views;
4
using log4net;
5
using System;
6
using System.ComponentModel;
7
using System.IO;
8
using System.Linq;
9
using System.ServiceModel;
10
using System.Threading.Tasks;
11
using System.Windows;
12
using System.Windows.Input;
13
using System.Windows.Resources;
14

    
15
namespace KCOM
16
{
17
    public class OpenProperties
18
    {
19
        public string DocumentItemID { get; set; }
20
        public bool bPartner { get; set; }
21
        public bool CreateFinalPDFPermission { get; set; }
22
        public bool NewCommentPermission { get; set; }
23
        public string ProjectNO { get; set; }
24
        public string UserID { get; set; }
25
        public int Mode { get; set; }
26
    }
27
    /// <summary>
28
    /// App.xaml에 대한 상호 작용 논리
29
    /// </summary>
30
    public partial class App : Application
31
    {
32
        public static PageManager.PageStorage PageStorage;
33
        public static string BaseAddress;
34
        public static string FileUploadUri;
35
        public static BasicHttpBinding _binding;
36
        public static EndpointAddress _EndPoint;
37
        public static EndpointAddress _EndPoint_SaveLoad;
38
        public static EndpointAddress _EndPoint_Symbol;
39
        public static string UserID;
40
        public static string UserName;
41
        public static string UserIP;
42
        public static IKCOM.ViewInfo ViewInfo;
43
        public static string urlHost;
44
        public static string urlPort;
45
        public static string urlHost_DB;
46
        public static string urlPort_DB;
47
        public static string Custom_ViewInfoId;
48
        public static bool ParameterMode = false;
49
        public static bool isExternal = false;
50

    
51
        /// <summary>
52
        /// logger
53
        /// </summary>
54
        public static ILog FileLogger = null;
55
        
56
        public static StreamResourceInfo DefaultArrowCursor;
57

    
58
        public static Stream DefaultArrowCursorStream
59
        {
60
            get {
61
                return Application.GetResourceStream(new Uri(@"pack://application:,,,/Resources/Cursor/customCursor2.cur", UriKind.Absolute)).Stream;
62
                //DefaultArrowCursor.Stream.Position = 0;
63
                //return DefaultArrowCursor.Stream;
64
            }
65
        }
66

    
67
        public static kr.co.devdoftech.cloud.FileUpload FileUploader
68
        {
69
            get { return new kr.co.devdoftech.cloud.FileUpload{ Url = FileUploadUri }; }
70

    
71
            private set {; }
72
        }
73

    
74
        /// <summary>
75
        /// VisualStudio Design Time여부
76
        /// </summary>
77
        public static bool IsDesignMode
78
        {
79
            get
80
            {
81
                try
82
                {
83
                    return DesignerProperties.GetIsInDesignMode(new DependencyObject());
84
                }
85
                catch (Exception)
86
                {
87
                    return false;
88
                }
89
            }
90
            private set { }
91
        }
92

    
93
        /// <summary>
94
        /// Application Data Folder
95
        /// </summary>
96
        public static string AppDataFolder
97
        {
98
            get
99
            {
100
                return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MARKUS");
101
            }
102
        }
103

    
104
        public static IKCOM.KCOM_SystemInfo SystemInfo { get; set; }
105

    
106

    
107
        private static OpenProperties ParamDecoding(string DecodingText, System.Text.Encoding oEncoding = null)
108
        {
109
            if (oEncoding == null)
110
                oEncoding = System.Text.Encoding.UTF8;
111

    
112
            byte[] byteArray = Convert.FromBase64String(DecodingText);
113

    
114
            string jsonBack = oEncoding.GetString(byteArray);
115

    
116
            return Newtonsoft.Json.JsonConvert.DeserializeObject<OpenProperties>(jsonBack);
117
        }
118

    
119
        private string versionPath = null;
120
        //public SplashScreen splash = new SplashScreen("splash.png");
121
        public static SplashScreenWindow splashScreen = new SplashScreenWindow();
122

    
123
        public App()
124
        {
125
            Telerik.Windows.Controls.StyleManager.ApplicationTheme = new Telerik.Windows.Controls.VisualStudio2013Theme();
126

    
127
            App.FileLogger = LogManager.GetLogger(typeof(App));
128
        }
129

    
130
        protected override void OnExit(ExitEventArgs e)
131
        {
132
            try
133
            {
134
                if (App.PageStorage != null)
135
                {
136
                    App.PageStorage.Clear();
137
                }
138
            }
139
            catch (Exception)
140
            {
141
            }
142

    
143
            base.OnExit(e);
144
        }
145

    
146
        protected override async void OnStartup(StartupEventArgs e)
147
        {
148
            try
149
            {
150
                DefaultArrowCursor = Application.GetResourceStream(new Uri(@"pack://application:,,,/Resources/Cursor/customCursor2.cur", UriKind.Absolute));
151

    
152
                splashScreen.Show();
153

    
154
                App.Current.DispatcherUnhandledException += Current_DispatcherUnhandledException;
155
                /// up to here
156
                //AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
157

    
158
                #region  //  DNS 체크
159

    
160
                string localdomain = CommonLib.Common.GetConfigString("HOST_DOMAIN", "DOMAIN", "");
161

    
162
                ViewerDataModel.Instance.IsDocumentHistory = Convert.ToBoolean(CommonLib.Common.GetConfigString("COMMON","IsDocumentHistory", "true"));
163

    
164
                var hostEntry = CommonLib.DNSHelper.GetHostEntryTask();
165
                
166
                if (hostEntry == null)
167
                {
168
                    System.Diagnostics.Debug.WriteLine("(hostEntry == null");
169
                    //App.FileLogger.Debug("hostEntry == null");
170
                    isExternal = true;
171
                }
172
                else if (!string.IsNullOrEmpty(localdomain) && !hostEntry.HostName.ToUpper().EndsWith(localdomain.ToUpper()))
173
                {
174
                    // 외부 사용자
175
                     App.FileLogger.Debug(string.Format("You are external user because located out side of given domain({0})\nYour domain is {1}", localdomain, hostEntry.HostName));
176
                    isExternal = true;
177
                }
178
                #endregion
179

    
180

    
181
                if (e.Args.Count() > 0)
182
                {
183
                    var result = ParamDecoding(e.Args[0].Replace(@"kcom://", "").Replace(@"/", ""));
184
                    App.ViewInfo = new IKCOM.ViewInfo
185
                    {
186
                        DocumentItemID = result.DocumentItemID,
187
                        EnsembleID = result.DocumentItemID,
188
                        //DocumentItemID = "10001",
189
                        bPartner = result.bPartner,
190
                        CreateFinalPDFPermission = result.CreateFinalPDFPermission,
191
                        NewCommentPermission = result.NewCommentPermission,
192
                        ProjectNO = result.ProjectNO,
193
                        UserID = result.UserID,
194
                        isAdmin = Convert.ToBoolean(result.Mode)
195
                        //UserID = "H2009115",
196
                        //Mode = result.Mode
197
                    };
198
                    ParameterMode = true;
199
                } 
200
                else
201
                {
202
                    string[] strArg = Environment.GetCommandLineArgs();
203
                    if (strArg.Length > 1)
204
                    {
205
                        var result = ParamDecoding(strArg[1].Replace(@"kcom://", "").Replace(@"/", ""));
206
                        App.ViewInfo = new IKCOM.ViewInfo
207
                        {
208
                            DocumentItemID = result.DocumentItemID,
209
                            EnsembleID = result.DocumentItemID,
210
                            //DocumentItemID = "10001",
211
                            bPartner = result.bPartner,
212
                            CreateFinalPDFPermission = result.CreateFinalPDFPermission,
213
                            NewCommentPermission = result.NewCommentPermission,
214
                            ProjectNO = result.ProjectNO,
215
                            UserID = result.UserID,
216
                            //UserID = "H2009115",
217
                            //Mode = 0 , 1 , 2
218
                        };
219
                        ParameterMode = true;
220
                    }
221
                    else
222
                    {
223
                        MessageBox.Show("문서 정보가 입력되지 않았습니다.\n프로그램이 종료됩니다.", "안내");
224
                        throw new ArgumentException("문서 정보가 입력되지 않았습니다.");
225
                    }
226
                }
227

    
228
                //App.ViewInfo.CreateFinalPDFPermission = false;
229
                //App.ViewInfo.NewCommentPermission = false;
230
                //GetQueryStringParameters();
231
                //_binding = new WSHttpBinding();
232
                //_binding.Security = new WSHttpSecurity { Transport = new HttpTransportSecurity { ClientCredentialType = HttpClientCredentialType.None }, Mode = SecurityMode.Transport };
233
                //_binding.MaxReceivedMessageSize = 2147483647;
234
                //_binding.OpenTimeout = new TimeSpan(0, 1, 0);
235
                //_binding.ReceiveTimeout = new TimeSpan(0, 10, 0);
236
                //_binding.CloseTimeout = new TimeSpan(0, 5, 0);
237
                //_binding.SendTimeout = new TimeSpan(0, 5, 0);
238

    
239
                _binding = new BasicHttpBinding(BasicHttpSecurityMode.TransportCredentialOnly);
240
                _binding.MaxBufferSize = 2147483647;
241
                _binding.MaxReceivedMessageSize = 2147483647;
242
                _binding.OpenTimeout = new TimeSpan(0, 1, 0);
243
                _binding.ReceiveTimeout = new TimeSpan(0, 10, 0);
244
                _binding.CloseTimeout = new TimeSpan(0, 5, 0);
245
                _binding.SendTimeout = new TimeSpan(0, 5, 0);
246
                _binding.TextEncoding = System.Text.Encoding.UTF8;
247
                _binding.TransferMode = TransferMode.Buffered;
248
                //_binding.TextEncoding = System.Text.Encoding.UTF8;
249
                //Support.SetLicense();
250

    
251
#if DEBUG
252
                //sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal);
253
                System.Diagnostics.Debug.WriteLine("sBaseServiceURL");
254
                BaseAddress = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal);
255
#else
256
                BaseAddress = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal);
257
#endif
258

    
259
                var UploadAddress = CommonLib.Common.GetConfigString("KCOM_kr_co_devdoftech_cloud_FileUpload", "URL", "");
260

    
261
                if (!string.IsNullOrWhiteSpace(UploadAddress) && !string.IsNullOrWhiteSpace(BaseAddress))
262
                {
263
                    var uri = new UriBuilder(UploadAddress);
264
                    var baseUri = new UriBuilder(BaseAddress);
265

    
266
                    uri.Host = baseUri.Host;
267
                    uri.Port = baseUri.Port;
268

    
269
                    FileUploadUri = uri.ToString();
270
                }
271

    
272
                App.FileLogger.Debug(string.Format("{0}/ServiceDeepView.svc", BaseAddress));
273
                _EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc", BaseAddress));
274

    
275
                
276

    
277
                await SplashScreenAsnyc();
278
                base.OnStartup(e);
279

    
280
                System.Windows.Input.Keyboard.AddKeyDownHandler(this.MainWindow, KeyDownEvent);
281
            }
282
            catch (Exception ex)
283
            {
284
                Logger.sendReqLog("OnStartUp",ex.ToString() + " " + ex.InnerException?.ToString(),1);
285
            }
286
            finally
287
            {
288
                await SplashScreenAsnyc();
289
            }
290
        }
291

    
292
        private void Current_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
293
        {
294
            Logger.sendReqLog("App Error ",e.Exception.ToString() + " " + e.Exception.InnerException?.ToString(), 1);
295
        }
296

    
297
        private void KeyDownEvent(object sender, KeyEventArgs e)
298
        {
299
            //if (e.Key == Key.Escape || e.Key == Key.Delete)
300
            //{
301
                System.Diagnostics.Debug.WriteLine("app key Event");
302
                Common.ViewerDataModel.Instance.SystemMain.KeyEventDownAction(sender, e);
303
            //}
304
        }
305

    
306
        private async Task<bool> SplashScreenAsnyc()
307
        {
308
            int value = 100 / ISplashMessage.SplashMessageCnt;
309

    
310
            for (int i = 1; i < ISplashMessage.SplashMessageCnt; i++)
311
            {
312
                await Task.Delay(3);
313
                await splashScreen.Dispatcher.InvokeAsync(() => splashScreen.Progress = i * value);
314
            }
315

    
316
            //splashScreen.Close();
317

    
318
            return true;
319
        }
320

    
321
        public static void splashString(string text)
322
        {
323
            Task.Factory.StartNew(() =>
324
            {
325
                splashScreen.Dispatcher.Invoke(() => splashScreen.SplashText = text);
326
            }).ConfigureAwait(false);
327
        }
328

    
329

    
330
        /// <summary>
331
        /// log unhandled exception
332
        /// </summary>
333
        /// <author>humkyung</author>
334
        /// <date>2019.05.21</date>
335
        /// <param name="sender"></param>
336
        /// <param name="e"></param>
337
        private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
338
        {
339
            try
340
            {
341
                App.FileLogger.Fatal(e.ExceptionObject as Exception);
342
            }
343
            catch (Exception ex)
344
            {
345
                Console.WriteLine(ex.InnerException?.ToString());
346
            }
347
            finally
348
            {
349
#if RELEASE
350
                Environment.Exit(0);
351
#endif
352
            }
353
        }
354

    
355
        private void ErrorLogFileWrite(string Err)
356
        {
357
            App.FileLogger.Debug(Err);
358
        }
359
    }
360
}
클립보드 이미지 추가 (최대 크기: 500 MB)