load.png
[tfs.git] / class / Gtk.TeamFoundation / RepositoryView.cs
blobea02b0787d3bd99964c4e6d9f2b6242f85eee41c
1 //
2 // RepositoryView.cs
3 //
4 // Authors:
5 // Joel Reed (joelwreed@gmail.com)
6 //
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System;
30 using System.IO;
31 using System.Net;
32 using Gtk;
34 using Microsoft.TeamFoundation.Client;
35 using Microsoft.TeamFoundation.VersionControl.Common;
36 using Microsoft.TeamFoundation.VersionControl.Client;
38 namespace Gtk.TeamFoundation
40 public class RepositoryView : TreeViewBase
42 private TreeStore store = new TreeStore(typeof(string), typeof(string));
43 private ICredentialsProvider credentialsProvider;
44 private RepositoryMenu menu = new RepositoryMenu();
46 public RepositoryView(ICredentialsProvider credentialsProvider)
48 this.credentialsProvider = credentialsProvider;
49 Gdk.Pixbuf repositoryPixbuf = Gdk.Pixbuf.LoadFromResource("repository.png");
51 AppendColumn("Repository", new CellRendererText (), "text", 0);
53 WorkspaceInfo[] infos = Workstation.Current.GetAllLocalWorkspaceInfo();
54 foreach (WorkspaceInfo info in infos)
56 Gtk.TreeIter serverIter = store.AppendValues(info.ServerUri.ToString(), VersionControlPath.RootFolder);
57 store.AppendValues(serverIter, "", "");
60 Model = store;
61 HeadersVisible = true;
63 ShowAll();
66 protected override void PopulateRowChildren (TreeIter iter)
68 string path = store.GetValue(iter, 1).ToString();
70 string url = String.Empty;
71 TreeIter iterParent;
73 TreeIter current = iter;
74 while (store.IterParent(out iterParent, current))
76 current = iterParent;
79 url = store.GetValue(current, 0).ToString();
81 ICredentials credentials = credentialsProvider.GetCredentials(new Uri(url), null);
82 TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer(url, credentials);
83 VersionControlServer versionControlServer = tfs.GetService(typeof(VersionControlServer)) as VersionControlServer;
85 int indx = 0;
86 ItemSpec itemSpec = new ItemSpec (path, RecursionType.OneLevel);
87 ItemSet itemSet = versionControlServer.GetItems (itemSpec, VersionSpec.Latest,
88 DeletedState.NonDeleted, ItemType.Folder, false);
89 if (itemSet.Items.Length == 0)
90 SetRowValue(store, iter, indx, " - item list not available - ", "");
92 foreach (Microsoft.TeamFoundation.VersionControl.Client.Item item in itemSet.Items)
94 if (item.ServerItem == path) continue;
96 string shortPath = item.ServerItem.Substring(item.ServerItem.LastIndexOf('/') + 1);
97 Gtk.TreeIter child = SetRowValue(store, iter, indx, shortPath, item.ServerItem);
99 store.AppendValues(child, "", "");
100 indx++;
104 protected override void ShowPopupMenu(TreePath path)
106 string tfpath = String.Empty;
108 if (path != null)
110 TreeIter iter;
111 store.GetIter(out iter, path);
112 tfpath = store.GetValue(iter, 1).ToString();;
113 Console.WriteLine(tfpath);
116 menu.Show(tfpath);
119 void OnAddRepository(object sender, EventArgs args)
121 RepositoryDialog dialog = new RepositoryDialog();
123 dialog.ShowAll();
124 dialog.Run();
125 dialog.Destroy();