summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/models/TeamModel.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2011-12-07 19:33:10 -0500
committerJames Moger <james.moger@gitblit.com>2011-12-07 19:33:10 -0500
commitfe24a0be919653d9e502f7729d9a804f2e28435d (patch)
treea63d2b07ce300843ae061d435c8891e8e5a930dc /src/com/gitblit/models/TeamModel.java
parent7e8873a14ccc2cb25213489d7d7ba97f09673831 (diff)
downloadgitblit-fe24a0be919653d9e502f7729d9a804f2e28435d.tar.gz
gitblit-fe24a0be919653d9e502f7729d9a804f2e28435d.zip
Teams support.
Teams simplify the management of user-repository access permissions. Teams have a list of restricted repositories. Users are also added to teams and that grants them access to those repositories. Federation and RPC support are still in-progress.
Diffstat (limited to 'src/com/gitblit/models/TeamModel.java')
-rw-r--r--src/com/gitblit/models/TeamModel.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/com/gitblit/models/TeamModel.java b/src/com/gitblit/models/TeamModel.java
new file mode 100644
index 00000000..195b9d5c
--- /dev/null
+++ b/src/com/gitblit/models/TeamModel.java
@@ -0,0 +1,88 @@
+/*
+ * Copyright 2011 gitblit.com.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.gitblit.models;
+
+import java.io.Serializable;
+import java.util.Collection;
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * TeamModel is a serializable model class that represents a group of users and
+ * a list of accessible repositories.
+ *
+ * @author James Moger
+ *
+ */
+public class TeamModel implements Serializable, Comparable<TeamModel> {
+
+ private static final long serialVersionUID = 1L;
+
+ // field names are reflectively mapped in EditTeam page
+ public String name;
+ public final Set<String> users = new HashSet<String>();
+ public final Set<String> repositories = new HashSet<String>();
+
+ public TeamModel(String name) {
+ this.name = name;
+ }
+
+ public boolean hasRepository(String name) {
+ return repositories.contains(name.toLowerCase());
+ }
+
+ public void addRepository(String name) {
+ repositories.add(name.toLowerCase());
+ }
+
+ public void addRepositories(Collection<String> names) {
+ for (String name:names) {
+ repositories.add(name.toLowerCase());
+ }
+ }
+
+ public void removeRepository(String name) {
+ repositories.remove(name.toLowerCase());
+ }
+
+ public boolean hasUser(String name) {
+ return users.contains(name.toLowerCase());
+ }
+
+ public void addUser(String name) {
+ users.add(name.toLowerCase());
+ }
+
+ public void addUsers(Collection<String> names) {
+ for (String name:names) {
+ users.add(name.toLowerCase());
+ }
+ }
+
+ public void removeUser(String name) {
+ users.remove(name.toLowerCase());
+ }
+
+ @Override
+ public String toString() {
+ return name;
+ }
+
+ @Override
+ public int compareTo(TeamModel o) {
+ return name.compareTo(o.name);
+ }
+}