nfc_scene_read_emv_data_success.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. // Clear device name
  17. nfc_device_set_name(&nfc->dev, "");
  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. char pan_str[32];
  39. snprintf(
  40. pan_str,
  41. sizeof(pan_str),
  42. "%02X%02X %02X%02X %02X%02X %02X%02X",
  43. emv_data->number[0],
  44. emv_data->number[1],
  45. emv_data->number[2],
  46. emv_data->number[3],
  47. emv_data->number[4],
  48. emv_data->number[5],
  49. emv_data->number[6],
  50. emv_data->number[7]);
  51. widget_add_string_element(nfc->widget, 64, 13, AlignCenter, AlignTop, FontSecondary, pan_str);
  52. // Parse country code
  53. string_t country_name;
  54. string_init(country_name);
  55. if((emv_data->country_code) &&
  56. nfc_emv_parser_get_country_name(emv_data->country_code, country_name)) {
  57. string_t disp_country;
  58. string_init_printf(disp_country, "Reg:%s", country_name);
  59. widget_add_string_element(
  60. nfc->widget, 7, 23, AlignLeft, AlignTop, FontSecondary, string_get_cstr(disp_country));
  61. string_clear(disp_country);
  62. }
  63. string_clear(country_name);
  64. // Parse currency code
  65. string_t currency_name;
  66. string_init(currency_name);
  67. if((emv_data->currency_code) &&
  68. nfc_emv_parser_get_currency_name(emv_data->currency_code, currency_name)) {
  69. string_t disp_currency;
  70. string_init_printf(disp_currency, "Cur:%s", currency_name);
  71. widget_add_string_element(
  72. nfc->widget,
  73. 121,
  74. 23,
  75. AlignRight,
  76. AlignTop,
  77. FontSecondary,
  78. string_get_cstr(disp_currency));
  79. string_clear(disp_currency);
  80. }
  81. string_clear(currency_name);
  82. // Add ATQA
  83. char atqa_str[16];
  84. snprintf(atqa_str, sizeof(atqa_str), "ATQA: %02X%02X", nfc_data->atqa[0], nfc_data->atqa[1]);
  85. widget_add_string_element(nfc->widget, 121, 32, AlignRight, AlignTop, FontSecondary, atqa_str);
  86. // Add UID
  87. char uid_str[32];
  88. snprintf(
  89. uid_str,
  90. sizeof(uid_str),
  91. "UID: %02X %02X %02X %02X",
  92. nfc_data->uid[0],
  93. nfc_data->uid[1],
  94. nfc_data->uid[2],
  95. nfc_data->uid[3]);
  96. widget_add_string_element(nfc->widget, 7, 42, AlignLeft, AlignTop, FontSecondary, uid_str);
  97. // Add SAK
  98. char sak_str[16];
  99. snprintf(sak_str, sizeof(sak_str), "SAK: %02X", nfc_data->sak);
  100. widget_add_string_element(nfc->widget, 121, 42, AlignRight, AlignTop, FontSecondary, sak_str);
  101. // Add expiration date
  102. if(emv_data->exp_mon) {
  103. char exp_str[16];
  104. snprintf(
  105. exp_str, sizeof(exp_str), "Exp: %02X/%02X", emv_data->exp_mon, emv_data->exp_year);
  106. widget_add_string_element(nfc->widget, 7, 32, AlignLeft, AlignTop, FontSecondary, exp_str);
  107. }
  108. view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewWidget);
  109. }
  110. bool nfc_scene_read_emv_data_success_on_event(void* context, SceneManagerEvent event) {
  111. Nfc* nfc = (Nfc*)context;
  112. if(event.type == SceneManagerEventTypeCustom) {
  113. if(event.event == GuiButtonTypeLeft) {
  114. return scene_manager_search_and_switch_to_previous_scene(
  115. nfc->scene_manager, NfcSceneReadEmvAppSuccess);
  116. } else if(event.event == GuiButtonTypeRight) {
  117. nfc->dev.format = NfcDeviceSaveFormatBankCard;
  118. scene_manager_next_scene(nfc->scene_manager, NfcSceneSaveName);
  119. return true;
  120. }
  121. } else if(event.type == SceneManagerEventTypeBack) {
  122. return scene_manager_search_and_switch_to_previous_scene(
  123. nfc->scene_manager, NfcSceneReadEmvAppSuccess);
  124. }
  125. return false;
  126. }
  127. void nfc_scene_read_emv_data_success_on_exit(void* context) {
  128. Nfc* nfc = (Nfc*)context;
  129. widget_clear(nfc->widget);
  130. }