Change Session plugin to keep track of the current session
[WebThing.git] / plugins / Session.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text.RegularExpressions;
4 using bytex64.WebThing;
5
6 public class Session : WebThingPlugin {
7     WebThing wt;
8     string CurrentSession = "Default";
9
10     public override void Init(WebThing wt) {
11         this.wt = wt;
12         if (Config.Arguments.Length == 0) {
13             if (Config.Options.ContainsKey("Session")) {
14                 RestoreSession(Config.Options["Session"]);
15                 CurrentSession = Config.Options["Session"];
16             } else if (Options.ContainsKey("Default")) {
17                 RestoreSession("Default");
18             }
19         }
20     }
21
22     public override void Deinit(WebThing wt) {
23         if (Options.ContainsKey("AutoSave") && Config.ParseBool(Options["AutoSave"])) {
24             SaveSession(CurrentSession);
25         }
26     }
27
28     public void RestoreSession(string SessionName) {
29         if (Options.ContainsKey(SessionName)) {
30             while (wt.Tabs.NPages > 0) {
31                 WebThingView wtv = wt.Tabs.CurrentPageWidget as WebThingView;
32                 wt.Tabs.Remove(wtv);
33                 wtv.Dispose();
34             }
35             string[] pages = Regex.Split(Options[SessionName], @"\s+");
36             foreach (string page in pages) {
37                 wt.OpenUriTab(page);
38             }
39         } else {
40             Console.WriteLine("Could not restore session {0} because it does not exist.", SessionName);
41         }
42     }
43
44     public void SaveSession(string SessionName) {
45         List<string> Uris = new List<string>();
46         foreach (WebThingView wtv in wt.Tabs) {
47             Uris.Add(wtv.WebView.MainFrame.Uri);
48         }
49         Options[SessionName] = String.Join(" ", Uris.ToArray());
50         SaveConfig();
51     }
52 }