nfc_scene_read_emv_data_success.c 5.2 KB

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