summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/sync/stage/FetchInfoConfigurationStage.java
blob: 7f53c273914d7f2bfbf3ea64a5471ef3d1227e1c (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.sync.stage;

import org.mozilla.gecko.sync.ExtendedJSONObject;
import org.mozilla.gecko.sync.InfoConfiguration;
import org.mozilla.gecko.sync.JSONRecordFetcher;
import org.mozilla.gecko.sync.delegates.JSONRecordFetchDelegate;
import org.mozilla.gecko.sync.net.AuthHeaderProvider;
import org.mozilla.gecko.sync.net.SyncStorageResponse;

/**
 * Fetches configuration data from info/configurations endpoint.
 */
public class FetchInfoConfigurationStage extends AbstractNonRepositorySyncStage {
    private final String configurationURL;
    private final AuthHeaderProvider authHeaderProvider;

    public FetchInfoConfigurationStage(final String configurationURL, final AuthHeaderProvider authHeaderProvider) {
        super();
        this.configurationURL = configurationURL;
        this.authHeaderProvider = authHeaderProvider;
    }

    public class StageInfoConfigurationDelegate implements JSONRecordFetchDelegate {
        @Override
        public void handleSuccess(final ExtendedJSONObject result) {
            session.config.infoConfiguration = new InfoConfiguration(result);
            session.advance();
        }

        @Override
        public void handleFailure(final SyncStorageResponse response) {
            // Handle all non-404 failures upstream.
            if (response.getStatusCode() != 404) {
                session.handleHTTPError(response, "Failure fetching info/configuration");
                return;
            }

            // End-point might not be available (404) if server is running an older version.
            // We will use default config values in this case.
            session.config.infoConfiguration = new InfoConfiguration();
            session.advance();
        }

        @Override
        public void handleError(final Exception e) {
            session.abort(e, "Failure fetching info/configuration");
        }
    }
    @Override
    public void execute() {
        final StageInfoConfigurationDelegate delegate = new StageInfoConfigurationDelegate();
        final JSONRecordFetcher fetcher = new JSONRecordFetcher(configurationURL, authHeaderProvider);
        fetcher.fetch(delegate);
    }
}