diff options
author | James Moger <james.moger@gitblit.com> | 2011-10-02 16:56:34 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-10-02 16:56:34 -0400 |
commit | 19c634873b49dea8b49fc54ca393153f7eb0eb35 (patch) | |
tree | fe7b66507bf39f2c52f5e0fb563b60d04fd07bb0 /src/com/gitblit/client/GitblitClient.java | |
parent | 72633de4757587d7629dc42b41b8923c7c3d675f (diff) | |
download | gitblit-19c634873b49dea8b49fc54ca393153f7eb0eb35.tar.gz gitblit-19c634873b49dea8b49fc54ca393153f7eb0eb35.zip |
Skeleton Gitblit Client app using the json rpc api.
Diffstat (limited to 'src/com/gitblit/client/GitblitClient.java')
-rw-r--r-- | src/com/gitblit/client/GitblitClient.java | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/src/com/gitblit/client/GitblitClient.java b/src/com/gitblit/client/GitblitClient.java new file mode 100644 index 00000000..d10cedeb --- /dev/null +++ b/src/com/gitblit/client/GitblitClient.java @@ -0,0 +1,103 @@ +/*
+ * 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.client;
+
+import java.awt.BorderLayout;
+import java.awt.EventQueue;
+import java.awt.Menu;
+import java.awt.MenuBar;
+import java.awt.MenuItem;
+import java.awt.MenuShortcut;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.KeyEvent;
+import java.io.IOException;
+
+import javax.swing.JFrame;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.JTabbedPane;
+
+import com.gitblit.Constants;
+import com.gitblit.utils.StringUtils;
+
+public class GitblitClient extends JFrame {
+
+ private static final long serialVersionUID = 1L;
+ private JTabbedPane serverTabs;
+
+ private GitblitClient() {
+ super();
+ }
+
+ private void initialize() {
+ setupMenu();
+ setContentPane(getCenterPanel());
+
+ setTitle("Gitblit Client v" + Constants.VERSION + " (" + Constants.VERSION_DATE + ")");
+ setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+ setSize(800, 600);
+ setLocationRelativeTo(null);
+ }
+
+ private void setupMenu() {
+ MenuBar menuBar = new MenuBar();
+ setMenuBar(menuBar);
+ Menu serversMenu = new Menu("Servers");
+ menuBar.add(serversMenu);
+ MenuItem login = new MenuItem("Login...", new MenuShortcut(KeyEvent.VK_L, false));
+ login.addActionListener(new ActionListener() {
+ public void actionPerformed(ActionEvent event) {
+ String url = JOptionPane.showInputDialog(GitblitClient.this,
+ "Please enter Gitblit server URL", "https://localhost:8443");
+ if (StringUtils.isEmpty(url)) {
+ return;
+ }
+ login(url, "admin", "admin".toCharArray());
+ }
+ });
+ serversMenu.add(login);
+ }
+
+ private JPanel getCenterPanel() {
+ serverTabs = new JTabbedPane(JTabbedPane.TOP);
+ JPanel panel = new JPanel(new BorderLayout());
+ panel.add(serverTabs, BorderLayout.CENTER);
+ return panel;
+ }
+
+ private void login(String url, String account, char[] password) {
+ try {
+ GitblitPanel panel = new GitblitPanel(url, account, password);
+ panel.login();
+ serverTabs.addTab(url.substring(url.indexOf("//") + 2), panel);
+ serverTabs.setSelectedIndex(serverTabs.getTabCount() - 1);
+ } catch (IOException e) {
+ JOptionPane.showMessageDialog(GitblitClient.this, e.getMessage(), "Error",
+ JOptionPane.ERROR_MESSAGE);
+ }
+ }
+
+ public static void main(String[] args) {
+ EventQueue.invokeLater(new Runnable() {
+ public void run() {
+ GitblitClient frame = new GitblitClient();
+ frame.initialize();
+ frame.setVisible(true);
+ }
+ });
+ }
+}
|