102 lines
3.6 KiB
Kotlin
102 lines
3.6 KiB
Kotlin
/*
|
|
* Pupil, Hitomi.la viewer for Android
|
|
* Copyright (C) 2019 tom5079
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package xyz.quaver.pupil.ui
|
|
|
|
import android.app.Activity
|
|
import android.os.Bundle
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
import com.andrognito.patternlockview.PatternLockView
|
|
import com.google.android.material.snackbar.Snackbar
|
|
import kotlinx.android.synthetic.main.activity_lock.*
|
|
import kotlinx.android.synthetic.main.fragment_pattern_lock.*
|
|
import xyz.quaver.pupil.R
|
|
import xyz.quaver.pupil.util.Lock
|
|
import xyz.quaver.pupil.util.LockManager
|
|
|
|
class LockActivity : AppCompatActivity() {
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
setContentView(R.layout.activity_lock)
|
|
|
|
val lockManager = LockManager(this)
|
|
|
|
val mode = intent.getStringExtra("mode")
|
|
|
|
lock_pattern.isEnabled = false
|
|
lock_pin.isEnabled = false
|
|
lock_fingerprint.isEnabled = false
|
|
lock_password.isEnabled = false
|
|
|
|
when(mode) {
|
|
null -> {
|
|
if (lockManager.empty()) {
|
|
setResult(RESULT_OK)
|
|
finish()
|
|
}
|
|
}
|
|
"add_lock" -> {
|
|
when(intent.getStringExtra("type")!!) {
|
|
"pattern" -> {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
supportFragmentManager.beginTransaction().add(
|
|
R.id.lock_content,
|
|
PatternLockFragment().apply {
|
|
var lastPass = ""
|
|
onPatternDrawn = {
|
|
when(mode) {
|
|
null -> {
|
|
val result = lockManager.check(it)
|
|
|
|
if (result == true) {
|
|
setResult(Activity.RESULT_OK)
|
|
finish()
|
|
} else
|
|
lock_pattern_view.setViewMode(PatternLockView.PatternViewMode.WRONG)
|
|
}
|
|
"add_lock" -> {
|
|
if (lastPass.isEmpty()) {
|
|
lastPass = it
|
|
|
|
Snackbar.make(view!!, R.string.settings_lock_confirm, Snackbar.LENGTH_LONG).show()
|
|
} else {
|
|
if (lastPass == it) {
|
|
LockManager(context!!).add(Lock.generate(Lock.Type.PATTERN, it))
|
|
finish()
|
|
} else {
|
|
lock_pattern_view.setViewMode(PatternLockView.PatternViewMode.WRONG)
|
|
lastPass = ""
|
|
|
|
Snackbar.make(view!!, R.string.settings_lock_wrong_confirm, Snackbar.LENGTH_LONG).show()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
).commit()
|
|
}
|
|
|
|
}
|