James Moger
2011-04-16 01bd346efe98af0f05f23f897c0819d2df8d856c
src/com/gitblit/GitBlitServer.java
@@ -11,6 +11,7 @@
import java.net.URL;
import java.net.UnknownHostException;
import java.security.ProtectionDomain;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
@@ -21,7 +22,7 @@
import org.eclipse.jetty.http.security.Constraint;
import org.eclipse.jetty.security.ConstraintMapping;
import org.eclipse.jetty.security.ConstraintSecurityHandler;
import org.eclipse.jetty.security.HashLoginService;
import org.eclipse.jetty.security.LoginService;
import org.eclipse.jetty.security.authentication.BasicAuthenticator;
import org.eclipse.jetty.server.Connector;
import org.eclipse.jetty.server.Handler;
@@ -44,17 +45,15 @@
import com.beust.jcommander.Parameter;
import com.beust.jcommander.ParameterException;
import com.beust.jcommander.Parameters;
import com.gitblit.utils.StringUtils;
import com.gitblit.wicket.GitBlitWebApp;
public class GitBlitServer {
   private final static Logger logger = Log.getLogger(GitBlitServer.class.getSimpleName());
   private final static String border_star = "***********************************************************";
   private static boolean debugMode = false;
   public static boolean isDebugMode() {
      return debugMode;
   }
   private final static FileSettings fileSettings = new FileSettings();
   public static void main(String[] args) {
      Params params = new Params();
@@ -84,7 +83,7 @@
      }
      if (jc != null) {
         jc.usage();
         System.out.println("\nExample:\n  java -server -Xmx1024M -jar go-git-go.jar --repos c:\\git --port 80 --securePort 443");
         System.out.println("\nExample:\n  java -server -Xmx1024M -jar gitblit.jar --repos c:\\git --port 80 --securePort 443");
      }
      System.exit(0);
   }
