nfc_scene_read_emv_data_success.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #include "../nfc_i.h"
  2. #include "../helpers/nfc_emv_parser.h"
  3. void nfc_scene_read_emv_data_success_widget_callback(
  4. GuiButtonType result,
  5. InputType type,
  6. void* context) {
  7. Nfc* nfc = (Nfc*)context;
  8. if(type == InputTypeShort) {
  9. view_dispatcher_send_custom_event(nfc->view_dispatcher, result);
  10. }
  11. }
  12. void nfc_scene_read_emv_data_success_on_enter(void* context) {
  13. Nfc* nfc = (Nfc*)context;
  14. NfcEmvData* emv_data = &nfc->dev->dev_data.emv_data;
  15. NfcDeviceCommonData* nfc_data = &nfc->dev->dev_data.nfc_data;
  16. // Setup Custom Widget view
  17. // Add frame
  18. widget_add_frame_element(nfc->widget, 0, 0, 128, 64, 6);
  19. // Add buttons
  20. widget_add_button_element(
  21. nfc->widget,
  22. GuiButtonTypeLeft,
  23. "Back",
  24. nfc_scene_read_emv_data_success_widget_callback,
  25. nfc);
  26. widget_add_button_element(
  27. nfc->widget,
  28. GuiButtonTypeRight,
  29. "Save",
  30. nfc_scene_read_emv_data_success_widget_callback,
  31. nfc);
  32. // Add card name
  33. widget_add_string_element(
  34. nfc->widget, 64, 3, AlignCenter, AlignTop, FontSecondary, nfc->dev->dev_data.emv_data.name);
  35. // Add cad number
  36. string_t pan_str;
  37. string_init(pan_str);
  38. for(uint8_t i = 0; i < emv_data->number_len; i += 2) {
  39. string_cat_printf(pan_str, "%02X%02X ", emv_data->number[i], emv_data->number[i + 1]);
  40. }
  41. string_strim(pan_str);
  42. widget_add_string_element(
  43. nfc->widget, 64, 13, AlignCenter, AlignTop, FontSecondary, string_get_cstr(pan_str));
  44. string_clear(pan_str);
  45. // Parse country code
  46. string_t country_name;
  47. string_init(country_name);
  48. if((emv_data->country_code) &&
  49. nfc_emv_parser_get_country_name(nfc->dev->storage, emv_data->country_code, country_name)) {
  50. string_t disp_country;
  51. string_init_printf(disp_country, "Reg:%s", country_name);
  52. widget_add_string_element(
  53. nfc->widget, 7, 23, AlignLeft, AlignTop, FontSecondary, string_get_cstr(disp_country));
  54. string_clear(disp_country);
  55. }
  56. string_clear(country_name);
  57. // Parse currency code
  58. string_t currency_name;
  59. string_init(currency_name);
  60. if((emv_data->currency_code) &&
  61. nfc_emv_parser_get_currency_name(
  62. nfc->dev->storage, emv_data->currency_code, currency_name)) {
  63. string_t disp_currency;
  64. string_init_printf(disp_currency, "Cur:%s", currency_name);
  65. widget_add_string_element(
  66. nfc->widget,
  67. 121,
  68. 23,
  69. AlignRight,
  70. AlignTop,
  71. FontSecondary,
  72. string_get_cstr(disp_currency));
  73. string_clear(disp_currency);
  74. }
  75. string_clear(currency_name);
  76. // Add ATQA
  77. char atqa_str[16];
  78. snprintf(atqa_str, sizeof(atqa_str), "ATQA: %02X%02X", nfc_data->atqa[0], nfc_data->atqa[1]);
  79. widget_add_string_element(nfc->widget, 121, 32, AlignRight, AlignTop, FontSecondary, atqa_str);
  80. // Add UID
  81. char uid_str[32];
  82. snprintf(
  83. uid_str,
  84. sizeof(uid_str),
  85. "UID: %02X %02X %02X %02X",
  86. nfc_data->uid[0],
  87. nfc_data->uid[1],
  88. nfc_data->uid[2],
  89. nfc_data->uid[3]);
  90. widget_add_string_element(nfc->widget, 7, 42, AlignLeft, AlignTop, FontSecondary, uid_str);
  91. // Add SAK
  92. char sak_str[16];
  93. snprintf(sak_str, sizeof(sak_str), "SAK: %02X", nfc_data->sak);
  94. widget_add_string_element(nfc->widget, 121, 42, AlignRight, AlignTop, FontSecondary, sak_str);
  95. // Add expiration date
  96. if(emv_data->exp_mon) {
  97. char exp_str[16];
  98. snprintf(
  99. exp_str, sizeof(exp_str), "Exp: %02X/%02X", emv_data->exp_mon, emv_data->exp_year);
  100. widget_add_string_element(nfc->widget, 7, 32, AlignLeft, AlignTop, FontSecondary, exp_str);
  101. }
  102. // Send notification
  103. if(scene_manager_get_scene_state(nfc->scene_manager, NfcSceneReadEmvDataSuccess) ==
  104. NFC_SEND_NOTIFICATION_TRUE) {
  105. notification_message(nfc->notifications, &sequence_success);
  106. scene_manager_set_scene_state(
  107. nfc->scene_manager, NfcSceneReadEmvDataSuccess, NFC_SEND_NOTIFICATION_FALSE);
  108. }
  109. view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewWidget);
  110. }
  111. bool nfc_scene_read_emv_data_success_on_event(void* context, SceneManagerEvent event) {
  112. Nfc* nfc = (Nfc*)context;
  113. if(event.type == SceneManagerEventTypeCustom) {
  114. if(event.event == GuiButtonTypeLeft) {
  115. return scene_manager_search_and_switch_to_previous_scene(
  116. nfc->scene_manager, NfcSceneReadEmvAppSuccess);
  117. } else if(event.event == GuiButtonTypeRight) {
  118. // Clear device name
  119. nfc_device_set_name(nfc->dev, "");
  120. nfc->dev->format = NfcDeviceSaveFormatBankCard;
  121. scene_manager_next_scene(nfc->scene_manager, NfcSceneSaveName);
  122. return true;
  123. }
  124. } else if(event.type == SceneManagerEventTypeBack) {
  125. return scene_manager_search_and_switch_to_previous_scene(
  126. nfc->scene_manager, NfcSceneReadEmvAppSuccess);
  127. }
  128. return false;
  129. }
  130. void nfc_scene_read_emv_data_success_on_exit(void* context) {
  131. Nfc* nfc = (Nfc*)context;
  132. widget_clear(nfc->widget);
  133. }