228 lines
9.3 KiB
C#
228 lines
9.3 KiB
C#
// Copyright (c) 2014, 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.Data;
|
|
using System.Web;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Web.Services;
|
|
using System.Web.Services.Protocols;
|
|
using System.ComponentModel;
|
|
|
|
using Microsoft.Web.Services3;
|
|
using WebsitePanel.Providers.Common;
|
|
using WebsitePanel.Providers.HostedSolution;
|
|
using WebsitePanel.Providers.RemoteDesktopServices;
|
|
|
|
namespace WebsitePanel.EnterpriseServer
|
|
{
|
|
/// <summary>
|
|
/// Summary description for esApplicationsInstaller
|
|
/// </summary>
|
|
[WebService(Namespace = "http://smbsaas/websitepanel/enterpriseserver")]
|
|
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
|
|
[Policy("ServerPolicy")]
|
|
[ToolboxItem(false)]
|
|
public class esRemoteDesktopServices : System.Web.Services.WebService
|
|
{
|
|
|
|
[WebMethod]
|
|
public RdsCollection GetRdsCollection(int collectionId)
|
|
{
|
|
return RemoteDesktopServicesController.GetRdsCollection(collectionId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<RdsCollection> GetOrganizationRdsCollections(int itemId)
|
|
{
|
|
return RemoteDesktopServicesController.GetOrganizationRdsCollections(itemId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject AddRdsCollection(int itemId, RdsCollection collection)
|
|
{
|
|
return RemoteDesktopServicesController.AddRdsCollection(itemId, collection);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsCollectionPaged GetRdsCollectionsPaged(int itemId, string filterColumn, string filterValue,
|
|
string sortColumn, int startRow, int maximumRows)
|
|
{
|
|
return RemoteDesktopServicesController.GetRdsCollectionsPaged(itemId, filterColumn, filterValue, sortColumn,
|
|
startRow, maximumRows);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject RemoveRdsCollection(int itemId, RdsCollection collection)
|
|
{
|
|
return RemoteDesktopServicesController.RemoveRdsCollection(itemId, collection);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsServersPaged GetRdsServersPaged(string filterColumn, string filterValue, string sortColumn,
|
|
int startRow, int maximumRows)
|
|
{
|
|
return RemoteDesktopServicesController.GetRdsServersPaged(filterColumn, filterValue, sortColumn, startRow,
|
|
maximumRows);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsServersPaged GetFreeRdsServersPaged(string filterColumn, string filterValue,
|
|
string sortColumn, int startRow, int maximumRows)
|
|
{
|
|
return RemoteDesktopServicesController.GetFreeRdsServersPaged(filterColumn, filterValue,
|
|
sortColumn, startRow, maximumRows);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsServersPaged GetOrganizationRdsServersPaged(int itemId, string filterColumn, string filterValue,
|
|
string sortColumn, int startRow, int maximumRows)
|
|
{
|
|
return RemoteDesktopServicesController.GetOrganizationRdsServersPaged(itemId, filterColumn, filterValue,
|
|
sortColumn, startRow, maximumRows);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsServersPaged GetOrganizationFreeRdsServersPaged(int itemId, string filterColumn, string filterValue,
|
|
string sortColumn, int startRow, int maximumRows)
|
|
{
|
|
return RemoteDesktopServicesController.GetOrganizationFreeRdsServersPaged(itemId, filterColumn, filterValue,
|
|
sortColumn, startRow, maximumRows);
|
|
}
|
|
|
|
[WebMethod]
|
|
public RdsServer GetRdsServer(int rdsSeverId)
|
|
{
|
|
return RemoteDesktopServicesController.GetRdsServer(rdsSeverId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<RdsServer> GetCollectionRdsServers(int collectionId)
|
|
{
|
|
return RemoteDesktopServicesController.GetCollectionRdsServers(collectionId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<RdsServer> GetOrganizationRdsServers(int itemId)
|
|
{
|
|
return RemoteDesktopServicesController.GetOrganizationRdsServers(itemId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject AddRdsServer(RdsServer rdsServer)
|
|
{
|
|
return RemoteDesktopServicesController.AddRdsServer(rdsServer);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject AddRdsServerToCollection(int itemId, RdsServer rdsServer, RdsCollection rdsCollection)
|
|
{
|
|
return RemoteDesktopServicesController.AddRdsServerToCollection(itemId, rdsServer, rdsCollection);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject AddRdsServerToOrganization(int itemId, int serverId)
|
|
{
|
|
return RemoteDesktopServicesController.AddRdsServerToOrganization(itemId, serverId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject RemoveRdsServer(int rdsServerId)
|
|
{
|
|
return RemoteDesktopServicesController.RemoveRdsServer(rdsServerId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject RemoveRdsServerFromCollection(int itemId, RdsServer rdsServer, RdsCollection rdsCollection)
|
|
{
|
|
return RemoteDesktopServicesController.RemoveRdsServerFromCollection(itemId, rdsServer, rdsCollection);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject RemoveRdsServerFromOrganization(int rdsServerId)
|
|
{
|
|
return RemoteDesktopServicesController.RemoveRdsServerFromOrganization(rdsServerId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject UpdateRdsServer(RdsServer rdsServer)
|
|
{
|
|
return RemoteDesktopServicesController.UpdateRdsServer(rdsServer);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<OrganizationUser> GetRdsCollectionUsers(int collectionId)
|
|
{
|
|
return RemoteDesktopServicesController.GetRdsCollectionUsers(collectionId);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject SetUsersToRdsCollection(int itemId, int collectionId, List<OrganizationUser> users)
|
|
{
|
|
return RemoteDesktopServicesController.SetUsersToRdsCollection(itemId, collectionId, users);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<RemoteApplication> GetCollectionRemoteApplications(int itemId, string collectionName)
|
|
{
|
|
return RemoteDesktopServicesController.GetCollectionRemoteApplications(itemId, collectionName);
|
|
}
|
|
|
|
[WebMethod]
|
|
public List<StartMenuApp> GetAvailableRemoteApplications(int itemId, string collectionName)
|
|
{
|
|
return RemoteDesktopServicesController.GetAvailableRemoteApplications(itemId, collectionName);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject AddRemoteApplicationToCollection(int itemId, RdsCollection collection, RemoteApplication application)
|
|
{
|
|
return RemoteDesktopServicesController.AddRemoteApplicationToCollection(itemId, collection, application);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject RemoveRemoteApplicationFromCollection(int itemId, RdsCollection collection, RemoteApplication application)
|
|
{
|
|
return RemoteDesktopServicesController.RemoveRemoteApplicationFromCollection(itemId, collection, application);
|
|
}
|
|
|
|
[WebMethod]
|
|
public ResultObject SetRemoteApplicationsToRdsCollection(int itemId, int collectionId, List<RemoteApplication> remoteApps)
|
|
{
|
|
return RemoteDesktopServicesController.SetRemoteApplicationsToRdsCollection(itemId, collectionId, remoteApps);
|
|
}
|
|
|
|
[WebMethod]
|
|
public int GetOrganizationRdsUsersCount(int itemId)
|
|
{
|
|
return RemoteDesktopServicesController.GetOrganizationRdsUsersCount(itemId);
|
|
}
|
|
|
|
}
|
|
}
|