summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/models
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-05-07 00:49:37 -0400
committerJames Moger <james.moger@gitblit.com>2013-05-07 00:49:37 -0400
commitffbf03175ba1154ba5984d7c473cf1ac4130c043 (patch)
tree623acd84fbdebf84deb93d9349f6b0e22f8a76c4 /src/main/java/com/gitblit/models
parente0dc80dcd0d17262782bec349419713a82ebadc5 (diff)
downloadgitblit-ffbf03175ba1154ba5984d7c473cf1ac4130c043.tar.gz
gitblit-ffbf03175ba1154ba5984d7c473cf1ac4130c043.zip
Uber-cool repository panel overhaul
Diffstat (limited to 'src/main/java/com/gitblit/models')
-rw-r--r--src/main/java/com/gitblit/models/GitClientApplication.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/main/java/com/gitblit/models/GitClientApplication.java b/src/main/java/com/gitblit/models/GitClientApplication.java
new file mode 100644
index 00000000..dbdfa395
--- /dev/null
+++ b/src/main/java/com/gitblit/models/GitClientApplication.java
@@ -0,0 +1,58 @@
+/*
+ * Copyright 2013 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 com.gitblit.utils.ArrayUtils;
+import com.gitblit.utils.StringUtils;
+
+/**
+ * Model class to represent a git client application.
+ *
+ * @author James Moger
+ *
+ */
+public class GitClientApplication implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ public String name;
+ public String cloneUrl;
+ public String command;
+ public String productUrl;
+ public String attribution;
+ public boolean isApplication = true;
+ public boolean isActive = true;
+ public String[] platforms;
+
+ public boolean allowsPlatform(String p) {
+ if (ArrayUtils.isEmpty(platforms)) {
+ // all platforms
+ return true;
+ }
+ if (StringUtils.isEmpty(p)) {
+ return false;
+ }
+ String plc = p.toLowerCase();
+ for (String platform : platforms) {
+ if (plc.contains(platform)) {
+ return true;
+ }
+ }
+ return false;
+ }
+} \ No newline at end of file