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

com.darwinsys.tools.KwikLinkChecker Maven / Gradle / Ivy

package com.darwinsys.tools;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.ConnectException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.SocketException;
import java.net.URL;
import java.net.UnknownHostException;

/**
 * A very minimal link checker; checks one or more links from command line, carefully but not recursively.
 * Typical usage: java -cp darwinsys-api.jar com.darwinsys.net.KwikLinkChecker file...
 * @author Ian Darwin
 */
public class KwikLinkChecker {
	
	static boolean verbose;

	public static void main(String[] args) {
		KwikLinkChecker checker = new KwikLinkChecker();
		for (String arg : args) {
			if (arg.equals("-v")) {
				verbose = true;
				continue;
			}
			if (arg.startsWith("-")) {
				System.out.println("Invalid argument: " + arg);
				continue;
			}
			LinkStatus stat = checker.check(arg);
			if (verbose || !stat.ok)
				System.out.println(stat.message);
		}
	}
	
	// BEGIN main
	/**
	 * Check one HTTP link; not recursive. Returns a LinkStatus with
	 * boolean success, and the filename or an error message in the
	 * message part of the LinkStatus.  The end of this method is one of
	 * the few places where a whole raft of different "catch" clauses is
	 * actually needed for the intent of the program.
	 * @param urlString the link to check
	 * @return the link's status
	 */
	public LinkStatus check(String urlString) {
		URL url;
		HttpURLConnection conn = null;
		HttpURLConnection.setFollowRedirects(false);
		try {
			url = new URL(urlString);
			conn = (HttpURLConnection) url.openConnection();
			switch (conn.getResponseCode()) {
			case 200:
				return new LinkStatus(true, urlString);
			case 403:
				return new LinkStatus(false,"403: " + urlString );
			case 404:
				return new LinkStatus(false,"404: " + urlString );
			}
			conn.getInputStream();
			return new LinkStatus(true, urlString);
		} catch (IllegalArgumentException | MalformedURLException e) {
			// Oracle JDK throws IAE if host can't be determined from URL string
			return new LinkStatus(false, "Malformed URL: " + urlString);
		} catch (UnknownHostException e) {
			return new LinkStatus(false, "Host invalid/dead: " + urlString);
		} catch (FileNotFoundException e) {
			return new LinkStatus(false,"NOT FOUND (404) " + urlString);
		} catch (ConnectException e) {
			return new LinkStatus(false, "Server not listening: " + urlString);
		} catch (SocketException e) {
			return new LinkStatus(false, e + ": " + urlString);
		} catch (IOException e) {
			return new LinkStatus(false, e.toString()); // includes failing URL
		} catch (Exception e) {
			return new LinkStatus(false, urlString + ": " + e);
		} finally {
			if (conn != null) {
				conn.disconnect();
			}
		}
	}
	// END main
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy