37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
/*
|
|
* Copyright (c) 2021 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/.
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using SafeExamBrowser.Settings;
|
|
|
|
namespace SafeExamBrowser.Configuration.ConfigurationData.DataMapping
|
|
{
|
|
internal class ProctoringDataMapper : BaseDataMapper
|
|
{
|
|
internal override void Map(string key, object value, AppSettings settings)
|
|
{
|
|
switch (key)
|
|
{
|
|
// TODO
|
|
}
|
|
}
|
|
|
|
internal override void MapGlobal(IDictionary<string, object> rawData, AppSettings settings)
|
|
{
|
|
MapProctoringEnabled(rawData, settings);
|
|
}
|
|
|
|
private void MapProctoringEnabled(IDictionary<string, object> rawData, AppSettings settings)
|
|
{
|
|
var jitsiEnabled = rawData.TryGetValue(Keys.Proctoring.JitsiMeet.Enabled, out var v) && v is bool b && b;
|
|
var zoomEnabled = rawData.TryGetValue(Keys.Proctoring.Zoom.Enabled, out v) && v is bool b2 && b2;
|
|
|
|
settings.Proctoring.Enabled = jitsiEnabled || zoomEnabled;
|
|
}
|
|
}
|
|
}
|