Project

General

Profile

Download (3.12 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2015 EDIT
3
 * European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 *
6
 * The contents of this file are subject to the Mozilla Public License Version 1.1
7
 * See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9
package eu.etaxonomy.taxeditor.bulkeditor.e4.handler;
10

    
11
import javax.inject.Named;
12

    
13
import org.eclipse.core.runtime.NullProgressMonitor;
14
import org.eclipse.e4.core.di.annotations.CanExecute;
15
import org.eclipse.e4.core.di.annotations.Execute;
16
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
17
import org.eclipse.e4.ui.model.application.ui.menu.MHandledMenuItem;
18
import org.eclipse.e4.ui.services.IServiceConstants;
19
import org.eclipse.jface.dialogs.MessageDialog;
20

    
21
import eu.etaxonomy.cdm.api.service.IAgentService;
22
import eu.etaxonomy.cdm.api.service.UpdateResult;
23
import eu.etaxonomy.cdm.model.agent.Person;
24
import eu.etaxonomy.cdm.model.agent.Team;
25
import eu.etaxonomy.cdm.model.common.CdmBase;
26
import eu.etaxonomy.cdm.strategy.merge.MergeException;
27
import eu.etaxonomy.taxeditor.bulkeditor.e4.BulkEditorE4;
28
import eu.etaxonomy.taxeditor.bulkeditor.internal.TaxeditorBulkeditorPlugin;
29
import eu.etaxonomy.taxeditor.model.MessagingUtils;
30
import eu.etaxonomy.taxeditor.store.CdmStore;
31

    
32
/**
33
 * @author k.luther
34
 * @date 12.05.2015
35
 *
36
 */
37
public class ConvertPerson2TeamHandlerE4 {
38

    
39

    
40
    @Execute
41
    public void execute(@Named(IServiceConstants.ACTIVE_SELECTION)CdmBase selection,
42
            @Named(IServiceConstants.ACTIVE_PART)MPart activePart) {
43

    
44
        BulkEditorE4 editor = (BulkEditorE4) activePart.getObject();
45

    
46
        if (editor.isDirty()){
47
            boolean proceed = MessageDialog.openQuestion(null,
48
                    "Save changes", "You have made changes that must be saved before this query can be executed. Would you like to proceed?");
49
            if (proceed) {
50
                editor.save(new NullProgressMonitor());
51
            } else {
52
                return;
53
            }
54
        }
55

    
56
        Team team =null;
57
        UpdateResult result = null;
58
        try {
59
            result = CdmStore.getService(IAgentService.class).convertPerson2Team(selection.getUuid());
60
        } catch (IllegalArgumentException e) {
61
            MessagingUtils.errorDialog("Can not convert Person into a Team", null, e.getLocalizedMessage(), TaxeditorBulkeditorPlugin.PLUGIN_ID,e, true);
62
        } catch (MergeException e) {
63
            MessagingUtils.informationDialog("Convert not possible", "Person can not be transformed into team as it is already part of a team.");
64
        }
65
        if (result != null &&result.isOk()){
66
            team = (Team)result.getCdmEntity();
67
        }
68
        if (team != null){
69
            editor.refresh();
70
        }
71
    }
72

    
73
    @CanExecute
74
    public boolean canExecute(@Named(IServiceConstants.ACTIVE_SELECTION)CdmBase selection,
75
            @Named(IServiceConstants.ACTIVE_PART)MPart activePart,
76
            MHandledMenuItem menuItem){
77
        boolean canExecute = false;
78
        canExecute = ((BulkEditorE4)activePart.getObject()).getEditorInput().isConvertingEnabled() && selection instanceof Person;
79
        menuItem.setVisible(canExecute);
80
        return canExecute;
81
    }
82

    
83
}
(1-1/9)