/* * Copyright 2013 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.android.apps.mytracks.io.drive; import com.google.android.apps.mytracks.io.fusiontables.SendFusionTablesActivity; import com.google.android.apps.mytracks.io.maps.SendMapsActivity; import com.google.android.apps.mytracks.io.sendtogoogle.AbstractSendActivity; import com.google.android.apps.mytracks.io.sendtogoogle.AbstractSendAsyncTask; import com.google.android.apps.mytracks.io.sendtogoogle.SendRequest; import com.google.android.apps.mytracks.io.sendtogoogle.UploadResultActivity; import com.google.android.apps.mytracks.io.spreadsheets.SendSpreadsheetsActivity; import com.google.android.apps.mytracks.util.IntentUtils; import com.google.android.maps.mytracks.R; import android.content.Intent; /** * An activity to send a track to Google Drive. * * @author Jimmy Shih */ public class SendDriveActivity extends AbstractSendActivity { @Override protected AbstractSendAsyncTask createAsyncTask() { return new SendDriveAsyncTask(this, sendRequest.getTrackId(), sendRequest.getAccount(), sendRequest.getDriveShareEmails(), sendRequest.isDriveSharePublic()); } @Override protected String getServiceName() { return getString(R.string.export_google_drive); } @Override protected void startNextActivity(boolean success, boolean isCancel) { sendRequest.setDriveSuccess(success); Class<?> next = getNextClass(isCancel); Intent intent = IntentUtils.newIntent(this, next) .putExtra(SendRequest.SEND_REQUEST_KEY, sendRequest); startActivity(intent); finish(); } private Class<?> getNextClass(boolean isCancel) { if (isCancel) { return UploadResultActivity.class; } else { if (sendRequest.isSendMaps()) { return SendMapsActivity.class; } else if (sendRequest.isSendFusionTables()) { return SendFusionTablesActivity.class; } else if (sendRequest.isSendSpreadsheets()) { return SendSpreadsheetsActivity.class; } else { return UploadResultActivity.class; } } } }