SEBSERV-553 fixed show quit link and improved logging
This commit is contained in:
parent
65e717349b
commit
abe8bcd4d3
4 changed files with 10 additions and 14 deletions
|
@ -671,6 +671,11 @@ public class FullLmsIntegrationServiceImpl implements FullLmsIntegrationService
|
|||
}
|
||||
|
||||
private boolean hasFullIntegration(final Long lmsSetupId) {
|
||||
// no LMS
|
||||
if (lmsSetupId == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
final LmsAPITemplate lmsAPITemplate = this.lmsAPITemplateCacheService
|
||||
.getLmsAPITemplate(lmsSetupId)
|
||||
.getOrThrow();
|
||||
|
|
|
@ -246,8 +246,6 @@ public class MoodlePluginFullIntegration implements FullLmsIntegrationAPI {
|
|||
final String quizId = MoodleUtils.getQuizId(exam.externalId);
|
||||
final String fileName = getConnectionConfigFileName(exam);
|
||||
|
||||
|
||||
|
||||
final MultiValueMap<String, Object> multiPartAttributes = new LinkedMultiValueMap<>();
|
||||
multiPartAttributes.add("quizid", quizId);
|
||||
multiPartAttributes.add("name", fileName);
|
||||
|
@ -259,19 +257,13 @@ public class MoodlePluginFullIntegration implements FullLmsIntegrationAPI {
|
|||
}
|
||||
};
|
||||
|
||||
log.info("Upload Connection Configuration to Moodle: quizid: {}, fileName: {}, content: {}", quizId, fileName, contentsAsResource );
|
||||
|
||||
multiPartAttributes.add("file", contentsAsResource);
|
||||
|
||||
final MoodleAPIRestTemplate rest = getRestTemplate().getOrThrow();
|
||||
final String response = rest.uploadMultiPart(UPLOAD_ENDPOINT, multiPartAttributes);
|
||||
|
||||
if (response != null && (response.startsWith("{\"exception\":") || response.startsWith("0"))) {
|
||||
log.warn("Failed to apply Connection Configuration to LMS for Exam: {}", exam.externalId);
|
||||
}
|
||||
|
||||
if (response != null && (response.startsWith("{\"warnings\":"))) {
|
||||
log.info("Moodle warnings in response: {}", response);
|
||||
if (response != null) {
|
||||
log.info("Upload Connection Configuration to Moodle: quizid: {}, fileName: {} response: {}", quizId, fileName, response );
|
||||
}
|
||||
|
||||
return exam;
|
||||
|
|
|
@ -676,14 +676,12 @@ class ScreenProctoringAPIBinding {
|
|||
final ScreenProctoringGroup localGroup,
|
||||
final ClientConnectionRecord clientConnection) {
|
||||
|
||||
// TODO check if the Session with token UUID already exists and if true, return the token
|
||||
|
||||
final String token = clientConnection.getConnectionToken();
|
||||
final ScreenProctoringServiceOAuthTemplate apiTemplate = this.getAPITemplate(examId);
|
||||
final String uri = UriComponentsBuilder
|
||||
.fromUriString(apiTemplate.spsAPIAccessData.getSpsServiceURL())
|
||||
.path(SPS_API.SESSION_ENDPOINT)
|
||||
|
||||
.build()
|
||||
.toUriString();
|
||||
|
||||
|
@ -983,7 +981,9 @@ class ScreenProctoringAPIBinding {
|
|||
final MultiValueMap<String, String> params = new LinkedMultiValueMap<>();
|
||||
params.add(SPS_API.EXAM.ATTR_UUID, uuid);
|
||||
params.add(SPS_API.EXAM.ATTR_NAME, exam.name);
|
||||
params.add(SPS_API.EXAM.ATTR_DESCRIPTION, exam.getDescription());
|
||||
if (exam.getDescription() != null) {
|
||||
params.add(SPS_API.EXAM.ATTR_DESCRIPTION, exam.getDescription());
|
||||
}
|
||||
params.add(SPS_API.EXAM.ATTR_URL, exam.getStartURL());
|
||||
if (!userIds.isEmpty()) {
|
||||
params.add(SPS_API.EXAM.ATTR_USER_IDS, StringUtils.join(userIds, Constants.LIST_SEPARATOR));
|
||||
|
|
|
@ -60,7 +60,6 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.session.impl.proctoring.Scr
|
|||
public class ScreenProctoringServiceImpl implements ScreenProctoringService {
|
||||
|
||||
private static final Logger log = LoggerFactory.getLogger(ScreenProctoringServiceImpl.class);
|
||||
|
||||
private final Cryptor cryptor;
|
||||
private final ScreenProctoringAPIBinding screenProctoringAPIBinding;
|
||||
private final ScreenProctoringGroupDAO screenProctoringGroupDAO;
|
||||
|
|
Loading…
Reference in a new issue