123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- /*
- * Nextcloud Android client application
- *
- * @author Andy Scherzinger
- * @author Mario Danic
- * @author Chris Narkiewicz
- * Copyright (C) 2017 Andy Scherzinger
- * Copyright (C) 2017 Mario Danic
- * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero 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 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.ui.activity;
- import android.content.Intent;
- import android.graphics.PorterDuff;
- import android.os.Bundle;
- import android.view.Menu;
- import android.view.MenuItem;
- import android.view.View;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.ProgressBar;
- import android.widget.TextView;
- import com.google.android.material.snackbar.Snackbar;
- import com.nextcloud.client.account.User;
- import com.nextcloud.client.account.UserAccountManager;
- import com.nextcloud.client.network.ClientFactory;
- import com.nextcloud.java.util.Optional;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.ArbitraryDataProvider;
- import com.owncloud.android.jobs.NotificationJob;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.common.utils.Log_OC;
- import com.owncloud.android.lib.resources.notifications.GetNotificationsRemoteOperation;
- import com.owncloud.android.lib.resources.notifications.models.Notification;
- import com.owncloud.android.ui.adapter.NotificationListAdapter;
- import com.owncloud.android.ui.asynctasks.DeleteAllNotificationsTask;
- import com.owncloud.android.ui.notifications.NotificationsContract;
- import com.owncloud.android.utils.DisplayUtils;
- import com.owncloud.android.utils.PushUtils;
- import com.owncloud.android.utils.ThemeUtils;
- import java.util.List;
- import javax.inject.Inject;
- import androidx.recyclerview.widget.LinearLayoutManager;
- import androidx.recyclerview.widget.RecyclerView;
- import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
- import butterknife.BindString;
- import butterknife.BindView;
- import butterknife.ButterKnife;
- import butterknife.Unbinder;
- /**
- * Activity displaying all server side stored notification items.
- */
- public class NotificationsActivity extends FileActivity implements NotificationsContract.View {
- private static final String TAG = NotificationsActivity.class.getSimpleName();
- @BindView(R.id.empty_list_view)
- public LinearLayout emptyContentContainer;
- public SwipeRefreshLayout swipeListRefreshLayout;
- public SwipeRefreshLayout swipeEmptyListRefreshLayout;
- @BindView(R.id.empty_list_view_text)
- public TextView emptyContentMessage;
- @BindView(R.id.empty_list_view_headline)
- public TextView emptyContentHeadline;
- @BindView(R.id.empty_list_icon)
- public ImageView emptyContentIcon;
- @BindView(R.id.empty_list_progress)
- public ProgressBar emptyContentProgressBar;
- @BindView(android.R.id.list)
- public RecyclerView recyclerView;
- @BindString(R.string.notifications_no_results_headline)
- public String noResultsHeadline;
- @BindString(R.string.notifications_no_results_message)
- public String noResultsMessage;
- private Unbinder unbinder;
- private NotificationListAdapter adapter;
- private Snackbar snackbar;
- private OwnCloudClient client;
- private Optional<User> optionalUser;
- @Inject ClientFactory clientFactory;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- Log_OC.v(TAG, "onCreate() start");
- super.onCreate(savedInstanceState);
- setContentView(R.layout.notifications_layout);
- unbinder = ButterKnife.bind(this);
- optionalUser = getUser();
- // use account from intent (opened via android notification can have a different account than current one)
- if (getIntent() != null && getIntent().getExtras() != null) {
- String accountName = getIntent().getExtras().getString(NotificationJob.KEY_NOTIFICATION_ACCOUNT);
- if(accountName != null && optionalUser.isPresent()) {
- User user = optionalUser.get();
- if (user.getAccountName().equalsIgnoreCase(accountName)) {
- accountManager.setCurrentOwnCloudAccount(accountName);
- setUser(getUserAccountManager().getUser());
- optionalUser = getUser();
- }
- }
- }
- // setup toolbar
- setupToolbar();
- swipeEmptyListRefreshLayout = findViewById(R.id.swipe_containing_empty);
- swipeListRefreshLayout = findViewById(R.id.swipe_containing_list);
- // setup drawer
- setupDrawer(R.id.nav_notifications);
- ThemeUtils.setColoredTitle(getSupportActionBar(), getString(R.string.drawer_item_notifications), this);
- if (!optionalUser.isPresent()) {
- // show error
- runOnUiThread(() -> setEmptyContent(noResultsHeadline, getString(R.string.account_not_found)));
- return;
- }
- swipeListRefreshLayout.setOnRefreshListener(() -> {
- setLoadingMessage();
- fetchAndSetData();
- });
- swipeEmptyListRefreshLayout.setOnRefreshListener(() -> {
- setLoadingMessage();
- fetchAndSetData();
- });
- setupPushWarning();
- setupContent();
- }
- private void setupPushWarning() {
- if (snackbar != null) {
- if (!snackbar.isShown()) {
- snackbar.show();
- }
- } else {
- String pushUrl = getResources().getString(R.string.push_server_url);
- if (pushUrl.isEmpty()) {
- snackbar = Snackbar.make(emptyContentContainer, R.string.push_notifications_not_implemented,
- Snackbar.LENGTH_INDEFINITE);
- } else {
- final ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(getContentResolver());
- final String accountName = optionalUser.isPresent() ? optionalUser.get().getAccountName() : "";
- final boolean usesOldLogin = arbitraryDataProvider.getBooleanValue(accountName,
- UserAccountManager.ACCOUNT_USES_STANDARD_PASSWORD);
- if (usesOldLogin) {
- snackbar = Snackbar.make(emptyContentContainer, R.string.push_notifications_old_login,
- Snackbar.LENGTH_INDEFINITE);
- } else {
- String pushValue = arbitraryDataProvider.getValue(accountName, PushUtils.KEY_PUSH);
- if (pushValue == null || pushValue.isEmpty()) {
- snackbar = Snackbar.make(emptyContentContainer, R.string.push_notifications_temp_error,
- Snackbar.LENGTH_INDEFINITE);
- }
- }
- }
- if (snackbar != null && !snackbar.isShown()) {
- snackbar.show();
- }
- }
- }
- @Override
- public void openDrawer() {
- super.openDrawer();
- if (snackbar != null && snackbar.isShown()) {
- snackbar.dismiss();
- }
- }
- @Override
- public void closeDrawer() {
- super.closeDrawer();
- setupPushWarning();
- }
- public void onDestroy() {
- super.onDestroy();
- unbinder.unbind();
- }
- @Override
- public void showFiles(boolean onDeviceOnly) {
- super.showFiles(onDeviceOnly);
- Intent i = new Intent(getApplicationContext(), FileDisplayActivity.class);
- i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
- startActivity(i);
- }
- /**
- * sets up the UI elements and loads all notification items.
- */
- private void setupContent() {
- emptyContentIcon.setImageResource(R.drawable.ic_notification_light_grey);
- emptyContentProgressBar.getIndeterminateDrawable().setColorFilter(ThemeUtils.primaryAccentColor(this),
- PorterDuff.Mode.SRC_IN);
- setLoadingMessage();
- LinearLayoutManager layoutManager = new LinearLayoutManager(this);
- recyclerView.setLayoutManager(layoutManager);
- fetchAndSetData();
- }
- private void populateList(List<Notification> notifications) {
- adapter.setNotificationItems(notifications);
- }
- private void fetchAndSetData() {
- Thread t = new Thread(() -> {
- if (client == null && optionalUser.isPresent()) {
- try {
- User user = optionalUser.get();
- client = clientFactory.create(user);
- client.setOwnCloudVersion(user.getServer().getVersion());
- } catch (ClientFactory.CreationException e) {
- Log_OC.e(TAG, "Error initializing client", e);
- }
- }
- if (adapter == null) {
- adapter = new NotificationListAdapter(client, this);
- recyclerView.setAdapter(adapter);
- }
- RemoteOperation getRemoteNotificationOperation = new GetNotificationsRemoteOperation();
- final RemoteOperationResult result = getRemoteNotificationOperation.execute(client);
- if (result.isSuccess() && result.getNotificationData() != null) {
- final List<Notification> notifications = result.getNotificationData();
- runOnUiThread(() -> {
- populateList(notifications);
- if (notifications.size() > 0) {
- swipeEmptyListRefreshLayout.setVisibility(View.GONE);
- swipeListRefreshLayout.setVisibility(View.VISIBLE);
- } else {
- setEmptyContent(noResultsHeadline, noResultsMessage);
- swipeListRefreshLayout.setVisibility(View.GONE);
- swipeEmptyListRefreshLayout.setVisibility(View.VISIBLE);
- }
- });
- } else {
- Log_OC.d(TAG, result.getLogMessage());
- // show error
- runOnUiThread(() -> setEmptyContent(noResultsHeadline, result.getLogMessage()));
- }
- hideRefreshLayoutLoader();
- });
- t.start();
- }
- private void hideRefreshLayoutLoader() {
- runOnUiThread(() -> {
- swipeListRefreshLayout.setRefreshing(false);
- swipeEmptyListRefreshLayout.setRefreshing(false);
- });
- }
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.activity_notifications, menu);
- return true;
- }
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- boolean retval = true;
- switch (item.getItemId()) {
- case android.R.id.home:
- if (isDrawerOpen()) {
- closeDrawer();
- } else {
- openDrawer();
- }
- break;
- case R.id.action_empty_notifications:
- new DeleteAllNotificationsTask(client, this).execute();
- break;
- default:
- retval = super.onOptionsItemSelected(item);
- break;
- }
- return retval;
- }
- private void setLoadingMessage() {
- emptyContentHeadline.setText(R.string.notifications_loading_activity);
- emptyContentMessage.setText("");
- emptyContentIcon.setVisibility(View.GONE);
- emptyContentProgressBar.setVisibility(View.VISIBLE);
- }
- private void setEmptyContent(String headline, String message) {
- if (emptyContentContainer != null && emptyContentMessage != null) {
- emptyContentHeadline.setText(headline);
- emptyContentMessage.setText(message);
- emptyContentMessage.setVisibility(View.VISIBLE);
- emptyContentProgressBar.setVisibility(View.GONE);
- emptyContentIcon.setImageResource(R.drawable.ic_notification_light_grey);
- emptyContentIcon.setVisibility(View.VISIBLE);
- }
- }
- @Override
- protected void onResume() {
- super.onResume();
- setDrawerMenuItemChecked(R.id.nav_notifications);
- }
- @Override
- public void onRemovedNotification(boolean isSuccess) {
- if (!isSuccess) {
- DisplayUtils.showSnackMessage(this, getString(R.string.remove_notification_failed));
- fetchAndSetData();
- }
- }
- @Override
- public void removeNotification(NotificationListAdapter.NotificationViewHolder holder) {
- adapter.removeNotification(holder);
- if (adapter.getItemCount() == 0) {
- setEmptyContent(noResultsHeadline, noResultsMessage);
- swipeListRefreshLayout.setVisibility(View.GONE);
- swipeEmptyListRefreshLayout.setVisibility(View.VISIBLE);
- }
- }
- @Override
- public void onRemovedAllNotifications(boolean isSuccess) {
- if (isSuccess) {
- adapter.removeAllNotifications();
- setEmptyContent(noResultsHeadline, noResultsMessage);
- swipeListRefreshLayout.setVisibility(View.GONE);
- swipeEmptyListRefreshLayout.setVisibility(View.VISIBLE);
- } else {
- DisplayUtils.showSnackMessage(this, getString(R.string.clear_notifications_failed));
- }
- }
- @Override
- public void onActionCallback(boolean isSuccess,
- Notification notification,
- NotificationListAdapter.NotificationViewHolder holder) {
- if (isSuccess) {
- adapter.removeNotification(holder);
- } else {
- adapter.setButtons(holder, notification);
- DisplayUtils.showSnackMessage(this, getString(R.string.notification_action_failed));
- }
- }
- }
|