@@ -111,7 +110,7 @@
    * Start Server.
    */
   private static void start(Params params) {
      PatternLayout layout = new PatternLayout(StoredSettings.getString("log4jPattern", "%-5p %d{MM-dd HH:mm:ss.SSS}  %-20.20c{1}  %m%n"));
      PatternLayout layout = new PatternLayout(fileSettings.getString(Keys.server.log4jPattern, "%-5p %d{MM-dd HH:mm:ss.SSS}  %-20.20c{1}  %m%n"));
      org.apache.log4j.Logger rootLogger = org.apache.log4j.Logger.getRootLogger();
      rootLogger.addAppender(new ConsoleAppender(layout));
@@ -123,20 +122,26 @@
      String osversion = System.getProperty("os.version");
      logger.info("Running on " + osname + " (" + osversion + ")");
      if (params.debug) {
         logger.warn("DEBUG Mode");
      }
      // Determine port connectors
      List<Connector> connectors = new ArrayList<Connector>();
      if (params.port > 0) {
         Connector httpConnector = createConnector(params.useNIO, params.port);
         String bindInterface = fileSettings.getString(Keys.server.httpBindInterface, null);
         if (!StringUtils.isEmpty(bindInterface)) {
            logger.warn(MessageFormat.format("Binding port {0} to {1}", params.port, bindInterface));
            httpConnector.setHost(bindInterface);
         }
         connectors.add(httpConnector);
      }
      if (params.securePort > 0) {
         if (new File("keystore").exists()) {
            Connector secureConnector = createSSLConnector(params.useNIO, params.securePort, params.storePassword);
            String bindInterface = fileSettings.getString(Keys.server.httpsBindInterface, null);
            if (!StringUtils.isEmpty(bindInterface)) {
               logger.warn(MessageFormat.format("Binding port {0} to {1}", params.port, bindInterface));
               secureConnector.setHost(bindInterface);
            }
            connectors.add(secureConnector);
         } else {
            logger.warn("Failed to find Keystore?  Did you run \"makekeystore\"?");
@@ -173,31 +178,35 @@
      FilterHolder wicketFilter = new FilterHolder(WicketFilter.class);
      wicketFilter.setInitParameter(ContextParamWebApplicationFactory.APP_CLASS_PARAM, GitBlitWebApp.class.getName());
      wicketFilter.setInitParameter(WicketFilter.FILTER_MAPPING_PARAM, wicketPathSpec);
      wicketFilter.setInitParameter(WicketFilter.IGNORE_PATHS_PARAM, "git/");
      rootContext.addFilter(wicketFilter, wicketPathSpec, FilterMapping.DEFAULT);
      Handler handler;
      // Git Servlet
      ServletHolder gitServlet = null;
      String gitServletPathSpec = "/git/*";
      if (StoredSettings.getBoolean("allowPushPull", true)) {
      if (fileSettings.getBoolean(Keys.git.allowPushPull, true)) {
         gitServlet = rootContext.addServlet(GitServlet.class, gitServletPathSpec);
         gitServlet.setInitParameter("base-path", params.repositoriesFolder);
         gitServlet.setInitParameter("export-all", params.exportAll ? "1" : "0");
         String realmUsers = params.realmFile;
      }
         if (realmUsers != null && new File(realmUsers).exists() && params.authenticatePushPull) {
      // Login Service
      LoginService loginService = null;
      String realmUsers = params.realmFile;
      if (realmUsers != null && new File(realmUsers).exists()) {
         logger.info("Setting up login service from " + realmUsers);
         JettyLoginService jettyLoginService = new JettyLoginService(realmUsers);
         GitBlit.self().setLoginService(jettyLoginService);
         loginService = jettyLoginService;
      }
      // Determine what handler to use
      Handler handler;
      if (gitServlet != null) {
         if (loginService != null && params.authenticatePushPull) {
            // Authenticate Pull/Push
            List<String> list = StoredSettings.getStrings("gitRoles");
            String[] roles;
            if (list.size() == 0) {
               roles = new String[] { "*" };
            } else {
               roles = list.toArray(new String[list.size()]);
            }
            String[] roles = new String[] { Constants.PULL_ROLE, Constants.PUSH_ROLE };
            logger.info("Authentication required for git servlet pull/push access");
            logger.info("Setting up realm from " + realmUsers);
            HashLoginService loginService = new HashLoginService(Constants.NAME, realmUsers);
            Constraint constraint = new Constraint();
            constraint.setName("auth");
@@ -232,6 +241,11 @@
      // Set the server's contexts
      server.setHandler(handler);
      // Setup the GitBlit context
      GitBlit gitblit = GitBlit.self();
      gitblit.setupContext(fileSettings);
      rootContext.addEventListener(gitblit);
      // Start the Server
      try {
@@ -354,46 +368,43 @@
      public Boolean stop = false;
      @Parameter(names = { "--temp" }, description = "Server temp folder")
      public String temp = StoredSettings.getString("tempFolder", "temp");
      @Parameter(names = { "--debug" }, description = "Run server in DEBUG mode")
      public Boolean debug = StoredSettings.getBoolean("debug", false);
      public String temp = fileSettings.getString(Keys.server.tempFolder, "temp");
      /*
       * GIT Servlet Parameters
       */
      @Parameter(names = { "--repos" }, description = "Git Repositories Folder")
      public String repositoriesFolder = StoredSettings.getString("repositoriesFolder", "repos");
      public String repositoriesFolder = fileSettings.getString(Keys.git.repositoriesFolder, "repos");
      @Parameter(names = { "--exportAll" }, description = "Export All Found Repositories")
      public Boolean exportAll = StoredSettings.getBoolean("exportAll", true);
      public Boolean exportAll = fileSettings.getBoolean(Keys.git.exportAll, true);
      /*
       * Authentication Parameters
       */
      @Parameter(names = { "--authenticatePushPull" }, description = "Authenticate Git Push/Pull access")
      public Boolean authenticatePushPull = StoredSettings.getBoolean("authenticatePushPull", true);
      public Boolean authenticatePushPull = fileSettings.getBoolean(Keys.git.authenticate, true);
      @Parameter(names = { "--realm" }, description = "Users Realm Hash File")
      public String realmFile = StoredSettings.getString("realmFile", "users.properties");
      public String realmFile = fileSettings.getString(Keys.server.realmFile, "users.properties");
      /*
       * JETTY Parameters
       */
      @Parameter(names = { "--nio" }, description = "Use NIO Connector else use Socket Connector.")
      public Boolean useNIO = StoredSettings.getBoolean("useNio", true);
      public Boolean useNIO = fileSettings.getBoolean(Keys.server.useNio, true);
      @Parameter(names = "--port", description = "HTTP port for to serve. (port <= 0 will disable this connector)")
      public Integer port = StoredSettings.getInteger("httpPort", 80);
      public Integer port = fileSettings.getInteger(Keys.server.httpPort, 80);
      @Parameter(names = "--securePort", description = "HTTPS port to serve.  (port <= 0 will disable this connector)")
      public Integer securePort = StoredSettings.getInteger("httpsPort", 443);
      public Integer securePort = fileSettings.getInteger(Keys.server.httpsPort, 443);
      @Parameter(names = "--storePassword", description = "Password for SSL (https) keystore.")
      public String storePassword = StoredSettings.getString("storePassword", "");
      public String storePassword = fileSettings.getString(Keys.server.storePassword, "");
      @Parameter(names = "--shutdownPort", description = "Port for Shutdown Monitor to listen on. (port <= 0 will disable this monitor)")
      public Integer shutdownPort = StoredSettings.getInteger("shutdownPort", 8081);
      public Integer shutdownPort = fileSettings.getInteger(Keys.server.shutdownPort, 8081);
   }
}