summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/URLChecker.java
blob: 6d9b8ff03fe8376871afa878f3900cb1599b1705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package de.danoeh.antennapod.util;

import android.util.Log;
import de.danoeh.antennapod.AppConfig;

/** Provides methods for checking and editing a URL.*/
public final class URLChecker {

    /**Class shall not be instantiated.*/
    private URLChecker() {
    }

    /**Logging tag.*/
    private static final String TAG = "URLChecker";

    /** Checks if URL is valid and modifies it if necessary.
     *  @param url The url which is going to be prepared
     *  @return The prepared url
     * */
    public static String prepareURL(String url) {
        StringBuilder builder = new StringBuilder();
        url = url.trim();
        if (!url.startsWith("http")) {
            builder.append("http://");
            if (AppConfig.DEBUG) Log.d(TAG, "Missing http; appending");
        } else if (url.startsWith("https")) {
        	if (AppConfig.DEBUG) Log.d(TAG, "Replacing https with http");
        	url = url.replaceFirst("https", "http");
        }
        builder.append(url);

        return builder.toString();
    }
}