Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3716 - Workflow broken when curating to curation user using curation sidebar #3717

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import static de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentState.FINISHED;
import static de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentState.IN_PROGRESS;
import static de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentStateChangeFlag.EXPLICIT_ANNOTATOR_USER_ACTION;
import static de.tudarmstadt.ukp.clarin.webanno.model.PermissionLevel.CURATOR;
import static de.tudarmstadt.ukp.clarin.webanno.model.SourceDocumentState.CURATION_FINISHED;
import static de.tudarmstadt.ukp.clarin.webanno.model.SourceDocumentState.CURATION_IN_PROGRESS;
import static de.tudarmstadt.ukp.clarin.webanno.support.WebAnnoConst.CURATION_USER;
Expand All @@ -43,13 +44,15 @@
import de.agilecoders.wicket.core.markup.html.bootstrap.behavior.CssClassNameModifier;
import de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesome5IconType;
import de.tudarmstadt.ukp.clarin.webanno.api.DocumentService;
import de.tudarmstadt.ukp.clarin.webanno.api.ProjectService;
import de.tudarmstadt.ukp.clarin.webanno.api.annotation.actionbar.finish.FinishDocumentDialogContent;
import de.tudarmstadt.ukp.clarin.webanno.api.annotation.actionbar.finish.FinishDocumentDialogModel;
import de.tudarmstadt.ukp.clarin.webanno.api.annotation.exception.ValidationException;
import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase;
import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocument;
import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentState;
import de.tudarmstadt.ukp.clarin.webanno.model.SourceDocument;
import de.tudarmstadt.ukp.clarin.webanno.model.SourceDocumentState;
import de.tudarmstadt.ukp.clarin.webanno.security.UserDao;
import de.tudarmstadt.ukp.clarin.webanno.support.bootstrap.BootstrapModalDialog;
import de.tudarmstadt.ukp.clarin.webanno.support.dialog.ChallengeResponseDialog;
Expand All @@ -66,6 +69,7 @@ public class MatrixWorkflowActionBarItemGroup
private static final long serialVersionUID = 4139817495914347777L;

private @SpringBean DocumentService documentService;
private @SpringBean ProjectService projectService;
private @SpringBean UserDao userRepository;
private @SpringBean WorkloadManagementService workloadManagementService;
private @SpringBean MatrixWorkloadExtension matrixWorkloadExtension;
Expand Down Expand Up @@ -106,23 +110,35 @@ public MatrixWorkflowActionBarItemGroup(String aId, AnnotationPageBase aPage)

private LambdaAjaxLink createToggleDocumentStateLink(String aId)
{
MatrixWorkloadTraits traits = matrixWorkloadExtension.readTraits(workloadManagementService
.loadOrCreateWorkloadManagerConfiguration(page.getModelObject().getProject()));

LambdaAjaxLink link;
if (traits.isReopenableByAnnotator()) {
if (isReopenableByUser()) {
link = new LambdaAjaxLink(aId, this::actionToggleDocumentState);
}
else {
link = new LambdaAjaxLink(aId, this::actionRequestFinishDocumentConfirmation);
}
link.setOutputMarkupId(true);
link.add(enabledWhen(() -> page.isEditable() || traits.isReopenableByAnnotator()));
link.add(enabledWhen(() -> page.isEditable() || isReopenableByUser()));
link.add(new Label("state")
.add(new CssClassNameModifier(LambdaModel.of(this::getStateClass))));
return link;
}

private boolean isReopenableByUser()
{
// Curators can re-open documents anyway via the monitoring page, so we can always allow
// the re-open documents here as well
AnnotatorState state = page.getModelObject();
if (projectService.hasRole(userRepository.getCurrentUsername(), state.getProject(),
CURATOR)) {
return true;
}

MatrixWorkloadTraits traits = matrixWorkloadExtension.readTraits(workloadManagementService
.loadOrCreateWorkloadManagerConfiguration(page.getModelObject().getProject()));
return traits.isReopenableByAnnotator();
}

protected AnnotationPageBase getAnnotationPage()
{
return page;
Expand All @@ -132,10 +148,24 @@ public String getStateClass()
{
AnnotatorState state = page.getModelObject();

// Curation sidebar: when writing to the curation document, we need to update the document
if (state.getUser().getUsername().equals(CURATION_USER)) {
if (state.getDocument().getState() == SourceDocumentState.CURATION_FINISHED) {
// SourceDocumentState.CURATION_FINISHED.symbol()
return FontAwesome5IconType.clipboard_check_s.cssClassName();
}
else {
// SourceDocumentState.CURATION_IN_PROGRESS.symbol()
return FontAwesome5IconType.clipboard_s.cssClassName();
}
}

if (documentService.isAnnotationFinished(state.getDocument(), state.getUser())) {
// AnnotationDocumentState.FINISHED.symbol();
return FontAwesome5IconType.lock_s.cssClassName();
}
else {
// AnnotationDocumentState.IN_PROGRESS.symbol();
return FontAwesome5IconType.lock_open_s.cssClassName();
}
}
Expand Down Expand Up @@ -178,10 +208,26 @@ private void actionFinishDocumentDialogSubmitted(AjaxRequestTarget aTarget,

private void actionToggleDocumentState(AjaxRequestTarget aTarget)
{
// state instead
AnnotatorState state = page.getModelObject();
SourceDocument document = state.getDocument();
var annDoc = documentService.getAnnotationDocument(document, state.getUser());

// Curation sidebar: when writing to the curation document, we need to update the docuement
if (state.getUser().getUsername().equals(CURATION_USER)) {
switch (document.getState()) {
case CURATION_FINISHED:
documentService.setSourceDocumentState(document, CURATION_IN_PROGRESS);
aTarget.add(page);
break;
default:
documentService.setSourceDocumentState(document, CURATION_FINISHED);
aTarget.add(page);
break;
}
return;
}

var annDoc = documentService.getAnnotationDocument(document, state.getUser());
if (annDoc.getAnnotatorState() != annDoc.getState()) {
error("Annotation state has been overridden by a project manager or curator. "
+ "You cannot change it.");
Expand All @@ -194,25 +240,13 @@ private void actionToggleDocumentState(AjaxRequestTarget aTarget)
var annState = annDoc.getAnnotatorState();
switch (annState) {
case IN_PROGRESS:
// curation sidebar: need to update source doc state as well to finished
if (state.getUser().getUsername().equals(CURATION_USER)) {
documentService.setSourceDocumentState(document, CURATION_FINISHED);
}
else {
documentService.setAnnotationDocumentState(annDoc, FINISHED,
EXPLICIT_ANNOTATOR_USER_ACTION);
}
documentService.setAnnotationDocumentState(annDoc, FINISHED,
EXPLICIT_ANNOTATOR_USER_ACTION);
aTarget.add(page);
break;
case FINISHED:
// curation sidebar: need to update source doc state as well to finished
if (state.getUser().getUsername().equals(CURATION_USER)) {
documentService.setSourceDocumentState(document, CURATION_IN_PROGRESS);
}
else {
documentService.setAnnotationDocumentState(annDoc, IN_PROGRESS,
EXPLICIT_ANNOTATOR_USER_ACTION);
}
documentService.setAnnotationDocumentState(annDoc, IN_PROGRESS,
EXPLICIT_ANNOTATOR_USER_ACTION);
aTarget.add(page);
break;
default:
Expand Down