This library allows you to use accounts as well as the network stack provided by the nextcloud files app. Therefore you as a developer don't need to worry about asking the user for credentials as well as you don't need to worry about self-signed ssl certificates, two factor authentication, save credential storage etc.
Please note that the user needs to install the nextcloud files app in order to use those features. While this might seem like a "no-go" for some developers, we still think that using this library is worth consideration as it makes the account handling much faster and safer.
- Add this library to your project
repositories {
...
maven { url "https://jitpack.io" }
}
dependencies {
implementation "com.github.nextcloud:android-SingleSignOn:0.1.2"
}
- To choose an account, include the following code in your login dialog:
private void openAccountChooser() {
try {
AccountImporter.PickNewAccount(currentFragment);
} catch (NextcloudFilesAppNotInstalledException e) {
UiExceptionManager.ShowDialogForException(getActivity(), e);
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
AccountImporter.onActivityResult(requestCode, resultCode, data, LoginDialogFragment.this, new AccountImporter.IAccountAccessGranted() {
@Override
public void accountAccessGranted(SingleSignOnAccount account) {
// As this library supports multiple accounts we created some helper methods if you only want to use one.
// The following line stores the selected account as the "default" account which can be queried by using
// the SingleAccountHelper.getCurrentSingleSignOnAccount(context) method
SingleAccountHelper.setCurrentAccount(getActivity(), account.name);
// Get the "default" account
SingleSignOnAccount ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(context);
NextcloudAPI nextcloudAPI = new NextcloudAPI(context, ssoAccount, new GsonBuilder().create(), callback);
// TODO ... (see code in section 3 and below)
}
});
NextcloudAPI.ApiConnectedListener callback = new NextcloudAPI.ApiConnectedListener() {
@Override
public void onConnected() {
// ignore this one..
}
@Override
public void onError(Exception ex) {
// TODO handle errors
}
}
}
// Complete example: https://github.com/nextcloud/news-android/blob/master/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/LoginDialogFragment.java
- How to get account information?
// If you stored the "default" account using setCurrentAccount(...) you can get the account by using the following line:
SingleSignOnAccount ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(context);
// Otherwise (for multi-account support): (you'll have to keep track of the account names yourself. Note: this has to be the name of SingleSignOnAccount.name)
AccountImporter.getSingleSignOnAccount(context, accountName);
// ssoAccount.name // Name of the account used in the android account manager
// ssoAccount.username
// ssoAccount.token
// ssoAccount.url
-
How to make a network request?
You'll notice that there is an callback parameter in the constructor of the
NextcloudAPI
.public NextcloudAPI(Context context, SingleSignOnAccount account, Gson gson, ApiConnectedListener callback) {
You can use this callback to subscribe to errors that might occur during the initialization of the API. You can start making requests to the API as soon as you instantiated the
NextcloudAPI
object. For a minimal example to get started (without retrofit) take a look at section 4.2. The callback methodonConnected
will be called once the connection to the files app is established. You can start making calls to the api before that callback is fired as the library will queue your calls until the connection is established.4.1) Using Retrofit
4.1.1) Before using this single sign on library, your interface for your retrofit API might look like this:
public interface API { @GET("user") Observable<UserInfo> user(); @POST("feeds") Call<List<Feed>> createFeed(@Body Map<String, Object> feedMap); @DELETE("feeds/{feedId}") Completable deleteFeed(@Path("feedId") long feedId); … }
You might instantiate your
API
by using something like the following code:public class ApiProvider { private API mApi; public ApiProvider() { mApi = retrofit.create(API.class); } }
4.1.2) Use Nextcloud Single Sign On:
In order to use the nextcloud network stack, you'll need to implement the interface
API
shown above and use the nextcloud network stack instead of the retrofit one.public class API_SSO implements API { private static final String mApiEndpoint = "/index.php/apps/news/api/v1-2/"; private NextcloudAPI nextcloudAPI; public API_SSO(NextcloudAPI nextcloudAPI) { this.nextcloudAPI = nextcloudAPI; } @Override public Observable<UserInfo> user() { final Type type = UserInfo.class; NextcloudRequest request = new NextcloudRequest.Builder() .setMethod("GET") .setUrl(mApiEndpoint + "user") .build(); return nextcloudAPI.performRequestObservable(type, request); } @Override public Call<List<Feed>> createFeed(Map<String, Object> feedMap) { Type feedListType = new TypeToken<List<Feed>>() {}.getType(); String body = new GsonBuilder().create().toJson(feedMap); NextcloudRequest request = new NextcloudRequest.Builder() .setMethod("POST") .setUrl(mApiEndpoint + "feeds") .setRequestBody(body) .build(); return Retrofit2Helper.WrapInCall(nextcloudAPI, request, feedListType); } @Override public Completable deleteFeed(long feedId) { final NextcloudRequest request = new NextcloudRequest.Builder() .setMethod("DELETE") .setUrl(mApiEndpoint + "feeds/" + feedId) .build(); return ReactivexHelper.WrapInCompletable(nextcloudAPI, request); } … }
Note: If you need a different mapping between your json-structure and your java-structure you might want to create a custom type adapter using
new GsonBuilder().create().registerTypeAdapter(...)
. Take a look at this example for more information.4.1.3) Use of new API using the nextcloud app network stack
public class ApiProvider { private API mApi; public ApiProvider(NextcloudAPI.ApiConnectedListener callback) { SingleSignOnAccount ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(context); NextcloudAPI nextcloudAPI = new NextcloudAPI(context, ssoAccount, new GsonBuilder().create(), callback); mApi = new API_SSO(nextcloudAPI); } }
Enjoy! If you're already using retrofit, you don't need to modify your application logic. Just exchange the API and you're good to go!
4.2) Without Retrofit
NextcloudAPI
provides a method calledperformNetworkRequest(NextcloudRequest request)
that allows you to handle the server response yourself.public class MyActivity extends AppCompatActivity { private NextcloudAPI mNextcloudAPI; @Override protected void onStart() { super.onStart(); try { SingleSignOnAccount ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(this); mNextcloudAPI = new NextcloudAPI(this, ssoAccount, new GsonBuilder().create(), apiCallback); // Start download of file in background thread (otherwise you'll get a NetworkOnMainThreadException) new Thread() { @Override public void run() { downloadFile(); } }.start(); } catch (NextcloudFilesAppAccountNotFoundException e) { // TODO handle errors } catch (NoCurrentAccountSelectedException e) { // TODO handle errors } } @Override protected void onStop() { super.onStop(); // Close Service Connection to Nextcloud Files App and // disconnect API from Context (prevent Memory Leak) mNextcloudAPI.stop(); } private NextcloudAPI.ApiConnectedListener apiCallback = new NextcloudAPI.ApiConnectedListener() { @Override public void onConnected() { // ignore this one.. } @Override public void onError(Exception ex) { // TODO handle error in your app } }; private void downloadFile() { NextcloudRequest nextcloudRequest = new NextcloudRequest.Builder() .setMethod("GET") .setUrl("/remote.php/webdav/sample.mp4") .build(); try { InputStream inputStream = mNextcloudAPI.performNetworkRequest(nextcloudRequest); while(inputStream.available() > 0) { inputStream.read(); // TODO do something useful with the data here.. // like writing it to a file..? } inputStream.close(); } catch (Exception e) { // TODO handle errors } } }
In case that you require some sso features that were introduced in a specific nextcloud files app version, you can run a simple version check using the following helper method:
int MIN_NEXTCLOUD_FILES_APP_VERSION_CODE = 30030052;
if (VersionCheckHelper.verifyMinVersion(context, MIN_NEXTCLOUD_FILES_APP_VERSION_CODE)) {
// Version requirement is satisfied!
}
Note that the "Make network request" section in the diagram only shows the workflow if you use the "retrofit" api.
We manage translations via Transifex. So just request joining the translation team for Android on the site and start translating. All translations will then be automatically pushed to this repository, there is no need for any pull request for translations.