Project

General

Profile

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

    
12
import org.eclipse.core.commands.AbstractHandler;
13
import org.eclipse.core.commands.ExecutionEvent;
14
import org.eclipse.core.commands.ExecutionException;
15
import org.eclipse.jface.dialogs.MessageDialog;
16
import org.eclipse.jface.viewers.ISelection;
17
import org.eclipse.jface.viewers.IStructuredSelection;
18
import org.eclipse.ui.IEditorInput;
19
import org.eclipse.ui.IEditorPart;
20
import org.eclipse.ui.handlers.HandlerUtil;
21
import org.eclipse.ui.texteditor.IDocumentProvider;
22

    
23
import eu.etaxonomy.cdm.api.service.IAgentService;
24
import eu.etaxonomy.cdm.api.service.UpdateResult;
25
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
26
import eu.etaxonomy.cdm.model.agent.Person;
27
import eu.etaxonomy.cdm.model.agent.Team;
28
import eu.etaxonomy.cdm.strategy.merge.MergeException;
29
import eu.etaxonomy.taxeditor.annotatedlineeditor.IEntityPersistenceService;
30
import eu.etaxonomy.taxeditor.annotatedlineeditor.LineAnnotation;
31
import eu.etaxonomy.taxeditor.annotatedlineeditor.LineAnnotationModel;
32
import eu.etaxonomy.taxeditor.bulkeditor.BulkEditor;
33
import eu.etaxonomy.taxeditor.bulkeditor.internal.TaxeditorBulkeditorPlugin;
34
import eu.etaxonomy.taxeditor.model.MessagingUtils;
35
import eu.etaxonomy.taxeditor.store.CdmStore;
36

    
37
/**
38
 * @author k.luther
39
 * @date 12.05.2015
40
 *
41
 */
42
public class ConvertPerson2TeamHandler extends AbstractHandler {
43

    
44
	/**
45
	 * {@inheritDoc}
46
	 */
47
	@Override
48
	public Object execute(ExecutionEvent event) throws ExecutionException {
49
		ISelection selection = HandlerUtil.getCurrentSelection(event);
50

    
51
		IEditorPart editor = HandlerUtil.getActiveEditor(event);
52

    
53
		IEditorInput input = editor.getEditorInput();
54
		if (editor.isDirty()){
55
			boolean proceed = MessageDialog.openQuestion(null,
56
					"Save changes", "You have made changes that must be saved before this query can be executed. Would you like to proceed?");
57
			if (proceed) {
58
				editor.doSave(null);
59
			} else {
60
				return null;
61
			}
62
		}
63
		if((input instanceof IEntityPersistenceService) && (selection instanceof IStructuredSelection)){
64

    
65

    
66
			IDocumentProvider provider = ((BulkEditor) editor).getDocumentProvider();
67
			LineAnnotationModel model =
68
					(LineAnnotationModel) provider.getAnnotationModel(input);
69

    
70

    
71
			IStructuredSelection structuredSelection = (IStructuredSelection) selection;
72

    
73
			IEntityPersistenceService persistenceService = (IEntityPersistenceService) input;
74

    
75
			Team team ;
76
			for(Object object : structuredSelection.toList()){
77
				LineAnnotation annotation = (LineAnnotation) model.getAnnotation(object);
78
				UpdateResult result = null;
79
				team  = null;
80
				if (object instanceof Person){
81
					Person person = HibernateProxyHelper.deproxy(object, Person.class);
82
					try {
83
					    result = CdmStore.getService(IAgentService.class).convertPerson2Team(person.getUuid());
84
					} catch (IllegalArgumentException e) {
85
						MessagingUtils.errorDialog("Can not convert Person into a Team", null, e.getLocalizedMessage(), TaxeditorBulkeditorPlugin.PLUGIN_ID,e, true);
86
					} catch (MergeException e) {
87
						MessagingUtils.informationDialog("Convert not possible", "Person can not be transformed into team as it is already part of a team.");
88
					}
89
				}else{
90
					MessagingUtils.informationDialog("Can not convert Person into a Team", "convert Person to Team can only be called on a person.");
91
				}
92
				if (result != null &&result.isOk()){
93
				    team = (Team)result.getCdmEntity();
94
				}
95
				if (team != null){
96
					((BulkEditor) editor).removeAnnotatedLine(annotation);
97
					((BulkEditor) editor).createAnnotatedLine(team);
98
				}
99
			}
100
		}
101
		return null;
102
	}
103

    
104
}
(1-1/9)