websitepanel/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/Lync_Settings.ascx.cs
2015-01-06 00:53:09 +03:00

181 lines
6.4 KiB
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) 2015, Outercurve Foundation.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// - Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// - Neither the name of the Outercurve Foundation nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using System;
using System.Collections.Generic;
using System.Data;
using System.Web.UI.WebControls;
using WebsitePanel.EnterpriseServer;
using WebsitePanel.Providers.HostedSolution;
namespace WebsitePanel.Portal.ProviderControls
{
public partial class Lync_Settings : WebsitePanelControlBase, IHostingServiceProviderSettings
{
public const string LyncServersData = "LyncServersData";
protected void Page_Load(object sender, EventArgs e)
{
}
public void BindSettings(System.Collections.Specialized.StringDictionary settings)
{
txtServerName.Text = settings[LyncConstants.PoolFQDN];
txtSimpleUrlBase.Text = settings[LyncConstants.SimpleUrlRoot];
LyncServers = settings["LyncServersServiceID"];
BindLyncServices(ddlLyncServers);
Utils.SelectListItem(ddlLyncServers, settings["LyncServersServiceID"]);
UpdateLyncServersGrid();
}
public void SaveSettings(System.Collections.Specialized.StringDictionary settings)
{
settings[LyncConstants.PoolFQDN] = txtServerName.Text.Trim();
settings[LyncConstants.SimpleUrlRoot] = txtSimpleUrlBase.Text.Trim();
settings["LyncServersServiceID"] = LyncServers;
}
public string LyncServers
{
get
{
return ViewState[LyncServersData] != null ? ViewState[LyncServersData].ToString() : string.Empty;
}
set
{
ViewState[LyncServersData] = value;
}
}
protected void btnAddLyncServer_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(LyncServers))
LyncServers += ",";
LyncServers += ddlLyncServers.SelectedItem.Value;
UpdateLyncServersGrid();
BindLyncServices(ddlLyncServers);
}
public List<ServiceInfo> GetServices(string data)
{
if (string.IsNullOrEmpty(data))
return null;
List<ServiceInfo> list = new List<ServiceInfo>();
string[] servicesIds = data.Split(',');
foreach (string current in servicesIds)
{
ServiceInfo serviceInfo = ES.Services.Servers.GetServiceInfo(Utils.ParseInt(current));
list.Add(serviceInfo);
}
return list;
}
private void UpdateLyncServersGrid()
{
gvLyncServers.DataSource = GetServices(LyncServers);
gvLyncServers.DataBind();
}
public void BindLyncServices(DropDownList ddl)
{
ddl.Items.Clear();
ServiceInfo serviceInfo = ES.Services.Servers.GetServiceInfo(PanelRequest.ServiceId);
DataView dvServices = ES.Services.Servers.GetRawServicesByGroupName(ResourceGroups.Lync).Tables[0].DefaultView;
foreach (DataRowView dr in dvServices)
{
int serviceId = (int)dr["ServiceID"];
ServiceInfo currentServiceInfo = ES.Services.Servers.GetServiceInfo(serviceId);
if (currentServiceInfo == null || currentServiceInfo.ProviderId != serviceInfo.ProviderId)
continue;
List<ServiceInfo> services = GetServices(LyncServers);
bool exists = false;
if (services != null)
foreach (ServiceInfo current in services)
{
if (current != null && current.ServiceId == serviceId)
{
exists = true;
break;
}
}
if (!exists)
ddl.Items.Add(new ListItem(dr["FullServiceName"].ToString(), serviceId.ToString()));
}
ddl.Visible = ddl.Items.Count != 0;
btnAddLyncServer.Visible = ddl.Items.Count != 0;
}
protected void gvLyncServers_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "RemoveServer")
{
string str = string.Empty;
List<ServiceInfo> services = GetServices(LyncServers);
foreach (ServiceInfo current in services)
{
if (current.ServiceId == Utils.ParseInt(e.CommandArgument.ToString()))
continue;
str += current.ServiceId + ",";
}
LyncServers = str.TrimEnd(',');
UpdateLyncServersGrid();
BindLyncServices(ddlLyncServers);
}
}
}
}