Files
duplicati/Duplicati/Library/Backend/S3/S3SettingsControl.cs
T
2011-05-09 19:52:28 +00:00

83 lines
2.9 KiB
C#

#region Disclaimer / License
// Copyright (C) 2011, Kenneth Skovhede
// http://www.hexad.dk, opensource@hexad.dk
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace Duplicati.Library.Backend
{
public class S3SettingsControl : Interface.ISettingsControl
{
#region ISettingsControl Members
public string Key
{
get { return "amz-s3"; }
}
public void BeginEdit(IDictionary<string, string> applicationSettings, IDictionary<string, string> guiOptions)
{
GetConfiguration(applicationSettings, guiOptions, null);
}
public void EndEdit(IDictionary<string, string> applicationSettings, IDictionary<string, string> guiOptions)
{
if (S3CommonOptions.ExtractAllowCredentialStorage(guiOptions))
S3CommonOptions.EncodeAccounts(S3CommonOptions.ExtractAccounts(applicationSettings), guiOptions);
}
#endregion
#region IGUIControl Members
public string PageTitle
{
get { return Strings.S3SettingsControl.PageTitle; }
}
public string PageDescription
{
get { return Strings.S3SettingsControl.PageDescription; }
}
public System.Windows.Forms.Control GetControl(IDictionary<string, string> applicationSettings, IDictionary<string, string> options)
{
return new S3CommonOptions(applicationSettings, options);
}
public void Leave(System.Windows.Forms.Control control)
{
((S3CommonOptions)control).Save(false);
}
public bool Validate(System.Windows.Forms.Control control)
{
return ((S3CommonOptions)control).Save(true);
}
public string GetConfiguration(IDictionary<string, string> applicationSettings, IDictionary<string, string> guiOptions, IDictionary<string, string> commandlineOptions)
{
return S3CommonOptions.GetConfiguration(applicationSettings, guiOptions, commandlineOptions);
}
#endregion
}
}