2018-02-14 15:26:05 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
|
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-02-27 15:28:54 +01:00
|
|
|
|
using System.ServiceModel;
|
2018-03-15 14:32:07 +01:00
|
|
|
|
using SafeExamBrowser.Contracts.Communication.Data;
|
|
|
|
|
using SafeExamBrowser.Contracts.Communication.Proxies;
|
2018-02-14 15:26:05 +01:00
|
|
|
|
using SafeExamBrowser.Contracts.Logging;
|
|
|
|
|
|
2018-03-16 09:28:33 +01:00
|
|
|
|
namespace SafeExamBrowser.Core.Communication.Proxies
|
2018-02-14 15:26:05 +01:00
|
|
|
|
{
|
2018-03-06 14:35:10 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default implementation of the <see cref="IClientProxy"/>, to be used for communication with the client application component.
|
|
|
|
|
/// </summary>
|
2018-02-14 15:26:05 +01:00
|
|
|
|
public class ClientProxy : BaseProxy, IClientProxy
|
|
|
|
|
{
|
2018-03-15 09:55:04 +01:00
|
|
|
|
public ClientProxy(string address, IProxyObjectFactory factory, ILogger logger) : base(address, factory, logger)
|
2018-02-14 15:26:05 +01:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-20 15:15:26 +01:00
|
|
|
|
public void InitiateShutdown()
|
|
|
|
|
{
|
|
|
|
|
var response = Send(SimpleMessagePurport.Shutdown);
|
|
|
|
|
|
2018-02-27 15:28:54 +01:00
|
|
|
|
if (!IsAcknowledged(response))
|
2018-02-20 15:15:26 +01:00
|
|
|
|
{
|
2018-02-27 15:28:54 +01:00
|
|
|
|
throw new CommunicationException($"Runtime did not acknowledge shutdown request! Received: {ToString(response)}.");
|
2018-02-20 15:15:26 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-15 15:42:54 +01:00
|
|
|
|
public AuthenticationResponse RequestAuthentication()
|
2018-02-14 15:26:05 +01:00
|
|
|
|
{
|
2018-02-16 13:15:16 +01:00
|
|
|
|
var response = Send(SimpleMessagePurport.Authenticate);
|
|
|
|
|
|
2018-02-27 15:28:54 +01:00
|
|
|
|
if (response is AuthenticationResponse authenticationResponse)
|
|
|
|
|
{
|
|
|
|
|
return authenticationResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
throw new CommunicationException($"Did not receive authentication response! Received: {ToString(response)}.");
|
2018-02-14 15:26:05 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|