62 lines
2.2 KiB
Java
62 lines
2.2 KiB
Java
/*
|
|
* Nextcloud Maps Geofavorites for Android
|
|
*
|
|
* @copyright Copyright (c) 2020 John Doe <john@doe.com>
|
|
* @author John Doe <john@doe.com>
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
package it.danieleverducci.nextcloudmaps.api;
|
|
|
|
import android.content.Context;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.google.gson.GsonBuilder;
|
|
import com.nextcloud.android.sso.api.NextcloudAPI;
|
|
import com.nextcloud.android.sso.exceptions.NextcloudFilesAppAccountNotFoundException;
|
|
import com.nextcloud.android.sso.exceptions.NoCurrentAccountSelectedException;
|
|
import com.nextcloud.android.sso.helper.SingleAccountHelper;
|
|
import com.nextcloud.android.sso.model.SingleSignOnAccount;
|
|
|
|
import retrofit2.NextcloudRetrofitApiBuilder;
|
|
|
|
public class ApiProvider {
|
|
private static final String TAG = ApiProvider.class.getCanonicalName();
|
|
|
|
protected static API mApi;
|
|
|
|
@Nullable
|
|
public static API getAPI(Context context) {
|
|
if (mApi == null) {
|
|
try {
|
|
SingleSignOnAccount ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(context);
|
|
NextcloudAPI nextcloudAPI = new NextcloudAPI(context, ssoAccount, new GsonBuilder().create());
|
|
|
|
mApi = new NextcloudRetrofitApiBuilder(nextcloudAPI, API.mApiEndpoint).create(API.class);
|
|
} catch (NextcloudFilesAppAccountNotFoundException | NoCurrentAccountSelectedException e) {
|
|
Log.d(TAG, "setAccout() called with: ex = [" + e + "]");
|
|
}
|
|
}
|
|
|
|
return mApi;
|
|
}
|
|
|
|
public static void logout() {
|
|
mApi = null;
|
|
}
|
|
} |