All Downloads are FREE. Search and download functionalities are using the official Maven repository.

by.stub.utils.ConsoleUtils Maven / Gradle / Ivy

/*
HTTP stub server written in Java with embedded Jetty

Copyright (C) 2012 Alexander Zagniotov, Isa Goksu and Eric Mrak

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see .
 */

package by.stub.utils;

import by.stub.cli.ANSITerminal;
import org.eclipse.jetty.http.HttpStatus;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Calendar;
import java.util.Enumeration;
import java.util.List;
import java.util.Locale;

/**
 * @author Alexander Zagniotov
 * @since 10/26/12, 1:00 PM
 */
public final class ConsoleUtils {

   private static boolean debug = false;

   private ConsoleUtils() {

   }

   public static void logIncomingRequestError(final HttpServletRequest request, final String source, final String error) {

      final String logMessage = String.format("[%s] -> %s [%s]%s: %s",
         getTime(),
         request.getMethod(),
         source,
         request.getRequestURI(),
         error
      );
      ANSITerminal.error(logMessage);
   }

   public static void logRawIncomingRequest(final HttpServletRequest request) {
      ANSITerminal.info(HttpRequestUtils.dump(request));
   }

   public static void logIncomingRequest(final HttpServletRequest request) {

      final String logMessage = String.format("[%s] -> %s [%s]",
         getTime(),
         request.getMethod(),
         request.getRequestURI()
      );
      ANSITerminal.incoming(logMessage);

      if (debug) {
         ConsoleUtils.logRawIncomingRequest(request);
      }
   }

   public static void logOutgoingResponse(final String url, final HttpServletResponse response) {

      final int status = response.getStatus();

      final String logMessage = String.format("[%s] <- %s [%s] %s",
         getTime(),
         status,
         url,
         HttpStatus.getMessage(status)
      );

      if (status >= HttpStatus.BAD_REQUEST_400) {
         ANSITerminal.error(logMessage);
      } else if (status >= HttpStatus.MULTIPLE_CHOICES_300) {
         ANSITerminal.warn(logMessage);
      } else if (status >= HttpStatus.OK_200) {
         ANSITerminal.ok(logMessage);
      } else if (status >= HttpStatus.CONTINUE_100) {
         ANSITerminal.info(logMessage);
      } else {
         ANSITerminal.log(logMessage);
      }
   }

   public static void logUnmarshalledStubRequest(final List methods, final String url) {
      final String loadedMsg = String.format("Loaded: %s %s", methods, url);

      ANSITerminal.loaded(loadedMsg);
   }

   public static String getTime() {
      final Calendar now = Calendar.getInstance(Locale.US);
      return String.format("%02d:%02d:%02d",
         now.get(Calendar.HOUR_OF_DAY),
         now.get(Calendar.MINUTE),
         now.get(Calendar.SECOND)
      );
   }

   /**
    * Enables verbose console output
    *
    * @param isDebug if true, the incoming raw HTTP request will be dumped to console
    */
   public static void enableDebug(final boolean isDebug) {
      debug = isDebug;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy