Skip to main content
summaryrefslogtreecommitdiffstats
blob: c772c8bda457b75a92e011ce2bee4872c5921ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ote.ui.define.viewers.actions;

import java.util.logging.Level;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.StructuredViewer;
import org.eclipse.osee.framework.access.AccessControlManager;
import org.eclipse.osee.framework.core.enums.PermissionEnum;
import org.eclipse.osee.framework.jdk.core.type.OseeArgumentException;
import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.UserManager;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.ui.skynet.render.PresentationType;
import org.eclipse.osee.framework.ui.skynet.render.RendererManager;
import org.eclipse.osee.ote.define.artifacts.ArtifactTestRunOperator;
import org.eclipse.osee.ote.ui.define.OteUiDefinePlugin;
import org.eclipse.osee.ote.ui.define.utilities.SelectionHelper;

/**
 * @author Roberto E. Escobar
 */
public class OpenInArtifactEditor extends AbstractActionHandler {

   public OpenInArtifactEditor(StructuredViewer viewer, String text) throws Exception {
      super(viewer, text);
   }

   public OpenInArtifactEditor(StructuredViewer viewer, String text, ImageDescriptor image) throws Exception {
      super(viewer, text, image);
   }

   @Override
   public void run() {
      try {
         ArtifactTestRunOperator operator = SelectionHelper.getInstance().getSelection(getViewer());
         if (isValidSelection(operator)) {
            Artifact artifact = operator.getTestRunArtifact();
            checkPermissions(artifact);
            RendererManager.open(artifact, PresentationType.GENERALIZED_EDIT);
         }
      } catch (Exception ex) {
         OseeLog.log(OteUiDefinePlugin.class, Level.SEVERE, "Unable to open artifact.", ex);
      }
   }

   @Override
   public void updateState() throws OseeCoreException {
      ArtifactTestRunOperator operator = SelectionHelper.getInstance().getSelection(getViewer());
      setEnabled(isValidSelection(operator));
   }

   private boolean isValidSelection(ArtifactTestRunOperator operator) throws OseeCoreException {
      return operator != null && operator.hasValidArtifact() && operator.isFromLocalWorkspace() != true;
   }

   private void checkPermissions(Artifact artifact) throws OseeCoreException {
      if (true != AccessControlManager.hasPermission(artifact, PermissionEnum.READ)) {
         throw new OseeArgumentException("The user %s does not have read access to %s",
            UserManager.getUser(), artifact);
      }
   }
}

Back to the top