summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/URLChecker.java
blob: 13668d4a9689a3b2697df24f8ff66f182d0fd35e (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
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();
        if (url.startsWith("feed://")) {
            if (AppConfig.DEBUG) Log.d(TAG, "Replacing feed:// with http://");
            url = url.replace("feed://", "http://");
        } else if (!(url.startsWith("http://") || url.startsWith("https://"))) {
            if (AppConfig.DEBUG) Log.d(TAG, "Adding http:// at the beginning of the URL");
            builder.append("http://");
        }
        builder.append(url);

        return builder.toString();
    }
}