-
-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathNoteDirectEditFragment.kt
More file actions
474 lines (416 loc) · 15.7 KB
/
NoteDirectEditFragment.kt
File metadata and controls
474 lines (416 loc) · 15.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/*
* Nextcloud Notes - Android Client
*
* SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package it.niedermann.owncloud.notes.edit
import android.annotation.SuppressLint
import android.net.http.SslError
import android.os.Bundle
import android.util.Log
import android.view.LayoutInflater
import android.view.MotionEvent
import android.view.View
import android.view.ViewGroup
import android.webkit.JavascriptInterface
import android.webkit.SslErrorHandler
import android.webkit.WebResourceError
import android.webkit.WebResourceRequest
import android.webkit.WebSettings
import android.webkit.WebView
import android.webkit.WebViewClient
import android.widget.ScrollView
import androidx.core.view.isVisible
import com.google.android.material.snackbar.Snackbar
import com.nextcloud.android.common.ui.theme.utils.ColorRole
import com.nextcloud.android.sso.helper.SingleAccountHelper
import com.nextcloud.android.sso.model.SingleSignOnAccount
import com.owncloud.android.lib.common.utils.Log_OC
import io.reactivex.Single
import io.reactivex.android.schedulers.AndroidSchedulers
import io.reactivex.schedulers.Schedulers
import it.niedermann.owncloud.notes.BuildConfig
import it.niedermann.owncloud.notes.R
import it.niedermann.owncloud.notes.branding.Branded
import it.niedermann.owncloud.notes.branding.BrandedSnackbar
import it.niedermann.owncloud.notes.branding.BrandingUtil
import it.niedermann.owncloud.notes.databinding.FragmentNoteDirectEditBinding
import it.niedermann.owncloud.notes.persistence.ApiProvider
import it.niedermann.owncloud.notes.persistence.DirectEditingRepository
import it.niedermann.owncloud.notes.persistence.entity.Note
import it.niedermann.owncloud.notes.persistence.sync.NotesAPI
import it.niedermann.owncloud.notes.shared.model.ApiVersion
import it.niedermann.owncloud.notes.shared.model.ISyncCallback
import it.niedermann.owncloud.notes.shared.util.ExtendedFabUtil
import it.niedermann.owncloud.notes.shared.util.rx.DisposableSet
import java.util.concurrent.TimeUnit
class NoteDirectEditFragment : BaseNoteFragment(), Branded {
private var _binding: FragmentNoteDirectEditBinding? = null
private val binding: FragmentNoteDirectEditBinding?
get() = _binding
private val disposables: DisposableSet = DisposableSet()
private var switchToEditPending = false
val account: SingleSignOnAccount by lazy {
SingleAccountHelper.getCurrentSingleSignOnAccount(
requireContext(),
)
}
val notesApi: NotesAPI by lazy {
ApiProvider.getInstance().getNotesAPI(requireContext(), account, ApiVersion.API_VERSION_1_0)
}
// for hiding / showing the fab
private var scrollStart: Int = 0
public override fun getScrollView(): ScrollView? {
return null
}
override fun scrollToY(y: Int) {
// do nothing
}
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?,
): View? {
Log.d(TAG, "onCreateView() called")
_binding = FragmentNoteDirectEditBinding.inflate(inflater, container, false)
setupFab()
prepareWebView()
return binding?.root
}
@SuppressLint("ClickableViewAccessibility") // touch listener only for UI purposes, no need to handle click
private fun setupFab() {
binding?.run {
plainEditingFab.isExtended = false
ExtendedFabUtil.toggleExtendedOnLongClick(plainEditingFab)
// manually detect scroll as we can't get it from the webview (maybe with custom JS?)
noteWebview.setOnTouchListener { _, event ->
when (event.action) {
MotionEvent.ACTION_DOWN -> {
scrollStart = event.y.toInt()
}
MotionEvent.ACTION_UP -> {
val scrollEnd = event.y.toInt()
ExtendedFabUtil.toggleVisibilityOnScroll(
plainEditingFab,
scrollStart,
scrollEnd,
)
}
}
return@setOnTouchListener false
}
plainEditingFab.setOnClickListener { switchToPlainEdit() }
}
}
private fun switchToPlainEdit() {
switchToEditPending = true
binding?.noteWebview?.evaluateJavascript(JS_CLOSE) { result ->
val resultWithoutQuotes = result.replace("\"", "")
if (resultWithoutQuotes != JS_RESULT_OK) {
Log.w(TAG, "Closing via JS failed: $resultWithoutQuotes")
changeToEditMode()
}
// if result is OK, switch will be handled by JS interface callback
}
}
override fun onDestroyView() {
super.onDestroyView()
disposables.dispose()
binding?.noteWebview?.destroy()
_binding = null
}
override fun onResume() {
super.onResume()
val timeoutDisposable = Single.just(Unit)
.delay(LOAD_TIMEOUT_SECONDS, TimeUnit.SECONDS)
.map {
if (binding?.noteWebview?.isVisible == false) {
Log.w(TAG, "Editor not loaded after $LOAD_TIMEOUT_SECONDS seconds")
handleLoadError()
}
}.subscribe()
disposables.add(timeoutDisposable)
}
override fun onNoteLoaded(note: Note?) {
super.onNoteLoaded(note)
if (note == null) {
Log_OC.w(TAG, "Note is null, onNoteLoaded")
return
}
Log.d("createAndLoadNote", "onNoteLoaded() called")
val newNoteParam = arguments?.getSerializable(PARAM_NEWNOTE) as Note?
Log.v(
"createAndLoadNote",
"on note loaded: newNote null: ${newNoteParam == null}; remoteId: ${note.remoteId}"
)
if (repo.isSyncPossible) {
val acc = repo.getAccountByName(account.name)
repo.scheduleSync(acc, false)
// todo wait until sync is done, how?
repo.syncStatus.observe(this) { state: Boolean ->
if (!state) {
// update note
val updatedNote = repo.getNoteById(note.id)
Log.v(
"createAndLoadNote",
"on note loaded: updatedNote null : ${newNoteParam == null}; remoteId: ${note.remoteId}"
)
//if (updatedNote != null || updatedNote?.remoteId == null) {
// createAndLoadNote(note)
//} else {
loadNoteInWebView(updatedNote)
//}
}
}
Log.v("createAndLoadNote", "sync started")
}
}
// TODO test with a real, 'slow" server!
private fun createAndLoadNote(newNote: Note) {
Log.d("createAndLoadNote", "createAndLoadNote() called with internal id: ${newNote.id}")
val noteCreateDisposable = Single
.fromCallable {
try {
val response = notesApi.createNote(newNote).execute()
response.body()
} catch (e: Exception) {
Log_OC.w("createAndLoadNote", "Cant able to create a note: $e")
null
}
}
.flatMap { createdNote ->
createdNote.let {
Log_OC.d("createAndLoadNote", "created note on server: ${it.remoteId}")
repo.updateRemoteId(newNote.id, it.remoteId)
Single.fromCallable { repo.getNoteById(newNote.id) }
}
}
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe({ createdNote ->
loadNoteInWebView(createdNote)
}, { throwable ->
note = null
handleLoadError()
Log.e("createAndLoadNote", "createAndLoadNote:", throwable)
})
disposables.add(noteCreateDisposable)
}
private fun loadNoteInWebView(note: Note) {
Log.d(TAG, "loadNoteInWebView() called")
context?.let { context ->
val repository = DirectEditingRepository.getInstance(context.applicationContext)
val urlDisposable = repository.getDirectEditingUrl(account, note)
.observeOn(AndroidSchedulers.mainThread()).subscribe({ url ->
url?.let {
if (BuildConfig.DEBUG) {
Log.d(TAG, "loadNoteInWebView: url = $url")
}
binding?.noteWebview?.loadUrl(url)
}
}, { throwable ->
handleLoadError()
Log.e(TAG, "loadNoteInWebView:", throwable)
})
disposables.add(urlDisposable)
}
}
private fun handleLoadError() {
binding?.run {
val snackbar = BrandedSnackbar.make(
plainEditingFab,
getString(R.string.direct_editing_error),
Snackbar.LENGTH_INDEFINITE,
)
if (note != null) {
snackbar.setAction(R.string.switch_to_plain_editing) {
changeToEditMode()
}
} else {
snackbar.setAction(R.string.action_back) {
close()
}
}
snackbar.show()
}
}
override fun shouldShowToolbar(): Boolean = false
@SuppressLint("SetJavaScriptEnabled")
private fun prepareWebView() {
binding?.noteWebview?.settings?.run {
// enable zoom
setSupportZoom(true)
builtInZoomControls = true
displayZoomControls = false
// Non-responsive webs are zoomed out when loaded
useWideViewPort = true
loadWithOverviewMode = true
// user agent
val userAgent =
getString(R.string.user_agent, getString(R.string.app_name), BuildConfig.VERSION_NAME)
userAgentString = userAgent
// no private data storing
savePassword = false
saveFormData = false
// disable local file access
allowFileAccess = false
// enable javascript
javaScriptEnabled = true
domStorageEnabled = true
}
if (BuildConfig.DEBUG) {
// caching disabled in debug mode
binding?.noteWebview?.settings?.cacheMode = WebSettings.LOAD_NO_CACHE
}
binding?.noteWebview?.addJavascriptInterface(
DirectEditingMobileInterface(this),
JS_INTERFACE_NAME,
)
binding?.noteWebview?.webViewClient = object : WebViewClient() {
override fun onReceivedError(
view: WebView?,
request: WebResourceRequest?,
error: WebResourceError?,
) {
super.onReceivedError(view, request, error)
if (request?.isForMainFrame == true) {
handleLoadError()
}
}
@SuppressLint("WebViewClientOnReceivedSslError") // only for debug mode
override fun onReceivedSslError(
view: WebView?,
handler: SslErrorHandler?,
error: SslError?,
) {
if (BuildConfig.DEBUG) {
handler?.proceed()
} else {
super.onReceivedSslError(view, handler, error)
}
}
}
}
/**
* Gets the current content of the EditText field in the UI.
*
* @return String of the current content.
*/
override fun getContent(): String {
// no way to get content from webview
return ""
}
override fun saveNote(callback: ISyncCallback?) {
val acc = repo.getAccountByName(account.name)
repo.scheduleSync(acc, false)
}
override fun onCloseNote() {
saveNote(null)
}
override fun applyBrand(color: Int) {
val util = BrandingUtil.of(color, requireContext())
binding?.run {
util.material.themeExtendedFAB(plainEditingFab)
util.platform.colorCircularProgressBar(progress, ColorRole.PRIMARY)
}
}
private class DirectEditingMobileInterface(val noteDirectEditFragment: NoteDirectEditFragment) {
@JavascriptInterface
fun close() {
noteDirectEditFragment.close()
}
@JavascriptInterface
fun share() {
noteDirectEditFragment.share()
}
@JavascriptInterface
fun loaded() {
noteDirectEditFragment.onLoaded()
}
}
private fun close() {
if (switchToEditPending) {
Log.d(TAG, "close: switching to plain edit")
changeToEditMode()
} else {
Log.d(TAG, "close: closing")
listener?.close()
}
}
private fun changeToEditMode() {
if (note == null || note.remoteId == null) {
Log.d(TAG, "note is null, cant edit")
return
}
toggleLoadingUI(true)
val updateDisposable = Single.just(note.remoteId)
.map { remoteId ->
val newNote = notesApi.getNote(remoteId).singleOrError().blockingGet().response
val localAccount = repo.getAccountByName(account.name)
repo.updateNoteAndSync(localAccount, note, newNote.content, newNote.title, null)
}
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe({
listener?.changeMode(NoteFragmentListener.Mode.EDIT, true)
}, { throwable ->
Log.e(TAG, "changeToEditMode: ", throwable)
listener?.changeMode(NoteFragmentListener.Mode.EDIT, true)
})
disposables.add(updateDisposable)
}
private fun share() {
super.shareNote()
}
private fun onLoaded() {
Log.d(TAG, "onLoaded: note loaded")
toggleLoadingUI(false)
}
private fun toggleLoadingUI(loading: Boolean) {
activity?.runOnUiThread {
binding?.run {
progress.isVisible = loading
noteWebview.isVisible = !loading
plainEditingFab.isVisible = !loading
}
}
}
companion object {
private const val TAG = "NoteDirectEditFragment"
private const val LOAD_TIMEOUT_SECONDS = 10L
private const val JS_INTERFACE_NAME = "DirectEditingMobileInterface"
private const val JS_RESULT_OK = "ok"
// language=js
private val JS_CLOSE = """
(function () {
var closeIcons = document.getElementsByClassName("icon-close");
if (closeIcons.length > 0) {
closeIcons[0].click();
} else {
return "close button not available";
}
return "$JS_RESULT_OK";
})();
""".trimIndent()
@JvmStatic
fun newInstance(accountId: Long, noteId: Long): BaseNoteFragment {
val bundle = Bundle().apply {
putLong(PARAM_NOTE_ID, noteId)
putLong(PARAM_ACCOUNT_ID, accountId)
}
return NoteDirectEditFragment().apply {
arguments = bundle
}
}
@JvmStatic
fun newInstanceWithNewNote(newNote: Note?): BaseNoteFragment {
val bundle = Bundle().apply {
putSerializable(PARAM_NEWNOTE, newNote)
}
return NoteDirectEditFragment().apply {
arguments = bundle
}
}
}
}