SetUserDefinedCustomStatusTask.kt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * Copyright (C) 2020 Tobias Kaminsky
  7. * Copyright (C) 2020 Nextcloud GmbH
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. */
  22. package com.nextcloud.ui
  23. import android.accounts.Account
  24. import android.content.Context
  25. import com.owncloud.android.lib.common.OwnCloudClientFactory
  26. import com.owncloud.android.lib.common.accounts.AccountUtils
  27. import com.owncloud.android.lib.common.utils.Log_OC
  28. import com.owncloud.android.lib.resources.users.SetUserDefinedCustomStatusMessageRemoteOperation
  29. public class SetUserDefinedCustomStatusTask(
  30. val message: String,
  31. val icon: String,
  32. val clearAt: Long?,
  33. val account: Account?,
  34. val context: Context?
  35. ) : Function0<Boolean> {
  36. override fun invoke(): Boolean {
  37. return try {
  38. val client = OwnCloudClientFactory.createNextcloudClient(account, context)
  39. return SetUserDefinedCustomStatusMessageRemoteOperation(message, icon, clearAt).execute(client).isSuccess
  40. } catch (e: AccountUtils.AccountNotFoundException) {
  41. Log_OC.e(this, "Error setting user defined custom status", e)
  42. false
  43. }
  44. }
  45. }