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

com.parse.NetworkSessionController Maven / Gradle / Ivy

Go to download

A library that gives you access to the powerful Parse cloud platform from your Android app.

There is a newer version: 1.17.3
Show newest version
/*
 * Copyright (c) 2015-present, Parse, LLC.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
package com.parse;

import org.json.JSONObject;

import bolts.Continuation;
import bolts.Task;

/** package */ class NetworkSessionController implements ParseSessionController {

  private final ParseHttpClient client;
  private final ParseObjectCoder coder;

  public NetworkSessionController(ParseHttpClient client) {
    this.client = client;
    this.coder = ParseObjectCoder.get(); // TODO(grantland): Inject
  }

  @Override
  public Task getSessionAsync(String sessionToken) {
    ParseRESTSessionCommand command =
        ParseRESTSessionCommand.getCurrentSessionCommand(sessionToken);

    return command.executeAsync(client).onSuccess(new Continuation() {
      @Override
      public ParseObject.State then(Task task) throws Exception {
        JSONObject result = task.getResult();
        return coder.decode(new ParseObject.State.Builder("_Session"), result, ParseDecoder.get())
            .isComplete(true)
            .build();
      }
    });
  }

  @Override
  public Task revokeAsync(String sessionToken) {
    return ParseRESTSessionCommand.revoke(sessionToken)
        .executeAsync(client)
        .makeVoid();
  }

  @Override
  public Task upgradeToRevocable(String sessionToken) {
    ParseRESTSessionCommand command =
        ParseRESTSessionCommand.upgradeToRevocableSessionCommand(sessionToken);
    return command.executeAsync(client).onSuccess(new Continuation() {
      @Override
      public ParseObject.State then(Task task) throws Exception {
        JSONObject result = task.getResult();
        return coder.decode(new ParseObject.State.Builder("_Session"), result, ParseDecoder.get())
            .isComplete(true)
            .build();
      }
    });
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy