2018-10-10 13:43:33 +00:00
|
|
|
from trezor import config, log, loop, res, ui
|
2017-12-15 20:06:29 +00:00
|
|
|
from trezor.pin import pin_to_int, show_pin_timeout
|
2018-07-03 14:20:26 +00:00
|
|
|
|
2017-12-15 20:06:29 +00:00
|
|
|
from apps.common.request_pin import request_pin
|
2017-12-14 16:14:15 +00:00
|
|
|
|
|
|
|
|
2018-02-19 19:36:12 +00:00
|
|
|
async def bootscreen():
|
2017-10-24 11:59:09 +00:00
|
|
|
while True:
|
2018-02-19 19:36:12 +00:00
|
|
|
try:
|
|
|
|
if not config.has_pin():
|
2018-11-08 14:55:47 +00:00
|
|
|
config.unlock(pin_to_int(""))
|
2018-02-19 19:36:12 +00:00
|
|
|
return
|
|
|
|
await lockscreen()
|
2018-02-27 20:50:49 +00:00
|
|
|
label = None
|
2018-02-19 19:36:12 +00:00
|
|
|
while True:
|
2018-02-27 19:21:54 +00:00
|
|
|
pin = await request_pin(label)
|
2018-11-08 14:55:47 +00:00
|
|
|
if config.unlock(pin_to_int(pin)):
|
2018-02-19 19:36:12 +00:00
|
|
|
return
|
2018-02-27 19:21:54 +00:00
|
|
|
else:
|
2018-07-03 14:20:58 +00:00
|
|
|
label = "Wrong PIN, enter again"
|
2018-10-10 13:43:33 +00:00
|
|
|
except Exception as e:
|
|
|
|
if __debug__:
|
|
|
|
log.exception(__name__, e)
|
2018-02-19 19:36:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def lockscreen():
|
|
|
|
from apps.common import storage
|
|
|
|
|
|
|
|
label = storage.get_label()
|
|
|
|
image = storage.get_homescreen()
|
|
|
|
if not label:
|
2018-07-03 14:20:58 +00:00
|
|
|
label = "My TREZOR"
|
2018-02-19 19:36:12 +00:00
|
|
|
if not image:
|
2018-07-03 14:20:58 +00:00
|
|
|
image = res.load("apps/homescreen/res/bg.toif")
|
2018-02-19 19:36:12 +00:00
|
|
|
|
|
|
|
await ui.backlight_slide(ui.BACKLIGHT_DIM)
|
|
|
|
|
2018-02-27 14:34:13 +00:00
|
|
|
ui.display.clear()
|
|
|
|
ui.display.avatar(48, 48, image, ui.TITLE_GREY, ui.BG)
|
2018-03-01 00:13:26 +00:00
|
|
|
ui.display.text_center(ui.WIDTH // 2, 35, label, ui.BOLD, ui.TITLE_GREY, ui.BG)
|
2018-02-27 14:34:13 +00:00
|
|
|
|
|
|
|
ui.display.bar_radius(40, 100, 160, 40, ui.TITLE_GREY, ui.BG, 4)
|
|
|
|
ui.display.bar_radius(42, 102, 156, 36, ui.BG, ui.TITLE_GREY, 4)
|
2018-07-03 14:20:58 +00:00
|
|
|
ui.display.text_center(ui.WIDTH // 2, 128, "Locked", ui.BOLD, ui.TITLE_GREY, ui.BG)
|
2018-02-27 14:34:13 +00:00
|
|
|
|
2018-07-03 14:20:58 +00:00
|
|
|
ui.display.text_center(
|
|
|
|
ui.WIDTH // 2 + 10, 220, "Tap to unlock", ui.BOLD, ui.TITLE_GREY, ui.BG
|
|
|
|
)
|
2018-02-27 14:34:13 +00:00
|
|
|
ui.display.icon(45, 202, res.load(ui.ICON_CLICK), ui.TITLE_GREY, ui.BG)
|
2017-10-24 11:59:09 +00:00
|
|
|
|
2018-02-19 19:36:12 +00:00
|
|
|
await ui.backlight_slide(ui.BACKLIGHT_NORMAL)
|
|
|
|
await ui.click()
|
2017-10-24 11:59:09 +00:00
|
|
|
|
|
|
|
|
2018-11-08 14:55:47 +00:00
|
|
|
config.init(show_pin_timeout)
|
2018-02-19 19:36:12 +00:00
|
|
|
ui.display.backlight(ui.BACKLIGHT_NONE)
|
|
|
|
loop.schedule(bootscreen())
|
2017-10-24 11:59:09 +00:00
|
|
|
loop.run()
|