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

com.google.firebase.iid.FirebaseInstanceId Maven / Gradle / Ivy

Go to download

This is the official Firebase Admin Java SDK. Build extraordinary native JVM apps in minutes with Firebase. The Firebase platform can power your app’s backend, user authentication, static hosting, and more.

There is a newer version: 9.3.0
Show newest version
/*
 * Copyright 2017 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.firebase.iid;

import static com.google.common.base.Preconditions.checkArgument;

import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpRequestFactory;
import com.google.api.client.http.HttpResponse;
import com.google.api.client.http.HttpResponseException;
import com.google.api.client.http.HttpResponseInterceptor;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.JsonObjectParser;
import com.google.api.core.ApiFuture;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableMap;
import com.google.common.io.ByteStreams;
import com.google.firebase.FirebaseApp;
import com.google.firebase.ImplFirebaseTrampolines;
import com.google.firebase.internal.CallableOperation;
import com.google.firebase.internal.FirebaseRequestInitializer;
import com.google.firebase.internal.FirebaseService;
import com.google.firebase.internal.NonNull;

import java.io.IOException;
import java.util.Map;

/**
 * This class is the entry point for all server-side Firebase Instance ID actions.
 *
 * 

Enables deleting instance IDs associated with Firebase projects. */ public class FirebaseInstanceId { private static final String IID_SERVICE_URL = "https://console.firebase.google.com/v1"; private static final Map ERROR_CODES = ImmutableMap.builder() .put(400, "Malformed instance ID argument.") .put(401, "Request not authorized.") .put(403, "Project does not match instance ID or the client does not" + " have sufficient privileges.") .put(404, "Failed to find the instance ID.") .put(409, "Already deleted.") .put(429, "Request throttled out by the backend server.") .put(500, "Internal server error.") .put(503, "Backend servers are over capacity. Try again later.") .build(); private final FirebaseApp app; private final HttpRequestFactory requestFactory; private final JsonFactory jsonFactory; private final String projectId; private HttpResponseInterceptor interceptor; private FirebaseInstanceId(FirebaseApp app) { HttpTransport httpTransport = app.getOptions().getHttpTransport(); this.app = app; this.requestFactory = httpTransport.createRequestFactory(new FirebaseRequestInitializer(app)); this.jsonFactory = app.getOptions().getJsonFactory(); this.projectId = ImplFirebaseTrampolines.getProjectId(app); checkArgument(!Strings.isNullOrEmpty(projectId), "Project ID is required to access instance ID service. Use a service account credential or " + "set the project ID explicitly via FirebaseOptions. Alternatively you can also " + "set the project ID via the GCLOUD_PROJECT environment variable."); } /** * Gets the {@link FirebaseInstanceId} instance for the default {@link FirebaseApp}. * * @return The {@link FirebaseInstanceId} instance for the default {@link FirebaseApp}. */ public static FirebaseInstanceId getInstance() { return getInstance(FirebaseApp.getInstance()); } /** * Gets the {@link FirebaseInstanceId} instance for the specified {@link FirebaseApp}. * * @return The {@link FirebaseInstanceId} instance for the specified {@link FirebaseApp}. */ public static synchronized FirebaseInstanceId getInstance(FirebaseApp app) { FirebaseInstanceIdService service = ImplFirebaseTrampolines.getService(app, SERVICE_ID, FirebaseInstanceIdService.class); if (service == null) { service = ImplFirebaseTrampolines.addService(app, new FirebaseInstanceIdService(app)); } return service.getInstance(); } @VisibleForTesting void setInterceptor(HttpResponseInterceptor interceptor) { this.interceptor = interceptor; } /** * Deletes the specified instance ID from Firebase. * *

This can be used to delete an instance ID and associated user data from a Firebase project, * pursuant to the General Data Protection Regulation (GDPR). * * @param instanceId A non-null, non-empty instance ID string. * @throws IllegalArgumentException If the instance ID is null or empty. * @throws FirebaseInstanceIdException If an error occurs while deleting the instance ID. */ public void deleteInstanceId(@NonNull String instanceId) throws FirebaseInstanceIdException { deleteInstanceIdOp(instanceId).call(); } /** * Similar to {@link #deleteInstanceId(String)} but performs the operation asynchronously. * * @param instanceId A non-null, non-empty instance ID string. * @return An {@code ApiFuture} which will complete successfully when the instance ID is deleted, * or unsuccessfully with the failure Exception. * @throws IllegalArgumentException If the instance ID is null or empty. */ public ApiFuture deleteInstanceIdAsync(@NonNull String instanceId) { return deleteInstanceIdOp(instanceId).callAsync(app); } private CallableOperation deleteInstanceIdOp( final String instanceId) { checkArgument(!Strings.isNullOrEmpty(instanceId), "instance ID must not be null or empty"); return new CallableOperation() { @Override protected Void execute() throws FirebaseInstanceIdException { String url = String.format( "%s/project/%s/instanceId/%s", IID_SERVICE_URL, projectId, instanceId); HttpResponse response = null; try { HttpRequest request = requestFactory.buildDeleteRequest(new GenericUrl(url)); request.setParser(new JsonObjectParser(jsonFactory)); request.setResponseInterceptor(interceptor); response = request.execute(); ByteStreams.exhaust(response.getContent()); } catch (Exception e) { handleError(instanceId, e); } finally { disconnectQuietly(response); } return null; } }; } private static void disconnectQuietly(HttpResponse response) { if (response != null) { try { response.disconnect(); } catch (IOException ignored) { // ignored } } } private void handleError(String instanceId, Exception e) throws FirebaseInstanceIdException { String msg = "Error while invoking instance ID service."; if (e instanceof HttpResponseException) { int statusCode = ((HttpResponseException) e).getStatusCode(); if (ERROR_CODES.containsKey(statusCode)) { msg = String.format("Instance ID \"%s\": %s", instanceId, ERROR_CODES.get(statusCode)); } } throw new FirebaseInstanceIdException(msg, e); } private static final String SERVICE_ID = FirebaseInstanceId.class.getName(); private static class FirebaseInstanceIdService extends FirebaseService { FirebaseInstanceIdService(FirebaseApp app) { super(SERVICE_ID, new FirebaseInstanceId(app)); } @Override public void destroy() { // NOTE: We don't explicitly tear down anything here, but public methods of StorageClient // will now fail because calls to getOptions() and getToken() will hit FirebaseApp, // which will throw once the app is deleted. } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy