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-02-14 15:26:05 +01:00
|
|
|
|
using SafeExamBrowser.Contracts.Communication;
|
|
|
|
|
using SafeExamBrowser.Contracts.Communication.Messages;
|
|
|
|
|
using SafeExamBrowser.Contracts.Communication.Responses;
|
|
|
|
|
using SafeExamBrowser.Contracts.Logging;
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Core.Communication
|
|
|
|
|
{
|
|
|
|
|
public class ClientProxy : BaseProxy, IClientProxy
|
|
|
|
|
{
|
|
|
|
|
public ClientProxy(string address, ILogger logger) : base(address, logger)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|