Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9d9adeef7af7251734183c30f1798367e2b24412 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*******************************************************************************
 * 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.framework.access;

import java.util.Collection;
import java.util.logging.Level;
import org.eclipse.osee.framework.access.internal.AccessControlHelper;
import org.eclipse.osee.framework.access.internal.AccessControlService;
import org.eclipse.osee.framework.core.enums.PermissionEnum;
import org.eclipse.osee.framework.core.exception.OseeAuthenticationRequiredException;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.model.access.AccessDataQuery;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.UserManager;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;

/**
 * @author Jeff C. Phillips
 */

public final class AccessControlManager {

   private AccessControlManager() {
      // Hide constructor
   }

   public static AccessControlService getService() {
      AccessControlService accessService = null;
      try {
         accessService = AccessControlHelper.getAccessControlService();
      } catch (OseeCoreException ex) {
         OseeLog.log(AccessControlHelper.class, Level.SEVERE, "Acquiring Access Control Service", ex);
      }
      if (accessService == null) {
         OseeLog.log(AccessControlHelper.class, Level.SEVERE, "Access Service was null");
      }
      return accessService;
   }

   public static void clearCaches() {
      getService().clearCache();
   }

   public static void lockObjects(Collection<Artifact> objects, Artifact subject) throws OseeCoreException {
      getService().lockObjects(objects, subject);
   }

   public static void unLockObjects(Collection<Artifact> objects, Artifact subject) throws OseeCoreException, OseeAuthenticationRequiredException {
      getService().unLockObjects(objects, subject);
   }

   public static boolean hasLock(Artifact object) throws OseeCoreException {
      return getService().hasLock(object);
   }

   public static boolean canUnlockObject(Artifact object, Artifact subject) throws OseeCoreException {
      return getService().canUnlockObject(object, subject);
   }

   public static Artifact getSubjectFromLockedObject(Object object) throws OseeCoreException {
      return getService().getSubjectFromLockedObject(object);
   }

   public static boolean hasLockAccess(Artifact object) throws OseeCoreException {
      return getService().hasLockAccess(object);
   }

   public static boolean isOseeAdmin() throws OseeCoreException {
      AccessControlService service = null;
      try {
         service = AccessControlHelper.getAccessControlService();
      } catch (Exception ex) {
         // Do nothing;
      }
      return service != null ? service.isOseeAdmin() : false;
   }

   public static Collection<AccessControlData> getAccessControlList(Object object) {
      return getService().getAccessControlList(object);
   }

   public static AccessObject getAccessObject(Object object) throws OseeCoreException {
      return getService().getAccessObject(object);
   }

   public static void persistPermission(AccessControlData data, boolean isRecursionAllowed) {
      getService().persistPermission(data, isRecursionAllowed);
   }

   public static void removeAccessControlDataIf(boolean removeFromDb, AccessControlData data) throws OseeCoreException {
      getService().removeAccessControlDataIf(removeFromDb, data);
   }

   public static boolean hasPermission(Object object, PermissionEnum permission) throws OseeCoreException {
      return getService().hasPermission(object, permission);
   }

   public static void setPermission(Artifact subject, Object object, PermissionEnum permission) throws OseeCoreException {
      getService().setPermission(subject, object, permission);
   }

   public static AccessDataQuery getAccessData(Collection<?> objectsToCheck) throws OseeCoreException {
      return getService().getAccessData(UserManager.getUser(), objectsToCheck);
   }
}

Back to the top