Changes for directories
[pithos-ms-client] / trunk / Pithos.ShellExtensions / FileContext.cs
1 // -----------------------------------------------------------------------
2 // <copyright file="FileContext.cs" company="GRNET">
3 // Copyright 2011 GRNET S.A. All rights reserved.
4 // 
5 // Redistribution and use in source and binary forms, with or
6 // without modification, are permitted provided that the following
7 // conditions are met:
8 // 
9 //   1. Redistributions of source code must retain the above
10 //      copyright notice, this list of conditions and the following
11 //      disclaimer.
12 // 
13 //   2. Redistributions in binary form must reproduce the above
14 //      copyright notice, this list of conditions and the following
15 //      disclaimer in the documentation and/or other materials
16 //      provided with the distribution.
17 // 
18 // THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19 // OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 // POSSIBILITY OF SUCH DAMAGE.
30 // 
31 // The views and conclusions contained in the software and
32 // documentation are those of the authors and should not be
33 // interpreted as representing official policies, either expressed
34 // or implied, of GRNET S.A.
35 // </copyright>
36 // -----------------------------------------------------------------------
37
38
39 using System.Linq;
40 using Microsoft.Win32;
41
42 namespace Pithos.ShellExtensions
43 {
44     using System;
45     using Pithos.Interfaces;
46     using System.ComponentModel.Composition;
47     using System.Diagnostics;
48     using System.IO;
49
50     [Export]
51     public class FileContext
52     {
53         [Import]
54         public IPithosSettings Settings { get; set; }
55
56         [Import]
57         public IStatusChecker StatusChecker { get; set; }
58
59         public string PithosPath { get { return Settings.PithosPath.ToLower(); } }
60
61         public FileContext()
62         {
63         }
64
65         public bool IsManaged
66         {
67             get
68             {
69                 
70                 var accountPath=(from account in Settings.Accounts
71                                 where !String.IsNullOrWhiteSpace(account.RootPath) && CurrentFile.StartsWith(account.RootPath, StringComparison.InvariantCultureIgnoreCase)
72                                 select account.RootPath).FirstOrDefault();
73                 Debug.WriteLine(String.Format("Account path is {0}\r\n Current Path is {1}", accountPath, CurrentFile), LogCategories.Shell);
74                 return !String.IsNullOrWhiteSpace(accountPath);
75             }
76         }
77
78         public bool IsFolder { get; set; }
79         private string _currentFolder;
80         public string CurrentFolder
81         {
82             get { return _currentFolder; }
83             set
84             {
85                 _currentFolder = value.ToLower();
86                 IsFolder = true;
87                 _currentFile = _currentFolder;
88             }
89         }
90
91         private string _currentFile;
92         public string CurrentFile
93         {
94             get { return _currentFile; }
95             set
96             {
97                 _currentFile = value.ToLower();
98                 Debug.WriteLine(String.Format("File is {0}", _currentFile), LogCategories.Shell);
99                 if (Directory.Exists(_currentFile))
100                 {
101                     _currentFolder = _currentFile;
102                     IsFolder = true;
103                 }
104                 else
105                 {
106                     _currentFolder = Path.GetDirectoryName(_currentFile);
107                     IsFolder = false;
108                 }
109
110             }
111         }
112     }
113
114 }