markus / KCOM / Services / BaseServices.cs @ ed705a3d
이력 | 보기 | 이력해설 | 다운로드 (48.6 KB)
1 | 787a4489 | KangIngu | using Microsoft.AspNet.SignalR.Client; |
---|---|---|---|
2 | using IKCOM; |
||
3 | using KCOM.Common; |
||
4 | using KCOM.ServiceDeepView; |
||
5 | using KCOMDataModel.DataModel; |
||
6 | using Newtonsoft.Json; |
||
7 | using System; |
||
8 | using System.Collections.Generic; |
||
9 | using System.Collections.ObjectModel; |
||
10 | using System.ComponentModel; |
||
11 | using System.Linq; |
||
12 | using System.Runtime.CompilerServices; |
||
13 | using System.Text; |
||
14 | using System.Windows; |
||
15 | using System.Windows.Controls; |
||
16 | using Telerik.Windows.Controls; |
||
17 | 036650a0 | humkyung | using MarkupToPDF.Controls.Parsing; |
18 | fddb48f7 | ljiyeon | using Telerik.Windows.Data; |
19 | 90a0bfa9 | djkim | using System.Web; |
20 | 787a4489 | KangIngu | |
21 | namespace KCOM.Views |
||
22 | { |
||
23 | public partial class MainMenu : UserControl, INotifyPropertyChanged |
||
24 | 29010418 | ljiyeon | { |
25 | eb5cdefc | djkim | //const string DeepZoomUrl = @"http://{baseUrl}/TileSource/{TileSourcePath}/{ItemsPath}/{SharepointItemID}/{PageNo}.jpg"; |
26 | 787a4489 | KangIngu | public ServiceDeepViewClient BaseClient; |
27 | 6b6e937c | taeseongkim | public KcomService.ServiceDeepViewClient BaseTaskClient; |
28 | 787a4489 | KangIngu | public ViewInfo _ViewInfo; |
29 | public DOCINFO _DocInfo; |
||
30 | public DOCUMENT_ITEM _DocItem; |
||
31 | public MEMBER userData; |
||
32 | be72bfd6 | taeseongkim | public List<int> MarkupSortList = new List<int>(); |
33 | 787a4489 | KangIngu | |
34 | public event PropertyChangedEventHandler PropertyChanged; |
||
35 | private void NotifyPropertyChanged([CallerMemberName] String propertyName = "") |
||
36 | { |
||
37 | if (PropertyChanged != null) |
||
38 | { |
||
39 | PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); |
||
40 | } |
||
41 | } |
||
42 | |||
43 | private Common.DocumentSet _CurrentDoc { get; set; } |
||
44 | public Common.DocumentSet CurrentDoc |
||
45 | { |
||
46 | get |
||
47 | { |
||
48 | return _CurrentDoc; |
||
49 | } |
||
50 | set |
||
51 | { |
||
52 | if (value != CurrentDoc) |
||
53 | { |
||
54 | _CurrentDoc = value; |
||
55 | NotifyPropertyChanged(); |
||
56 | } |
||
57 | } |
||
58 | } |
||
59 | public void ServiceOn() |
||
60 | { |
||
61 | 6b6e937c | taeseongkim | BaseTaskClient = new KcomService.ServiceDeepViewClient(App._binding, App._EndPoint); |
62 | 29010418 | ljiyeon | BaseClient = new ServiceDeepViewClient(App._binding, App._EndPoint); |
63 | |||
64 | 787a4489 | KangIngu | BaseClient.GetDocInfoCompleted += BaseClient_GetDocInfoCompleted; //문서 섬네일, 페이지크기, 마크업 정보 [3] |
65 | 0f065e57 | ljiyeon | BaseClient.GetConversionStateCompleted += BaseClient_GetConversionStateCompleted; //컨버팅의 여부 [2] |
66 | BaseClient.GetSystemDataCompleted += BaseClient_GetSystemDataCompleted; //시스템 정보 [1] |
||
67 | 787a4489 | KangIngu | BaseClient.GetDocumentItemInfoCompleted += BaseClient_GetDocumentItemInfoCompleted; // 문서 자체의 정보 [4] |
68 | 29010418 | ljiyeon | BaseClient.GetMarkupInfoItemsCompleted += BaseClient_GetMarkupInfoItemsCompleted; |
69 | BaseClient.GetDeptDataCompleted += BaseClient_GetDeptDataCompleted; |
||
70 | BaseClient.DeleteMarkupCompleted += BaseClient_DeleteMarkupCompleted; |
||
71 | 787a4489 | KangIngu | BaseClient.GetVPRevisionHistoryCompleted += BaseClient_GetVPRevisionHistoryCompleted; |
72 | 29010418 | ljiyeon | BaseClient.SetFinalPDFCompleted += BaseClient_SetFinalPDFCompleted; |
73 | BaseClient.GetCompareRectCompleted += BaseClient_GetCompareRectCompleted; |
||
74 | BaseClient.DeleteMarkupCompleted += BaseClient_DeleteMarkupCompleted; |
||
75 | BaseClient.DelFavoriteVPCompleted += BaseClient_DelFavoriteVPCompleted; |
||
76 | BaseClient.EditFavoriteVPCompleted += BaseClient_EditFavoriteVPCompleted; |
||
77 | 992a98b4 | KangIngu | } |
78 | |||
79 | 29010418 | ljiyeon | |
80 | 992a98b4 | KangIngu | |
81 | private void BaseClient_EditFavoriteVPCompleted(object sender, EditFavoriteVPCompletedEventArgs e) |
||
82 | { |
||
83 | 664ea2e1 | taeseongkim | //Logger.sendResLog("EditFavoriteVPCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
84 | 0f065e57 | ljiyeon | |
85 | 53880c83 | ljiyeon | if (e.Error == null && e.Result != false) |
86 | 992a98b4 | KangIngu | { |
87 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetFavoriteVPAsync", App.ViewInfo.ProjectNO + "," + App.ViewInfo.UserID + "," + App.ViewInfo.DocumentItemID, 1); |
88 | 992a98b4 | KangIngu | BaseClient.GetFavoriteVPAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, App.ViewInfo.DocumentItemID); |
89 | } |
||
90 | else |
||
91 | { |
||
92 | DialogMessage_Alert("Unable to delete the file due to a system failure", "Warning"); |
||
93 | } |
||
94 | } |
||
95 | |||
96 | private void BaseClient_DelFavoriteVPCompleted(object sender, DelFavoriteVPCompletedEventArgs e) |
||
97 | { |
||
98 | 664ea2e1 | taeseongkim | //Logger.sendResLog("DelFavoriteVPCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
99 | 0f065e57 | ljiyeon | |
100 | 53880c83 | ljiyeon | if (e.Error == null && e.Result != false) |
101 | 992a98b4 | KangIngu | { |
102 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetFavoriteVPAsync", App.ViewInfo.ProjectNO + "," + App.ViewInfo.UserID + "," + App.ViewInfo.DocumentItemID, 1); |
103 | 992a98b4 | KangIngu | BaseClient.GetFavoriteVPAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, App.ViewInfo.DocumentItemID); |
104 | } |
||
105 | else |
||
106 | { |
||
107 | DialogMessage_Alert("Unable to delete the file due to a system failure", "Warning"); |
||
108 | } |
||
109 | 787a4489 | KangIngu | } |
110 | |||
111 | 9294fed6 | humkyung | /// <summary> |
112 | /// Compare 결과를 받아 화면에 표시한다 |
||
113 | /// </summary> |
||
114 | /// <param name="sender"></param> |
||
115 | /// <param name="e"></param> |
||
116 | 787a4489 | KangIngu | private void BaseClient_GetCompareRectCompleted(object sender, GetCompareRectCompletedEventArgs e) |
117 | { |
||
118 | if (e.Error != null || e.Result == null) |
||
119 | { |
||
120 | 9294fed6 | humkyung | if (e.Error != null) |
121 | { |
||
122 | DialogMessage_Alert(e.Error.ToString(), "Error"); |
||
123 | } |
||
124 | else |
||
125 | { |
||
126 | DialogMessage_Alert("Compare 기능을 원활히 실행하기 위한 데이터가 부족합니다", "안내"); |
||
127 | } |
||
128 | 787a4489 | KangIngu | } |
129 | else |
||
130 | { |
||
131 | e.Result.ForEach(d => |
||
132 | { |
||
133 | 43d2041c | taeseongkim | d.Width = d.Width; |
134 | d.Height = d.Height; |
||
135 | 787a4489 | KangIngu | var point = MarkupToPDF.Controls.Common.MathSet.getRectMiddlePoint(d); |
136 | a1142a6b | taeseongkim | System.Windows.Shapes.Rectangle myEllipse = new System.Windows.Shapes.Rectangle(); |
137 | myEllipse.Fill = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(100,255,8,0)); |
||
138 | myEllipse.Opacity = 0.8; |
||
139 | 787a4489 | KangIngu | myEllipse.Width = d.Width; |
140 | myEllipse.Height = d.Height; |
||
141 | Canvas.SetLeft(myEllipse, d.X - ((point.X - d.X) / 2.0)); |
||
142 | Canvas.SetTop(myEllipse, d.Y - ((point.Y - d.Y) / 2.0)); |
||
143 | myEllipse.RenderTransformOrigin = point; |
||
144 | canvas_compareBorder.Children.Add(myEllipse); |
||
145 | }); |
||
146 | 43d2041c | taeseongkim | canvas_compareBorder.Visibility = Visibility.Visible; |
147 | 787a4489 | KangIngu | da.From = 0.8; |
148 | a1142a6b | taeseongkim | da.To = 0.1; |
149 | 787a4489 | KangIngu | da.Duration = new Duration(TimeSpan.FromSeconds(1)); |
150 | da.AutoReverse = true; |
||
151 | canvas_compareBorder.BeginAnimation(OpacityProperty, da); |
||
152 | } |
||
153 | } |
||
154 | |||
155 | private void BaseClient_SetFinalPDFCompleted(object sender, SetFinalPDFCompletedEventArgs e) |
||
156 | { |
||
157 | 664ea2e1 | taeseongkim | //Logger.sendResLog("SetFinalPDFCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
158 | 84c48033 | djkim | string errormsg = CommonLib.Common.GetAlertMessageString("SetFinalPDFError", "MSG", "최종 파일을 만드는데 문제가 발생하였습니다"); |
159 | string successmsg = CommonLib.Common.GetAlertMessageString("SetFinalPDFSuccess", "MSG", "최종 파일 생성 중입니다. 문서관리시스템을 확인해주세요"); |
||
160 | 29010418 | ljiyeon | if (e.Error != null || e.Result.Status == FinalStatus.Error) |
161 | 787a4489 | KangIngu | { |
162 | 84c48033 | djkim | DialogMessage_Alert(errormsg, "안내"); |
163 | 787a4489 | KangIngu | } |
164 | else |
||
165 | { |
||
166 | 84c48033 | djkim | DialogMessage_Alert(successmsg, "안내"); |
167 | 787a4489 | KangIngu | } |
168 | } |
||
169 | |||
170 | private void BaseClient_GetVPRevisionHistoryCompleted(object sender, GetVPRevisionHistoryCompletedEventArgs e) |
||
171 | { |
||
172 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetVPRevisionHistoryCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result?.Count + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
173 | 0f065e57 | ljiyeon | |
174 | 787a4489 | KangIngu | if (e.Result != null && e.Error == null) |
175 | { |
||
176 | 90a0bfa9 | djkim | List<VPRevision> list = e.Result; |
177 | foreach (var item in list) |
||
178 | { |
||
179 | 24ac2a04 | taeseongkim | |
180 | if (App.isExternal) |
||
181 | { |
||
182 | f35c95d8 | taeseongkim | var sBaseServiceURL = CommonLib.Common.GetConfigString("ExternalOriginalFileUrl", "URL", "", App.isExternal); |
183 | 24ac2a04 | taeseongkim | |
184 | db545833 | taeseongkim | if (!string.IsNullOrWhiteSpace(item.TO_VENDOR)) |
185 | { |
||
186 | var toUri = new Uri(HttpUtility.UrlDecode(item.TO_VENDOR)); |
||
187 | item.TO_VENDOR = $"{sBaseServiceURL}{toUri.LocalPath}"; |
||
188 | } |
||
189 | |||
190 | if (!string.IsNullOrWhiteSpace(item.FROM_VENDOR)) |
||
191 | { |
||
192 | var fromUri = new Uri(HttpUtility.UrlDecode(item.FROM_VENDOR)); |
||
193 | item.FROM_VENDOR = $"{sBaseServiceURL}{fromUri.LocalPath}"; |
||
194 | } |
||
195 | 24ac2a04 | taeseongkim | } |
196 | else |
||
197 | { |
||
198 | |||
199 | item.FROM_VENDOR = HttpUtility.UrlDecode(item.FROM_VENDOR); |
||
200 | } |
||
201 | 90a0bfa9 | djkim | } |
202 | 6c45db59 | taeseongkim | |
203 | gridViewHistory.ItemsSource = list.OrderByDescending(x=>x.RevNo); |
||
204 | 787a4489 | KangIngu | } |
205 | f9fb5500 | ljiyeon | //TempFile.TempLoad(); |
206 | 787a4489 | KangIngu | } |
207 | |||
208 | private void BaseClient_DeleteMarkupCompleted(object sender, DeleteMarkupCompletedEventArgs e) |
||
209 | { |
||
210 | 664ea2e1 | taeseongkim | //Logger.sendResLog("DeleteMarkupCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
211 | 0f065e57 | ljiyeon | |
212 | d128ceb2 | humkyung | foreach(var info in ViewerDataModel.Instance._markupInfoList) |
213 | { |
||
214 | if(info.UserID == App.ViewInfo.UserID) |
||
215 | { |
||
216 | info.userDelete = true; |
||
217 | info.DisplayColor = "FFFF0000"; |
||
218 | } |
||
219 | else |
||
220 | { |
||
221 | info.userDelete = false; |
||
222 | } |
||
223 | } |
||
224 | 787a4489 | KangIngu | } |
225 | |||
226 | private void BaseClient_GetDeptDataCompleted(object sender, GetDeptDataCompletedEventArgs e) |
||
227 | { |
||
228 | 0585d5cc | taeseongkim | if (e.Error == null) |
229 | { |
||
230 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetDeptDataCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result?.Count + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
231 | 0585d5cc | taeseongkim | } |
232 | else |
||
233 | { |
||
234 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetDeptDataCompleted", "\r Error :" + e.Error, 1); |
235 | 0585d5cc | taeseongkim | } |
236 | 0f065e57 | ljiyeon | |
237 | 787a4489 | KangIngu | if (e.Result != null) |
238 | { |
||
239 | e.Result.Sort(); |
||
240 | //cbSymbolPublic.ItemsSource = e.Result.ToList(); |
||
241 | } |
||
242 | } |
||
243 | 0585d5cc | taeseongkim | |
244 | 29010418 | ljiyeon | public MarkupInfoItem PreviewUserMarkupInfoItem { get; set; } |
245 | 787a4489 | KangIngu | |
246 | 35a96e24 | humkyung | /// <summary> |
247 | d62c0439 | humkyung | /// 문서 정보를 가져온다 |
248 | /// </summary> |
||
249 | /// <param name="sender"></param> |
||
250 | /// <param name="e"></param> |
||
251 | eeb0a39c | taeseongkim | private async void BaseClient_GetDocInfoCompleted(object sender, GetDocInfoCompletedEventArgs e) |
252 | d62c0439 | humkyung | { |
253 | 664ea2e1 | taeseongkim | ////Logger.sendResLog("GetDocInfoCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
254 | d62c0439 | humkyung | |
255 | if (e.Error != null) |
||
256 | { |
||
257 | 503cb09e | taeseongkim | DialogMessage_Alert("The page cannot be displayed.", "Alert"); |
258 | d62c0439 | humkyung | } |
259 | 5aa6a59a | taeseongkim | else if (e.Result == null) |
260 | d62c0439 | humkyung | { |
261 | cdb2c0a2 | taeseongkim | DialogMessage_Alert("Document information is missing.", "Alert"); |
262 | d62c0439 | humkyung | } |
263 | cdb2c0a2 | taeseongkim | else |
264 | d62c0439 | humkyung | { |
265 | cdb2c0a2 | taeseongkim | string sFolder = _ViewInfo.DocumentItemID.All(char.IsDigit) ? (Convert.ToUInt32(_ViewInfo.DocumentItemID) / 100).ToString() : (_ViewInfo.DocumentItemID.Length >= 5 ? _ViewInfo.DocumentItemID.Substring(0, 5) : _ViewInfo.DocumentItemID); |
266 | var MainUrl = string.Format(CommonLib.Common.GetConfigString("mainServerImageWebPath", "URL", "", App.isExternal).Replace("png", "jpg"), _ViewInfo.ProjectNO, sFolder, _ViewInfo.DocumentItemID, "{PageNo}"); |
||
267 | _DocInfo = e.Result; |
||
268 | _DocInfo.ORIGINAL_FILE = HttpUtility.UrlDecode(_DocInfo.ORIGINAL_FILE); |
||
269 | foreach (var item in _DocInfo.DOCPAGE.OrderBy(order => order.PAGE_NUMBER)) |
||
270 | { |
||
271 | ViewerDataModel.Instance.Document_Info.Add(item); |
||
272 | } |
||
273 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + _DocInfo.ID, 1); |
274 | cdb2c0a2 | taeseongkim | CurrentDoc = new Common.DocumentSet |
275 | { |
||
276 | docInfo = _DocInfo, |
||
277 | Document_Id = _DocInfo.DOCUMENT_ID, |
||
278 | File_Original = _DocInfo.ORIGINAL_FILE, |
||
279 | 0585d5cc | taeseongkim | |
280 | cdb2c0a2 | taeseongkim | Document_NO = _DocItem?.DOCUMENT_NO, |
281 | File_Result = _DocItem?.RESULT_FILE, |
||
282 | Group_No = _DocItem?.GROUP_NO, |
||
283 | ProjectNo = _DocItem?.PROJECT_NO, |
||
284 | Revision = _DocItem?.REVISION, |
||
285 | }; |
||
286 | 0585d5cc | taeseongkim | |
287 | cdb2c0a2 | taeseongkim | var instanceMain = this.ParentOfType<MainWindow>(); |
288 | string firstpage = "1"; |
||
289 | string lastpage = _DocInfo.PAGE_COUNT.ToString(); |
||
290 | instanceMain.dzTopMenu.tlcurrentPage.Text = firstpage; |
||
291 | instanceMain.dzTopMenu.tlcurrentPage_readonly.Text = lastpage; |
||
292 | string apptitle = string.Format("MARKUS(ver.{2}) - {0}(Rev.{1})", _DocItem?.DOCUMENT_NO, _DocItem?.REVISION, System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); |
||
293 | d33ef543 | taeseongkim | |
294 | cdb2c0a2 | taeseongkim | instanceMain.Title = apptitle; |
295 | eeb0a39c | taeseongkim | |
296 | cdb2c0a2 | taeseongkim | #region 페이지 이미지를 로컬에 저장 |
297 | string tempStoragePath = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "MARKUS", System.IO.Path.GetRandomFileName()); |
||
298 | eeb0a39c | taeseongkim | |
299 | cdb2c0a2 | taeseongkim | //.Replace("jpg", "png")을 붙이는 이유는 MainUrl에 확장명이 jpg로 설정한 경우가 있기 때문 |
300 | eeb0a39c | taeseongkim | |
301 | cdb2c0a2 | taeseongkim | #endregion |
302 | eeb0a39c | taeseongkim | |
303 | 2007ecaa | taeseongkim | App.PageStorage = new PageManager.PageStorage(MainUrl.Replace("jpg", "png"), tempStoragePath, "png", _DocInfo.PAGE_COUNT); |
304 | //App.SamplePageStorage = new PageManager.PageStorage(MainUrl.Replace("png", "jpg"), tempStoragePath, "jpg", _DocInfo.PAGE_COUNT); |
||
305 | cdb2c0a2 | taeseongkim | await this.pageNavigator.SetPageNaviAsync(CurrentDoc.docInfo.DOCPAGE.ToList(), MainUrl); |
306 | } |
||
307 | 54a28343 | taeseongkim | } |
308 | d62c0439 | humkyung | |
309 | 3b81b385 | taeseongkim | private void pageNavigator_ThumbInitialized(object sender,EventArgs e) |
310 | 54a28343 | taeseongkim | { |
311 | BaseClient.GetMarkupInfoItemsAsync(_ViewInfo.ProjectNO, _DocInfo.ID); |
||
312 | d62c0439 | humkyung | |
313 | 54a28343 | taeseongkim | ViewerDataModel.Instance.MarkupControls_USER.Clear(); |
314 | d62c0439 | humkyung | //ViewerDataModel.Instance.SystemMain.dzMainMenu.TempLoad(); |
315 | |||
316 | 9d5b4bc2 | taeseongkim | /// 기존 임시파일 정리 |
317 | 6af42ff0 | taeseongkim | #region 단어 검색용 파일 다운로드 |
318 | 9d5b4bc2 | taeseongkim | |
319 | 2007ecaa | taeseongkim | DownloadOriginalFile(); |
320 | 6af42ff0 | taeseongkim | |
321 | #endregion |
||
322 | |||
323 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetVPRevisionHistoryAsync", CurrentDoc.ProjectNo + "," + CurrentDoc.Document_NO + "," + CurrentDoc.Document_Id, 1); |
324 | 6af42ff0 | taeseongkim | BaseClient.GetVPRevisionHistoryAsync(CurrentDoc.ProjectNo, CurrentDoc.Document_NO, CurrentDoc.Document_Id); |
325 | |||
326 | d62c0439 | humkyung | } |
327 | |||
328 | 54a28343 | taeseongkim | |
329 | d62c0439 | humkyung | /// <summary> |
330 | 35a96e24 | humkyung | /// get markupinfo and markupitem from database |
331 | a36a37c3 | humkyung | /// - 1. called when document is loaded |
332 | /// - 2. called when user do consolidation |
||
333 | 35a96e24 | humkyung | /// </summary> |
334 | /// <param name="sender"></param> |
||
335 | /// <param name="e"></param> |
||
336 | 787a4489 | KangIngu | private void BaseClient_GetMarkupInfoItemsCompleted(object sender, GetMarkupInfoItemsCompletedEventArgs e) |
337 | { |
||
338 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetMarkupInfoItemsCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result?.Count + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
339 | 0f065e57 | ljiyeon | |
340 | 787a4489 | KangIngu | ViewerDataModel.Instance.MarkupControls_USER.Clear(); |
341 | ViewerDataModel.Instance.MarkupControls.Clear(); |
||
342 | be72bfd6 | taeseongkim | |
343 | 274cde11 | taeseongkim | try |
344 | 787a4489 | KangIngu | { |
345 | |||
346 | 274cde11 | taeseongkim | if (e.Result != null) |
347 | d128ceb2 | humkyung | { |
348 | 274cde11 | taeseongkim | ViewerDataModel.Instance._markupInfoList.Clear(); |
349 | if (e.Result.Count > 0) ViewerDataModel.Instance.MyMarkupList.Clear(); |
||
350 | be72bfd6 | taeseongkim | |
351 | 274cde11 | taeseongkim | foreach (var info in e.Result) |
352 | d128ceb2 | humkyung | { |
353 | 274cde11 | taeseongkim | if (info.Depatment == null) info.Depatment = "Unknown"; |
354 | be72bfd6 | taeseongkim | |
355 | 274cde11 | taeseongkim | if (info.UserID == App.ViewInfo.UserID) |
356 | { |
||
357 | info.userDelete = true; |
||
358 | info.DisplayColor = "#FFFF0000"; |
||
359 | } |
||
360 | else |
||
361 | { |
||
362 | info.userDelete = false; |
||
363 | } |
||
364 | d128ceb2 | humkyung | |
365 | 274cde11 | taeseongkim | ViewerDataModel.Instance._markupInfoList.Add(info); |
366 | } |
||
367 | 8e5a4a6a | taeseongkim | |
368 | 274cde11 | taeseongkim | var userInfoList = ViewerDataModel.Instance._markupInfoList.GroupBy(f => f.UserID).Select(f => new MarkupUserInfo { UserId = f.Key, UserName = f.First().UserName }); |
369 | 8e5a4a6a | taeseongkim | |
370 | 274cde11 | taeseongkim | userInfoList.ToList().ForEach(x => ViewerDataModel.Instance._markupUserList.Add(x)); |
371 | |||
372 | e.Result.ToList().ForEach(d => |
||
373 | 787a4489 | KangIngu | { |
374 | 274cde11 | taeseongkim | if (d.MarkupList != null) |
375 | 787a4489 | KangIngu | { |
376 | 274cde11 | taeseongkim | d.MarkupList.ForEach(p => |
377 | 0585d5cc | taeseongkim | { |
378 | 274cde11 | taeseongkim | if (d.UserID == App.ViewInfo.UserID) |
379 | 0585d5cc | taeseongkim | { |
380 | 274cde11 | taeseongkim | d.userDelete = true; |
381 | d.DisplayColor = "#FFFF0000"; |
||
382 | |||
383 | MarkupItemEx markup = new MarkupItemEx |
||
384 | { |
||
385 | Data = p.Data, |
||
386 | Data_Type = p.Data_Type, |
||
387 | ID = p.ID, |
||
388 | IsUpdate = false, |
||
389 | MarkupInfoID = d.MarkupInfoID, |
||
390 | PageNumber = p.PageNumber, |
||
391 | Symbol_ID = p.Symbol_ID, |
||
392 | //Group_ID = p.Group_ID |
||
393 | }; |
||
394 | ViewerDataModel.Instance.MyMarkupList.Add(markup); |
||
395 | } |
||
396 | else |
||
397 | 0585d5cc | taeseongkim | { |
398 | 274cde11 | taeseongkim | MarkupItemEx markup = new MarkupItemEx |
399 | { |
||
400 | Data = p.Data, |
||
401 | Data_Type = p.Data_Type, |
||
402 | ID = p.ID, |
||
403 | IsUpdate = false, |
||
404 | MarkupInfoID = d.MarkupInfoID, |
||
405 | PageNumber = p.PageNumber, |
||
406 | Symbol_ID = p.Symbol_ID, |
||
407 | //Group_ID = p.Group_ID |
||
408 | }; |
||
409 | ViewerDataModel.Instance.MarkupList_Pre.Add(markup); |
||
410 | } |
||
411 | }); |
||
412 | } |
||
413 | }); |
||
414 | 787a4489 | KangIngu | |
415 | 274cde11 | taeseongkim | var currentUser = e.Result.Where(data => data.UserID == App.ViewInfo.UserID && data.AvoidConsolidate == 0).FirstOrDefault(); |
416 | a7372e37 | taeseongkim | |
417 | 274cde11 | taeseongkim | if (currentUser == null) |
418 | 27cf69cd | taeseongkim | { |
419 | 274cde11 | taeseongkim | /// create a new markupinfo to do comments |
420 | /// |
||
421 | if (App.ViewInfo.NewCommentPermission) |
||
422 | 27cf69cd | taeseongkim | { |
423 | 274cde11 | taeseongkim | var infoId = Commons.shortGuid(); |
424 | PreviewUserMarkupInfoItem = new MarkupInfoItem |
||
425 | { |
||
426 | CreateTime = DateTime.Now, |
||
427 | UpdateTime = DateTime.Now, |
||
428 | Depatment = userData.DEPARTMENT, |
||
429 | DisplayColor = "#FFFF0000", |
||
430 | UserID = userData.ID, |
||
431 | UserName = userData.NAME, |
||
432 | PageCount = 1, |
||
433 | Description = "", |
||
434 | MarkupInfoID = infoId, |
||
435 | MarkupList = null, |
||
436 | MarkupVersionID = Commons.shortGuid(), |
||
437 | Consolidate = 0, |
||
438 | PartConsolidate = 0, |
||
439 | userDelete = true, |
||
440 | AvoidConsolidate = 0, |
||
441 | IsPreviewUser = false |
||
442 | }; |
||
443 | |||
444 | App.Custom_ViewInfoId = infoId; |
||
445 | |||
446 | ViewerDataModel.Instance._markupInfoList.Insert(0, PreviewUserMarkupInfoItem); |
||
447 | } |
||
448 | } |
||
449 | else |
||
450 | { |
||
451 | App.Custom_ViewInfoId = currentUser.MarkupInfoID; |
||
452 | 27cf69cd | taeseongkim | } |
453 | 787a4489 | KangIngu | |
454 | 274cde11 | taeseongkim | ViewerDataModel.Instance.PageNumber = 1; |
455 | 3ffd4b2d | humkyung | |
456 | 274cde11 | taeseongkim | /// Consolidation 된 데이터가 최상단에 올 수 있도록 변경 |
457 | //var markupItem = ViewerDataModel.Instance._markupInfoList.OrderByDescending(p => p.Consolidate == Convert.ToInt32(true)).ToList(); |
||
458 | be72bfd6 | taeseongkim | |
459 | 274cde11 | taeseongkim | gridViewMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoList; |
460 | 53deabaf | taeseongkim | |
461 | 274cde11 | taeseongkim | SetCommentPages(null); |
462 | 992a98b4 | KangIngu | |
463 | 274cde11 | taeseongkim | // GRIDVIEW에서 팀별 GROUPING |
464 | // 효성은 안함 |
||
465 | 1f2348b2 | taeseongkim | #if (Hyosung) |
466 | #else |
||
467 | 274cde11 | taeseongkim | /// create a group descriptor |
468 | gridViewMarkup.GroupDescriptors.Clear(); |
||
469 | GroupDescriptor descriptor = new GroupDescriptor(); |
||
470 | descriptor.Member = "Depatment"; |
||
471 | descriptor.DisplayContent = "DEPT"; |
||
472 | //descriptor.SortDirection = ListSortDirection.Ascending; |
||
473 | gridViewMarkup.GroupDescriptors.Add(descriptor); |
||
474 | 47b95004 | taeseongkim | #endif |
475 | be72bfd6 | taeseongkim | |
476 | 274cde11 | taeseongkim | GridViewMarkup_Sorting(gridViewMarkup, new GridViewSortingEventArgs(gridViewMarkup.Columns[0], SortingState.None, SortingState.None)); |
477 | be72bfd6 | taeseongkim | |
478 | 274cde11 | taeseongkim | var SelectedItem = ViewerDataModel.Instance._markupInfoList.Where(info => info.UserID == App.ViewInfo.UserID).OrderByDescending(order => order.UpdateTime).FirstOrDefault(); |
479 | 53deabaf | taeseongkim | |
480 | 274cde11 | taeseongkim | if (PreviewUserMarkupInfoItem != null) |
481 | { |
||
482 | this.gridViewMarkup.SelectedItem = PreviewUserMarkupInfoItem; |
||
483 | } |
||
484 | else if (SelectedItem != null) |
||
485 | { |
||
486 | this.gridViewMarkup.SelectedItem = SelectedItem; |
||
487 | } |
||
488 | else if (ViewerDataModel.Instance._markupInfoList.Count() > 0) |
||
489 | { |
||
490 | this.gridViewMarkup.SelectedItem = ViewerDataModel.Instance._markupInfoList.First(); |
||
491 | } |
||
492 | 53deabaf | taeseongkim | } |
493 | 787a4489 | KangIngu | } |
494 | 274cde11 | taeseongkim | catch (Exception ex) |
495 | { |
||
496 | App.FileLogger.Fatal(ex); |
||
497 | } |
||
498 | 787a4489 | KangIngu | } |
499 | |||
500 | be72bfd6 | taeseongkim | private void GridViewMarkup_Sorting(object sender, GridViewSortingEventArgs e) |
501 | { |
||
502 | IEnumerable<IKCOM.MarkupInfoItem> markuplist = e.DataControl.ItemsSource as IEnumerable<IKCOM.MarkupInfoItem>; |
||
503 | |||
504 | if(markuplist == null) |
||
505 | { |
||
506 | e.Cancel = true; |
||
507 | return; |
||
508 | } |
||
509 | |||
510 | if(e.NewSortingState == SortingState.None) |
||
511 | { |
||
512 | markuplist = markuplist.OrderByDescending(x => SortIndex(x)) |
||
513 | .ThenBy(x => x.Depatment) |
||
514 | .ThenBy(x => x.UserID); |
||
515 | |||
516 | e.DataControl.ItemsSource = markuplist.ToList(); |
||
517 | } |
||
518 | } |
||
519 | |||
520 | |||
521 | // 마크업 리스트 정렬 |
||
522 | private int SortIndex(IKCOM.MarkupInfoItem markupInfoItem) |
||
523 | { |
||
524 | int result = 0; |
||
525 | |||
526 | // Consolidate은 최상단 |
||
527 | if (markupInfoItem.Consolidate == 1) |
||
528 | { |
||
529 | result += 2; |
||
530 | } |
||
531 | |||
532 | /// Consolidate 다음으로 우선순위 |
||
533 | if (markupInfoItem.UserID == App.ViewInfo.UserID) |
||
534 | { |
||
535 | result += 1; |
||
536 | } |
||
537 | |||
538 | return result; |
||
539 | } |
||
540 | |||
541 | |||
542 | private void GridViewMarkup_Sorted(object sender, GridViewSortedEventArgs e) |
||
543 | { |
||
544 | |||
545 | } |
||
546 | |||
547 | ac4f1e13 | taeseongkim | private async void gridViewRevMarkup_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangeEventArgs e) |
548 | 787a4489 | KangIngu | { |
549 | List<MarkupInfoItem> gridSelectionItem = gridViewRevMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); //선택 된 마크업 |
||
550 | //if (ViewerDataModel.Instance.PageBalanceNumber == 0) |
||
551 | //{ |
||
552 | // ViewerDataModel.Instance.PageBalanceNumber = 1; |
||
553 | //} |
||
554 | |||
555 | if (ViewerDataModel.Instance.PageNumber == 0) |
||
556 | { |
||
557 | ViewerDataModel.Instance.PageNumber = 1; |
||
558 | } |
||
559 | if (e.AddedItems.Count() > 0) |
||
560 | { |
||
561 | foreach (var item in gridSelectionItem) |
||
562 | { |
||
563 | //item.MarkupList.Where(pageItem => pageItem.PageNumber == ViewerDataModel.Instance.PageBalanceNumber).ToList().ForEach(delegate (MarkupItem markupitem) |
||
564 | //{ |
||
565 | // layerControl.markupParse(markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync, item.DisplayColor, "", item.MarkupInfoID); |
||
566 | //}); |
||
567 | ac4f1e13 | taeseongkim | |
568 | var pageItems = item.MarkupList.Where(pageItem => pageItem.PageNumber == ViewerDataModel.Instance.PageNumber).ToList(); |
||
569 | |||
570 | foreach (var markupitem in pageItems) |
||
571 | 787a4489 | KangIngu | { |
572 | 4f017ed3 | taeseongkim | await MarkupParser.ParseExAsync(ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync, ViewerDataModel.Instance.PageAngle, item.DisplayColor, "", item.MarkupInfoID); |
573 | ac4f1e13 | taeseongkim | } |
574 | 787a4489 | KangIngu | } |
575 | } |
||
576 | else if (e.RemovedItems.Count > 0) |
||
577 | { |
||
578 | var _infoItem = e.RemovedItems.Cast<MarkupInfoItem>().ToList(); |
||
579 | |||
580 | (from A in _infoItem |
||
581 | from B in Common.ViewerDataModel.Instance.MarkupControls_Sync |
||
582 | where A.MarkupInfoID == B.MarkupInfoID |
||
583 | select B).ToList().ForEach(data => |
||
584 | { |
||
585 | Common.ViewerDataModel.Instance.MarkupControls_Sync.Remove(data); |
||
586 | }); |
||
587 | } |
||
588 | } |
||
589 | e7dd7ae8 | humkyung | |
590 | /// <summary> |
||
591 | /// 선택한 항목은 Visibility = Visible, 해제한 항목은 Visibility = Hidden 처리한다. |
||
592 | /// </summary> |
||
593 | /// <param name="sender"></param> |
||
594 | /// <param name="e"></param> |
||
595 | ac4f1e13 | taeseongkim | private async void gridViewMarkup_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangeEventArgs e) |
596 | 787a4489 | KangIngu | { |
597 | 2089959a | taeseongkim | SelectionSet.Instance.UnSelect(Common.ViewerDataModel.Instance.SystemMain.dzMainMenu); |
598 | |||
599 | 787a4489 | KangIngu | var dataSet = gridViewMarkup.SelectedItems.Cast<MarkupInfoItem>().Where(data => data.UserID == _ViewInfo.UserID); |
600 | var dataSet_User = gridViewMarkup.Items.Cast<MarkupInfoItem>().Where(data => data.UserID == _ViewInfo.UserID); |
||
601 | var resultA = (from item_Select in dataSet |
||
602 | from item_Non in dataSet_User |
||
603 | where item_Select == item_Non |
||
604 | select item_Non).ToList(); |
||
605 | |||
606 | if (resultA.Count() >= 2) |
||
607 | { |
||
608 | eeb0a39c | taeseongkim | // 동일한 사용자 데이터가 두개 이상 선택됩니다. Consolidation을 선택할까요? |
609 | 787a4489 | KangIngu | RadWindow.Confirm(new DialogParameters |
610 | { |
||
611 | b9b01f8e | ljiyeon | Owner = Application.Current.MainWindow, |
612 | eeb0a39c | taeseongkim | Header = "Info", |
613 | Content = "Selected more than two identical user data. Do you want to select consolidation?", |
||
614 | 787a4489 | KangIngu | Closed = new EventHandler<WindowClosedEventArgs>((sen, ea) => |
615 | { |
||
616 | if (e.AddedItems.Count() == 1) |
||
617 | { |
||
618 | MarkupInfoItem instanceItem = e.AddedItems.FirstOrDefault() as MarkupInfoItem; |
||
619 | 8ab0d0b1 | 송근호 | gridViewMarkup.SelectedItem = null; |
620 | 787a4489 | KangIngu | |
621 | 8ab0d0b1 | 송근호 | |
622 | 787a4489 | KangIngu | if (ea.DialogResult.Value) |
623 | { |
||
624 | 8ab0d0b1 | 송근호 | if (instanceItem.Consolidate == 1 || instanceItem.PartConsolidate == 1) |
625 | { |
||
626 | gridViewMarkup.SelectedItem = instanceItem; |
||
627 | } |
||
628 | else |
||
629 | { |
||
630 | //1. Consolidations이 있다면 하나 선택 |
||
631 | var Consolidations = resultA.Where(item => (item.Consolidate == 1 || item.PartConsolidate == 1)); |
||
632 | |||
633 | if (Consolidations.Count() > 0) |
||
634 | { |
||
635 | gridViewMarkup.SelectedItem = Consolidations.First(); |
||
636 | } |
||
637 | } |
||
638 | |||
639 | 787a4489 | KangIngu | } |
640 | 8ab0d0b1 | 송근호 | else { |
641 | //1. Consolidations 아닌게 있다면 Change |
||
642 | var notConsolidations = resultA.Where(item => !(item.Consolidate == 1 || item.PartConsolidate == 1)); |
||
643 | |||
644 | if(notConsolidations.Count() > 0) { |
||
645 | gridViewMarkup.SelectedItem = notConsolidations.First(); |
||
646 | } |
||
647 | else {//1. Consolidations 아닌게 없다면 그대로 |
||
648 | gridViewMarkup.SelectedItem = instanceItem; |
||
649 | } |
||
650 | |||
651 | 787a4489 | KangIngu | } |
652 | } |
||
653 | }), |
||
654 | Theme = new Windows8Theme(), |
||
655 | ModalBackground = new System.Windows.Media.SolidColorBrush { Color = System.Windows.Media.Colors.Black, Opacity = 0.6 }, |
||
656 | }); |
||
657 | } |
||
658 | else //파라미터로 넘어온 사용자가 걸리지 않은 경우 |
||
659 | { |
||
660 | 6b5d33c6 | djkim | List<MarkupInfoItem> gridItem = gridViewMarkup.Items.Cast<MarkupInfoItem>().ToList(); //전체 마크업 |
661 | List<MarkupInfoItem> gridSelectionItem = gridViewMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); //선택 된 마크업 |
||
662 | List<MarkupInfoItem> gridNonSelectionItem = gridItem.Except(gridSelectionItem).ToList(); //선택 되지 않은 마크업 |
||
663 | 47b95004 | taeseongkim | #region 코멘트 보기 |
664 | d18ea2bd | taeseongkim | if (e.AddedItems.Count() > 0 && this.pageNavigator.CurrentPage != null) |
665 | 6b5d33c6 | djkim | { |
666 | foreach (var item in gridSelectionItem) |
||
667 | { |
||
668 | 3ffd4b2d | humkyung | if (item.UserID == App.ViewInfo.UserID) |
669 | 6b5d33c6 | djkim | { |
670 | 101da246 | humkyung | var controls = Common.ViewerDataModel.Instance.MarkupControls_USER.Where(d => d.MarkupInfoID == item.MarkupInfoID).ToList(); |
671 | if (controls.Count == 0) |
||
672 | 6b5d33c6 | djkim | { |
673 | 129ca191 | humkyung | var instance = ViewerDataModel.Instance.MyMarkupList.Where(d => d.PageNumber == this.pageNavigator.CurrentPage.PageNumber && d.MarkupInfoID == item.MarkupInfoID).ToList(); |
674 | ac4f1e13 | taeseongkim | |
675 | 6b5d33c6 | djkim | foreach (var markup in instance) |
676 | { |
||
677 | 4f017ed3 | taeseongkim | await MarkupParser.ParseExAsync(ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls_USER, ViewerDataModel.Instance.PageAngle, item.DisplayColor, "", |
678 | 661b7416 | humkyung | item.MarkupInfoID, markup.ID); |
679 | 6b5d33c6 | djkim | } |
680 | } |
||
681 | 101da246 | humkyung | |
682 | controls = Common.ViewerDataModel.Instance.MarkupControls_USER.Where(d => d.MarkupInfoID == item.MarkupInfoID).ToList(); |
||
683 | foreach (var control in controls) |
||
684 | 6b5d33c6 | djkim | { |
685 | d62c0439 | humkyung | Logger.sendCheckLog(String.Format("=={0}", control), 1); |
686 | 101da246 | humkyung | control.Visibility = Visibility.Visible; |
687 | 6b5d33c6 | djkim | } |
688 | } |
||
689 | 3ffd4b2d | humkyung | else |
690 | 6b5d33c6 | djkim | { |
691 | 101da246 | humkyung | var controls = Common.ViewerDataModel.Instance.MarkupControls.Where(d => d.MarkupInfoID == item.MarkupInfoID).ToList(); |
692 | if (controls.Count == 0) |
||
693 | { |
||
694 | 129ca191 | humkyung | var instance = ViewerDataModel.Instance.MarkupList_Pre.Where(d => d.PageNumber == this.pageNavigator.CurrentPage.PageNumber && d.MarkupInfoID == item.MarkupInfoID).ToList(); |
695 | 101da246 | humkyung | foreach (var markup in instance) |
696 | { |
||
697 | 4f017ed3 | taeseongkim | await MarkupParser.ParseExAsync(ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls, ViewerDataModel.Instance.PageAngle, item.DisplayColor, "", |
698 | 101da246 | humkyung | item.MarkupInfoID, markup.ID); |
699 | } |
||
700 | } |
||
701 | |||
702 | controls = Common.ViewerDataModel.Instance.MarkupControls.Where(d => d.MarkupInfoID == item.MarkupInfoID).ToList(); |
||
703 | foreach (var control in controls) |
||
704 | 6b5d33c6 | djkim | { |
705 | e7dd7ae8 | humkyung | control.Visibility = Visibility.Visible; |
706 | 6b5d33c6 | djkim | } |
707 | } |
||
708 | } |
||
709 | } |
||
710 | 47b95004 | taeseongkim | #endregion |
711 | #region 코멘트 숨기기 |
||
712 | 6b5d33c6 | djkim | else if (e.RemovedItems.Count > 0) |
713 | { |
||
714 | var _infoItem = e.RemovedItems.Cast<MarkupInfoItem>().ToList(); |
||
715 | |||
716 | (from A in _infoItem |
||
717 | from B in Common.ViewerDataModel.Instance.MarkupControls |
||
718 | where A.MarkupInfoID == B.MarkupInfoID |
||
719 | select B).ToList().ForEach(data => |
||
720 | { |
||
721 | b5ac6d6e | ljiyeon | data.Visibility = Visibility.Hidden; |
722 | 6b5d33c6 | djkim | }); |
723 | |||
724 | b5ac6d6e | ljiyeon | |
725 | 6b5d33c6 | djkim | var myComment = _infoItem.Where(d => d.UserID == App.ViewInfo.UserID).FirstOrDefault(); |
726 | if (myComment != null) |
||
727 | { |
||
728 | Common.ViewerDataModel.Instance.MarkupControls_USER.ToList().ForEach(delegate (MarkupToPDF.Common.CommentUserInfo markupitem) |
||
729 | { |
||
730 | e7dd7ae8 | humkyung | markupitem.Visibility = Visibility.Hidden; |
731 | 6b5d33c6 | djkim | }); |
732 | } |
||
733 | } |
||
734 | 47b95004 | taeseongkim | #endregion |
735 | 787a4489 | KangIngu | } |
736 | } |
||
737 | |||
738 | private void BaseClient_GetDocumentItemInfoCompleted(object sender, GetDocumentItemInfoCompletedEventArgs e) |
||
739 | { |
||
740 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetDocumentItemInfoCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result?.DOCUMENT_ID + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
741 | 0f065e57 | ljiyeon | |
742 | 787a4489 | KangIngu | if (e.Result != null) |
743 | { |
||
744 | _DocItem = e.Result; |
||
745 | |||
746 | if (e.Result.DOCUMENT_NO == "" && e.Result.DOCUMENT_NAME == "" && e.Result.GROUP_NO == "0") |
||
747 | { |
||
748 | //장원 |
||
749 | _ViewInfo.UserID = _ViewInfo.UserID.Replace(@"DAELIM\", ""); |
||
750 | } |
||
751 | 664ea2e1 | taeseongkim | ////Logger.sendReqLog("GetDocInfoAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID, 1); |
752 | 787a4489 | KangIngu | BaseClient.GetDocInfoAsync(new KCOM_BasicParam { projectNo = _ViewInfo.ProjectNO, documentID = _ViewInfo.DocumentItemID }); |
753 | } |
||
754 | else |
||
755 | { |
||
756 | 0585d5cc | taeseongkim | DialogMessage_Alert("Document Information Not Found.", "Error"); |
757 | |||
758 | 787a4489 | KangIngu | BaseClient.GetCheckSystemAdminCompleted += (sen, ea) => |
759 | { |
||
760 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetCheckSystemAdminCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1); |
761 | 0f065e57 | ljiyeon | |
762 | 787a4489 | KangIngu | if (ea.Error == null) |
763 | { |
||
764 | if (ea.Result) |
||
765 | { |
||
766 | this._ViewInfo.isAdmin = true; |
||
767 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetDocInfoAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID, 1); |
768 | 787a4489 | KangIngu | BaseClient.GetDocInfoAsync(new KCOM_BasicParam { projectNo = _ViewInfo.ProjectNO, documentID = _ViewInfo.DocumentItemID }); |
769 | } |
||
770 | else |
||
771 | { |
||
772 | //System.Windows.Forms.MessageBox.Show("해당 프로젝트에 가입되지 않은 유저입니다. 관리자에게 등록신청을 해주세요", "안내"); |
||
773 | 503cb09e | taeseongkim | DialogMessage_Alert("You are not belong to this project. Please ask admin for an authority.", "Info"); |
774 | 787a4489 | KangIngu | //this.ParentOfType<MainPage>().DialogMessage_Alert("해당 프로젝트에 가입되지 않은 유저입니다. 관리자에게 등록신청을 해주세요", "안내"); |
775 | } |
||
776 | |||
777 | } |
||
778 | else |
||
779 | { |
||
780 | //System.Windows.Browser.HtmlPage.Window.Invoke("close"); |
||
781 | } |
||
782 | }; |
||
783 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetCheckSystemAdminAsync", _ViewInfo.UserID, 1); |
784 | 787a4489 | KangIngu | BaseClient.GetCheckSystemAdminAsync(this._ViewInfo.UserID); |
785 | } |
||
786 | } |
||
787 | |||
788 | private void BaseClient_GetSystemDataCompleted(object sender, GetSystemDataCompletedEventArgs e) |
||
789 | { |
||
790 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetSystemDataCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
791 | 0f065e57 | ljiyeon | |
792 | 787a4489 | KangIngu | if (e.Error == null && e.Result != null) |
793 | { |
||
794 | App.SystemInfo = e.Result; |
||
795 | |||
796 | //App.urlPort_DB = App.SystemInfo.HostPort; |
||
797 | //App.urlHost_DB = App.SystemInfo.HostName; |
||
798 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetConversionStateAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID, 1); |
799 | 787a4489 | KangIngu | BaseClient.GetConversionStateAsync(new KCOM_BasicParam { projectNo = _ViewInfo.ProjectNO, documentID = _ViewInfo.DocumentItemID }); |
800 | |||
801 | //if (App.urlHost.Contains("localhost")) |
||
802 | //{ |
||
803 | // App.urlHost = App.urlHost_DB; |
||
804 | //} |
||
805 | } |
||
806 | } |
||
807 | |||
808 | private void BaseClient_GetConversionStateCompleted(object sender, GetConversionStateCompletedEventArgs e) |
||
809 | { |
||
810 | 84c48033 | djkim | |
811 | 664ea2e1 | taeseongkim | //Logger.sendResLog("GetConversionStateCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
812 | 84c48033 | djkim | string failedmsg = CommonLib.Common.GetAlertMessageString("GetConversionStateFailed", "MSG", "Too Many V/P Files are uploading instantaneously, This V/P file can not be open now. Please feel free to re-open wait a moment again!\n\n현재 일시적으로 많은 양의 V/P가 등록되고 있어 이 문서를 열람할 수 없습니다.\n잠시만 기다려 주신 후 다시 열람하여 주시기 바랍니다"); |
813 | 53880c83 | ljiyeon | if (e.Error == null && e.Result == true) |
814 | 787a4489 | KangIngu | { |
815 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetDocumentItemInfoAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID + "," + _ViewInfo.UserID, 1); |
816 | 0f065e57 | ljiyeon | |
817 | 787a4489 | KangIngu | BaseClient.GetDocumentItemInfoAsync(new KCOM_BasicParam { projectNo = _ViewInfo.ProjectNO, documentID = _ViewInfo.DocumentItemID, userID = _ViewInfo.UserID }); |
818 | |||
819 | 992a98b4 | KangIngu | if (App.ViewInfo != null && App.ViewInfo.ProjectNO != "") |
820 | 787a4489 | KangIngu | { |
821 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetMember", _ViewInfo.ProjectNO + "," + _ViewInfo.UserID, 1); |
822 | 6c781c0c | djkim | userData = BaseClient.GetMember(App.ViewInfo.ProjectNO, App.ViewInfo.UserID); |
823 | if (userData != null) |
||
824 | 787a4489 | KangIngu | { |
825 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetDeptDataAsync", userData.DEPARTMENT, 1); |
826 | 6c781c0c | djkim | BaseClient.GetDeptDataAsync(userData.DEPARTMENT); |
827 | 787a4489 | KangIngu | } |
828 | 6c781c0c | djkim | else |
829 | { |
||
830 | userData = new MEMBER(); |
||
831 | userData.DEPARTMENT = "ALL"; |
||
832 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetDeptDataAsync", userData.DEPARTMENT, 1); |
833 | 6c781c0c | djkim | BaseClient.GetDeptDataAsync(userData.DEPARTMENT); |
834 | 29010418 | ljiyeon | } |
835 | 787a4489 | KangIngu | } |
836 | } |
||
837 | else |
||
838 | { |
||
839 | 84c48033 | djkim | |
840 | DialogMessage_Alert(failedmsg, "Warning"); |
||
841 | 787a4489 | KangIngu | } |
842 | } |
||
843 | 29010418 | ljiyeon | |
844 | 787a4489 | KangIngu | public void SetView(ViewInfo info) |
845 | 5a6493ad | humkyung | { |
846 | 787a4489 | KangIngu | this._ViewInfo = info; |
847 | 5a6493ad | humkyung | try |
848 | 5ded1e5a | djkim | { |
849 | 5a6493ad | humkyung | /// 대림의 경우 EnsembleID를 가지고 DocumentItemID를 구함 |
850 | /// 다른 Site를 대비하여 에러 처리함 |
||
851 | string docid = BaseClient.GetDocItemID(info.EnsembleID); |
||
852 | if (!string.IsNullOrEmpty(docid)) |
||
853 | { |
||
854 | this._ViewInfo.DocumentItemID = docid; |
||
855 | } |
||
856 | 5ded1e5a | djkim | } |
857 | 5a6493ad | humkyung | catch(Exception ex) |
858 | { |
||
859 | 664ea2e1 | taeseongkim | |
860 | //App.FileLogger.Fatal(ex); |
||
861 | 5a6493ad | humkyung | } |
862 | |||
863 | 664ea2e1 | taeseongkim | //Logger.sendReqLog("GetSystemDataAsync", "", 1); |
864 | |||
865 | 29010418 | ljiyeon | BaseClient.GetSystemDataAsync(); |
866 | 787a4489 | KangIngu | } |
867 | |||
868 | 992a98b4 | KangIngu | public void HubSet() |
869 | { |
||
870 | // 허브 연결 구성 |
||
871 | 84c48033 | djkim | var hubConnection = new HubConnection(CommonLib.Common.GetConfigString("HubAddress", "URL", "", App.isExternal)); |
872 | 992a98b4 | KangIngu | IHubProxy MarkusLicenseProxy = hubConnection.CreateHubProxy("MarkusLicenseHub"); |
873 | |||
874 | |||
875 | // 허브 연결 |
||
876 | hubConnection.Start().ContinueWith(task => |
||
877 | { |
||
878 | if (task.IsFaulted) |
||
879 | { |
||
880 | Console.WriteLine("There was an error opening the connection:{0}", |
||
881 | task.Exception.GetBaseException()); |
||
882 | 53f96e00 | 송근호 | //throw task.Exception.GetBaseException(); |
883 | 992a98b4 | KangIngu | } |
884 | else |
||
885 | { |
||
886 | Console.WriteLine("Connected :: " + task.Id); |
||
887 | } |
||
888 | |||
889 | }).Wait(); |
||
890 | |||
891 | |||
892 | // [ 프로그램 시작 ] |
||
893 | // 클라이언트에서 서버를 호출 ( 접속 시 ) : 라이센스 체크 |
||
894 | //( "method name", arg1, arg2 ) |
||
895 | //MarkusLicenseProxy.Invoke<string>("ConnectionMarkus", "H2009115", "고동균").ContinueWith(task => |
||
896 | //{ |
||
897 | // if (task.IsFaulted) |
||
898 | // { |
||
899 | // Console.WriteLine("ConnectionMarkus :: There was an error calling send: {0}", task.Exception.GetBaseException()); |
||
900 | // } |
||
901 | // else |
||
902 | // { |
||
903 | // Console.WriteLine(task.Result); |
||
904 | // } |
||
905 | //}); |
||
906 | 0af41bf0 | djkim | MarkusLicenseProxy.Invoke<string>("ConnectionMarkus", App.ViewInfo.UserID,App.ViewInfo.ProjectNO).ContinueWith(task => |
907 | 992a98b4 | KangIngu | { |
908 | if (task.IsFaulted) |
||
909 | { |
||
910 | Console.WriteLine("ConnectionMarkus :: There was an error calling send: {0}", task.Exception.GetBaseException()); |
||
911 | 53f96e00 | 송근호 | //throw task.Exception.GetBaseException(); |
912 | 992a98b4 | KangIngu | } |
913 | else |
||
914 | { |
||
915 | 29010418 | ljiyeon | switch (task.Result) |
916 | 992a98b4 | KangIngu | { |
917 | 53393bae | KangIngu | case "2": |
918 | { |
||
919 | 0af41bf0 | djkim | var result = MessageBox.Show("권한이 없습니다."); |
920 | if (result == MessageBoxResult.OK) |
||
921 | System.Diagnostics.Process.GetCurrentProcess().Kill(); |
||
922 | 53393bae | KangIngu | } |
923 | break; |
||
924 | case "404": |
||
925 | { |
||
926 | 0af41bf0 | djkim | var result = MessageBox.Show("등록된 사용자가 아닙니다."); |
927 | if(result == MessageBoxResult.OK) |
||
928 | System.Diagnostics.Process.GetCurrentProcess().Kill(); |
||
929 | 53393bae | KangIngu | } |
930 | break; |
||
931 | 992a98b4 | KangIngu | } |
932 | } |
||
933 | 53f96e00 | 송근호 | }); |
934 | 992a98b4 | KangIngu | |
935 | // 서버에서 클라이언트 호출 ( 프로그램 구동여부 ) : 라이센스 체크 후 응답 ( 반환값 : true, false ) |
||
936 | //MarkusLicenseProxy.On<bool>("IsConnection", status => |
||
937 | //{ |
||
938 | |||
939 | // if (status) |
||
940 | // { |
||
941 | // // 프로그램 시작 |
||
942 | // Console.WriteLine("connection status : " + status); |
||
943 | // } |
||
944 | // else |
||
945 | // { |
||
946 | // // 프로그램 종료 ( signalr 접속 끊기 ) |
||
947 | // hubConnection.Stop(); |
||
948 | // } |
||
949 | //}); |
||
950 | |||
951 | // 공지 메세지 ( 서버에서 클라이언트 호출 ) |
||
952 | MarkusLicenseProxy.On<string>("MarkusNotification", msg => |
||
953 | Console.WriteLine("Noficiation Message : " + msg) |
||
954 | ); |
||
955 | |||
956 | |||
957 | // 서버 메서드 호출 |
||
958 | //MarkusLicenseProxy.Invoke<string>("DoSomething", "I'm doing something!!!").Wait(); |
||
959 | |||
960 | //Console.ReadKey(); |
||
961 | |||
962 | //hubConnection.Stop(); |
||
963 | } |
||
964 | 787a4489 | KangIngu | |
965 | ac4f1e13 | taeseongkim | public async void MarkupUserListDisplay() |
966 | 1f1c566e | djkim | { |
967 | List<MarkupInfoItem> gridItem = gridViewMarkup.Items.Cast<MarkupInfoItem>().ToList(); //전체 마크업 |
||
968 | List<MarkupInfoItem> gridSelectionItem = gridViewMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); //선택 된 마크업 |
||
969 | List<MarkupInfoItem> gridNonSelectionItem = gridItem.Except(gridSelectionItem).ToList(); //선택 되지 않은 마크업 |
||
970 | 29010418 | ljiyeon | //MarkupToPDF.Controls.Parsing.LayerControl layerControl = new MarkupToPDF.Controls.Parsing.LayerControl(); |
971 | 1f1c566e | djkim | Common.ViewerDataModel.Instance.MarkupControls_USER.Clear(); //전체 제거 |
972 | 29010418 | ljiyeon | Common.ViewerDataModel.Instance.MarkupControls.Clear(); //전체 제거 |
973 | f714bef8 | djkim | //foreach (var item in gridSelectionItem) |
974 | //{ |
||
975 | // if (item.UserID == App.ViewInfo.UserID) |
||
976 | // { |
||
977 | d62c0439 | humkyung | // ViewerDataModel.Instance.MyMarkupList.Where(data => data.PageNumber == pageNavigator.CurrentPage.PageNumber && data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(delegate (MarkupItemEx markupitem) |
978 | f714bef8 | djkim | // { |
979 | // layerControl.markupParseEx(markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_USER, item.DisplayColor, "", item.MarkupInfoID, markupitem.ID); |
||
980 | // }); |
||
981 | // } |
||
982 | // else |
||
983 | // { |
||
984 | // ViewerDataModel.Instance.MarkupList_Pre.Where(data => data.PageNumber == pageNavigator.CurrentPage.PageNumber && data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(delegate (MarkupItemEx markupitem) |
||
985 | // { |
||
986 | // layerControl.markupParse(markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls, item.DisplayColor, "", item.MarkupInfoID); |
||
987 | // }); |
||
988 | // } |
||
989 | //} |
||
990 | 29010418 | ljiyeon | (from A in gridSelectionItem |
991 | from B in Common.ViewerDataModel.Instance.MarkupControls_USER |
||
992 | where A.MarkupInfoID == B.MarkupInfoID |
||
993 | select B).ToList().ForEach(data => |
||
994 | { |
||
995 | Common.ViewerDataModel.Instance.MarkupControls_USER.Remove(data); |
||
996 | }); |
||
997 | 1f1c566e | djkim | (from A in gridSelectionItem |
998 | from B in Common.ViewerDataModel.Instance.MarkupControls |
||
999 | where A.MarkupInfoID == B.MarkupInfoID |
||
1000 | select B).ToList().ForEach(data => |
||
1001 | { |
||
1002 | Common.ViewerDataModel.Instance.MarkupControls.Remove(data); |
||
1003 | }); |
||
1004 | |||
1005 | foreach (var item in gridSelectionItem) |
||
1006 | { |
||
1007 | ac4f1e13 | taeseongkim | |
1008 | 1f1c566e | djkim | if (item.UserID == App.ViewInfo.UserID) |
1009 | { |
||
1010 | ac4f1e13 | taeseongkim | var markupItems = ViewerDataModel.Instance.MyMarkupList.Where(data => data.PageNumber == pageNavigator.CurrentPage.PageNumber && data.MarkupInfoID == item.MarkupInfoID).ToList(); |
1011 | |||
1012 | foreach (var markupitem in markupItems) |
||
1013 | 1f1c566e | djkim | { |
1014 | 4f017ed3 | taeseongkim | await MarkupParser.ParseExAsync(ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_USER, ViewerDataModel.Instance.PageAngle, item.DisplayColor, "", |
1015 | ac4f1e13 | taeseongkim | item.MarkupInfoID, markupitem.ID); |
1016 | } |
||
1017 | 1f1c566e | djkim | } |
1018 | else |
||
1019 | { |
||
1020 | ac4f1e13 | taeseongkim | var markupItems = ViewerDataModel.Instance.MarkupList_Pre.Where(data => data.PageNumber == pageNavigator.CurrentPage.PageNumber && data.MarkupInfoID == item.MarkupInfoID).ToList(); |
1021 | |||
1022 | foreach (var markupitem in markupItems) |
||
1023 | 1f1c566e | djkim | { |
1024 | 4f017ed3 | taeseongkim | await MarkupParser.ParseExAsync(ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls, ViewerDataModel.Instance.PageAngle, item.DisplayColor, "", item.MarkupInfoID); |
1025 | ac4f1e13 | taeseongkim | } |
1026 | 1f1c566e | djkim | } |
1027 | } |
||
1028 | } |
||
1029 | 787a4489 | KangIngu | } |
1030 | } |