12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * Nextcloud Android client application
- *
- * @author Bartosz Przybylski
- * Copyright (C) 2016 Nextcloud
- * Copyright (C) 2016 Bartosz Przybylski
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.datastorage.providers;
- import android.text.TextUtils;
- import com.owncloud.android.datastorage.StoragePoint;
- import java.util.Vector;
- /**
- * @author Bartosz Przybylski
- */
- public class EnvironmentStoragePointProvider extends AbstractStoragePointProvider {
- private static final String sSecondaryStorageEnvName = "SECONDARY_STORAGE";
- @Override
- public boolean canProvideStoragePoints() {
- return !TextUtils.isEmpty(System.getenv(sSecondaryStorageEnvName));
- }
- @Override
- public Vector<StoragePoint> getAvailableStoragePoint() {
- Vector<StoragePoint> result = new Vector<>();
- addEntriesFromEnv(result, sSecondaryStorageEnvName);
- return result;
- }
- private void addEntriesFromEnv(Vector<StoragePoint> result, String envName) {
- String env = System.getenv(envName);
- if (env != null)
- for (String p : env.split(":"))
- if (canBeAddedToAvailableList(result, p))
- result.add(new StoragePoint(p, p));
- }
- }
|