#include "portfolio.h" char* portfolio_file_path; void portfolio_file_path_init(void) { char* home = getenv("HOME"); char* path = malloc(strlen(home) + 30); pointer_alloc_check(path); sprintf(path, "%s/.tick_portfolio.json", home); portfolio_file_path = path; } String* portfolio_ncurses_get_plaintext_string(char** password_ref) { String* pString = file_get_string(portfolio_file_path); if (pString != NULL && pString->len > 0) { // NULL if error reading file char* password = NULL; if (!rc4_ncurses_decrypt_string(pString, &password)) string_destroy(&pString); // Error decrypting if (password_ref != NULL) *password_ref = password; // Copy password if given reference else free(password); } return pString; } void portfolio_modify_write(const char* symbol, double quantity_shares, double usd_spent, int mod_option) { if (quantity_shares < 0 || usd_spent < 0) // Negative numbers RET_MSG("You must use positive values.") if (mod_option != SET && quantity_shares == 0 && usd_spent == 0) // Adding or removing 0 RET_MSG("You cannot add or remove values of 0.") FILE* fp = fopen(portfolio_file_path, "a"); // Creates empty file if portfolio doesn't exist if (fp == NULL) // If file exists, but cannot be opened, usually because of permissions RET_MSG("Error opening porfolio.") fclose(fp); char* password = NULL; // Store password for re-encryption String* pString = portfolio_ncurses_get_plaintext_string(&password); // Perform modification portfolio_modify_string(pString, symbol, quantity_shares, usd_spent, mod_option); if (password != NULL) { // If need to re-encrypt rc4_encode_string(pString, password); puts("Re-encrypting portfolio..."); free(password); } string_write_file(pString, portfolio_file_path); // Write portfolio file string_destroy(&pString); } void portfolio_modify_string(String* pString, const char* symbol, double quantity_shares, double usd_spent, int mod_option) { Json* jobj; if (pString->len == 0) // Create new array if empty file jobj = json_object_new_array(); else jobj = json_tokener_parse(pString->data); // Otherwise parse if (jobj == NULL) RET_MSG("Portfolio corrupted! Check JSON formatting."); int index = portfolio_symbol_index(symbol, jobj); if (index == -1) { // If security is not already contained in portfolio if (mod_option == REMOVE) // If trying to remove a security they don't own GOTO_CLEAN_MSG("You don't have any of this security to remove") if (strcmp("USD$", symbol) != 0) { // Check that the symbol is valid, except if it's USD Info* data = api_info_init(); strcpy(data->symbol, symbol); if (api_store_check_info(data) == NULL) {// If NULL response from APIs, it's invalid api_info_destroy(&data); GOTO_CLEAN_MSG("Invalid symbol.") } api_info_destroy(&data); } Json* new_object = json_object_new_object(); // Creates new array index and adds values to it json_object_array_add(jobj, new_object); json_object_object_add(new_object, "Symbol", json_object_new_string(symbol)); json_object_object_add(new_object, "Shares", json_object_new_double(quantity_shares)); json_object_object_add(new_object, "USD_Spent", json_object_new_double(usd_spent)); printf("Added %lf %s bought for %lf to portfolio.\n", quantity_shares, symbol, usd_spent); } else { //if already in portfolio Json* current_index = json_object_array_get_idx(jobj, (size_t) index); // Store values already in portfolio to modify. double current_shares = json_object_get_double(json_object_object_get(current_index, "Shares")); double current_spent = json_object_get_double(json_object_object_get(current_index, "USD_Spent")); json_object_object_del(current_index, "Shares"); // Deletes the objects already there json_object_object_del(current_index, "USD_Spent"); if (mod_option == SET) { // SET current_shares = quantity_shares; current_spent = usd_spent; printf("Set amount of %s in portfolio to %lf bought for %lf.\n", symbol, quantity_shares, usd_spent); } else if (mod_option == ADD) { // ADD current_shares += quantity_shares; current_spent += usd_spent; printf("Added %lf %s bought for %lf to portfolio.\n", quantity_shares, symbol, usd_spent); } else { // REMOVE current_shares -= quantity_shares; current_spent -= usd_spent; if (current_shares < 0 || current_spent < 0) // If you try to remove more than you have GOTO_CLEAN_MSG("You don't have enough of this security to remove.") printf("Removed %lf %s bought for %lf to portfolio.\n", quantity_shares, symbol, usd_spent); } if (current_shares == 0 && usd_spent == 0) // Deletes index from portfolio if values are 0 json_object_array_del_idx(jobj, (size_t) index, 1); else { // Adds computed values to index json_object_object_add(current_index, "Shares", json_object_new_double(current_shares)); json_object_object_add(current_index, "USD_Spent", json_object_new_double(current_spent)); } } const char* new_portfolio_str = json_object_to_json_string(jobj); pString->len = strlen(new_portfolio_str); pString->data = realloc(pString->data, pString->len + 1); // Realloc string with size of new length pointer_alloc_check(pString->data); strcpy(pString->data, new_portfolio_str); cleanup: // CLEANUP json_object_put(jobj); } Info_Array* portfolio_info_array_init_from_portfolio_string(String* pString) { if (pString->len == 0) // If empty portfolio file RETNULL_MSG("Your portfolio is empty.") Json* jobj = json_tokener_parse(pString->data); if (json_object_array_length(jobj) == 0) { // If empty array json_object_put(jobj); RETNULL_MSG("Your portfolio is empty."); } Info_Array* portfolio_data = api_info_array_init(); portfolio_data->length = json_object_array_length(jobj); portfolio_data->array = malloc(sizeof(Info*) * portfolio_data->length); pointer_alloc_check(portfolio_data->array); portfolio_data->totals = api_info_init(); strcpy(portfolio_data->totals->symbol, "TOTALS"); portfolio_data->totals->total_spent = 0; for (size_t i = 0; i < portfolio_data->length; i++) { portfolio_data->array[i] = api_info_init(); strcpy(portfolio_data->array[i]->symbol, json_object_get_string(json_object_object_get(json_object_array_get_idx(jobj, i), "Symbol"))); portfolio_data->array[i]->amount = json_object_get_double(json_object_object_get( json_object_array_get_idx(jobj, i), "Shares")); portfolio_data->array[i]->total_spent = json_object_get_double(json_object_object_get( json_object_array_get_idx(jobj, i), "USD_Spent")); portfolio_data->totals->total_spent += portfolio_data->array[i]->total_spent; } json_object_put(jobj); return portfolio_data; } void portfolio_sort(Info_Array* portfolio_data, int sort_option) { if (portfolio_data->length == 1) // Can't sort only one security return; int loop_flag = 1; double val1 = 0, val2 = 0; Info* sec_data1, * sec_data2, * temp; while (loop_flag) { // Bubble sort loop_flag = 0; for (size_t i = 0; i < portfolio_data->length - 1; i++) { sec_data1 = portfolio_data->array[i]; sec_data2 = portfolio_data->array[i + 1]; if (sort_option == SORT_ALPHA || sort_option > SORT_PROFIT_30D_PERCENT) { if (strcmp(sec_data1->symbol, sec_data2->symbol) > 0) { // Least to greatest temp = portfolio_data->array[i]; // Swap portfolio_data->array[i] = portfolio_data->array[i + 1]; portfolio_data->array[i + 1] = temp; loop_flag = 1; } } else if (sort_option == SORT_VALUE) { val1 = sec_data1->current_value; val2 = sec_data2->current_value; } else if (sort_option == SORT_SPENT) { val1 = sec_data1->total_spent; val2 = sec_data2->total_spent; } else if (sort_option == SORT_PROFIT) { val1 = sec_data1->profit_total; val2 = sec_data2->profit_total; } else if (sort_option == SORT_PROFIT_PERCENT) { val1 = sec_data1->profit_total_percent; val2 = sec_data2->profit_total_percent; } else if (sort_option == SORT_PROFIT_24H) { val1 = sec_data1->profit_last_close; val2 = sec_data2->profit_last_close; } else if (sort_option == SORT_PROFIT_24H_PERCENT) { val1 = sec_data1->profit_last_close_percent; val2 = sec_data2->profit_last_close_percent; } else if (sort_option == SORT_PROFIT_7D) { val1 = sec_data1->profit_7d; val2 = sec_data2->profit_7d; } else if (sort_option == SORT_PROFIT_7D_PERCENT) { val1 = sec_data1->profit_7d_percent; val2 = sec_data2->profit_7d_percent; } else if (sort_option == SORT_PROFIT_30D) { val1 = sec_data1->profit_30d; val2 = sec_data2->profit_30d; } else if (sort_option == SORT_PROFIT_30D_PERCENT) { val1 = sec_data1->profit_30d_percent; val2 = sec_data2->profit_30d_percent; } if (val1 < val2) { // Greatest to least temp = portfolio_data->array[i]; // Swap portfolio_data->array[i] = portfolio_data->array[i + 1]; portfolio_data->array[i + 1] = temp; loop_flag = 1; } } } } void portfolio_print_all(Info_Array* portfolio_data) { if (portfolio_data == NULL) return; initscr(); noecho(); // Don't echo keystrokes keypad(stdscr, TRUE); // Enables extra keystrokes curs_set(FALSE); // Hides cursor start_color(); init_pair(2, COLOR_WHITE, COLOR_BLACK); // Init black background, white foreground bkgd(COLOR_PAIR(2)); // set background/foreground refresh(); int rows, cols; getmaxyx(stdscr, rows, cols); if (cols < 110) { endwin(); puts("Terminal too small."); api_info_array_destroy(&portfolio_data); return; } WINDOW* header_window = newwin(1, cols, 0, 0), * list_window, * total_window; int scroll_on = portfolio_data->length > (size_t) rows - 3; if (scroll_on) list_window = newwin(rows - 3, cols, 1, 0); else list_window = newwin((int) portfolio_data->length, cols, 1, 0); if (scroll_on) total_window = newwin(1, cols, rows - 1, 0); else total_window = newwin(1, cols, (int) portfolio_data->length + 2, 0); int sort_option = SORT_ALPHA; // Defaults to sort alphabetically int highlight_index = HIGHLIGHT_NONE; // Defaults to no highlight char highlight_sym[SYMBOL_MAX_LENGTH]; // Symbol of highlighted index int scroll_index = 0; // Defaults to first index int ch = 0; // getch() data from keyboard // For printing/formatting categories char* sort_categories_str[] = {"SYMBOL", "VALUE", "SPENT", "PROFIT", "(%)", "24H", "(%)", "7D", "(%)", "30D", "(%)"} , * sort_spacing_str[] = {" ", " ", " ", " ", " ", " ", " ", " ", " ", " ", "\n"}; do { /** HEADER **/ wattron(header_window, A_BOLD); // Bold categories mvwprintw(header_window, 0, 0, " AMOUNT "); for (int i = 0; i < SORT_PROFIT_30D_PERCENT + 1; i++) { if (sort_option == i) // Highlight current sorting category wattron(header_window, A_STANDOUT); wprintw(header_window, "%s", sort_categories_str[i]); if (sort_option == i) wattroff(header_window, A_STANDOUT); wprintw(header_window, "%s", sort_spacing_str[i]); } wattroff(header_window, A_BOLD); wrefresh(header_window); /** LIST **/ portfolio_sort(portfolio_data, sort_option); // Sort using sort_option Info* info; for (int i = scroll_index; i < (int) portfolio_data->length && i < getmaxy(list_window) + scroll_index; i++) { if (highlight_index == i) // Bold highlighted index wattron(list_window, A_BOLD); info = portfolio_data->array[i]; // Print security data one at a time mvwprintw(list_window, i - scroll_index, 0, "%8.2lf %6s %8.2lf %8.2lf %8.2lf (%6.2lf%%) %8.2lf (%6.2lf%%) %8.2lf " "(%6.2lf%%) %8.2lf (%6.2lf%%)\n", info->amount, info->symbol, info->current_value, info->total_spent, info->profit_total, info->profit_total_percent, info->profit_last_close, info->profit_last_close_percent, info->profit_7d, info->profit_7d_percent, info->profit_30d, info->profit_30d_percent); if (highlight_index == i) wattroff(list_window, A_BOLD); } wrefresh(list_window); /** TOTALS **/ wattron(total_window, A_BOLD); // Bold totals mvwprintw(total_window, 0, 0, " TOTALS %8.2lf %8.2lf %8.2lf (%6.2lf%%) %8.2lf (%6.2lf%%) %8.2lf " "(%6.2lf%%) %8.2lf (%6.2lf%%)", portfolio_data->totals->current_value, portfolio_data->totals->total_spent, portfolio_data->totals->profit_total, portfolio_data->totals->profit_total_percent, portfolio_data->totals->profit_last_close, portfolio_data->totals->profit_last_close_percent, portfolio_data->totals->profit_7d, portfolio_data->totals->profit_7d_percent, portfolio_data->totals->profit_30d, portfolio_data->totals->profit_30d_percent); wattroff(total_window, A_BOLD); wrefresh(total_window); /** USER INPUT **/ ch = getch(); // Get keyboard input // If key right and not right-most sort option if (ch == KEY_RIGHT && sort_option != SORT_PROFIT_30D_PERCENT) { // key RIGHT -- moves sort category right if (highlight_index != HIGHLIGHT_NONE) { strcpy(highlight_sym, portfolio_data->array[highlight_index]->symbol); sort_option++; portfolio_sort(portfolio_data, sort_option); for (size_t i = 0; i < portfolio_data->length; i++) if (strcmp(portfolio_data->array[i]->symbol, highlight_sym) == 0) highlight_index = (int) i; // Make sure the same security stays highlighted } else sort_option++; // If key left and not left-most sort option } else if (ch == KEY_LEFT && sort_option != SORT_ALPHA) { // key LEFT -- moves sort category left if (highlight_index != HIGHLIGHT_NONE) { strcpy(highlight_sym, portfolio_data->array[highlight_index]->symbol); sort_option--; portfolio_sort(portfolio_data, sort_option); // Sort security array for (size_t i = 0; i < portfolio_data->length; i++) if (strcmp(portfolio_data->array[i]->symbol, highlight_sym) == 0) highlight_index = (int) i; // Make sure the same security stays highlighted } else sort_option--; // If key down and not highlighting last index } else if (ch == KEY_DOWN && highlight_index < (int) portfolio_data->length - 1) { highlight_index++; if (scroll_on && highlight_index == getmaxy(list_window) + scroll_index) // Scroll down scroll_index++; // If key down and not highlighting first index } else if (ch == KEY_UP && highlight_index > 0) { highlight_index--; if (scroll_on && highlight_index == scroll_index - 1) // Scroll up scroll_index--; } } while (ch != 'q'); // "q" to quit endwin(); } void portfolio_print_stock(const char* symbol) { String* pString = portfolio_ncurses_get_plaintext_string(NULL); if (pString == NULL) return; Json* jobj = json_tokener_parse(pString->data); size_t i = 0, len = json_object_array_length(jobj); while (i < len && strcmp( json_object_get_string(json_object_object_get(json_object_array_get_idx(jobj, i), "Symbol")), symbol) != 0) i++; if (i == len) GOTO_CLEAN_MSG("Your portfolio does not contain any of this security.") Info* info = api_info_init(); strcpy(info->symbol, symbol); api_store_check_info(info); info->amount = json_object_get_double(json_object_object_get(json_object_array_get_idx(jobj, i), "Shares")); info->total_spent = json_object_get_double(json_object_object_get(json_object_array_get_idx(jobj, i), "USD_Spent")); info_store_check_data(info); printf(" AMOUNT SYMBOL VALUE SPENT PROFIT (%%) 24H (%%) 7D " " (%%) 30D " " (%%)\n%8.2lf %6s %8.2lf %8.2lf %8.2lf (%6.2lf%%) %8.2lf (%6.2lf%%) %8.2lf (%6.2lf%%) %8.2lf (%6.2lf%%)\n", info->amount, info->symbol, info->current_value, info->total_spent, info->profit_total, info->profit_total_percent, info->profit_last_close, info->profit_last_close_percent, info->profit_7d, info->profit_7d_percent, info->profit_30d, info->profit_30d_percent); api_info_destroy(&info); cleanup: json_object_put(jobj); string_destroy(&pString); } int portfolio_symbol_index(const char* symbol, const Json* jarray) { char string[32]; for (int i = 0; i < (int) json_object_array_length(jarray); i++) { strcpy(string, json_object_to_json_string( json_object_object_get(json_object_array_get_idx(jarray, (size_t) i), "Symbol"))); strip_char(string, '\"'); if (strcmp(string, symbol) == 0) return i; } return -1; }