| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508 |
- #include "metroflip_scene_calypso.h"
- #include "../metroflip_i.h"
- #include <datetime.h>
- #include <dolphin/dolphin.h>
- #include <notification/notification_messages.h>
- #include <locale/locale.h>
- #include <nfc/protocols/iso14443_4b/iso14443_4b_poller.h>
- #define TAG "Metroflip:Scene:Calypso"
- int select_new_app(
- int new_app_directory,
- int new_app,
- BitBuffer* tx_buffer,
- BitBuffer* rx_buffer,
- Iso14443_4bPoller* iso14443_4b_poller,
- Metroflip* app,
- MetroflipPollerEventType* stage) {
- select_app[5] = new_app_directory;
- select_app[6] = new_app;
- bit_buffer_reset(tx_buffer);
- bit_buffer_append_bytes(tx_buffer, select_app, sizeof(select_app));
- FURI_LOG_D(
- TAG,
- "SEND %02x %02x %02x %02x %02x %02x %02x %02x",
- select_app[0],
- select_app[1],
- select_app[2],
- select_app[3],
- select_app[4],
- select_app[5],
- select_app[6],
- select_app[7]);
- int error = iso14443_4b_poller_send_block(iso14443_4b_poller, tx_buffer, rx_buffer);
- if(error != Iso14443_4bErrorNone) {
- FURI_LOG_I(TAG, "Select File: iso14443_4b_poller_send_block error %d", error);
- *stage = MetroflipPollerEventTypeFail;
- view_dispatcher_send_custom_event(app->view_dispatcher, MetroflipCustomEventPollerFail);
- return error;
- }
- return 0;
- }
- int read_new_file(
- int new_file,
- BitBuffer* tx_buffer,
- BitBuffer* rx_buffer,
- Iso14443_4bPoller* iso14443_4b_poller,
- Metroflip* app,
- MetroflipPollerEventType* stage) {
- read_file[2] = new_file;
- bit_buffer_reset(tx_buffer);
- bit_buffer_append_bytes(tx_buffer, read_file, sizeof(read_file));
- FURI_LOG_D(
- TAG,
- "SEND %02x %02x %02x %02x %02x",
- read_file[0],
- read_file[1],
- read_file[2],
- read_file[3],
- read_file[4]);
- Iso14443_4bError error =
- iso14443_4b_poller_send_block(iso14443_4b_poller, tx_buffer, rx_buffer);
- if(error != Iso14443_4bErrorNone) {
- FURI_LOG_I(TAG, "Read File: iso14443_4b_poller_send_block error %d", error);
- *stage = MetroflipPollerEventTypeFail;
- view_dispatcher_send_custom_event(app->view_dispatcher, MetroflipCustomEventPollerFail);
- return error;
- }
- return 0;
- }
- int check_response(
- BitBuffer* rx_buffer,
- Metroflip* app,
- MetroflipPollerEventType* stage,
- size_t* response_length) {
- *response_length = bit_buffer_get_size_bytes(rx_buffer);
- if(bit_buffer_get_byte(rx_buffer, *response_length - 2) != apdu_success[0] ||
- bit_buffer_get_byte(rx_buffer, *response_length - 1) != apdu_success[1]) {
- int error_code_1 = bit_buffer_get_byte(rx_buffer, *response_length - 2);
- int error_code_2 = bit_buffer_get_byte(rx_buffer, *response_length - 1);
- FURI_LOG_E(TAG, "Select profile app/file failed: %02x%02x", error_code_1, error_code_2);
- if(error_code_1 == 0x6a && error_code_2 == 0x82) {
- FURI_LOG_E(TAG, "Wrong parameter(s) P1-P2 - File not found");
- } else if(error_code_1 == 0x69 && error_code_2 == 0x82) {
- FURI_LOG_E(TAG, "Command not allowed - Security status not satisfied");
- }
- *stage = MetroflipPollerEventTypeFail;
- view_dispatcher_send_custom_event(
- app->view_dispatcher, MetroflipCustomEventPollerFileNotFound);
- return 1;
- }
- return 0;
- }
- void update_page_info(void* context, FuriString* parsed_data) {
- Metroflip* app = context;
- CalypsoContext* ctx = app->calypso_context;
- if(ctx->card->card_type != CALYPSO_CARD_NAVIGO && ctx->card->card_type != CALYPSO_CARD_OPUS &&
- ctx->card->card_type != CALYPSO_CARD_RAVKAV) {
- furi_string_cat_printf(
- parsed_data,
- "\e#%s %u:\n",
- get_network_string(ctx->card->card_type),
- ctx->card->card_number);
- return;
- }
- if(ctx->page_id == 0) {
- switch(ctx->card->card_type) {
- case CALYPSO_CARD_NAVIGO: {
- furi_string_cat_printf(parsed_data, "\e#Navigo %u:\n", ctx->card->card_number);
- furi_string_cat_printf(parsed_data, "\e#Environment:\n");
- show_navigo_environment_info(
- &ctx->card->navigo->environment, &ctx->card->navigo->holder, parsed_data);
- break;
- }
- case CALYPSO_CARD_OPUS: {
- furi_string_cat_printf(parsed_data, "\e#Opus %u:\n", ctx->card->card_number);
- furi_string_cat_printf(parsed_data, "\e#Environment:\n");
- show_opus_environment_info(
- &ctx->card->opus->environment, &ctx->card->opus->holder, parsed_data);
- break;
- }
- case CALYPSO_CARD_RAVKAV: {
- if(ctx->card->card_number == 0) {
- furi_string_cat_printf(parsed_data, "\e#Anonymous Rav-Kav:\n");
- } else {
- furi_string_cat_printf(parsed_data, "\e#RavKav %u:\n", ctx->card->card_number);
- }
- furi_string_cat_printf(parsed_data, "\e#Environment:\n");
- show_ravkav_environment_info(&ctx->card->ravkav->environment, parsed_data);
- break;
- }
- default: {
- furi_string_cat_printf(parsed_data, "\e#Unknown %u:\n", ctx->card->card_number);
- furi_string_cat_printf(
- parsed_data, "Country: %s\n", get_country_string(ctx->card->country_num));
- if(guess_card_type(ctx->card->country_num, ctx->card->network_num) !=
- CALYPSO_CARD_UNKNOWN) {
- furi_string_cat_printf(
- parsed_data,
- "Network: %s\n",
- get_network_string(
- guess_card_type(ctx->card->country_num, ctx->card->network_num)));
- } else {
- furi_string_cat_printf(parsed_data, "Network: %d\n", ctx->card->network_num);
- }
- break;
- }
- }
- } else if(ctx->page_id == 1 || ctx->page_id == 2 || ctx->page_id == 3 || ctx->page_id == 4) {
- furi_string_cat_printf(parsed_data, "\e#Contract %d:\n", ctx->page_id);
- switch(ctx->card->card_type) {
- case CALYPSO_CARD_NAVIGO: {
- show_navigo_contract_info(
- &ctx->card->navigo->contracts[ctx->page_id - 1], parsed_data);
- break;
- }
- case CALYPSO_CARD_OPUS: {
- show_opus_contract_info(&ctx->card->opus->contracts[ctx->page_id - 1], parsed_data);
- break;
- }
- case CALYPSO_CARD_RAVKAV: {
- show_ravkav_contract_info(
- &ctx->card->ravkav->contracts[ctx->page_id - 1], parsed_data);
- break;
- }
- default: {
- break;
- }
- }
- } else if(ctx->page_id >= 5) {
- if(ctx->page_id - 5 < ctx->card->events_count) {
- furi_string_cat_printf(parsed_data, "\e#Event %d:\n", ctx->page_id - 4);
- switch(ctx->card->card_type) {
- case CALYPSO_CARD_NAVIGO: {
- show_navigo_event_info(
- &ctx->card->navigo->events[ctx->page_id - 5],
- ctx->card->navigo->contracts,
- parsed_data);
- break;
- }
- case CALYPSO_CARD_OPUS: {
- show_opus_event_info(
- &ctx->card->opus->events[ctx->page_id - 5],
- ctx->card->opus->contracts,
- parsed_data);
- break;
- }
- case CALYPSO_CARD_RAVKAV: {
- show_ravkav_event_info(&ctx->card->ravkav->events[ctx->page_id - 5], parsed_data);
- break;
- }
- default: {
- break;
- }
- }
- } else {
- furi_string_cat_printf(
- parsed_data, "\e#Special Event %d:\n", ctx->page_id - ctx->card->events_count - 4);
- switch(ctx->card->card_type) {
- case CALYPSO_CARD_NAVIGO: {
- show_navigo_special_event_info(
- &ctx->card->navigo->special_events[ctx->page_id - ctx->card->events_count - 5],
- parsed_data);
- break;
- }
- case CALYPSO_CARD_OPUS: {
- break;
- }
- default: {
- break;
- }
- }
- }
- }
- }
- void update_widget_elements(void* context) {
- Metroflip* app = context;
- CalypsoContext* ctx = app->calypso_context;
- Widget* widget = app->widget;
- if(ctx->card->card_type != CALYPSO_CARD_NAVIGO && ctx->card->card_type != CALYPSO_CARD_OPUS &&
- ctx->card->card_type != CALYPSO_CARD_RAVKAV) {
- widget_add_button_element(
- widget, GuiButtonTypeRight, "Exit", metroflip_next_button_widget_callback, context);
- return;
- }
- if(ctx->page_id < 10) {
- widget_add_button_element(
- widget, GuiButtonTypeRight, "Next", metroflip_next_button_widget_callback, context);
- } else {
- widget_add_button_element(
- widget, GuiButtonTypeRight, "Exit", metroflip_next_button_widget_callback, context);
- }
- if(ctx->page_id > 0) {
- widget_add_button_element(
- widget, GuiButtonTypeLeft, "Back", metroflip_back_button_widget_callback, context);
- }
- }
- void metroflip_back_button_widget_callback(GuiButtonType result, InputType type, void* context) {
- Metroflip* app = context;
- CalypsoContext* ctx = app->calypso_context;
- UNUSED(result);
- Widget* widget = app->widget;
- if(type == InputTypePress) {
- widget_reset(widget);
- FURI_LOG_I(TAG, "Page ID: %d -> %d", ctx->page_id, ctx->page_id - 1);
- if(ctx->page_id > 0) {
- if(ctx->page_id == 10 && ctx->card->special_events_count < 2) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 9 && ctx->card->special_events_count < 1) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 8 && ctx->card->events_count < 3) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 7 && ctx->card->events_count < 2) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 6 && ctx->card->events_count < 1) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 5 && ctx->card->contracts_count < 4) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 4 && ctx->card->contracts_count < 3) {
- ctx->page_id -= 1;
- }
- if(ctx->page_id == 3 && ctx->card->contracts_count < 2) {
- ctx->page_id -= 1;
- }
- ctx->page_id -= 1;
- }
- FuriString* parsed_data = furi_string_alloc();
- // Ensure no nested mutexes
- furi_mutex_acquire(ctx->mutex, FuriWaitForever);
- update_page_info(app, parsed_data);
- furi_mutex_release(ctx->mutex);
- widget_add_text_scroll_element(widget, 0, 0, 128, 64, furi_string_get_cstr(parsed_data));
- // widget_add_icon_element(widget, 0, 0, &I_RFIDDolphinReceive_97x61);
- // Ensure no nested mutexes
- furi_mutex_acquire(ctx->mutex, FuriWaitForever);
- update_widget_elements(app);
- furi_mutex_release(ctx->mutex);
- furi_string_free(parsed_data);
- }
- }
- void metroflip_next_button_widget_callback(GuiButtonType result, InputType type, void* context) {
- Metroflip* app = context;
- CalypsoContext* ctx = app->calypso_context;
- UNUSED(result);
- Widget* widget = app->widget;
- if(type == InputTypePress) {
- widget_reset(widget);
- FURI_LOG_I(TAG, "Page ID: %d -> %d", ctx->page_id, ctx->page_id + 1);
- if(ctx->card->card_type != CALYPSO_CARD_NAVIGO &&
- ctx->card->card_type != CALYPSO_CARD_OPUS &&
- ctx->card->card_type != CALYPSO_CARD_RAVKAV) {
- ctx->page_id = 0;
- scene_manager_search_and_switch_to_previous_scene(
- app->scene_manager, MetroflipSceneStart);
- return;
- }
- if(ctx->page_id < 10) {
- if(ctx->page_id == 1 && ctx->card->contracts_count < 2) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 2 && ctx->card->contracts_count < 3) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 3 && ctx->card->contracts_count < 4) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 4 && ctx->card->events_count < 1) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 5 && ctx->card->events_count < 2) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 6 && ctx->card->events_count < 3) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 7 && ctx->card->special_events_count < 1) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 8 && ctx->card->special_events_count < 2) {
- ctx->page_id += 1;
- }
- if(ctx->page_id == 9 && ctx->card->special_events_count < 3) {
- ctx->page_id = 0;
- scene_manager_search_and_switch_to_previous_scene(
- app->scene_manager, MetroflipSceneStart);
- return;
- }
- ctx->page_id += 1;
- } else {
- ctx->page_id = 0;
- scene_manager_search_and_switch_to_previous_scene(
- app->scene_manager, MetroflipSceneStart);
- return;
- }
- FuriString* parsed_data = furi_string_alloc();
- // Ensure no nested mutexes
- furi_mutex_acquire(ctx->mutex, FuriWaitForever);
- update_page_info(app, parsed_data);
- furi_mutex_release(ctx->mutex);
- widget_add_text_scroll_element(widget, 0, 0, 128, 64, furi_string_get_cstr(parsed_data));
- // Ensure no nested mutexes
- furi_mutex_acquire(ctx->mutex, FuriWaitForever);
- update_widget_elements(app);
- furi_mutex_release(ctx->mutex);
- furi_string_free(parsed_data);
- }
- }
- void delay(int milliseconds) {
- furi_thread_flags_wait(0, FuriFlagWaitAny, milliseconds);
- }
- static NfcCommand metroflip_scene_calypso_poller_callback(NfcGenericEvent event, void* context) {
- furi_assert(event.protocol == NfcProtocolIso14443_4b);
- NfcCommand next_command = NfcCommandContinue;
- MetroflipPollerEventType stage = MetroflipPollerEventTypeStart;
- Metroflip* app = context;
- FuriString* parsed_data = furi_string_alloc();
- Widget* widget = app->widget;
- furi_string_reset(app->text_box_store);
- const Iso14443_4bPollerEvent* iso14443_4b_event = event.event_data;
- Iso14443_4bPoller* iso14443_4b_poller = event.instance;
- BitBuffer* tx_buffer = bit_buffer_alloc(Metroflip_POLLER_MAX_BUFFER_SIZE);
- BitBuffer* rx_buffer = bit_buffer_alloc(Metroflip_POLLER_MAX_BUFFER_SIZE);
- if(iso14443_4b_event->type == Iso14443_4bPollerEventTypeReady) {
- if(stage == MetroflipPollerEventTypeStart) {
- // Start Flipper vibration
- NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION);
- notification_message(notification, &sequence_set_vibro_on);
- delay(50);
- notification_message(notification, &sequence_reset_vibro);
- nfc_device_set_data(
- app->nfc_device, NfcProtocolIso14443_4b, nfc_poller_get_data(app->poller));
- Iso14443_4bError error;
- size_t response_length = 0;
- do {
- // Initialize the card data
- CalypsoCardData* card = malloc(sizeof(CalypsoCardData));
- // Select app ICC
- error = select_new_app(
- 0x00, 0x02, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // Now send the read command for ICC
- error = read_new_file(0x01, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char icc_bit_representation[response_length * 8 + 1];
- icc_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(icc_bit_representation, bits, sizeof(icc_bit_representation));
- }
- icc_bit_representation[response_length * 8] = '\0';
- int start = 128, end = 159;
- card->card_number = bit_slice_to_dec(icc_bit_representation, start, end);
- // Select app for ticketing
- error = select_new_app(
- 0x20, 0x00, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to select app for ticketing");
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(TAG, "Failed to check response after selecting app for ticketing");
- break;
- }
- // Select app for environment
- error = select_new_app(
- 0x20, 0x1, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // read file 1
- error = read_new_file(1, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char environment_bit_representation[response_length * 8 + 1];
- environment_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- environment_bit_representation,
- bits,
- sizeof(environment_bit_representation));
- }
- // FURI_LOG_I(
- // TAG, "Environment bit_representation: %s", environment_bit_representation);
- start = 13;
- end = 16;
- card->country_num =
- bit_slice_to_dec(environment_bit_representation, start, end) * 100 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 8, end + 8);
- start = 25;
- end = 28;
- card->network_num =
- bit_slice_to_dec(environment_bit_representation, start, end) * 100 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 8, end + 8);
- card->card_type = guess_card_type(card->country_num, card->network_num);
- switch(card->card_type) {
- case CALYPSO_CARD_NAVIGO: {
- card->navigo = malloc(sizeof(NavigoCardData));
- card->navigo->environment.country_num = card->country_num;
- card->navigo->environment.network_num = card->network_num;
- CalypsoApp* IntercodeEnvHolderStructure = get_intercode_structure_env_holder();
- // EnvApplicationVersionNumber
- const char* env_key = "EnvApplicationVersionNumber";
- int positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, IntercodeEnvHolderStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, IntercodeEnvHolderStructure) - 1;
- card->navigo->environment.app_version =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // EnvApplicationValidityEndDate
- env_key = "EnvApplicationValidityEndDate";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, IntercodeEnvHolderStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, IntercodeEnvHolderStructure) - 1;
- float decimal_value =
- bit_slice_to_dec(environment_bit_representation, start, end);
- uint64_t end_validity_timestamp =
- (decimal_value * 24 * 3600) + (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- end_validity_timestamp, &card->navigo->environment.end_dt);
- // HolderDataCardStatus
- env_key = "HolderDataCardStatus";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, IntercodeEnvHolderStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, IntercodeEnvHolderStructure) - 1;
- card->navigo->holder.card_status =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // HolderDataCommercialID
- env_key = "HolderDataCommercialID";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, IntercodeEnvHolderStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, IntercodeEnvHolderStructure) - 1;
- card->navigo->holder.commercial_id =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // Free the calypso structure
- free_calypso_structure(IntercodeEnvHolderStructure);
- // Select app for contracts
- error = select_new_app(
- 0x20, 0x20, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to select app for contracts");
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after selecting app for contracts");
- break;
- }
- // Prepare calypso structure
- CalypsoApp* IntercodeContractStructure = get_intercode_structure_contract();
- if(!IntercodeContractStructure) {
- FURI_LOG_E(TAG, "Failed to load Intercode Contract structure");
- break;
- }
- // Now send the read command for contracts
- for(size_t i = 1; i < 5; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to read contract %d", i);
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after reading contract %d", i);
- break;
- }
- char bit_representation[response_length * 8 + 1];
- bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(bit_representation, bits, sizeof(bit_representation));
- }
- bit_representation[response_length * 8] = '\0';
- if(bit_slice_to_dec(
- bit_representation,
- 0,
- IntercodeContractStructure->container->elements[0].bitmap->size -
- 1) == 0) {
- break;
- }
- card->navigo->contracts[i - 1].present = 1;
- card->contracts_count++;
- // 2. ContractTariff
- const char* contract_key = "ContractTariff";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].tariff =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // 3. ContractSerialNumber
- contract_key = "ContractSerialNumber";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].serial_number =
- bit_slice_to_dec(bit_representation, start, end);
- card->navigo->contracts[i - 1].serial_number_available = true;
- }
- // 8. ContractPayMethod
- contract_key = "ContractPayMethod";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].pay_method =
- bit_slice_to_dec(bit_representation, start, end);
- card->navigo->contracts[i - 1].pay_method_available = true;
- }
- // 10. ContractPriceAmount
- contract_key = "ContractPriceAmount";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].price_amount =
- bit_slice_to_dec(bit_representation, start, end) / 100.0;
- card->navigo->contracts[i - 1].price_amount_available = true;
- }
- // 13.0. ContractValidityStartDate
- contract_key = "ContractValidityStartDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(bit_representation, start, end) * 24 * 3600;
- uint64_t start_validity_timestamp =
- (decimal_value + (float)epoch) + 3600;
- datetime_timestamp_to_datetime(
- start_validity_timestamp,
- &card->navigo->contracts[i - 1].start_date);
- }
- // 13.2. ContractValidityEndDate
- contract_key = "ContractValidityEndDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(bit_representation, start, end) * 24 * 3600;
- uint64_t end_validity_timestamp =
- (decimal_value + (float)epoch) + 3600;
- datetime_timestamp_to_datetime(
- end_validity_timestamp, &card->navigo->contracts[i - 1].end_date);
- card->navigo->contracts[i - 1].end_date_available = true;
- }
- // 13.6. ContractValidityZones
- contract_key = "ContractValidityZones";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int start = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- // binary form is 00011111 for zones 5, 4, 3, 2, 1
- for(int j = 0; j < 5; j++) {
- card->navigo->contracts[i - 1].zones[j] = bit_slice_to_dec(
- bit_representation, start + 3 + j, start + 3 + j);
- }
- card->navigo->contracts[i - 1].zones_available = true;
- }
- // 13.7. ContractValidityJourneys
- contract_key = "ContractValidityJourneys";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- int decimal_value = bit_slice_to_dec(bit_representation, start, end);
- // first 5 bits -> CounterStructureNumber
- // last 8 bits -> CounterLastLoad
- // other bits -> RFU
- card->navigo->contracts[i - 1].counter.struct_number = decimal_value >>
- 11;
- card->navigo->contracts[i - 1].counter.last_load = decimal_value &
- 0xFF;
- card->navigo->contracts[i - 1].counter_present = true;
- }
- // 15.0. ContractValiditySaleDate
- contract_key = "ContractValiditySaleDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(bit_representation, start, end) * 24 * 3600;
- uint64_t sale_timestamp = (decimal_value + (float)epoch) + 3600;
- datetime_timestamp_to_datetime(
- sale_timestamp, &card->navigo->contracts[i - 1].sale_date);
- }
- // 15.2. ContractValiditySaleAgent - FIX NEEDED
- contract_key = "ContractValiditySaleAgent";
- /* if(is_calypso_node_present(
- bit_representation, contract_key, NavigoContractStructure)) { */
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].sale_agent =
- bit_slice_to_dec(bit_representation, start, end);
- // }
- // 15.3. ContractValiditySaleDevice
- contract_key = "ContractValiditySaleDevice";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].sale_device =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // 16. ContractStatus -- 0x1 ou 0xff
- contract_key = "ContractStatus";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].status =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // 18. ContractAuthenticator
- contract_key = "ContractAuthenticator";
- if(is_calypso_node_present(
- bit_representation, contract_key, IntercodeContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, IntercodeContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, IntercodeContractStructure) -
- 1;
- card->navigo->contracts[i - 1].authenticator =
- bit_slice_to_dec(bit_representation, start, end);
- }
- }
- // Free the calypso structure
- free_calypso_structure(IntercodeContractStructure);
- // Select app for counters (remaining tickets on Navigo Easy)
- error = select_new_app(
- 0x20, 0x69, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // read file 1
- error =
- read_new_file(1, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char counter_bit_representation[response_length * 8 + 1];
- counter_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- counter_bit_representation, bits, sizeof(counter_bit_representation));
- }
- // FURI_LOG_I(TAG, "Counter bit_representation: %s", counter_bit_representation);
- // Ticket counts (contracts 1-4)
- for(int i = 0; i < 4; i++) {
- if(card->navigo->contracts[i].present == 0) {
- continue;
- }
- if(card->navigo->contracts[i].counter_present == 0) {
- continue;
- }
- start = 0;
- end = 5;
- card->navigo->contracts[i].counter.count = bit_slice_to_dec(
- counter_bit_representation, 24 * i + start, 24 * i + end);
- start = 6;
- end = 23;
- card->navigo->contracts[i].counter.relative_first_stamp_15mn =
- bit_slice_to_dec(
- counter_bit_representation, 24 * i + start, 24 * i + end);
- }
- // Select app for events
- error = select_new_app(
- 0x20, 0x10, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // Load the calypso structure for events
- CalypsoApp* IntercodeEventStructure = get_intercode_structure_event();
- if(!IntercodeEventStructure) {
- FURI_LOG_E(TAG, "Failed to load Intercode Event structure");
- break;
- }
- // furi_string_cat_printf(parsed_data, "\e#Events :\n");
- // Now send the read command for events
- for(size_t i = 1; i < 4; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char event_bit_representation[response_length * 8 + 1];
- event_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- event_bit_representation, bits, sizeof(event_bit_representation));
- }
- // 2. EventCode
- const char* event_key = "EventCode";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].transport_type = decimal_value >> 4;
- card->navigo->events[i - 1].transition = decimal_value & 15;
- }
- // 4. EventServiceProvider
- event_key = "EventServiceProvider";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].service_provider =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // 8. EventLocationId
- event_key = "EventLocationId";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].station_group_id = decimal_value >> 9;
- card->navigo->events[i - 1].station_id = (decimal_value >> 4) & 31;
- card->navigo->events[i - 1].station_sub_id = decimal_value & 15;
- }
- // 9. EventLocationGate
- event_key = "EventLocationGate";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].location_gate =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].location_gate_available = true;
- }
- // 10. EventDevice
- event_key = "EventDevice";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].device = decimal_value;
- int bus_device = decimal_value >> 8;
- card->navigo->events[i - 1].door = bus_device / 2 + 1;
- card->navigo->events[i - 1].side = bus_device % 2;
- card->navigo->events[i - 1].device_available = true;
- }
- // 11. EventRouteNumber
- event_key = "EventRouteNumber";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].route_number =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].route_number_available = true;
- }
- // 13. EventJourneyRun
- event_key = "EventJourneyRun";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].mission =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].mission_available = true;
- }
- // 14. EventVehicleId
- event_key = "EventVehicleId";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].vehicle_id =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].vehicle_id_available = true;
- }
- // 25. EventContractPointer
- event_key = "EventContractPointer";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- card->navigo->events[i - 1].used_contract =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].used_contract_available = true;
- if(card->navigo->events[i - 1].used_contract > 0) {
- card->events_count++;
- }
- }
- // EventDateStamp
- event_key = "EventDateStamp";
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- int decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- uint64_t date_timestamp = (decimal_value * 24 * 3600) + epoch + 3600;
- datetime_timestamp_to_datetime(
- date_timestamp, &card->navigo->events[i - 1].date);
- // EventTimeStamp
- event_key = "EventTimeStamp";
- positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->events[i - 1].date.hour = (decimal_value * 60) / 3600;
- card->navigo->events[i - 1].date.minute =
- ((decimal_value * 60) % 3600) / 60;
- card->navigo->events[i - 1].date.second =
- ((decimal_value * 60) % 3600) % 60;
- }
- // Select app for special events
- error = select_new_app(
- 0x20, 0x40, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // Now send the read command for special events
- for(size_t i = 1; i < 4; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char event_bit_representation[response_length * 8 + 1];
- event_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- event_bit_representation, bits, sizeof(event_bit_representation));
- }
- if(bit_slice_to_dec(
- event_bit_representation,
- 0,
- IntercodeEventStructure->container->elements[0].bitmap->size - 1) ==
- 0) {
- break;
- } else {
- card->special_events_count++;
- }
- // 2. EventCode
- const char* event_key = "EventCode";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->special_events[i - 1].transport_type = decimal_value >>
- 4;
- card->navigo->special_events[i - 1].transition = decimal_value & 15;
- }
- // 3. EventResult
- event_key = "EventResult";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- card->navigo->special_events[i - 1].result =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // 4. EventServiceProvider
- event_key = "EventServiceProvider";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- card->navigo->special_events[i - 1].service_provider =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // 8. EventLocationId
- event_key = "EventLocationId";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->special_events[i - 1].station_group_id = decimal_value >>
- 9;
- card->navigo->special_events[i - 1].station_id = (decimal_value >> 4) &
- 31;
- card->navigo->special_events[i - 1].station_sub_id = decimal_value &
- 15;
- }
- // 10. EventDevice
- event_key = "EventDevice";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- int decimal_value =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->special_events[i - 1].device = decimal_value;
- }
- // 11. EventRouteNumber
- event_key = "EventRouteNumber";
- if(is_calypso_node_present(
- event_bit_representation, event_key, IntercodeEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) -
- 1;
- card->navigo->special_events[i - 1].route_number =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->special_events[i - 1].route_number_available = true;
- }
- // EventDateStamp
- event_key = "EventDateStamp";
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- int decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- uint64_t date_timestamp = (decimal_value * 24 * 3600) + epoch + 3600;
- datetime_timestamp_to_datetime(
- date_timestamp, &card->navigo->special_events[i - 1].date);
- // EventTimeStamp
- event_key = "EventTimeStamp";
- positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, IntercodeEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, IntercodeEventStructure) - 1;
- decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- card->navigo->special_events[i - 1].date.hour =
- (decimal_value * 60) / 3600;
- card->navigo->special_events[i - 1].date.minute =
- ((decimal_value * 60) % 3600) / 60;
- card->navigo->special_events[i - 1].date.second =
- ((decimal_value * 60) % 3600) % 60;
- }
- // Free the calypso structure
- free_calypso_structure(IntercodeEventStructure);
- break;
- }
- case CALYPSO_CARD_OPUS: {
- card->opus = malloc(sizeof(OpusCardData));
- card->opus->environment.country_num = card->country_num;
- card->opus->environment.network_num = card->network_num;
- CalypsoApp* OpusEnvHolderStructure = get_opus_env_holder_structure();
- // EnvApplicationVersionNumber
- const char* env_key = "EnvApplicationVersionNumber";
- int positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, OpusEnvHolderStructure) - 1;
- card->opus->environment.app_version =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // EnvApplicationIssuerId
- env_key = "EnvApplicationIssuerId";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- start = positionOffset,
- end = positionOffset + get_calypso_node_size(env_key, OpusEnvHolderStructure) -
- 1;
- card->opus->environment.issuer_id =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // EnvApplicationValidityEndDate
- env_key = "EnvApplicationValidityEndDate";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- start = positionOffset,
- end = positionOffset + get_calypso_node_size(env_key, OpusEnvHolderStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(environment_bit_representation, start, end);
- uint64_t end_validity_timestamp =
- (decimal_value * 24 * 3600) + (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- end_validity_timestamp, &card->opus->environment.end_dt);
- // EnvDataCardStatus
- env_key = "EnvDataCardStatus";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- start = positionOffset,
- end = positionOffset + get_calypso_node_size(env_key, OpusEnvHolderStructure) -
- 1;
- card->opus->environment.card_status =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // EnvData_CardUtilisation
- env_key = "EnvData_CardUtilisation";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- start = positionOffset,
- end = positionOffset + get_calypso_node_size(env_key, OpusEnvHolderStructure) -
- 1;
- card->opus->environment.card_utilisation =
- bit_slice_to_dec(environment_bit_representation, start, end);
- // HolderBirthDate
- env_key = "HolderBirthDate";
- positionOffset = get_calypso_node_offset(
- environment_bit_representation, env_key, OpusEnvHolderStructure);
- start = positionOffset, end = positionOffset + 3;
- card->opus->holder.birth_date.year =
- bit_slice_to_dec(environment_bit_representation, start, end) * 1000 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4) *
- 100 +
- bit_slice_to_dec(environment_bit_representation, start + 8, end + 8) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 12, end + 12);
- start += 16, end += 16;
- card->opus->holder.birth_date.month =
- bit_slice_to_dec(environment_bit_representation, start, end) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4);
- start += 8, end += 8;
- card->opus->holder.birth_date.day =
- bit_slice_to_dec(environment_bit_representation, start, end) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4);
- // Free the calypso structure
- free_calypso_structure(OpusEnvHolderStructure);
- // Select app for contracts
- error = select_new_app(
- 0x20, 0x20, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to select app for contracts");
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after selecting app for contracts");
- break;
- }
- // Prepare calypso structure
- CalypsoApp* OpusContractStructure = get_opus_contract_structure();
- if(!OpusContractStructure) {
- FURI_LOG_E(TAG, "Failed to load Opus Contract structure");
- break;
- }
- // Now send the read command for contracts
- for(size_t i = 1; i < 5; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to read contract %d", i);
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after reading contract %d", i);
- break;
- }
- char bit_representation[response_length * 8 + 1];
- bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(bit_representation, bits, sizeof(bit_representation));
- }
- bit_representation[response_length * 8] = '\0';
- if(bit_slice_to_dec(
- bit_representation,
- 0,
- OpusContractStructure->container->elements[0].bitmap->size - 1) ==
- 0) {
- break;
- }
- card->opus->contracts[i - 1].present = 1;
- card->contracts_count++;
- // ContractProvider
- const char* contract_key = "ContractProvider";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- card->opus->contracts[i - 1].provider =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractTariff
- contract_key = "ContractTariff";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- card->opus->contracts[i - 1].tariff =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractValidityStartDate
- contract_key = "ContractValidityStartDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(bit_representation, start, end) * 24 * 3600;
- uint64_t start_validity_timestamp =
- (decimal_value + (float)epoch) + 3600;
- datetime_timestamp_to_datetime(
- start_validity_timestamp,
- &card->opus->contracts[i - 1].start_date);
- }
- // ContractValidityEndDate
- contract_key = "ContractValidityEndDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- float decimal_value =
- bit_slice_to_dec(bit_representation, start, end) * 24 * 3600;
- uint64_t end_validity_timestamp =
- (decimal_value + (float)epoch) + 3600;
- datetime_timestamp_to_datetime(
- end_validity_timestamp, &card->opus->contracts[i - 1].end_date);
- }
- // ContractDataSaleAgent
- contract_key = "ContractDataSaleAgent";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- card->opus->contracts[i - 1].sale_agent =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractDataSaleDate + ContractDataSaleTime
- contract_key = "ContractDataSaleDate";
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- FURI_LOG_I(TAG, "ContractDataSaleDate positionOffset: %d", positionOffset);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) - 1;
- FURI_LOG_I(
- TAG,
- "ContractDataSaleDate: %d",
- bit_slice_to_dec(bit_representation, start, end));
- uint64_t sale_date_timestamp =
- ((bit_slice_to_dec(bit_representation, start, end) * 24 * 3600) +
- (float)epoch) +
- 3600;
- ;
- datetime_timestamp_to_datetime(
- sale_date_timestamp, &card->opus->contracts[i - 1].sale_date);
- contract_key = "ContractDataSaleTime";
- positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) - 1;
- int decimal_value = bit_slice_to_dec(bit_representation, start, end);
- card->opus->contracts[i - 1].sale_date.hour = (decimal_value * 60) / 3600;
- card->opus->contracts[i - 1].sale_date.minute =
- ((decimal_value * 60) % 3600) / 60;
- card->opus->contracts[i - 1].sale_date.second =
- ((decimal_value * 60) % 3600) % 60;
- // ContractDataInhibition
- contract_key = "ContractDataInhibition";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- card->opus->contracts[i - 1].inhibition =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractDataUsed
- contract_key = "ContractDataUsed";
- if(is_calypso_node_present(
- bit_representation, contract_key, OpusContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, OpusContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(contract_key, OpusContractStructure) -
- 1;
- card->opus->contracts[i - 1].used =
- bit_slice_to_dec(bit_representation, start, end);
- }
- }
- // Free the calypso structure
- free_calypso_structure(OpusContractStructure);
- // Select app for events
- error = select_new_app(
- 0x20, 0x10, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // Load the calypso structure for events
- CalypsoApp* OpusEventStructure = get_opus_event_structure();
- if(!OpusEventStructure) {
- FURI_LOG_E(TAG, "Failed to load Opus Event structure");
- break;
- }
- // Now send the read command for events
- for(size_t i = 1; i < 4; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char event_bit_representation[response_length * 8 + 1];
- event_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- event_bit_representation, bits, sizeof(event_bit_representation));
- }
- // EventResult
- const char* event_key = "EventResult";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].result =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventServiceProvider
- event_key = "EventServiceProvider";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].service_provider =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventLocationId
- event_key = "EventLocationId";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].location_id =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventRouteNumber
- event_key = "EventRouteNumber";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].route_number =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventContractPointer
- event_key = "EventContractPointer";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].used_contract =
- bit_slice_to_dec(event_bit_representation, start, end);
- if(card->opus->events[i - 1].used_contract > 0) {
- card->events_count++;
- }
- }
- // EventDataSimulation
- event_key = "EventDataSimulation";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].simulation =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventDataRouteDirection
- event_key = "EventDataRouteDirection";
- if(is_calypso_node_present(
- event_bit_representation, event_key, OpusEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- card->opus->events[i - 1].route_direction =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventDateStamp
- event_key = "EventDateStamp";
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- int decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- uint64_t date_timestamp = (decimal_value * 24 * 3600) + epoch + 3600;
- datetime_timestamp_to_datetime(
- date_timestamp, &card->opus->events[i - 1].date);
- // EventTimeStamp
- event_key = "EventTimeStamp";
- positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- card->opus->events[i - 1].date.hour = (decimal_value * 60) / 3600;
- card->opus->events[i - 1].date.minute = ((decimal_value * 60) % 3600) / 60;
- card->opus->events[i - 1].date.second = ((decimal_value * 60) % 3600) % 60;
- // EventDataDateFirstStamp
- event_key = "EventDataDateFirstStamp";
- positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- uint64_t first_date_timestamp = (decimal_value * 24 * 3600) + epoch + 3600;
- datetime_timestamp_to_datetime(
- first_date_timestamp, &card->opus->events[i - 1].first_stamp_date);
- // EventDataTimeFirstStamp
- event_key = "EventDataTimeFirstStamp";
- positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, OpusEventStructure);
- start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, OpusEventStructure) - 1;
- decimal_value = bit_slice_to_dec(event_bit_representation, start, end);
- card->opus->events[i - 1].first_stamp_date.hour =
- (decimal_value * 60) / 3600;
- card->opus->events[i - 1].first_stamp_date.minute =
- ((decimal_value * 60) % 3600) / 60;
- card->opus->events[i - 1].first_stamp_date.second =
- ((decimal_value * 60) % 3600) % 60;
- }
- // Free the calypso structure
- free_calypso_structure(OpusEventStructure);
- break;
- }
- case CALYPSO_CARD_UNKNOWN: {
- start = 3;
- end = 6;
- int country_num =
- bit_slice_to_dec(environment_bit_representation, start, end) * 100 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 8, end + 8);
- start = 15;
- end = 18;
- int network_num =
- bit_slice_to_dec(environment_bit_representation, start, end) * 100 +
- bit_slice_to_dec(environment_bit_representation, start + 4, end + 4) * 10 +
- bit_slice_to_dec(environment_bit_representation, start + 8, end + 8);
- card->card_type = guess_card_type(country_num, network_num);
- if(card->card_type == CALYPSO_CARD_RAVKAV) {
- card->ravkav = malloc(sizeof(RavKavCardData));
- error = select_new_app(
- 0x20, 0x20, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to select app for contracts");
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after selecting app for contracts");
- break;
- }
- // Prepare calypso structure
- CalypsoApp* RavKavContractStructure = get_ravkav_contract_structure();
- if(!RavKavContractStructure) {
- FURI_LOG_E(TAG, "Failed to load RavKav Contract structure");
- break;
- }
- // Now send the read command for contracts
- for(size_t i = 1; i < 2; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to read contract %d", i);
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG, "Failed to check response after reading contract %d", i);
- break;
- }
- char bit_representation[response_length * 8 + 1];
- bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(bit_representation, bits, sizeof(bit_representation));
- }
- bit_representation[response_length * 8] = '\0';
- card->ravkav->contracts[i - 1].present = 1;
- card->events_count = 3;
- card->contracts_count++;
- // ContractVersion
- const char* contract_key = "ContractVersion";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].version =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractStartDate
- contract_key = "ContractStartDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- int decimal_value =
- bit_slice_to_dec(bit_representation, start, end);
- uint32_t invertedDays = decimal_value ^ 0x3FFF;
- int start_validity_timestamp =
- (invertedDays * 3600 * 24) + epoch + 3600;
- datetime_timestamp_to_datetime(
- start_validity_timestamp,
- &card->ravkav->contracts[i - 1].start_date);
- }
- // ContractProvider
- contract_key = "ContractProvider";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].provider =
- bit_slice_to_dec(bit_representation, start, end);
- FURI_LOG_I(
- TAG,
- "issuer number: %d",
- card->ravkav->contracts[i - 1].provider);
- }
- // ContractTariff
- contract_key = "ContractTariff";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].tariff =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractSaleDate
- contract_key = "ContractSaleDate";
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end =
- positionOffset +
- get_calypso_node_size(contract_key, RavKavContractStructure) -
- 1;
- uint64_t sale_date_timestamp =
- (bit_slice_to_dec(bit_representation, start, end) * 3600 * 24) +
- (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- sale_date_timestamp, &card->ravkav->contracts[i - 1].sale_date);
- // ContractSaleDevice
- contract_key = "ContractSaleDevice";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].sale_device =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractSaleNumber
- contract_key = "ContractSaleNumber";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].sale_number =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractInterchange
- contract_key = "ContractInterchange";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].interchange =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractInterchange
- contract_key = "ContractRestrictCode";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].restrict_code_available = true;
- card->ravkav->contracts[i - 1].restrict_code =
- bit_slice_to_dec(bit_representation, start, end);
- }
- // ContractRestrictDuration
- contract_key = "ContractRestrictDuration";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].restrict_duration_available = true;
- if(card->ravkav->contracts[i - 1].restrict_code == 16) {
- card->ravkav->contracts[i - 1].restrict_duration =
- bit_slice_to_dec(bit_representation, start, end) * 5;
- } else {
- card->ravkav->contracts[i - 1].restrict_duration =
- bit_slice_to_dec(bit_representation, start, end) * 30;
- }
- }
- // ContractEndDate
- contract_key = "ContractEndDate";
- if(is_calypso_node_present(
- bit_representation, contract_key, RavKavContractStructure)) {
- int positionOffset = get_calypso_node_offset(
- bit_representation, contract_key, RavKavContractStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(
- contract_key, RavKavContractStructure) -
- 1;
- card->ravkav->contracts[i - 1].end_date_available = true;
- int end_date_timestamp =
- (bit_slice_to_dec(bit_representation, start, end) * 3600 *
- 24) +
- epoch + 3600;
- datetime_timestamp_to_datetime(
- end_date_timestamp, &card->ravkav->contracts[i - 1].end_date);
- }
- }
- // Free the calypso structure
- free_calypso_structure(RavKavContractStructure);
- error = select_new_app(
- 0x20, 0x01, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to select app for environment");
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(
- TAG,
- "Failed to check response after selecting app for environment");
- break;
- }
- // Prepare calypso structure
- CalypsoApp* RavKavEnvStructure = get_ravkav_env_holder_structure();
- if(!RavKavEnvStructure) {
- FURI_LOG_E(TAG, "Failed to load RavKav environment structure");
- break;
- }
- // Now send the read command for environment
- error = read_new_file(
- 1, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- FURI_LOG_E(TAG, "Failed to read environment");
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- FURI_LOG_E(TAG, "Failed to check response after reading environment");
- break;
- }
- char env_bit_representation[response_length * 8 + 1];
- env_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(env_bit_representation, bits, sizeof(env_bit_representation));
- }
- env_bit_representation[response_length * 8] = '\0';
- // EnvApplicationVersionNumber
- char* env_key = "EnvApplicationVersionNumber";
- if(is_calypso_node_present(
- env_bit_representation, env_key, RavKavEnvStructure)) {
- int positionOffset = get_calypso_node_offset(
- env_bit_representation, env_key, RavKavEnvStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, RavKavEnvStructure) - 1;
- card->ravkav->environment.app_num =
- bit_slice_to_dec(env_bit_representation, start, end);
- }
- // EnvApplicationNumber
- env_key = "EnvApplicationNumber";
- if(is_calypso_node_present(
- env_bit_representation, env_key, RavKavEnvStructure)) {
- int positionOffset = get_calypso_node_offset(
- env_bit_representation, env_key, RavKavEnvStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, RavKavEnvStructure) - 1;
- card->ravkav->environment.app_num =
- bit_slice_to_dec(env_bit_representation, start, end);
- }
- // EnvDateOfIssue
- env_key = "EnvDateOfIssue";
- if(is_calypso_node_present(
- env_bit_representation, env_key, RavKavEnvStructure)) {
- int positionOffset = get_calypso_node_offset(
- env_bit_representation, env_key, RavKavEnvStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, RavKavEnvStructure) - 1;
- uint64_t issue_date_timestamp =
- (bit_slice_to_dec(env_bit_representation, start, end) * 3600 *
- 24) +
- (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- issue_date_timestamp, &card->ravkav->environment.issue_dt);
- }
- // EnvEndValidity
- env_key = "EnvEndValidity";
- if(is_calypso_node_present(
- env_bit_representation, env_key, RavKavEnvStructure)) {
- int positionOffset = get_calypso_node_offset(
- env_bit_representation, env_key, RavKavEnvStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, RavKavEnvStructure) - 1;
- uint64_t end_date_timestamp =
- (bit_slice_to_dec(env_bit_representation, start, end) * 3600 *
- 24) +
- (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- end_date_timestamp, &card->ravkav->environment.end_dt);
- }
- // EnvPayMethod
- env_key = "EnvPayMethod";
- if(is_calypso_node_present(
- env_bit_representation, env_key, RavKavEnvStructure)) {
- int positionOffset = get_calypso_node_offset(
- env_bit_representation, env_key, RavKavEnvStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(env_key, RavKavEnvStructure) - 1;
- card->ravkav->environment.pay_method =
- bit_slice_to_dec(env_bit_representation, start, end);
- }
- free_calypso_structure(RavKavEnvStructure);
- // Select app for events
- error = select_new_app(
- 0x20, 0x10, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after selecting app
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- // Load the calypso structure for events
- CalypsoApp* RavKavEventStructure = get_ravkav_event_structure();
- if(!RavKavEventStructure) {
- FURI_LOG_E(TAG, "Failed to load Opus Event structure");
- break;
- }
- // Now send the read command for events
- for(size_t i = 1; i < 4; i++) {
- error = read_new_file(
- i, tx_buffer, rx_buffer, iso14443_4b_poller, app, &stage);
- if(error != 0) {
- break;
- }
- // Check the response after reading the file
- if(check_response(rx_buffer, app, &stage, &response_length) != 0) {
- break;
- }
- char event_bit_representation[response_length * 8 + 1];
- event_bit_representation[0] = '\0';
- for(size_t i = 0; i < response_length; i++) {
- char bits[9];
- uint8_t byte = bit_buffer_get_byte(rx_buffer, i);
- byte_to_binary(byte, bits);
- strlcat(
- event_bit_representation,
- bits,
- sizeof(event_bit_representation));
- }
- FURI_LOG_I(TAG, "event bit repr %s", event_bit_representation);
- // EventVersion
- const char* event_key = "EventVersion";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].event_version =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventServiceProvider
- event_key = "EventServiceProvider";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- FURI_LOG_I(TAG, "service provider: start: %d, end %d", start, end);
- card->ravkav->events[i - 1].service_provider =
- bit_slice_to_dec(event_bit_representation, start, end);
- }
- // EventContractID
- event_key = "EventContractID";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].contract_id =
- bit_slice_to_dec(event_bit_representation, start, end);
- FURI_LOG_I(TAG, "2: start: %d, end %d", start, end);
- }
- // EventAreaID
- event_key = "EventAreaID";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].area_id =
- bit_slice_to_dec(event_bit_representation, start, end);
- FURI_LOG_I(TAG, "3: start: %d, end %d", start, end);
- }
- // EventType
- event_key = "EventType";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].type =
- bit_slice_to_dec(event_bit_representation, start, end);
- FURI_LOG_I(TAG, "4: start: %d, end %d", start, end);
- }
- // EventRouteNumber
- event_key = "EventExtension";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- FURI_LOG_I(TAG, "event extension : start: %d, end %d", start, end);
- FURI_LOG_I(
- TAG,
- "event extension bitmap: %d",
- bit_slice_to_dec(event_bit_representation, start, end));
- }
- // EventTime
- event_key = "EventTime";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- uint64_t event_timestamp =
- bit_slice_to_dec(event_bit_representation, start, end) +
- (float)epoch + 3600;
- datetime_timestamp_to_datetime(
- event_timestamp, &card->ravkav->events[i - 1].time);
- FURI_LOG_I(TAG, "5: start: %d, end %d", start, end);
- }
- // EventInterchangeFlag
- event_key = "EventInterchangeFlag";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].interchange_flag =
- bit_slice_to_dec(event_bit_representation, start, end);
- FURI_LOG_I(TAG, "6: start: %d, end %d", start, end);
- }
- // EventRouteNumber
- event_key = "EventRouteNumber";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].route_number =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->ravkav->events[i - 1].route_number_available = true;
- FURI_LOG_I(TAG, "7: start: %d, end %d", start, end);
- }
- // EventRouteNumber
- event_key = "EventfareCode";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].fare_code =
- bit_slice_to_dec(event_bit_representation, start, end);
- card->ravkav->events[i - 1].fare_code = true;
- FURI_LOG_I(TAG, "8: start: %d, end %d", start, end);
- }
- // EventRouteNumber
- event_key = "EventDebitAmount";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- card->ravkav->events[i - 1].debit_amount =
- bit_slice_to_dec(event_bit_representation, start, end) / 100.0;
- card->ravkav->events[i - 1].debit_amount_available = true;
- FURI_LOG_I(TAG, "9: start: %d, end %d", start, end);
- }
- // EventRouteNumber
- event_key = "Location";
- if(is_calypso_node_present(
- event_bit_representation, event_key, RavKavEventStructure)) {
- int positionOffset = get_calypso_node_offset(
- event_bit_representation, event_key, RavKavEventStructure);
- int start = positionOffset,
- end = positionOffset +
- get_calypso_node_size(event_key, RavKavEventStructure) -
- 1;
- FURI_LOG_I(TAG, "location : start: %d, end %d", start, end);
- FURI_LOG_I(
- TAG,
- "locatrion bitmap: %d",
- bit_slice_to_dec(event_bit_representation, start, end));
- }
- }
- // Free the calypso structure
- free_calypso_structure(RavKavEventStructure);
- break;
- }
- }
- default:
- break;
- }
- widget_add_text_scroll_element(
- widget, 0, 0, 128, 64, furi_string_get_cstr(parsed_data));
- CalypsoContext* context = malloc(sizeof(CalypsoContext));
- context->card = card;
- context->page_id = 0;
- context->mutex = furi_mutex_alloc(FuriMutexTypeNormal);
- app->calypso_context = context;
- // Ensure no nested mutexes
- furi_mutex_acquire(context->mutex, FuriWaitForever);
- update_page_info(app, parsed_data);
- furi_mutex_release(context->mutex);
- widget_add_text_scroll_element(
- widget, 0, 0, 128, 64, furi_string_get_cstr(parsed_data));
- // Ensure no nested mutexes
- furi_mutex_acquire(context->mutex, FuriWaitForever);
- update_widget_elements(app);
- furi_mutex_release(context->mutex);
- furi_string_free(parsed_data);
- view_dispatcher_switch_to_view(app->view_dispatcher, MetroflipViewWidget);
- metroflip_app_blink_stop(app);
- stage = MetroflipPollerEventTypeSuccess;
- next_command = NfcCommandStop;
- } while(false);
- if(stage != MetroflipPollerEventTypeSuccess) {
- next_command = NfcCommandStop;
- }
- }
- }
- bit_buffer_free(tx_buffer);
- bit_buffer_free(rx_buffer);
- return next_command;
- }
- void metroflip_scene_calypso_on_enter(void* context) {
- Metroflip* app = context;
- dolphin_deed(DolphinDeedNfcRead);
- // Setup view
- Popup* popup = app->popup;
- popup_set_header(popup, "Apply\n card to\nthe back", 68, 30, AlignLeft, AlignTop);
- popup_set_icon(popup, 0, 3, &I_RFIDDolphinReceive_97x61);
- // Start worker
- view_dispatcher_switch_to_view(app->view_dispatcher, MetroflipViewPopup);
- nfc_scanner_alloc(app->nfc);
- app->poller = nfc_poller_alloc(app->nfc, NfcProtocolIso14443_4b);
- nfc_poller_start(app->poller, metroflip_scene_calypso_poller_callback, app);
- metroflip_app_blink_start(app);
- }
- bool metroflip_scene_calypso_on_event(void* context, SceneManagerEvent event) {
- Metroflip* app = context;
- bool consumed = false;
- if(event.type == SceneManagerEventTypeCustom) {
- if(event.event == MetroflipPollerEventTypeCardDetect) {
- Popup* popup = app->popup;
- popup_set_header(popup, "Scanning..", 68, 30, AlignLeft, AlignTop);
- consumed = true;
- } else if(event.event == MetroflipCustomEventPollerFileNotFound) {
- Popup* popup = app->popup;
- popup_set_header(popup, "Read Error,\n wrong card", 68, 30, AlignLeft, AlignTop);
- consumed = true;
- } else if(event.event == MetroflipCustomEventPollerFail) {
- Popup* popup = app->popup;
- popup_set_header(popup, "Error, try\n again", 68, 30, AlignLeft, AlignTop);
- consumed = true;
- }
- } else if(event.type == SceneManagerEventTypeBack) {
- scene_manager_search_and_switch_to_previous_scene(app->scene_manager, MetroflipSceneStart);
- consumed = true;
- }
- return consumed;
- }
- void metroflip_scene_calypso_on_exit(void* context) {
- Metroflip* app = context;
- if(app->poller) {
- nfc_poller_stop(app->poller);
- nfc_poller_free(app->poller);
- }
- metroflip_app_blink_stop(app);
- widget_reset(app->widget);
- // Clear view
- popup_reset(app->popup);
- if(app->calypso_context) {
- CalypsoContext* ctx = app->calypso_context;
- free(ctx->card->navigo);
- free(ctx->card->opus);
- free(ctx->card);
- furi_mutex_free(ctx->mutex);
- free(ctx);
- app->calypso_context = NULL;
- }
- }
|