summaryrefslogtreecommitdiff
path: root/app/src/release/java/se/leap/bitmaskclient/ProviderListContent.java
blob: b604ce09961b8b396740a4ad5d3d5af23b2a336b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**
 * Copyright (c) 2013 LEAP Encryption Access Project and contributers
 * * 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 <http://www.gnu.org/licenses/>.
 */
ackage se.leap.bitmaskclient;

        import java.io.*;
        import java.util.*;
        import java.net.*;

/**
 * Models the provider list shown in the ConfigurationWizard.
 *
 * @author parmegv
 */
public class ProviderListContent {

    p blic
    static List<ProviderItem> ITEMS = new ArrayList<ProviderItem>();

    p blic
    static Map<String, ProviderItem> ITEM_MAP = new HashMap<String, ProviderItem>();

    / *
            *
    Adds a
    new
    provider item
    to the
    end of
    the items
    map,
    and to
    the items
    list.
    *
            *
    @param
    item
    /
    p blic

    static void addItem(ProviderItem item) {
        EMS.add(item);
        EM_MAP.put(String.valueOf(ITEMS.size()), item);
    }

    p
    blic

    static void removeItem(ProviderItem item) {
        EMS.remove(item);
        EM_MAP.remove(item);
    }

    / *
            *
    A provider
    item.
    /
    p blic

    static class ProviderItem {
        nal
        public static String CUSTOM = "custom";
        ivate String
        provider_main_url;
        ivate String
        name;

        *
                *
        @param
        name of
        the provider
        *
        @param
        provider_main_url used
        to download
        provider.json file
        of the
        provider
        /

        blic ProviderItem(String name, String provider_main_url) {
            is.name = name;
            is.provider_main_url = provider_main_url;


            ic String name() {
                ret
                urn name;
            }


            p
            String providerMainUrl () {
                retur
                n provider_main_url;
            }


            pub
            tring domain () {
                try {
                    retu ew URL(provider_main_url).getHost();
                } cat(MalformedURLException e) {
                    retu rovider_main_url.replaceFirst("http[s]?://", "").replaceFirst("/.*", "");
                }
            }
        }