SparkleShare/SparkleLib/SparkleConfig.cs

265 lines
7.9 KiB
C#
Raw Normal View History

// SparkleShare, a collaboration and sharing tool.
// Copyright (C) 2010 Hylke Bons <hylkebons@gmail.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
using System.IO;
2011-05-25 20:46:46 +00:00
using System.Collections.Generic;
using System.Xml;
2011-05-26 19:46:49 +00:00
using Mono.Unix;
namespace SparkleLib {
public class SparkleConfig : XmlDocument {
public static SparkleConfig DefaultConfig = new SparkleConfig (
2011-05-26 19:46:49 +00:00
SparklePaths.SparkleConfigPath, "config.xml");
public string Path;
2011-05-26 19:46:49 +00:00
public SparkleConfig (string config_path, string config_file_name)
{
2011-05-26 19:46:49 +00:00
Path = System.IO.Path.Combine (config_path, config_file_name);
if (!Directory.Exists (config_path)) {
Directory.CreateDirectory (config_path);
SparkleHelpers.DebugInfo ("Config", "Created \"" + config_path + "\"");
}
string icons_path = System.IO.Path.Combine (config_path, "icons");
if (!Directory.Exists (icons_path)) {
Directory.CreateDirectory (icons_path);
2011-06-06 19:58:12 +00:00
SparkleHelpers.DebugInfo ("Config", "Created \"" + icons_path + "\"");
2011-05-26 19:46:49 +00:00
}
if (!File.Exists (Path))
CreateInitialConfig ();
Load (Path);
}
2011-05-26 19:46:49 +00:00
private void CreateInitialConfig ()
{
string user_name = "Unknown";
2011-05-26 19:46:49 +00:00
if (SparkleBackend.Platform == PlatformID.Unix ||
SparkleBackend.Platform == PlatformID.MacOSX) {
user_name = new UnixUserInfo (UnixEnvironment.UserName).RealName;
2011-06-07 20:39:35 +00:00
if (string.IsNullOrEmpty (user_name)) {
user_name = UnixEnvironment.UserName;
} else {
user_name = user_name.TrimEnd (",".ToCharArray());
}
2011-05-26 19:46:49 +00:00
} else {
user_name = Environment.UserName;
}
2011-06-06 19:58:12 +00:00
if (string.IsNullOrEmpty (user_name))
user_name = "Unknown";
2011-06-06 19:58:12 +00:00
2011-05-26 19:46:49 +00:00
TextWriter writer = new StreamWriter (Path);
string n = Environment.NewLine;
writer.Write ("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" + n +
"<sparkleshare>" + n +
" <user>" + n +
" <name>" + user_name + "</name>" + n +
" <email>Unknown</email>" + n +
" </user>" + n +
"</sparkleshare>");
writer.Close ();
SparkleHelpers.DebugInfo ("Config", "Created \"" + Path + "\"");
}
public string UserName {
get {
2011-05-25 18:36:43 +00:00
XmlNode node = SelectSingleNode ("/sparkleshare/user/name/text()");
return node.Value;
}
set {
2011-05-25 18:36:43 +00:00
XmlNode node = SelectSingleNode ("/sparkleshare/user/name/text()");
node.InnerText = value;
Save ();
}
}
public string UserEmail {
get {
2011-05-26 19:46:49 +00:00
XmlNode node = SelectSingleNode ("/sparkleshare/user/email/text()");
return node.Value;
}
set {
2011-05-26 19:46:49 +00:00
XmlNode node = SelectSingleNode ("/sparkleshare/user/email/text()");
node.InnerText = value;
Save ();
}
}
2011-05-26 19:46:49 +00:00
public List<string> Folders {
2011-05-25 20:46:46 +00:00
get {
List<string> folders = new List<string> ();
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder"))
folders.Add (node_folder ["name"].InnerText);
2011-05-26 19:46:49 +00:00
return folders;
2011-05-25 20:46:46 +00:00
}
}
public void AddFolder (string name, string url, string backend)
{
XmlNode node_name = CreateElement ("name");
node_name.InnerText = name;
XmlNode node_url = CreateElement ("url");
node_url.InnerText = url;
XmlNode node_backend = CreateElement ("backend");
2011-05-25 20:46:46 +00:00
node_backend.InnerText = backend;
XmlNode node_folder = CreateNode (XmlNodeType.Element, "folder", null);
node_folder.AppendChild (node_name);
node_folder.AppendChild (node_url);
node_folder.AppendChild (node_backend);
2011-05-25 18:36:43 +00:00
XmlNode node_root = SelectSingleNode ("/sparkleshare");
node_root.AppendChild (node_folder);
Save ();
}
public void RemoveFolder (string name)
{
2011-05-25 18:36:43 +00:00
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
2011-05-25 18:38:25 +00:00
if (node_folder ["name"].InnerText.Equals (name))
2011-05-25 18:36:43 +00:00
SelectSingleNode ("/sparkleshare").RemoveChild (node_folder);
}
2011-05-25 18:38:25 +00:00
Save ();
}
2011-05-25 20:46:46 +00:00
public bool FolderExists (string name)
{
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
if (node_folder ["name"].InnerText.Equals (name))
return true;
}
return false;
}
public string GetBackendForFolder (string name)
{
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
if (node_folder ["name"].InnerText.Equals (name))
return node_folder ["backend"].InnerText;
}
return null;
}
public string GetUrlForFolder (string name)
{
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
if (node_folder ["name"].InnerText.Equals (name))
return node_folder ["url"].InnerText;
}
return null;
}
public string GetAnnouncementsForFolder (string name)
{
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
if (node_folder ["name"].InnerText.Equals (name) &&
node_folder ["announcements"] != null) {
return node_folder ["announcements"].InnerText;
}
}
return null;
}
2011-05-26 19:46:49 +00:00
public string GetConfigOption (string name)
{
XmlNode node = SelectSingleNode ("/sparkleshare/" + name);
if (node != null)
return node.InnerText;
else
return null;
}
public void SetConfigOption (string name, string content)
{
XmlNode node = SelectSingleNode ("/sparkleshare/" + name);
if (node != null) {
node.InnerText = content;
} else {
node = CreateElement (name);
node.InnerText = content;
XmlNode node_root = SelectSingleNode ("/sparkleshare");
node_root.AppendChild (node);
}
SparkleHelpers.DebugInfo ("Config", "Updated " + name + ":" + content);
Save ();
}
public void Save ()
{
if (!File.Exists (Path))
throw new ConfigFileNotFoundException (Path + " does not exist");
2011-05-25 00:22:02 +00:00
Save (Path);
2011-05-26 19:46:49 +00:00
SparkleHelpers.DebugInfo ("Config", "Updated \"" + Path + "\"");
}
}
public class ConfigFileNotFoundException : Exception {
2011-05-25 00:22:02 +00:00
public ConfigFileNotFoundException (string message) :
base (message) { }
}
2011-05-26 19:46:49 +00:00
}