New SQLite version
[pithos-ms-client] / trunk / Pithos.Client.WPF / FileProperties / FilePropertiesViewModel.cs
1 #region
2 /* -----------------------------------------------------------------------
3  * <copyright file="FilePropertiesViewModel.cs" company="GRNet">
4  * 
5  * Copyright 2011-2012 GRNET S.A. All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or
8  * without modification, are permitted provided that the following
9  * conditions are met:
10  *
11  *   1. Redistributions of source code must retain the above
12  *      copyright notice, this list of conditions and the following
13  *      disclaimer.
14  *
15  *   2. Redistributions in binary form must reproduce the above
16  *      copyright notice, this list of conditions and the following
17  *      disclaimer in the documentation and/or other materials
18  *      provided with the distribution.
19  *
20  *
21  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
22  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
25  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  * The views and conclusions contained in the software and
35  * documentation are those of the authors and should not be
36  * interpreted as representing official policies, either expressed
37  * or implied, of GRNET S.A.
38  * </copyright>
39  * -----------------------------------------------------------------------
40  */
41 #endregion
42 using System.Collections;
43 using System.Collections.Concurrent;
44 using System.Collections.ObjectModel;
45 using System.Collections.Specialized;
46 using System.ComponentModel.Composition;
47 using System.Diagnostics;
48 using System.Diagnostics.Contracts;
49 using System.Drawing;
50 using System.IO;
51 using System.Net;
52 using System.Threading.Tasks;
53 using System.Windows;
54 using System.Windows.Interop;
55 using System.Windows.Media.Imaging;
56 using Caliburn.Micro;
57 using Pithos.Client.WPF.FileProperties;
58 using Pithos.Client.WPF.Properties;
59 using Pithos.Core;
60 using Pithos.Interfaces;
61 using Pithos.Network;
62
63 namespace Pithos.Client.WPF
64 {
65     using System;
66     using System.Collections.Generic;
67     using System.Linq;
68     using System.Text;
69
70     /// <summary>
71     /// TODO: Update summary.
72     /// </summary>
73     [Export(typeof(FilePropertiesViewModel))]
74     public class FilePropertiesViewModel : Screen
75     {
76         private string _title;
77         public string Title
78         {
79             get { return _title; }
80             set
81             {
82                 _title = value;
83                 NotifyOfPropertyChange(()=>Title);
84             }
85         }
86
87
88         private bool _isPublic;
89         public bool IsPublic
90         {
91             get { return _isPublic; }
92             set
93             {
94                 _isPublic = value;
95                 NotifyOfPropertyChange(()=>IsPublic);
96             }
97         }
98
99         private string _contentDisposition;
100         public string ContentDisposition
101         {
102             get { return _contentDisposition; }
103             set
104             {
105                 _contentDisposition = value;
106                 NotifyOfPropertyChange(() => ContentDisposition);
107             }
108         }
109
110         private string _contentEncoding;
111         public string ContentEncoding
112         {
113             get { return _contentEncoding; }
114             set
115             {
116                 _contentEncoding = value;
117                 NotifyOfPropertyChange(() => ContentEncoding);
118             }
119         }
120
121
122         private string _manifest;
123         public string Manifest
124         {
125             get { return _manifest; }
126             set
127             {
128                 _manifest = value;
129                 NotifyOfPropertyChange(() => Manifest);
130             }
131         }
132
133         private string _kind;
134         public string Kind
135         {
136             get { return _kind; }
137             set
138             {
139                 _kind = value;
140                 NotifyOfPropertyChange(() => Kind);
141             }
142         }
143
144         private string _size;
145         public string Size
146         {
147             get { return _size; }
148             set
149             {
150                 _size = value;
151                 NotifyOfPropertyChange(() => Size);
152             }
153         }
154
155         private string _shortSize;
156         public string ShortSize
157         {
158             get { return _shortSize; }
159             set
160             {
161                 _shortSize = value;
162                 NotifyOfPropertyChange(() => ShortSize);
163             }
164         }
165
166         private string _where;
167         public string Where
168         {
169             get { return _where; }
170             set
171             {
172                 _where = value;
173                 NotifyOfPropertyChange(() => Where);
174             }
175         }
176
177         private DateTime _modified;
178         public DateTime Modified
179         {
180             get { return _modified; }
181             set
182             {
183                 _modified = value;
184                 NotifyOfPropertyChange(() => Modified);
185             }
186         }
187
188         private string _modifiedBy;
189         public string ModifiedBy
190         {
191             get { return _modifiedBy; }
192             set
193             {
194                 _modifiedBy = value;
195                 NotifyOfPropertyChange(() => ModifiedBy);
196             }
197         }
198
199         private long _version;
200         public long Version
201         {
202             get { return _version; }
203             set
204             {
205                 _version = value;
206                 NotifyOfPropertyChange(() => Version);
207             }
208         }
209
210         private string _localFileName;
211         protected string LocalFileName
212         {
213             get { return _localFileName; }
214             set
215             {
216                 _localFileName = value;
217                 NotifyOfPropertyChange(() => LocalFileName);
218             }
219         }
220
221         private BitmapSource _fileIcon;
222         public BitmapSource FileIcon
223         {
224             get { return _fileIcon; }
225             set
226             {
227                 _fileIcon = value;
228                 NotifyOfPropertyChange(() => FileIcon);
229             }
230         }
231
232         private string _publicUrl;
233         public string PublicUrl
234         {
235             get { return _publicUrl; }
236             set
237             {
238                 _publicUrl = value;
239                 NotifyOfPropertyChange(() => PublicUrl);
240             }
241         }
242
243         private string _fileName;
244         public string FileName
245         {
246             get { return _fileName; }
247             set
248             {
249                 _fileName = value;
250                 NotifyOfPropertyChange(() => FileName);
251             }
252         }
253
254         private string _container;
255         public string Container
256         {
257             get { return _container; }
258             set
259             {
260                 _container = value;
261                 NotifyOfPropertyChange(() => Container);
262             }
263         }
264
265         private string _synchStatus;
266         public string SynchStatus
267         {
268             get { return _synchStatus; }
269             set
270             {
271                 _synchStatus = value;
272                 NotifyOfPropertyChange(()=>SynchStatus);
273             }
274         }
275
276         private string _permissionName;
277         public string PermissionName
278         {
279             get { return _permissionName; }
280             set
281             {
282                 _permissionName = value;
283                 NotifyOfPropertyChange(()=>PermissionName);
284             }
285         }
286
287         private bool _permissionIsReadOnly;
288         public bool PermissionIsReadOnly
289         {
290             get { return _permissionIsReadOnly; }
291             set
292             {
293                 _permissionIsReadOnly = value;
294                 NotifyOfPropertyChange(()=>PermissionIsReadOnly);
295             }
296         }
297
298         public bool CanAddPermission
299         {
300             get { return !String.IsNullOrWhiteSpace(PermissionName); }
301         }
302
303         public void AddPermission()
304         {
305             Permissions.Add(new Permission{Read=PermissionIsReadOnly,UserName=PermissionName,Write=!PermissionIsReadOnly});   
306         }
307
308
309         public bool TagsChanged { get; private set; }
310         public bool PermissionsChanged { get; private set; }
311
312         private bool _isBusy = true;
313         public bool IsBusy
314         {
315             get { return _isBusy; }
316             set
317             {
318                 _isBusy = value;
319                 NotifyOfPropertyChange(() => IsBusy);
320             }
321         }
322
323
324         public FilePropertiesViewModel(ShellViewModel shell,Task<ObjectInfo> pithosFile,string localFileName)
325         {
326             if (shell==null)
327                 throw new ArgumentNullException("shell");
328             if (pithosFile==null)
329                 throw new ArgumentNullException("pithosFile");
330             if (String.IsNullOrWhiteSpace(localFileName))
331                 throw new ArgumentNullException("localFileName");
332             Contract.EndContractBlock();
333
334
335             _tags = new ObservableCollection<MetaValue>();
336             _tags.CollectionChanged += (sender, evt) => { TagsChanged = true; };
337             _permissions = new ObservableCollection<Permission>();
338             _permissions.CollectionChanged += (sender, evt) => { PermissionsChanged = true; };
339             
340             Shell = shell;
341             LocalFileName = localFileName;
342             pithosFile.ContinueWith(t =>
343             {
344                 if (t.IsFaulted)
345                 {
346                     IsBusy = false;
347                     Execute.OnUIThread(()=>ShowError(t.Exception));
348                     this.TryClose();
349
350                 }
351                 else
352                     Execute.OnUIThread(() => PithosFile = t.Result);
353             });       
354                  
355         }
356
357         private void ShowError(AggregateException exception)
358         {
359             MessageView view = null;
360             if (exception.InnerException is RetryException)
361                 view = new MessageView(exception.InnerException as RetryException);
362             else if (exception.InnerException is WebException)
363                 view = new MessageView(exception.InnerException as WebException);
364             else
365                 view = new MessageView(exception.InnerException);
366             view.ShowDialog();
367         }
368
369
370         protected ShellViewModel Shell { get; set; }
371
372         private ObjectInfo _pithosFile;
373         public ObjectInfo PithosFile
374         {
375             get { return _pithosFile; }
376             set
377             {
378                 _pithosFile = value;
379                 
380                 Permissions.Clear();
381                 Tags.Clear();
382
383                 var perms=from permission in value.Permissions
384                             select new Permission(permission.Key, permission.Value);
385                 perms.Apply(perm=>Permissions.Add(perm));
386                 
387                 var tags=from tag in value.Tags
388                              select new MetaValue(tag.Key, tag.Value);
389                 tags.Apply(tag=>Tags.Add(tag));
390
391                 Title = String.Format("{0} Properties", value.Name);
392                 Kind=value.Content_Type;
393                 ShortSize = value.Bytes.ToByteSize();
394                 Size = String.Format("{0} ({1:N0} bytes)", ShortSize, value.Bytes);
395                 Where = Uri.UnescapeDataString(value.Name);
396                 FileName = Uri.UnescapeDataString(value.Name.Split('/').Last());
397                 Container = value.Container;
398                 Modified = value.Last_Modified;
399                 ModifiedBy = value.ModifiedBy;
400                 Version = value.Version??0;
401
402                 ContentDisposition = value.ContendDisposition;
403                 ContentEncoding = value.ContentEncoding;
404                 Manifest = value.Manifest;
405                 IsPublic = value.IsPublic;
406                 if (IsPublic)
407                     PublicUrl = String.Format("{0}/v1{1}", Shell.Accounts.First(account=>account.UserName==PithosFile.Account).SiteUri,value.PublicUrl);
408
409                 if (Directory.Exists(LocalFileName))
410                 {
411                     FileIcon= new BitmapImage(new Uri("../Images/Folder.ico",UriKind.Relative));
412                 }
413                 else if (File.Exists(LocalFileName))
414                 {
415                     using (var icon = Icon.ExtractAssociatedIcon(LocalFileName))
416                     {
417                         FileIcon = Imaging.CreateBitmapSourceFromHIcon(icon.Handle, Int32Rect.Empty,
418                                                                        BitmapSizeOptions.FromEmptyOptions());
419                     }
420                 }
421
422                 var status=Shell.GetFileStatus(LocalFileName);
423                 SynchStatus = Enum.GetName(typeof (FileStatus), status);
424
425
426                 NotifyOfPropertyChange(()=>PithosFile);
427                 IsBusy = false;
428             }
429         }
430
431
432         private readonly ObservableCollection<MetaValue> _tags ;
433         public ObservableCollection<MetaValue> Tags
434         {
435             get { return _tags;}
436         }
437
438         private readonly ObservableCollection<Permission> _permissions ;
439         
440
441         public ObservableCollection<Permission> Permissions
442         {
443             get { return _permissions; }
444         }
445
446         public void Reload()
447         {
448             PithosFile=Shell.RefreshObjectInfo(PithosFile);
449         }
450
451         public override void CanClose(Action<bool> callback)
452         {
453             base.CanClose(callback);
454         }
455
456         public void SaveChanges()
457         {
458             DoSave();
459             TryClose();
460         }
461
462         public void RejectChanges()
463         {
464             TryClose();
465         }
466
467         public void ApplyChanges()
468         {
469             DoSave();
470         }
471
472         private void DoSave()
473         {
474             if (TagsChanged)
475             {
476                 PithosFile.Tags = this.Tags.ToDictionary(tag => tag.Name, tag => tag.Value);
477             }
478             
479             if (PermissionsChanged)
480             {
481                 PithosFile.Permissions = this.Permissions.ToDictionary(perm => perm.UserName, perm => 
482                     (perm.Value.Trim()));
483             }
484
485             PithosFile.ContendDisposition = ContentDisposition;
486             PithosFile.ContentEncoding = ContentEncoding;
487             PithosFile.Manifest = Manifest;
488             PithosFile.IsPublic = IsPublic;
489             
490             var monitor = Shell.Monitors[PithosFile.AccountKey];
491             monitor.CloudClient.UpdateMetadata(PithosFile);
492
493
494             TagsChanged = false;
495             PermissionsChanged = false;
496         }
497
498
499     }
500 }