about summary refs log tree commit diff stats
path: root/prof.supp
blob: 084b2cd85140da5299a4a0e7fec13ad1bb9e01aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  _dl_init
  Memcheck:Leak
  ...
  fun:_dl_init
  obj:/lib/x86_64-linux-gnu/ld-2.17.so
  ...
}

# libotr

{
  otrl_init
  Memcheck:Leak
  ...
  fun:_otr_init
  fun:_init
  fun:prof_run
  ...
}

{
  otrl_privkey_read
  Memcheck:Leak
  ...
  fun:otrl_privkey_read_FILEp
  fun:otrl_privkey_read
  ...
}

# Ignore history module, needs to be rewritten

{
  history_next
  Memcheck:Leak
  ...
  fun:history_next
  ...
}

{
  history_previous
  Memcheck:Leak
  ...
  fun:history_previous
  ...
}

{
  history_append
  Memcheck:Leak
  ...
  fun:history_append
  ...
}
6 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
/*
 * console.c
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
 * Copyright (C) 2019 - 2022 Michael Vetter <jubalh@iodoru.org>
 *
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#include "config.h"

#include <string.h>
#include <stdlib.h>
#include <assert.h>

#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <ncurses.h>
#elif HAVE_CURSES_H
#include <curses.h>
#endif

#ifdef HAVE_QRENCODE
#include <qrencode.h>
#endif

#include "common.h"
#include "log.h"
#include "config/preferences.h"
#include "config/theme.h"
#include "command/cmd_defs.h"
#include "ui/window_list.h"
#include "ui/ui.h"
#include "ui/window.h"
#include "ui/statusbar.h"
#include "xmpp/xmpp.h"
#include "xmpp/muc.h"
#include "xmpp/roster_list.h"

#ifdef HAVE_GIT_VERSION
#include "gitversion.h"
#endif

static void _cons_splash_logo(void);
static void _show_roster_contacts(GSList* list, gboolean show_groups);
static GList* alert_list;

void
cons_debug(const char* const msg, ...)
{
    ProfWin* console = wins_get_console();
    if (strcmp(PACKAGE_STATUS, "development") == 0) {
        va_list arg;
        va_start(arg, msg);
        GString* fmt_msg = g_string_new(NULL);
        g_string_vprintf(fmt_msg, msg, arg);
        win_println(console, THEME_DEFAULT, "-", "%s", fmt_msg->str);
        g_string_free(fmt_msg, TRUE);
        va_end(arg);
    }
}

void
cons_show(const char* const msg, ...)
{
    ProfWin* console = wins_get_console();
    va_list arg;
    va_start(arg, msg);
    GString* fmt_msg = g_string_new(NULL);
    g_string_vprintf(fmt_msg, msg, arg);
    win_println(console, THEME_DEFAULT, "-", "%s", fmt_msg->str);
    g_string_free(fmt_msg, TRUE);
    va_end(arg);
}

void
cons_show_padded(int pad, const char* const msg, ...)
{
    ProfWin* console = wins_get_console();
    va_list arg;
    va_start(arg, msg);
    GString* fmt_msg = g_string_new(NULL);
    g_string_vprintf(fmt_msg, msg, arg);
    win_println_indent(console, pad, "%s", fmt_msg->str);
    g_string_free(fmt_msg, TRUE);
    va_end(arg);
}

void
cons_show_help(const char* const cmd, CommandHelp* help)
{
    ProfWin* console = wins_get_console();

    cons_show("");
    win_println(console, THEME_HELP_HEADER, "-", "%s", &cmd[1]);
    win_print(console, THEME_HELP_HEADER, "-", "");
    int i;
    for (i = 0; i < strlen(cmd) - 1; i++) {
        win_append(console, THEME_HELP_HEADER, "-");
    }
    win_appendln(console, THEME_HELP_HEADER, "");
    cons_show("");

    win_println(console, THEME_HELP_HEADER, "-", "Synopsis");
    ui_show_lines(console, help->synopsis);
    cons_show("");

    win_println(console, THEME_HELP_HEADER, "-", "Description");
    win_println(console, THEME_DEFAULT, "-", "%s", help->desc);

    int maxlen = 0;
    for (i = 0; help->args[i][0] != NULL; i++) {
        if (strlen(help->args[i][0]) > maxlen)
            maxlen = strlen(help->args[i][0]);
    }

    if (i > 0) {
        cons_show("");
        win_println(console, THEME_HELP_HEADER, "-", "Arguments");
        for (i = 0; help->args[i][0] != NULL; i++) {
            win_println_indent(console, maxlen + 3, "%-*s: %s", maxlen + 1, help->args[i][0], help->args[i][1]);
        }
    }

    if (g_strv_length((gchar**)help->examples) > 0) {
        cons_show("");
        win_println(console, THEME_HELP_HEADER, "-", "Examples");
        ui_show_lines(console, help->examples);
    }
}

void
cons_bad_cmd_usage(const char* const cmd)
{
    GString* msg = g_string_new("");
    g_string_printf(msg, "Invalid usage, see '/help %s' for details.", &cmd[1]);

    cons_show("");
    cons_show(msg->str);

    g_string_free(msg, TRUE);
}

void
cons_show_error(const char* const msg, ...)
{
    ProfWin* console = wins_get_console();
    va_list arg;
    va_start(arg, msg);
    GString* fmt_msg = g_string_new(NULL);
    g_string_vprintf(fmt_msg, msg, arg);
    win_println(console, THEME_ERROR, "-", "%s", fmt_msg->str);
    g_string_free(fmt_msg, TRUE);
    va_end(arg);

    cons_alert(NULL);
}

void
cons_show_tlscert_summary(const TLSCertificate* cert)
{
    if (!cert) {
        return;
    }

    cons_show("Subject     : %s", cert->subject_commonname);
    cons_show("Issuer      : %s", cert->issuer_commonname);
    cons_show("Fingerprint : %s", cert->fingerprint);
}

void
cons_show_tlscert(const TLSCertificate* cert)
{
    if (!cert) {
        return;
    }

    cons_show("Certificate:");

    cons_show("  Subject:");
    if (cert->subject_commonname) {
        cons_show("    Common name        : %s", cert->subject_commonname);
    }
    if (cert->subject_distinguishedname) {
        cons_show("    Distinguished name : %s", cert->subject_distinguishedname);
    }
    if (cert->subject_organisation) {
        cons_show("    Organisation       : %s", cert->subject_organisation);
    }
    if (cert->subject_organisation_unit) {
        cons_show("    Organisation unit  : %s", cert->subject_organisation_unit);
    }
    if (cert->subject_email) {
        cons_show("    Email              : %s", cert->subject_email);
    }
    if (cert->subject_state) {
        cons_show("    State              : %s", cert->subject_state);
    }
    if (cert->subject_country) {
        cons_show("    Country            : %s", cert->subject_country);
    }
    if (cert->subject_serialnumber) {
        cons_show("    Serial number      : %s", cert->subject_serialnumber);
    }

    cons_show("  Issuer:");
    if (cert->issuer_commonname) {
        cons_show("    Common name        : %s", cert->issuer_commonname);
    }
    if (cert->issuer_distinguishedname) {
        cons_show("    Distinguished name : %s", cert->issuer_distinguishedname);
    }
    if (cert->issuer_organisation) {
        cons_show("    Organisation       : %s", cert->issuer_organisation);
    }
    if (cert->issuer_organisation_unit) {
        cons_show("    Organisation unit  : %s", cert->issuer_organisation_unit);
    }
    if (cert->issuer_email) {
        cons_show("    Email              : %s", cert->issuer_email);
    }
    if (cert->issuer_state) {
        cons_show("    State              : %s", cert->issuer_state);
    }
    if (cert->issuer_country) {
        cons_show("    Country            : %s", cert->issuer_country);
    }
    if (cert->issuer_serialnumber) {
        cons_show("    Serial number      : %s", cert->issuer_serialnumber);
    }

    cons_show("  Version             : %d", cert->version);

    if (cert->serialnumber) {
        cons_show("  Serial number       : %s", cert->serialnumber);
    }

    if (cert->key_alg) {
        cons_show("  Key algorithm       : %s", cert->key_alg);
    }
    if (cert->signature_alg) {
        cons_show("  Signature algorithm : %s", cert->signature_alg);
    }

    cons_show("  Start               : %s", cert->notbefore);
    cons_show("  End                 : %s", cert->notafter);

    cons_show("  Fingerprint         : %s", cert->fingerprint);
}

void
cons_show_typing(const char* const barejid)
{
    ProfWin* console = wins_get_console();
    const char* display_usr = NULL;
    PContact contact = roster_get_contact(barejid);
    if (contact) {
        if (p_contact_name(contact)) {
            display_usr = p_contact_name(contact);
        } else {
            display_usr = barejid;
        }
    } else {
        display_usr = barejid;
    }

    win_println(console, THEME_TYPING, "-", "!! %s is typing a message...", display_usr);
    cons_alert(NULL);
}

char*
_room_triggers_to_string(GList* triggers)
{
    GString* triggers_str = g_string_new("");
    GList* curr = triggers;
    while (curr) {
        g_string_append_printf(triggers_str, "\"%s\"", (char*)curr->data);
        curr = g_list_next(curr);
        if (curr) {
            g_string_append(triggers_str, ", ");
        }
    }

    char* result = triggers_str->str;
    g_string_free(triggers_str, FALSE);
    return result;
}

void
cons_show_incoming_room_message(const char* const nick, const char* const room, const int win_index, gboolean mention,
                                GList* triggers, int unread, ProfWin* const window)
{
    ProfWin* const console = wins_get_console();

    int ui_index = win_index;
    if (ui_index == 10) {
        ui_index = 0;
    }

    char* muc_show = prefs_get_string(PREF_CONSOLE_MUC);

    // 'mention'
    if (g_strcmp0(muc_show, "mention") == 0) {
        if (mention) {
            win_println(console, THEME_MENTION, "-", "<< room mention: %s in %s (win %d)", nick, room, ui_index);
            cons_alert(window);
        }
        // 'all' or 'first'
    } else {
        if (mention) {
            win_println(console, THEME_MENTION, "-", "<< room mention: %s in %s (win %d)", nick, room, ui_index);
        } else if (triggers) {
            char* triggers_str = _room_triggers_to_string(triggers);
            win_println(console, THEME_TRIGGER, "-", "<< room trigger %s: %s in %s (win %d)", triggers_str, nick, room, ui_index);
            free(triggers_str);
        } else {
            // 'all' or 'first' if its the first message
            if ((g_strcmp0(muc_show, "all") == 0) || ((g_strcmp0(muc_show, "first") == 0) && (unread == 0))) {
                win_println(console, THEME_INCOMING, "-", "<< room message: %s in %s (win %d)", nick, room, ui_index);
            }
            cons_alert(window);
        }
    }

    free(muc_show);
}

void
cons_show_incoming_message(const char* const short_from, const int win_index, int unread, ProfWin* const window)
{
    ProfWin* console = wins_get_console();

    int ui_index = win_index;
    if (ui_index == 10) {
        ui_index = 0;
    }

    char* chat_show = prefs_get_string(PREF_CONSOLE_CHAT);
    if (g_strcmp0(chat_show, "all") == 0 || ((g_strcmp0(chat_show, "first") == 0) && unread == 0)) {
        win_println(console, THEME_INCOMING, "-", "<< chat message: %s (win %d)", short_from, ui_index);
        cons_alert(window);
    }

    g_free(chat_show);
}

void
cons_show_incoming_private_message(const char* const nick, const char* const room, const int win_index, int unread, ProfWin* const window)
{
    ProfWin* console = wins_get_console();

    int ui_index = win_index;
    if (ui_index == 10) {
        ui_index = 0;
    }

    char* priv_show = prefs_get_string(PREF_CONSOLE_PRIVATE);
    if (g_strcmp0(priv_show, "all") == 0 || ((g_strcmp0(priv_show, "first") == 0) && (unread == 0))) {
        win_println(console, THEME_INCOMING, "-", "<< private message: %s in %s (win %d)", nick, room, ui_index);
        cons_alert(window);
    }

    free(priv_show);
}

void
cons_about(void)
{
    ProfWin* console = wins_get_console();
    int rows, cols;
    getmaxyx(stdscr, rows, cols);

    if (prefs_get_boolean(PREF_SPLASH)) {
        _cons_splash_logo();
    } else {

        if (strcmp(PACKAGE_STATUS, "development") == 0) {
#ifdef HAVE_GIT_VERSION
            win_println(console, THEME_DEFAULT, "-", "Welcome to Profanity, version %sdev.%s.%s", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
#else
            win_println(console, THEME_DEFAULT, "Welcome to Profanity, version %sdev", PACKAGE_VERSION);
#endif
        } else {
            win_println(console, THEME_DEFAULT, "-", "Welcome to Profanity, version %s", PACKAGE_VERSION);
        }
    }

    win_println(console, THEME_DEFAULT, "-", "Copyright (C) 2012 - 2019 James Booth <boothj5web@gmail.com>.");
    win_println(console, THEME_DEFAULT, "-", "Copyright (C) 2019 - 2022 Michael Vetter <jubalh@iodoru.org>.");
    win_println(console, THEME_DEFAULT, "-", "License GPLv3+: GNU GPL version 3 or later <https://www.gnu.org/licenses/gpl.html>");
    win_println(console, THEME_DEFAULT, "-", "");
    win_println(console, THEME_DEFAULT, "-", "This is free software; you are free to change and redistribute it.");
    win_println(console, THEME_DEFAULT, "-", "There is NO WARRANTY, to the extent permitted by law.");
    win_println(console, THEME_DEFAULT, "-", "");
    win_println(console, THEME_DEFAULT, "-", "Type '/help' to show complete help.");
    win_println(console, THEME_DEFAULT, "-", "");

    if (prefs_get_boolean(PREF_VERCHECK)) {
        cons_check_version(FALSE);
    }

    pnoutrefresh(console->layout->win, 0, 0, 1, 0, rows - 3, cols - 1);

    cons_alert(NULL);
}

void
cons_check_version(gboolean not_available_msg)
{
    ProfWin* console = wins_get_console();
    char* latest_release = release_get_latest();

    if (latest_release) {
        gboolean relase_valid = g_regex_match_simple("^\\d+\\.\\d+\\.\\d+$", latest_release, 0, 0);

        if (relase_valid) {
            if (release_is_new(latest_release)) {
                win_println(console, THEME_DEFAULT, "-", "A new version of Profanity is available: %s", latest_release);
                win_println(console, THEME_DEFAULT, "-", "Check <https://profanity-im.github.io> for details.");
                win_println(console, THEME_DEFAULT, "-", "");
            } else {
                if (not_available_msg) {
                    win_println(console, THEME_DEFAULT, "-", "No new version available.");
                    win_println(console, THEME_DEFAULT, "-", "");
                }
            }

            cons_alert(NULL);
        }
        free(latest_release);
    }
}

void
cons_show_login_success(ProfAccount* account, gboolean secured)
{
    ProfWin* console = wins_get_console();

    const char* fulljid = connection_get_fulljid();
    win_print(console, THEME_DEFAULT, "-", "%s logged in successfully, ", fulljid);

    resource_presence_t presence = accounts_get_login_presence(account->name);
    const char* presence_str = string_from_resource_presence(presence);

    theme_item_t presence_colour = theme_main_presence_attrs(presence_str);
    win_append(console, presence_colour, "%s", presence_str);
    win_append(console, THEME_DEFAULT, " (priority %d)", accounts_get_priority_for_presence_type(account->name, presence));
    win_appendln(console, THEME_DEFAULT, ".");
    if (!secured) {
        cons_show_error("TLS connection not established");
    }
    cons_alert(NULL);
}

void
cons_show_wins(gboolean unread)
{
    ProfWin* console = wins_get_console();
    cons_show("");
    GSList* window_strings = wins_create_summary(unread);

    if (unread && window_strings == NULL) {
        cons_show("No windows with unread messages.");
        return;
    } else if (unread) {
        cons_show("Unread:");
    } else {
        cons_show("Active windows:");
    }

    GSList* curr = window_strings;
    while (curr) {
        if (g_strstr_len(curr->data, strlen(curr->data), " unread") > 0) {
            win_println(console, THEME_CMD_WINS_UNREAD, "-", "%s", curr->data);
        } else {
            win_println(console, THEME_DEFAULT, "-", "%s", curr->data);
        }
        curr = g_slist_next(curr);
    }
    g_slist_free_full(window_strings, free);

    cons_alert(NULL);
}

void
cons_show_wins_attention()
{
    ProfWin* console = wins_get_console();
    cons_show("");
    GSList* window_strings = wins_create_summary_attention();

    GSList* curr = window_strings;
    while (curr) {
        if (g_strstr_len(curr->data, strlen(curr->data), " unread") > 0) {
            win_println(console, THEME_CMD_WINS_UNREAD, "-", "%s", curr->data);
        } else {
            win_println(console, THEME_DEFAULT, "-", "%s", curr->data);
        }
        curr = g_slist_next(curr);
    }
    g_slist_free_full(window_strings, free);

    cons_alert(NULL);
}

void
cons_show_room_invites(GList* invites)
{
    cons_show("");
    if (invites == NULL) {
        cons_show("No outstanding chat room invites.");
    } else {
        cons_show("Chat room invites, use /join or /decline commands:");
        while (invites) {
            cons_show("  %s", invites->data);
            invites = g_list_next(invites);
        }
    }

    cons_alert(NULL);
}

void
cons_show_info(PContact pcontact)
{
    ProfWin* console = wins_get_console();
    win_show_info(console, pcontact);

    cons_alert(NULL);
}

void
cons_show_caps(const char* const fulljid, resource_presence_t presence)
{
    ProfWin* console = wins_get_console();
    cons_show("");

    EntityCapabilities* caps = caps_lookup(fulljid);
    if (caps) {
        const char* resource_presence = string_from_resource_presence(presence);

        theme_item_t presence_colour = theme_main_presence_attrs(resource_presence);
        win_print(console, presence_colour, "-", "%s", fulljid);
        win_appendln(console, THEME_DEFAULT, ":");

        // show identity
        if (caps->identity) {
            DiscoIdentity* identity = caps->identity;
            win_print(console, THEME_DEFAULT, "-", "Identity: ");
            if (identity->name) {
                win_append(console, THEME_DEFAULT, "%s", identity->name);
                if (identity->category || identity->type) {
                    win_append(console, THEME_DEFAULT, " ");
                }
            }
            if (identity->type) {
                win_append(console, THEME_DEFAULT, "%s", identity->type);
                if (identity->category) {
                    win_append(console, THEME_DEFAULT, " ");
                }
            }
            if (identity->category) {
                win_append(console, THEME_DEFAULT, "%s", identity->category);
            }
            win_newline(console);
        }

        if (caps->software_version) {
            SoftwareVersion* software_version = caps->software_version;
            if (software_version->software) {
                win_print(console, THEME_DEFAULT, "-", "Software: %s", software_version->software);
            }
            if (software_version->software_version) {
                win_append(console, THEME_DEFAULT, ", %s", software_version->software_version);
            }
            if (software_version->software || software_version->software_version) {
                win_newline(console);
            }
            if (software_version->os) {
                win_print(console, THEME_DEFAULT, "-", "OS: %s", software_version->os);
            }
            if (software_version->os_version) {
                win_append(console, THEME_DEFAULT, ", %s", software_version->os_version);
            }
            if (software_version->os || software_version->os_version) {
                win_newline(console);
            }
        }

        if (caps->features) {
            win_println(console, THEME_DEFAULT, "-", "Features:");
            GSList* feature = caps->features;
            while (feature) {
                win_println(console, THEME_DEFAULT, "-", " %s", feature->data);
                feature = g_slist_next(feature);
            }
        }
        caps_destroy(caps);

    } else {
        cons_show("No capabilities found for %s", fulljid);
    }

    cons_alert(NULL);
}

void
cons_show_received_subs(void)
{
    GList* received = presence_get_subscription_requests();
    if (received == NULL) {
        cons_show("No outstanding subscription requests.");
    } else {
        cons_show("Outstanding subscription requests from:",
                  g_list_length(received));
        while (received) {
            cons_show("  %s", received->data);
            received = g_list_next(received);
        }
        g_list_free_full(received, g_free);
    }

    cons_alert(NULL);
}

void
cons_show_sent_subs(void)
{
    if (roster_has_pending_subscriptions()) {
        GSList* contacts = roster_get_contacts(ROSTER_ORD_NAME);
        PContact contact = NULL;
        cons_show("Awaiting subscription responses from:");
        GSList* curr = contacts;
        while (curr) {
            contact = (PContact)curr->data;
            if (p_contact_pending_out(contact)) {
                cons_show("  %s", p_contact_barejid(contact));
            }
            curr = g_slist_next(curr);
        }
        g_slist_free(contacts);
    } else {
        cons_show("No pending requests sent.");
    }
    cons_alert(NULL);
}

void
cons_show_room_list(GSList* rooms, const char* const conference_node)
{
    ProfWin* console = wins_get_console();
    if (rooms && (g_slist_length(rooms) > 0)) {
        cons_show("Chat rooms at %s:", conference_node);
        while (rooms) {
            DiscoItem* room = rooms->data;
            win_print(console, THEME_DEFAULT, "-", "  %s", room->jid);
            if (room->name) {
                win_append(console, THEME_DEFAULT, ", (%s)", room->name);
            }
            win_newline(console);
            rooms = g_slist_next(rooms);
        }
    } else {
        cons_show("No chat rooms at %s", conference_node);
    }

    cons_alert(NULL);
}

void
cons_show_bookmarks(const GList* list)
{
    ProfWin* console = wins_get_console();

    if (list == NULL) {
        cons_show("");
        cons_show("No bookmarks found.");
    } else {
        cons_show("");
        cons_show("Bookmarks:");

        while (list) {
            Bookmark* item = list->data;

            theme_item_t presence_colour = THEME_TEXT;
            ProfWin* roomwin = (ProfWin*)wins_get_muc(item->barejid);

            if (muc_active(item->barejid) && roomwin) {
                presence_colour = THEME_ONLINE;
            }
            if (item->name) {
                win_print(console, presence_colour, "-", "  %s - %s", item->name, item->barejid);
            } else {
                win_print(console, presence_colour, "-", "  %s", item->barejid);
            }
            if (item->nick) {
                win_append(console, presence_colour, "/%s", item->nick);
            }
            if (item->autojoin) {
                win_append(console, presence_colour, " (autojoin)");
            }
            if (item->password) {
                win_append(console, presence_colour, " (private)");
            }
            if (muc_active(item->barejid) && roomwin) {
                int num = wins_get_num(roomwin);
                win_append(console, presence_colour, " (win %d)", num);
            }
            win_newline(console);
            list = g_list_next(list);
        }
    }

    cons_show("");
    if (prefs_get_boolean(PREF_BOOKMARK_INVITE)) {
        cons_show("Automatic invite bookmarking (/bookmark invites): ON");
    } else {
        cons_show("Automatic invite bookmarking (/bookmark invites): OFF");
    }

    cons_alert(NULL);
}

void
cons_show_bookmark(Bookmark* item)
{
    cons_show("");
    if (!item) {
        cons_show("No such bookmark");
    } else {
        cons_show("Bookmark details:");
        cons_show("Room jid           : %s", item->barejid);
        if (item->name) {
            cons_show("name               : %s", item->name);
        }
        if (item->nick) {
            cons_show("nick               : %s", item->nick);
        }
        if (item->password) {
            cons_show("password           : %s", item->password);
        }
        if (item->autojoin) {
            cons_show("autojoin           : ON");
        } else {
            cons_show("autojoin           : OFF");
        }
    }

    cons_alert(NULL);
}

void
cons_show_disco_info(const char* jid, GSList* identities, GSList* features)
{
    if ((identities && (g_slist_length(identities) > 0)) || (features && (g_slist_length(features) > 0))) {
        cons_show("");
        cons_show("Service discovery info for %s", jid);

        if (identities) {
            cons_show("  Identities");
        }
        while (identities) {
            DiscoIdentity* identity = identities->data; // anme trpe, cat
            GString* identity_str = g_string_new("    ");
            if (identity->name) {
                identity_str = g_string_append(identity_str, identity->name);
                identity_str = g_string_append(identity_str, " ");
            }
            if (identity->type) {
                identity_str = g_string_append(identity_str, identity->type);
                identity_str = g_string_append(identity_str, " ");
            }
            if (identity->category) {
                identity_str = g_string_append(identity_str, identity->category);
            }
            cons_show(identity_str->str);
            g_string_free(identity_str, TRUE);
            identities = g_slist_next(identities);
        }

        if (features) {
            cons_show("  Features:");
        }
        while (features) {
            cons_show("    %s", features->data);
            features = g_slist_next(features);
        }

        cons_alert(NULL);
    }
}

void
cons_show_disco_items(GSList* items, const char* const jid)
{
    ProfWin* console = wins_get_console();
    if (items && (g_slist_length(items) > 0)) {
        cons_show("");
        cons_show("Service discovery items for %s:", jid);
        while (items) {
            DiscoItem* item = items->data;
            win_print(console, THEME_DEFAULT, "-", "  %s", item->jid);
            if (item->name) {
                win_append(console, THEME_DEFAULT, ", (%s)", item->name);
            }
            win_appendln(console, THEME_DEFAULT, "");
            items = g_slist_next(items);
        }
    } else {
        cons_show("");
        cons_show("No service discovery items for %s", jid);
    }

    cons_alert(NULL);
}

static void
_cons_print_contact_information_item(gpointer data, gpointer user_data)
{
    cons_show("    %s", (char*)data);
}

static void
_cons_print_contact_information_hashlist_item(gpointer key, gpointer value, gpointer userdata)
{
    cons_show("  %s:", (char*)key);
    g_slist_foreach((GSList*)value, _cons_print_contact_information_item, NULL);
}

void
cons_show_disco_contact_information(GHashTable* addresses)
{
    if (addresses && g_hash_table_size(addresses) > 0) {
        cons_show("");
        cons_show("Server contact information:");

        g_hash_table_foreach(addresses, _cons_print_contact_information_hashlist_item, NULL);
    }
}

void
cons_show_qrcode(const char* const text)
{
#ifdef HAVE_QRENCODE
    static const size_t ZOOM_SIZE = 10;
    QRcode* qrcode = QRcode_encodeString(text, 0, QR_ECLEVEL_L, QR_MODE_8, 1);

    int width = (qrcode->width * ZOOM_SIZE);
    unsigned char* data = qrcode->data;

    ProfWin* console = wins_get_console();

    char* buf = calloc((width * 4) + 1, 1);
    char* pad = calloc((width * 4) + 5, 1);

    if (!buf || !pad) {
        free(pad);
        free(buf);
        return;
    }

    for (int i = 0; i < width + 2 * ZOOM_SIZE; i += ZOOM_SIZE) {
        strcat(pad, "\u2588\u2588");
    }

    win_println(console, THEME_DEFAULT, "", pad);
    for (size_t y = 0; y < width; y += ZOOM_SIZE) {
        for (size_t x = 0; x < width; x += ZOOM_SIZE) {
            strcat(buf, !(*data & 1) ? "\u2588\u2588" : "\u2800\u2800");

            data++;
        }

        // The extra squares are for padding, so that the QR code doesn't
        // "blend in" with the rest of the terminal window.
        win_println(console, THEME_DEFAULT, "", "\u2588\u2588%s\u2588\u2588", buf);
        buf[0] = '\0';
    }
    win_println(console, THEME_DEFAULT, "", "%s", pad);

    free(pad);
    free(buf);

    QRcode_free(qrcode);
#else
    cons_show("This version of Profanity has not been built with libqrencode");
#endif
}

void
cons_show_status(const char* const barejid)
{
    ProfWin* console = wins_get_console();
    PContact pcontact = roster_get_contact(barejid);

    if (pcontact) {
        win_show_contact(console, pcontact);
    } else {
        cons_show("No such contact \"%s\" in roster.", barejid);
    }

    cons_alert(NULL);
}

void
cons_show_room_invite(const char* const invitor, const char* const room, const char* const reason)
{
    char* display_from = NULL;
    PContact contact = roster_get_contact(invitor);
    if (contact) {
        if (p_contact_name(contact)) {
            display_from = strdup(p_contact_name(contact));
        } else {
            display_from = strdup(invitor);
        }
    } else {
        display_from = strdup(invitor);
    }

    cons_show("");
    cons_show("Chat room invite received:");
    cons_show("  From   : %s", display_from);
    cons_show("  Room   : %s", room);

    if (reason) {
        cons_show("  Message: %s", reason);
    }

    cons_show("Use '/join %s' to accept the invitation", room);
    cons_show("Use '/invite decline %s' to decline the invitation", room);

    if (prefs_get_boolean(PREF_NOTIFY_INVITE)) {
        notify_invite(display_from, room, reason);
    }

    free(display_from);

    cons_alert(NULL);
}

void
cons_show_account_list(gchar** accounts)
{
    ProfWin* console = wins_get_console();
    int size = g_strv_length(accounts);
    if (size > 0) {
        cons_show("Accounts:");
        for (int i = 0; i < size; i++) {
            if ((connection_get_status() == JABBER_CONNECTED) && (g_strcmp0(session_get_account_name(), accounts[i]) == 0)) {
                resource_presence_t presence = accounts_get_last_presence(accounts[i]);
                theme_item_t presence_colour = theme_main_presence_attrs(string_from_resource_presence(presence));
                win_println(console, presence_colour, "-", "%s", accounts[i]);
            } else {
                cons_show(accounts[i]);
            }
        }
        cons_show("");
    } else {
        cons_show("No accounts created yet.");
        cons_show("");
    }

    cons_alert(NULL);
}

void
cons_show_account(ProfAccount* account)
{
    ProfWin* console = wins_get_console();
    cons_show("");
    cons_show("Account %s:", account->name);
    if (account->enabled) {
        cons_show("enabled           : TRUE");
    } else {
        cons_show("enabled           : FALSE");
    }
    cons_show("jid               : %s", account->jid);
    if (account->eval_password) {
        cons_show("eval_password     : %s", account->eval_password);
    } else if (account->password) {
        cons_show("password          : [redacted]");
    }
    if (account->resource) {
        cons_show("resource          : %s", account->resource);
    }
    if (account->server) {
        cons_show("server            : %s", account->server);
    }
    if (account->port != 0) {
        cons_show("port              : %d", account->port);
    }
    if (account->muc_service) {
        cons_show("muc service       : %s", account->muc_service);
    }
    if (account->muc_nick) {
        cons_show("muc nick          : %s", account->muc_nick);
    }
    if (account->tls_policy) {
        cons_show("TLS policy        : %s", account->tls_policy);
    }
    if (account->auth_policy) {
        cons_show("Auth policy       : %s", account->auth_policy);
    }
    if (account->last_presence) {
        cons_show("Last presence     : %s", account->last_presence);
    }
    if (account->login_presence) {
        cons_show("Login presence    : %s", account->login_presence);
    }
    if (account->startscript) {
        cons_show("Start script      : %s", account->startscript);
    }
    if (account->theme) {
        cons_show("Theme             : %s", account->theme);
    }
    if (account->otr_policy) {
        cons_show("OTR policy        : %s", account->otr_policy);
    }
    if (g_list_length(account->otr_manual) > 0) {
        GString* manual = g_string_new("OTR manual        : ");
        GList* curr = account->otr_manual;
        while (curr) {
            g_string_append(manual, curr->data);
            if (curr->next) {
                g_string_append(manual, ", ");
            }
            curr = curr->next;
        }
        cons_show(manual->str);
        g_string_free(manual, TRUE);
    }
    if (g_list_length(account->otr_opportunistic) > 0) {
        GString* opportunistic = g_string_new("OTR opportunistic : ");
        GList* curr = account->otr_opportunistic;
        while (curr) {
            g_string_append(opportunistic, curr->data);
            if (curr->next) {
                g_string_append(opportunistic, ", ");
            }
            curr = curr->next;
        }
        cons_show(opportunistic->str);
        g_string_free(opportunistic, TRUE);
    }
    if (g_list_length(account->otr_always) > 0) {
        GString* always = g_string_new("OTR always        : ");
        GList* curr = account->otr_always;
        while (curr) {
            g_string_append(always, curr->data);
            if (curr->next) {
                g_string_append(always, ", ");
            }
            curr = curr->next;
        }
        cons_show(always->str);
        g_string_free(always, TRUE);
    }

    if (account->pgp_keyid) {
        cons_show("PGP Key ID        : %s", account->pgp_keyid);
    }

    cons_show("Priority          : chat:%d, online:%d, away:%d, xa:%d, dnd:%d",
              account->priority_chat, account->priority_online, account->priority_away,
              account->priority_xa, account->priority_dnd);

    if ((connection_get_status() == JABBER_CONNECTED) && (g_strcmp0(session_get_account_name(), account->name) == 0)) {
        GList* resources = connection_get_available_resources();
        GList* ordered_resources = NULL;

        GList* curr = resources;
        if (curr) {
            win_println(console, THEME_DEFAULT, "-", "Resources:");

            // sort in order of availability
            while (curr) {
                Resource* resource = curr->data;
                ordered_resources = g_list_insert_sorted(ordered_resources,
                                                         resource, (GCompareFunc)resource_compare_availability);
                curr = g_list_next(curr);
            }
        }

        g_list_free(resources);

        curr = ordered_resources;
        while (curr) {
            Resource* resource = curr->data;
            const char* resource_presence = string_from_resource_presence(resource->presence);
            theme_item_t presence_colour = theme_main_presence_attrs(resource_presence);
            win_print(console, presence_colour, "-", "  %s (%d), %s", resource->name, resource->priority, resource_presence);

            if (resource->status) {
                win_append(console, presence_colour, ", \"%s\"", resource->status);
            }
            win_appendln(console, THEME_DEFAULT, "");
            Jid* jidp = jid_create_from_bare_and_resource(account->jid, resource->name);
            EntityCapabilities* caps = caps_lookup(jidp->fulljid);
            jid_destroy(jidp);

            if (caps) {
                // show identity
                if (caps->identity) {
                    DiscoIdentity* identity = caps->identity;
                    win_print(console, THEME_DEFAULT, "-", "    Identity: ");
                    if (identity->name) {
                        win_append(console, THEME_DEFAULT, "%s", identity->name);
                        if (identity->category || identity->type) {
                            win_append(console, THEME_DEFAULT, " ");
                        }
                    }
                    if (identity->type) {
                        win_append(console, THEME_DEFAULT, "%s", identity->type);
                        if (identity->category) {
                            win_append(console, THEME_DEFAULT, " ");
                        }
                    }
                    if (identity->category) {
                        win_append(console, THEME_DEFAULT, "%s", identity->category);
                    }
                    win_newline(console);
                }

                if (caps->software_version) {
                    SoftwareVersion* software_version = caps->software_version;
                    if (software_version->software) {
                        win_print(console, THEME_DEFAULT, "-", "    Software: %s", software_version->software);
                    }
                    if (software_version->software_version) {
                        win_append(console, THEME_DEFAULT, ", %s", software_version->software_version);
                    }
                    if (software_version->software || software_version->software_version) {
                        win_newline(console);
                    }
                    if (software_version->os) {
                        win_print(console, THEME_DEFAULT, "-", "    OS: %s", software_version->os);
                    }
                    if (software_version->os_version) {
                        win_append(console, THEME_DEFAULT, ", %s", software_version->os_version);
                    }
                    if (software_version->os || software_version->os_version) {
                        win_newline(console);
                    }
                }

                caps_destroy(caps);
            }

            curr = g_list_next(curr);
        }
        g_list_free(ordered_resources);
    }

    cons_alert(NULL);
}

void
cons_show_aliases(GList* aliases)
{
    if (aliases == NULL) {
        cons_show("No aliases configured.");
        return;
    }

    GList* curr = aliases;
    cons_show("Command aliases:");
    while (curr) {
        ProfAlias* alias = curr->data;
        cons_show("  /%s -> %s", alias->name, alias->value);
        curr = g_list_next(curr);
    }
    cons_show("");
}

void
cons_theme_setting(void)
{
    char* theme = prefs_get_string(PREF_THEME);
    if (theme == NULL) {
        cons_show("Theme (/theme)                      : default");
    } else {
        cons_show("Theme (/theme)                      : %s", theme);
    }
    g_free(theme);
}

void
cons_privileges_setting(void)
{
    if (prefs_get_boolean(PREF_MUC_PRIVILEGES))
        cons_show("MUC privileges (/privileges)        : ON");
    else
        cons_show("MUC privileges (/privileges)        : OFF");
}

void
cons_beep_setting(void)
{
    if (prefs_get_boolean(PREF_BEEP))
        cons_show("Terminal beep (/beep)               : ON");
    else
        cons_show("Terminal beep (/beep)               : OFF");
}

void
cons_resource_setting(void)
{
    if (prefs_get_boolean(PREF_RESOURCE_TITLE))
        cons_show("Resource title (/resource)          : ON");
    else
        cons_show("Resource title (/resource)          : OFF");
    if (prefs_get_boolean(PREF_RESOURCE_MESSAGE))
        cons_show("Resource message (/resource)        : ON");
    else
        cons_show("Resource message (/resource)        : OFF");
}

void
cons_wrap_setting(void)
{
    if (prefs_get_boolean(PREF_WRAP))
        cons_show("Word wrap (/wrap)                   : ON");
    else
        cons_show("Word wrap (/wrap)                   : OFF");
}

void
cons_titlebar_setting(void)
{
    cons_winpos_setting();

    if (prefs_get_boolean(PREF_TLS_SHOW)) {
        cons_show("TLS show (/titlebar)                : ON");
    } else {
        cons_show("TLS show (/titlebar)                : OFF");
    }

    if (prefs_get_boolean(PREF_ENC_WARN)) {
        cons_show("Warn unencrypted (/titlebar)        : ON");
    } else {
        cons_show("Warn unencrypted (/titlebar)        : OFF");
    }

    if (prefs_get_boolean(PREF_RESOURCE_TITLE)) {
        cons_show("Resource show (/titlebar)           : ON");
    } else {
        cons_show("Resource show (/titlebar)           : OFF");
    }

    if (prefs_get_boolean(PREF_PRESENCE)) {
        cons_show("Titlebar presence (/titlebar)       : ON");
    } else {
        cons_show("Titlebar presence (/titlebar)       : OFF");
    }

    if (prefs_get_boolean(PREF_TITLEBAR_MUC_TITLE_NAME)) {
        cons_show("Titlebar show MUC name (/titlebar)       : ON");
    } else {
        cons_show("Titlebar show MUC name (/titlebar)       : OFF");
    }

    if (prefs_get_boolean(PREF_TITLEBAR_MUC_TITLE_JID)) {
        cons_show("Titlebar show MUC JID (/titlebar)       : ON");
    } else {
        cons_show("Titlebar show MUC JID (/titlebar)       : OFF");
    }
}

void
cons_console_setting(void)
{
    char* chatsetting = prefs_get_string(PREF_CONSOLE_CHAT);
    cons_show("Console chat messages (/console)    : %s", chatsetting);
    g_free(chatsetting);

    char* mucsetting = prefs_get_string(PREF_CONSOLE_MUC);
    cons_show("Console MUC messages (/console)     : %s", mucsetting);
    g_free(mucsetting);

    char* privsetting = prefs_get_string(PREF_CONSOLE_PRIVATE);
    cons_show("Console private messages (/console) : %s", privsetting);
    g_free(privsetting);
}

void
cons_presence_setting(void)
{
    if (prefs_get_boolean(PREF_PRESENCE))
        cons_show("Titlebar presence (/presence)       : ON");
    else
        cons_show("Titlebar presence (/presence)       : OFF");

    char* console = prefs_get_string(PREF_STATUSES_CONSOLE);
    char* chat = prefs_get_string(PREF_STATUSES_CHAT);
    char* room = prefs_get_string(PREF_STATUSES_MUC);

    cons_show("Console presence (/presence)        : %s", console);
    cons_show("Chat presence (/presence)           : %s", chat);
    cons_show("Room presence (/presence)           : %s", room);

    g_free(console);
    g_free(chat);
    g_free(room);
}

void
cons_flash_setting(void)
{
    if (prefs_get_boolean(PREF_FLASH))
        cons_show("Terminal flash (/flash)             : ON");
    else
        cons_show("Terminal flash (/flash)             : OFF");
}

void
cons_tray_setting(void)
{
    if (prefs_get_boolean(PREF_TRAY))
        cons_show("Tray icon (/tray)                   : ON");
    else
        cons_show("Tray icon (/tray)                   : OFF");

    if (prefs_get_boolean(PREF_TRAY_READ))
        cons_show("Tray icon read (/tray)              : ON");
    else
        cons_show("Tray icon read (/tray)              : OFF");

    int seconds = prefs_get_tray_timer();
    if (seconds == 1) {
        cons_show("Tray timer (/tray)                  : 1 second");
    } else {
        cons_show("Tray timer (/tray)                  : %d seconds", seconds);
    }
}

void
cons_splash_setting(void)
{
    if (prefs_get_boolean(PREF_SPLASH))
        cons_show("Splash screen (/splash)             : ON");
    else
        cons_show("Splash screen (/splash)             : OFF");
}

void
cons_occupants_setting(void)
{
    if (prefs_get_boolean(PREF_OCCUPANTS))
        cons_show("Occupants (/occupants)              : show");
    else
        cons_show("Occupants (/occupants)              : hide");

    if (prefs_get_boolean(PREF_OCCUPANTS_JID))
        cons_show("Occupant jids (/occupants)          : show");
    else
        cons_show("Occupant jids (/occupants)          : hide");

    if (prefs_get_boolean(PREF_OCCUPANTS_OFFLINE))
        cons_show("Occupants offline (/occupants)      : show");
    else
        cons_show("Occupants offline (/occupants)      : hide");

    if (prefs_get_boolean(PREF_OCCUPANTS_WRAP))
        cons_show("Occupants wrap (/occupants)         : ON");
    else
        cons_show("Occupants wrap (/occupants)         : OFF");

    char* occupants_ch = prefs_get_occupants_char();
    if (occupants_ch) {
        cons_show("Occupants char (/occupants)         : %s", occupants_ch);
        free(occupants_ch);
    } else {
        cons_show("Occupants char (/occupants)         : none");
    }

    gint occupant_indent = prefs_get_occupants_indent();
    cons_show("Occupant indent (/occupants)        : %d", occupant_indent);

    int size = prefs_get_occupants_size();
    cons_show("Occupants size (/occupants)         : %d", size);

    char* header_ch = prefs_get_occupants_header_char();
    if (header_ch) {
        cons_show("Occupants header char (/occupants)  : %s", header_ch);
        free(header_ch);
    } else {
        cons_show("Occupants header char (/occupants)  : none");
    }
}

void
cons_rooms_cache_setting(void)
{
    if (prefs_get_boolean(PREF_ROOM_LIST_CACHE)) {
        cons_show("Room list cache (/rooms cache)  : ON");
    } else {
        cons_show("Room list cache (/rooms cache)  : OFF");
    }
}

void
cons_autoconnect_setting(void)
{
    char* pref_connect_account = prefs_get_string(PREF_CONNECT_ACCOUNT);
    if (pref_connect_account)
        cons_show("Autoconnect (/autoconnect)      : %s", pref_connect_account);
    else
        cons_show("Autoconnect (/autoconnect)      : OFF");

    g_free(pref_connect_account);
}

void
cons_time_setting(void)
{
    char* pref_time_console = prefs_get_string(PREF_TIME_CONSOLE);
    if (g_strcmp0(pref_time_console, "off") == 0)
        cons_show("Time console (/time)                : OFF");
    else
        cons_show("Time console (/time)                : %s", pref_time_console);
    g_free(pref_time_console);

    char* pref_time_chat = prefs_get_string(PREF_TIME_CHAT);
    if (g_strcmp0(pref_time_chat, "off") == 0)
        cons_show("Time chat (/time)                   : OFF");
    else
        cons_show("Time chat (/time)                   : %s", pref_time_chat);
    g_free(pref_time_chat);

    char* pref_time_muc = prefs_get_string(PREF_TIME_MUC);
    if (g_strcmp0(pref_time_muc, "off") == 0)
        cons_show("Time MUC (/time)                    : OFF");
    else
        cons_show("Time MUC (/time)                    : %s", pref_time_muc);
    g_free(pref_time_muc);

    char* pref_time_conf = prefs_get_string(PREF_TIME_CONFIG);
    if (g_strcmp0(pref_time_conf, "off") == 0)
        cons_show("Time config (/time)                 : OFF");
    else
        cons_show("Time config (/time)                 : %s", pref_time_conf);
    g_free(pref_time_conf);

    char* pref_time_private = prefs_get_string(PREF_TIME_PRIVATE);
    if (g_strcmp0(pref_time_private, "off") == 0)
        cons_show("Time private (/time)                : OFF");
    else
        cons_show("Time private (/time)                : %s", pref_time_private);
    g_free(pref_time_private);

    char* pref_time_xml = prefs_get_string(PREF_TIME_XMLCONSOLE);
    if (g_strcmp0(pref_time_xml, "off") == 0)
        cons_show("Time XML Console (/time)            : OFF");
    else
        cons_show("Time XML Console (/time)            : %s", pref_time_xml);
    g_free(pref_time_xml);

    char* pref_time_statusbar = prefs_get_string(PREF_TIME_STATUSBAR);
    if (g_strcmp0(pref_time_statusbar, "off") == 0)
        cons_show("Time statusbar (/time)              : OFF");
    else
        cons_show("Time statusbar (/time)              : %s", pref_time_statusbar);
    g_free(pref_time_statusbar);

    char* pref_time_lastactivity = prefs_get_string(PREF_TIME_LASTACTIVITY);
    cons_show("Time last activity (/time)          : %s", pref_time_lastactivity);
    g_free(pref_time_lastactivity);
}

void
cons_vercheck_setting(void)
{
    if (prefs_get_boolean(PREF_VERCHECK))
        cons_show("Version checking (/vercheck)        : ON");
    else
        cons_show("Version checking (/vercheck)        : OFF");
}

void
cons_wintitle_setting(void)
{
    if (prefs_get_boolean(PREF_WINTITLE_SHOW)) {
        cons_show("Window title show (/wintitle)       : ON");
    } else {
        cons_show("Window title show (/wintitle)       : OFF");
    }
    if (prefs_get_boolean(PREF_WINTITLE_GOODBYE)) {
        cons_show("Window title goodbye (/wintitle)    : ON");
    } else {
        cons_show("Window title goodbye (/wintitle)    : OFF");
    }
}

void
cons_roster_setting(void)
{
    if (prefs_get_boolean(PREF_ROSTER))
        cons_show("Roster (/roster)                    : show");
    else
        cons_show("Roster (/roster)                    : hide");

    if (prefs_get_boolean(PREF_ROSTER_OFFLINE))
        cons_show("Roster offline (/roster)            : show");
    else
        cons_show("Roster offline (/roster)            : hide");

    char* header_ch = prefs_get_roster_header_char();
    if (header_ch) {
        cons_show("Roster header char (/roster)        : %s", header_ch);
        free(header_ch);
    } else {
        cons_show("Roster header char (/roster)        : none");
    }

    char* contact_ch = prefs_get_roster_contact_char();
    if (contact_ch) {
        cons_show("Roster contact char (/roster)       : %s", contact_ch);
        free(contact_ch);
    } else {
        cons_show("Roster contact char (/roster)       : none");
    }

    char* resource_ch = prefs_get_roster_resource_char();
    if (resource_ch) {
        cons_show("Roster resource char (/roster)      : %s", resource_ch);
        free(resource_ch);
    } else {
        cons_show("Roster resource char (/roster)      : none");
    }

    char* room_ch = prefs_get_roster_room_char();
    if (room_ch) {
        cons_show("Roster room char (/roster)          : %s", room_ch);
        free(room_ch);
    } else {
        cons_show("Roster room char (/roster)          : none");
    }

    char* room_priv_ch = prefs_get_roster_room_private_char();
    if (room_priv_ch) {
        cons_show("Roster room private char (/roster)  : %s", room_priv_ch);
        free(room_priv_ch);
    } else {
        cons_show("Roster room private char (/roster)  : none");
    }

    char* private_ch = prefs_get_roster_private_char();
    if (private_ch) {
        cons_show("Roster private char (/roster)       : %s", private_ch);
        free(private_ch);
    } else {
        cons_show("Roster private char (/roster)       : none");
    }

    gint contact_indent = prefs_get_roster_contact_indent();
    cons_show("Roster contact indent (/roster)     : %d", contact_indent);

    if (prefs_get_boolean(PREF_ROSTER_RESOURCE))
        cons_show("Roster resource (/roster)           : show");
    else
        cons_show("Roster resource (/roster)           : hide");

    gint resource_indent = prefs_get_roster_resource_indent();
    cons_show("Roster resource indent (/roster)    : %d", resource_indent);

    if (prefs_get_boolean(PREF_ROSTER_RESOURCE_JOIN))
        cons_show("Roster resource join (/roster)      : on");
    else
        cons_show("Roster resource join (/roster)      : off");

    if (prefs_get_boolean(PREF_ROSTER_PRESENCE))
        cons_show("Roster presence (/roster)           : show");
    else
        cons_show("Roster presence (/roster)           : hide");

    gint presence_indent = prefs_get_roster_presence_indent();
    cons_show("Roster presence indent (/roster)    : %d", presence_indent);

    if (prefs_get_boolean(PREF_ROSTER_STATUS))
        cons_show("Roster status (/roster)             : show");
    else
        cons_show("Roster status (/roster)             : hide");

    if (prefs_get_boolean(PREF_ROSTER_EMPTY))
        cons_show("Roster empty (/roster)              : show");
    else
        cons_show("Roster empty (/roster)              : hide");

    if (prefs_get_boolean(PREF_ROSTER_PRIORITY))
        cons_show("Roster priority (/roster)           : show");
    else
        cons_show("Roster priority (/roster)           : hide");

    if (prefs_get_boolean(PREF_ROSTER_CONTACTS))
        cons_show("Roster contacts (/roster)           : show");
    else
        cons_show("Roster contacts (/roster)           : hide");

    if (prefs_get_boolean(PREF_ROSTER_UNSUBSCRIBED))
        cons_show("Roster unsubscribed (/roster)       : show");
    else
        cons_show("Roster unsubscribed (/roster)       : hide");

    char* count = prefs_get_string(PREF_ROSTER_COUNT);
    if (g_strcmp0(count, "off") == 0) {
        cons_show("Roster count (/roster)              : OFF");
    } else {
        cons_show("Roster count (/roster)              : %s", count);
    }
    g_free(count);

    if (prefs_get_boolean(PREF_ROSTER_COUNT_ZERO))
        cons_show("Roster count zero (/roster)         : ON");
    else
        cons_show("Roster count zero (/roster)         : OFF");

    char* by = prefs_get_string(PREF_ROSTER_BY);
    cons_show("Roster by (/roster)                 : %s", by);
    g_free(by);

    char* order = prefs_get_string(PREF_ROSTER_ORDER);
    cons_show("Roster order (/roster)              : %s", order);
    g_free(order);

    char* unread = prefs_get_string(PREF_ROSTER_UNREAD);
    if (g_strcmp0(unread, "before") == 0) {
        cons_show("Roster unread (/roster)             : before");
    } else if (g_strcmp0(unread, "after") == 0) {
        cons_show("Roster unread (/roster)             : after");
    } else {
        cons_show("Roster unread (/roster)             : OFF");
    }
    g_free(unread);

    if (prefs_get_boolean(PREF_ROSTER_ROOMS))
        cons_show("Roster rooms (/roster)              : show");
    else
        cons_show("Roster rooms (/roster)              : hide");

    char* priv = prefs_get_string(PREF_ROSTER_PRIVATE);
    if (g_strcmp0(priv, "room") == 0) {
        cons_show("Roster private (/roster)            : room");
    } else if (g_strcmp0(priv, "group") == 0) {
        cons_show("Roster private (/roster)            : group");
    } else {
        cons_show("Roster private (/roster)            : OFF");
    }
    g_free(priv);

    char* rooms_pos = prefs_get_string(PREF_ROSTER_ROOMS_POS);
    cons_show("Roster rooms position (/roster)     : %s", rooms_pos);
    g_free(rooms_pos);

    char* rooms_by = prefs_get_string(PREF_ROSTER_ROOMS_BY);
    cons_show("Roster rooms by (/roster)           : %s", rooms_by);
    g_free(rooms_by);

    char* rooms_use = prefs_get_string(PREF_ROSTER_ROOMS_USE_AS_NAME);
    cons_show("Roster rooms use (/roster)          : %s", rooms_use);
    g_free(rooms_use);

    char* rooms_order = prefs_get_string(PREF_ROSTER_ROOMS_ORDER);
    cons_show("Roster rooms order (/roster)        : %s", rooms_order);
    g_free(rooms_order);

    char* roomsunread = prefs_get_string(PREF_ROSTER_ROOMS_UNREAD);
    if (g_strcmp0(roomsunread, "before") == 0) {
        cons_show("Roster rooms unread (/roster)       : before");
    } else if (g_strcmp0(roomsunread, "after") == 0) {
        cons_show("Roster rooms unread (/roster)       : after");
    } else {
        cons_show("Roster rooms unread (/roster)       : OFF");
    }
    g_free(roomsunread);

    int size = prefs_get_roster_size();
    cons_show("Roster size (/roster)               : %d", size);

    if (prefs_get_boolean(PREF_ROSTER_WRAP))
        cons_show("Roster wrap (/roster)               : ON");
    else
        cons_show("Roster wrap (/roster)               : OFF");
}

void
cons_show_ui_prefs(void)
{
    cons_show("UI preferences:");
    cons_show("");
    cons_theme_setting();
    cons_beep_setting();
    cons_flash_setting();
    cons_splash_setting();
    cons_winpos_setting();
    cons_wrap_setting();
    cons_time_setting();
    cons_resource_setting();
    cons_vercheck_setting();
    cons_console_setting();
    cons_occupants_setting();
    cons_roster_setting();
    cons_privileges_setting();
    cons_wintitle_setting();
    cons_presence_setting();
    cons_inpblock_setting();
    cons_titlebar_setting();
    cons_statusbar_setting();

    cons_alert(NULL);
}

void
cons_notify_setting(void)
{
    if (!is_notify_enabled()) {
        cons_show("Notification support was not included in this build.");
        return;
    }

    if (prefs_get_boolean(PREF_NOTIFY_CHAT))
        cons_show("Chat message (/notify chat)         : ON");
    else
        cons_show("Chat message (/notify chat)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_CHAT_CURRENT))
        cons_show("Chat current (/notify chat)         : ON");
    else
        cons_show("Chat current (/notify chat)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_CHAT_TEXT))
        cons_show("Chat text (/notify chat)            : ON");
    else
        cons_show("Chat text (/notify chat)            : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM))
        cons_show("Room message (/notify room)         : ON");
    else
        cons_show("Room message (/notify room)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM_MENTION))
        cons_show("Room mention (/notify room)         : ON");
    else
        cons_show("Room mention (/notify room)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM_OFFLINE))
        cons_show("Room offline messages (/notify room): ON");
    else
        cons_show("Room offline messages (/notify room): OFF");

    if (prefs_get_boolean(PREF_NOTIFY_MENTION_CASE_SENSITIVE))
        cons_show("Room mention case (/notify room)    : Case sensitive");
    else
        cons_show("Room mention case (/notify room)    : Case insensitive");

    if (prefs_get_boolean(PREF_NOTIFY_MENTION_WHOLE_WORD))
        cons_show("Room mention word (/notify room)    : Whole word only");
    else
        cons_show("Room mention word (/notify room)    : Part of word");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM_TRIGGER))
        cons_show("Room trigger (/notify room)         : ON");
    else
        cons_show("Room trigger (/notify room)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM_CURRENT))
        cons_show("Room current (/notify room)         : ON");
    else
        cons_show("Room current (/notify room)         : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_ROOM_TEXT))
        cons_show("Room text (/notify room)            : ON");
    else
        cons_show("Room text (/notify room)            : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_TYPING))
        cons_show("Composing (/notify typing)          : ON");
    else
        cons_show("Composing (/notify typing)          : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_TYPING_CURRENT))
        cons_show("Composing current (/notify typing)  : ON");
    else
        cons_show("Composing current (/notify typing)  : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_INVITE))
        cons_show("Room invites (/notify invite)       : ON");
    else
        cons_show("Room invites (/notify invite)       : OFF");

    if (prefs_get_boolean(PREF_NOTIFY_SUB))
        cons_show("Subscription requests (/notify sub) : ON");
    else
        cons_show("Subscription requests (/notify sub) : OFF");

    gint remind_period = prefs_get_notify_remind();
    if (remind_period == 0) {
        cons_show("Reminder period (/notify remind)    : OFF");
    } else if (remind_period == 1) {
        cons_show("Reminder period (/notify remind)    : 1 second");
    } else {
        cons_show("Reminder period (/notify remind)    : %d seconds", remind_period);
    }
}

void
cons_show_desktop_prefs(void)
{
    cons_show("Desktop notification preferences:");
    cons_show("");
    cons_notify_setting();
    cons_tray_setting();

    cons_alert(NULL);
}

void
cons_states_setting(void)
{
    if (prefs_get_boolean(PREF_STATES))
        cons_show("Send chat states (/states)    : ON");
    else
        cons_show("Send chat states (/states)    : OFF");
}

void
cons_outtype_setting(void)
{
    if (prefs_get_boolean(PREF_OUTTYPE))
        cons_show("Send composing (/outtype)     : ON");
    else
        cons_show("Send composing (/outtype)     : OFF");
}

void
cons_intype_setting(void)
{
    if (prefs_get_boolean(PREF_INTYPE))
        cons_show("Show typing in titlebar (/intype titlebar)       : ON");
    else
        cons_show("Show typing in titlebar (/intype titlebar)       : OFF");

    if (prefs_get_boolean(PREF_INTYPE_CONSOLE))
        cons_show("Show typing in console (/intype console)         : ON");
    else
        cons_show("Show typing in console (/intype console)         : OFF");
}

void
cons_gone_setting(void)
{
    gint gone_time = prefs_get_gone();
    if (gone_time == 0) {
        cons_show("Leave conversation (/gone)    : OFF");
    } else if (gone_time == 1) {
        cons_show("Leave conversation (/gone)    : 1 minute");
    } else {
        cons_show("Leave conversation (/gone)    : %d minutes", gone_time);
    }
}

void
cons_history_setting(void)
{
    if (prefs_get_boolean(PREF_HISTORY))
        cons_show("Chat history (/history)       : ON");
    else
        cons_show("Chat history (/history)       : OFF");
}

void
cons_carbons_setting(void)
{
    if (prefs_get_boolean(PREF_CARBONS))
        cons_show("Message carbons (/carbons)    : ON");
    else
        cons_show("Message carbons (/carbons)    : OFF");
}

void
cons_receipts_setting(void)
{
    if (prefs_get_boolean(PREF_RECEIPTS_REQUEST))
        cons_show("Request receipts (/receipts)  : ON");
    else
        cons_show("Request receipts (/receipts)  : OFF");

    if (prefs_get_boolean(PREF_RECEIPTS_SEND))
        cons_show("Send receipts (/receipts)     : ON");
    else
        cons_show("Send receipts (/receipts)     : OFF");
}

void
cons_show_chat_prefs(void)
{
    cons_show("Chat preferences:");
    cons_show("");
    cons_states_setting();
    cons_outtype_setting();
    cons_intype_setting();
    cons_gone_setting();
    cons_history_setting();
    cons_carbons_setting();
    cons_receipts_setting();

    cons_alert(NULL);
}

void
cons_inpblock_setting(void)
{
    cons_show("Input timeout (/inpblock)           : %d milliseconds", prefs_get_inpblock());
    if (prefs_get_boolean(PREF_INPBLOCK_DYNAMIC)) {
        cons_show("Dynamic timeout (/inpblock)         : ON");
    } else {
        cons_show("Dynamic timeout (/inpblock)         : OFF");
    }
}

void
cons_statusbar_setting(void)
{
    if (prefs_get_boolean(PREF_STATUSBAR_SHOW_NAME)) {
        cons_show("Show tab names (/statusbar)                 : ON");
    } else {
        cons_show("Show tab names (/statusbar)                 : OFF");
    }
    if (prefs_get_boolean(PREF_STATUSBAR_SHOW_NUMBER)) {
        cons_show("Show tab numbers (/statusbar)               : ON");
    } else {
        cons_show("Show tab numbers (/statusbar)               : OFF");
    }

    if (prefs_get_boolean(PREF_STATUSBAR_SHOW_NUMBER)) {
        cons_show("Show tab with no actions (/statusbar)       : ON");
    } else {
        cons_show("Show tab with no actions (/statusbar)       : OFF");
    }

    cons_show("Max tabs (/statusbar)                       : %d", prefs_get_statusbartabs());

    gint pref_len = prefs_get_statusbartablen();
    if (pref_len == 0) {
        cons_show("Max tab length (/statusbar)                 : OFF");
    } else {
        cons_show("Max tab length (/statusbar)                 : %d", pref_len);
    }

    char* pref_self = prefs_get_string(PREF_STATUSBAR_SELF);
    if (g_strcmp0(pref_self, "off") == 0) {
        cons_show("Self statusbar display (/statusbar)         : OFF");
    } else {
        cons_show("Self statusbar display (/statusbar)         : %s", pref_self);
    }
    g_free(pref_self);

    char* pref_chat = prefs_get_string(PREF_STATUSBAR_CHAT);
    cons_show("Chat tab display (/statusbar)               : %s", pref_chat);
    g_free(pref_chat);

    char* pref_room = prefs_get_string(PREF_STATUSBAR_ROOM);
    cons_show("Room tab display (/statusbar)               : %s", pref_room);
    g_free(pref_room);
}

void
cons_winpos_setting(void)
{
    ProfWinPlacement* placement = prefs_get_win_placement();
    cons_show("Title bar position (/titlebar)       : %d", placement->titlebar_pos);
    cons_show("Main window position (/mainwin)      : %d", placement->mainwin_pos);
    cons_show("Status bar position (/statusbar)     : %d", placement->statusbar_pos);
    cons_show("Input window position (/inputwin)    : %d", placement->inputwin_pos);
    prefs_free_win_placement(placement);
}

void
cons_log_setting(void)
{
    cons_show("Log file location           : %s", get_log_file_location());
    cons_show("Max log size (/log maxsize) : %d bytes", prefs_get_max_log_size());

    if (prefs_get_boolean(PREF_LOG_ROTATE))
        cons_show("Log rotation (/log rotate)  : ON");
    else
        cons_show("Log rotation (/log rotate)  : OFF");

    if (prefs_get_boolean(PREF_LOG_SHARED))
        cons_show("Shared log (/log shared)    : ON");
    else
        cons_show("Shared log (/log shared)    : OFF");
}

void
cons_logging_setting(void)
{
    if (prefs_get_boolean(PREF_CHLOG))
        cons_show("Chat logging (/logging chat)                : ON");
    else
        cons_show("Chat logging (/logging chat)                : OFF");

    if (prefs_get_boolean(PREF_GRLOG))
        cons_show("Groupchat logging (/logging group)          : ON");
    else
        cons_show("Groupchat logging (/logging group)          : OFF");
}

void
cons_show_log_prefs(void)
{
    cons_show("Logging preferences:");
    cons_show("");
    cons_log_setting();
    cons_logging_setting();

    cons_alert(NULL);
}

void
cons_autoaway_setting(void)
{
    char* pref_autoaway_mode = prefs_get_string(PREF_AUTOAWAY_MODE);
    if (strcmp(pref_autoaway_mode, "off") == 0) {
        cons_show("Autoaway (/autoaway mode)                 : OFF");
    } else {
        cons_show("Autoaway (/autoaway mode)                 : %s", pref_autoaway_mode);
    }
    g_free(pref_autoaway_mode);

    int away_time = prefs_get_autoaway_time();
    if (away_time == 1) {
        cons_show("Autoaway away minutes (/autoaway time)    : 1 minute");
    } else {
        cons_show("Autoaway away minutes (/autoaway time)    : %d minutes", away_time);
    }

    int xa_time = prefs_get_autoxa_time();
    if (xa_time == 0) {
        cons_show("Autoaway xa minutes (/autoaway time)      : OFF");
    } else if (xa_time == 1) {
        cons_show("Autoaway xa minutes (/autoaway time)      : 1 minute");
    } else {
        cons_show("Autoaway xa minutes (/autoaway time)      : %d minutes", xa_time);
    }

    char* pref_autoaway_message = prefs_get_string(PREF_AUTOAWAY_MESSAGE);
    if ((pref_autoaway_message == NULL) || (strcmp(pref_autoaway_message, "") == 0)) {
        cons_show("Autoaway away message (/autoaway message) : OFF");
    } else {
        cons_show("Autoaway away message (/autoaway message) : \"%s\"", pref_autoaway_message);
    }
    g_free(pref_autoaway_message);

    char* pref_autoxa_message = prefs_get_string(PREF_AUTOXA_MESSAGE);
    if ((pref_autoxa_message == NULL) || (strcmp(pref_autoxa_message, "") == 0)) {
        cons_show("Autoaway xa message (/autoaway message)   : OFF");
    } else {
        cons_show("Autoaway xa message (/autoaway message)   : \"%s\"", pref_autoxa_message);
    }
    g_free(pref_autoxa_message);

    if (prefs_get_boolean(PREF_AUTOAWAY_CHECK)) {
        cons_show("Autoaway check (/autoaway check)          : ON");
    } else {
        cons_show("Autoaway check (/autoaway check)          : OFF");
    }
}

void
cons_show_presence_prefs(void)
{
    cons_show("Presence preferences:");
    cons_show("");
    cons_autoaway_setting();

    if (prefs_get_boolean(PREF_LASTACTIVITY)) {
        cons_show("Send last activity (/lastactivity)        : ON");
    } else {
        cons_show("Send last activity (/lastactivity)        : OFF");
    }

    cons_alert(NULL);
}

void
cons_reconnect_setting(void)
{
    gint reconnect_interval = prefs_get_reconnect();
    if (reconnect_interval == 0) {
        cons_show("Reconnect interval (/reconnect) : OFF");
    } else if (reconnect_interval == 1) {
        cons_show("Reconnect interval (/reconnect) : 1 second");
    } else {
        cons_show("Reconnect interval (/reconnect) : %d seconds", reconnect_interval);
    }
}

void
cons_autoping_setting(void)
{
    gint autoping_interval = prefs_get_autoping();
    if (autoping_interval == 0) {
        cons_show("Autoping interval (/autoping)   : OFF");
    } else if (autoping_interval == 1) {
        cons_show("Autoping interval (/autoping)   : 1 second");
    } else {
        cons_show("Autoping interval (/autoping)   : %d seconds", autoping_interval);
    }

    gint autoping_timeout = prefs_get_autoping_timeout();
    if (autoping_timeout == 0) {
        cons_show("Autoping timeout (/autoping)    : OFF");
    } else if (autoping_timeout == 1) {
        cons_show("Autoping timeout (/autoping)    : 1 second");
    } else {
        cons_show("Autoping timeout (/autoping)    : %d seconds", autoping_timeout);
    }
}

void
cons_color_setting(void)
{
    char* color_pref = prefs_get_string(PREF_COLOR_NICK);

    if (!color_pref) {
        cons_show("Consistent color generation for nicks (/color)                     : OFF");
        return;
    }

    if (strcmp(color_pref, "true") == 0) {
        cons_show("Consistent color generation for nicks (/color)                     : ON");
    } else if (strcmp(color_pref, "redgreen") == 0) {
        cons_show("Consistent color generation for nicks (/color)                     : REDGREEN");
    } else if (strcmp(color_pref, "blue") == 0) {
        cons_show("Consistent color generation for nicks (/color)                     : BLUE");
    } else {
        cons_show("Consistent color generation for nicks (/color)                     : OFF");
    }

    g_free(color_pref);

    if (prefs_get_boolean(PREF_COLOR_NICK_OWN)) {
        cons_show("Consistent color generation for own nick (/color own)              : ON");
    } else {
        cons_show("Consistent color generation for own nick (/color own)              : OFF");
    }

    if (prefs_get_boolean(PREF_ROSTER_COLOR_NICK)) {
        cons_show("Consistent color generation in roster (/roster color)              : ON");
    } else {
        cons_show("Consistent color generation in roster (/roster color)              : OFF");
    }

    if (prefs_get_boolean(PREF_OCCUPANTS_COLOR_NICK)) {
        cons_show("Consistent color generation for occupants (/occupants color)       : ON");
    } else {
        cons_show("Consistent color generation for occupants (/occupants color)       : OFF");
    }
}

void
cons_os_setting(void)
{
    if (prefs_get_boolean(PREF_REVEAL_OS)) {
        cons_show("Reveal OS name when asked for software version (XEP-0092) (/os)    : ON");
    } else {
        cons_show("Reveal OS name when asked for software version (XEP-0092) (/os)    : OFF");
    }
}

void
cons_correction_setting(void)
{
    if (prefs_get_boolean(PREF_CORRECTION_ALLOW)) {
        cons_show("Last Message Correction (XEP-0308) (/correction)                   : ON");
    } else {
        cons_show("Last Message Correction (XEP-0308) (/correction)                   : OFF");
    }

    char* cc = prefs_get_correction_char();
    cons_show("LMC indication char (/correction char)                             : %s", cc);
    free(cc);
}

void
cons_executable_setting(void)
{
    gchar* avatar = prefs_get_string(PREF_AVATAR_CMD);
    cons_show("Default '/avatar open' command (/executable avatar)                      : %s", avatar);
    g_free(avatar);

    // TODO: there needs to be a way to get all the "locales"/schemes so we can
    // display the default openers for all filetypes
    gchar* urlopen = prefs_get_string(PREF_URL_OPEN_CMD);
    cons_show("Default '/url open' command (/executable urlopen)                        : %s", urlopen);
    g_free(urlopen);

    gchar* urlsave = prefs_get_string(PREF_URL_SAVE_CMD);
    if (urlsave == NULL) {
        urlsave = g_strdup("(built-in)");
    }
    cons_show("Default '/url save' command (/executable urlsave)                        : %s", urlsave);
    g_free(urlsave);

    gchar* editor = prefs_get_string(PREF_COMPOSE_EDITOR);
    cons_show("Default '/editor' command (/executable editor)                           : %s", editor);
    g_free(editor);
}

void
cons_slashguard_setting(void)
{
    if (prefs_get_boolean(PREF_SLASH_GUARD)) {
        cons_show("Slashguard (/slashguard)       : ON");
    } else {
        cons_show("Slashguard (/slashguard)       : OFF");
    }
}

void
cons_mam_setting(void)
{
    if (prefs_get_boolean(PREF_MAM)) {
        cons_show("Message Archive Management (XEP-0313) (/mam)    : ON");
    } else {
        cons_show("Message Archive Management (XEP-0313) (/mam)    : OFF");
    }
}

void
cons_silence_setting(void)
{
    if (prefs_get_boolean(PREF_SILENCE_NON_ROSTER)) {
        cons_show("Block all messages from JIDs that are not in the roster (/silence)    : ON");
    } else {
        cons_show("Block all messages from JIDs that are not in the roster (/silence)    : OFF");
    }
}

void
cons_show_connection_prefs(void)
{
    cons_show("Connection preferences:");
    cons_show("");
    cons_reconnect_setting();
    cons_autoping_setting();
    cons_autoconnect_setting();
    cons_rooms_cache_setting();

    cons_alert(NULL);
}

void
cons_show_otr_prefs(void)
{
    cons_show("OTR preferences:");
    cons_show("");

    char* policy_value = prefs_get_string(PREF_OTR_POLICY);
    cons_show("OTR policy (/otr policy) : %s", policy_value);
    g_free(policy_value);

    char* log_value = prefs_get_string(PREF_OTR_LOG);
    if (strcmp(log_value, "on") == 0) {
        cons_show("OTR logging (/otr log)   : ON");
    } else if (strcmp(log_value, "off") == 0) {
        cons_show("OTR logging (/otr log)   : OFF");
    } else {
        cons_show("OTR logging (/otr log)   : Redacted");
    }
    g_free(log_value);

    char* ch = prefs_get_otr_char();
    cons_show("OTR char (/otr char)     : %s", ch);
    free(ch);

    if (prefs_get_boolean(PREF_OTR_SENDFILE)) {
        cons_show("Allow sending unencrypted files in an OTR session via /sendfile (/otr sendfile): ON");
    } else {
        cons_show("Allow sending unencrypted files in an OTR session via /sendfile (/otr sendfile): OFF");
    }

    cons_alert(NULL);
}

void
cons_show_pgp_prefs(void)
{
    cons_show("PGP preferences:");
    cons_show("");

    char* log_value = prefs_get_string(PREF_PGP_LOG);
    if (strcmp(log_value, "on") == 0) {
        cons_show("PGP logging (/pgp log)   : ON");
    } else if (strcmp(log_value, "off") == 0) {
        cons_show("PGP logging (/pgp log)   : OFF");
    } else {
        cons_show("PGP logging (/pgp log)   : Redacted");
    }
    g_free(log_value);

    char* ch = prefs_get_pgp_char();
    cons_show("PGP char (/pgp char)     : %s", ch);
    free(ch);

    if (prefs_get_boolean(PREF_PGP_SENDFILE)) {
        cons_show("Allow sending unencrypted files via /sendfile while otherwise using PGP (/pgp sendfile): ON");
    } else {
        cons_show("Allow sending unencrypted files via /sendfile while otherwise using PGP (/pgp sendfile): OFF");
    }

    cons_alert(NULL);
}

void
cons_show_omemo_prefs(void)
{
    cons_show("OMEMO preferences:");
    cons_show("");

    char* policy_value = prefs_get_string(PREF_OMEMO_POLICY);
    cons_show("OMEMO policy (/omemo policy) : %s", policy_value);
    g_free(policy_value);

    char* log_value = prefs_get_string(PREF_OMEMO_LOG);
    if (strcmp(log_value, "on") == 0) {
        cons_show("OMEMO logging (/omemo log)   : ON");
    } else if (strcmp(log_value, "off") == 0) {
        cons_show("OMEMO logging (/omemo log)   : OFF");
    } else {
        cons_show("OMEMO logging (/omemo log)   : Redacted");
    }
    g_free(log_value);

    char* ch = prefs_get_omemo_char();
    cons_show("OMEMO char (/omemo char)     : %s", ch);
    free(ch);

    cons_alert(NULL);
}

void
cons_show_ox_prefs(void)
{
    cons_show("OX preferences:");
    cons_show("");

    char* log_value = prefs_get_string(PREF_OX_LOG);
    if (strcmp(log_value, "on") == 0) {
        cons_show("OX logging (/ox log)   : ON");
    } else if (strcmp(log_value, "off") == 0) {
        cons_show("OX logging (/ox log)   : OFF");
    } else {
        cons_show("OX logging (/ox log)   : Redacted");
    }
    g_free(log_value);

    char* ch = prefs_get_ox_char();
    cons_show("OX char (/ox char)     : %s", ch);
    free(ch);

    cons_alert(NULL);
}

void
cons_show_themes(GSList* themes)
{
    cons_show("");

    if (themes == NULL) {
        cons_show("No available themes.");
    } else {
        cons_show("Available themes:");
        while (themes) {
            cons_show(themes->data);
            themes = g_slist_next(themes);
        }
    }

    cons_alert(NULL);
}

void
cons_show_scripts(GSList* scripts)
{
    cons_show("");

    if (scripts == NULL) {
        cons_show("No scripts available.");
    } else {
        cons_show("Scripts:");
        while (scripts) {
            cons_show(scripts->data);
            scripts = g_slist_next(scripts);
        }
    }

    cons_alert(NULL);
}

void
cons_show_script(const char* const script, GSList* commands)
{
    cons_show("");

    if (commands == NULL) {
        cons_show("Script not found: %s", script);
    } else {
        cons_show("%s:", script);
        while (commands) {
            cons_show("  %s", commands->data);
            commands = g_slist_next(commands);
        }
    }

    cons_alert(NULL);
}

void
cons_prefs(void)
{
    cons_show("");
    cons_show_ui_prefs();
    cons_show("");
    cons_show_desktop_prefs();
    cons_show("");
    cons_show_chat_prefs();
    cons_show("");
    cons_show_log_prefs();
    cons_show("");
    cons_show_presence_prefs();
    cons_show("");
    cons_show_connection_prefs();
    cons_show("");
    cons_show_otr_prefs();
    cons_show("");
    cons_show_pgp_prefs();
    cons_show("");
    cons_show_omemo_prefs();
    cons_show("");
    cons_show_ox_prefs();
    cons_show("");

    cons_alert(NULL);
}

void
cons_help(void)
{
    int pad = strlen("/help commands connection") + 3;

    cons_show("");
    cons_show("Choose a help option:");
    cons_show("");
    cons_show_padded(pad, "/help commands            : List all commands.");
    cons_show_padded(pad, "/help commands chat       : List chat commands.");
    cons_show_padded(pad, "/help commands groupchat  : List groupchat commands.");
    cons_show_padded(pad, "/help commands roster     : List commands for manipulating your roster.");
    cons_show_padded(pad, "/help commands presence   : List commands to change your presence.");
    cons_show_padded(pad, "/help commands discovery  : List service discovery commands.");
    cons_show_padded(pad, "/help commands connection : List commands related to managing your connection.");
    cons_show_padded(pad, "/help commands ui         : List commands for manipulating the user interface.");
    cons_show_padded(pad, "/help commands plugins    : List plugin commands.");
    cons_show_padded(pad, "/help [command]           : Detailed help on a specific command.");
    cons_show_padded(pad, "/help navigation          : How to navigate around Profanity.");
    cons_show("");

    cons_alert(NULL);
}

void
cons_navigation_help(void)
{
    ProfWin* console = wins_get_console();
    cons_show("");
    win_println(console, THEME_HELP_HEADER, "-", "Navigation");
    cons_show("Alt-1..Alt-0, F1..F10    : Choose window.");
    cons_show("Alt-LEFT, Alt-RIGHT      : Previous/next chat window.");
    cons_show("PAGEUP, PAGEDOWN         : Page the main window.");
    cons_show("Alt-PAGEUP, Alt-PAGEDOWN : Page occupants/roster panel.");
    cons_show("Alt-a                    : Jump to the next unread window.");
    cons_show("Alt-v                    : Mark current window with attention flag.");
    cons_show("Alt-m                    : Switch between marked windows.");
    cons_show("");
    cons_show("/win <n>        : Focus window n, where n is the window number.");
    cons_show("/win <name>     : Focus window with name, where name is the recipient, room or window title.");
    cons_show("");
    cons_show("See '/help win' for more information.");

    cons_alert(NULL);
}

void
cons_show_roster_group(const char* const group, GSList* list)
{
    cons_show("");

    if (list) {
        cons_show("%s:", group);
    } else {
        cons_show("No group named %s exists.", group);
    }

    _show_roster_contacts(list, FALSE);

    cons_alert(NULL);
}

void
cons_show_roster(GSList* list)
{
    cons_show("");
    cons_show("Roster: jid (nick) - subscription - groups");

    _show_roster_contacts(list, TRUE);

    cons_alert(NULL);
}

void
cons_show_contact_online(PContact contact, Resource* resource, GDateTime* last_activity)
{
    const char* show = string_from_resource_presence(resource->presence);
    char* display_str = p_contact_create_display_string(contact, resource->name);

    ProfWin* console = wins_get_console();
    win_show_status_string(console, display_str, show, resource->status, last_activity,
                           "++", "online");

    free(display_str);
}

void
cons_show_contact_offline(PContact contact, char* resource, char* status)
{
    char* display_str = p_contact_create_display_string(contact, resource);

    ProfWin* console = wins_get_console();
    win_show_status_string(console, display_str, "offline", status, NULL, "--",
                           "offline");
    free(display_str);
}

void
cons_show_contacts(GSList* list)
{
    ProfWin* console = wins_get_console();
    GSList* curr = list;

    while (curr) {
        PContact contact = curr->data;
        if ((strcmp(p_contact_subscription(contact), "to") == 0) || (strcmp(p_contact_subscription(contact), "both") == 0)) {
            win_show_contact(console, contact);
        }
        curr = g_slist_next(curr);
    }
    cons_alert(NULL);
}

void
cons_alert(ProfWin* alert_origin_window)
{
    ProfWin* current = wins_get_current();
    if (current->type != WIN_CONSOLE) {
        status_bar_new(1, WIN_CONSOLE, "console");

        char* win_name;
        if (alert_origin_window) {
            win_name = win_to_string(alert_origin_window);
        } else {
            win_name = strdup("console");
        }

        GList* item = g_list_find_custom(alert_list, win_name, (GCompareFunc)g_strcmp0);
        if (!item) {
            alert_list = g_list_append(alert_list, g_strdup(win_name));
        }

        free(win_name);
    }
}

char*
cons_get_string(ProfConsoleWin* conswin)
{
    assert(conswin != NULL);

    return strdup("Console");
}

void
_cons_theme_bar_prop(theme_item_t theme, char* prop)
{
    ProfWin* console = wins_get_console();

    GString* propstr = g_string_new(" ");
    g_string_append_printf(propstr, "%-24s", prop);
    win_print(console, THEME_TEXT, "-", "%s", propstr->str);
    g_string_free(propstr, TRUE);

    GString* valstr = g_string_new(" ");
    char* setting = theme_get_string(prop);
    g_string_append_printf(valstr, "%s ", setting);
    theme_free_string(setting);
    win_append(console, theme, "%s", valstr->str);
    win_appendln(console, THEME_TEXT, "");
    g_string_free(valstr, TRUE);
}

void
_cons_theme_prop(theme_item_t theme, char* prop)
{
    ProfWin* console = wins_get_console();

    GString* propstr = g_string_new(" ");
    g_string_append_printf(propstr, "%-24s", prop);
    win_print(console, THEME_TEXT, "-", "%s", propstr->str);
    g_string_free(propstr, TRUE);

    GString* valstr = g_string_new("");
    char* setting = theme_get_string(prop);
    g_string_append_printf(valstr, "%s", setting);
    theme_free_string(setting);
    win_appendln(console, theme, "%s", valstr->str);
    g_string_free(valstr, TRUE);
}

void
cons_theme_properties(void)
{
    cons_show("Current colours:");
    _cons_theme_bar_prop(THEME_TITLE_TEXT, "titlebar.text");
    _cons_theme_bar_prop(THEME_TITLE_BRACKET, "titlebar.brackets");

    _cons_theme_bar_prop(THEME_TITLE_SCROLLED, "titlebar.scrolled");

    _cons_theme_bar_prop(THEME_TITLE_UNENCRYPTED, "titlebar.unencrypted");
    _cons_theme_bar_prop(THEME_TITLE_ENCRYPTED, "titlebar.encrypted");
    _cons_theme_bar_prop(THEME_TITLE_UNTRUSTED, "titlebar.untrusted");
    _cons_theme_bar_prop(THEME_TITLE_TRUSTED, "titlebar.trusted");

    _cons_theme_bar_prop(THEME_TITLE_CHAT, "titlebar.chat");
    _cons_theme_bar_prop(THEME_TITLE_ONLINE, "titlebar.online");
    _cons_theme_bar_prop(THEME_TITLE_AWAY, "titlebar.away");
    _cons_theme_bar_prop(THEME_TITLE_XA, "titlebar.xa");
    _cons_theme_bar_prop(THEME_TITLE_DND, "titlebar.dnd");
    _cons_theme_bar_prop(THEME_TITLE_OFFLINE, "titlebar.offline");

    _cons_theme_bar_prop(THEME_STATUS_TEXT, "statusbar.text");
    _cons_theme_bar_prop(THEME_STATUS_BRACKET, "statusbar.brackets");
    _cons_theme_bar_prop(THEME_STATUS_ACTIVE, "statusbar.active");
    _cons_theme_bar_prop(THEME_STATUS_CURRENT, "statusbar.current");
    _cons_theme_bar_prop(THEME_STATUS_NEW, "statusbar.new");
    _cons_theme_bar_prop(THEME_STATUS_TIME, "statusbar.time");

    _cons_theme_prop(THEME_TIME, "main.time");
    _cons_theme_prop(THEME_TEXT, "main.text");
    _cons_theme_prop(THEME_SPLASH, "main.splash");
    _cons_theme_prop(THEME_ERROR, "error");
    _cons_theme_prop(THEME_OTR_STARTED_TRUSTED, "otr.started.trusted");
    _cons_theme_prop(THEME_OTR_STARTED_UNTRUSTED, "otr.started.untrusted");
    _cons_theme_prop(THEME_OTR_ENDED, "otr.ended");
    _cons_theme_prop(THEME_OTR_TRUSTED, "otr.trusted");
    _cons_theme_prop(THEME_OTR_UNTRUSTED, "otr.untrusted");

    _cons_theme_prop(THEME_ME, "me");
    _cons_theme_prop(THEME_TEXT_ME, "main.text.me");
    _cons_theme_prop(THEME_THEM, "them");
    _cons_theme_prop(THEME_TEXT_THEM, "main.text.them");
    _cons_theme_prop(THEME_TEXT_HISTORY, "main.text.history");

    _cons_theme_prop(THEME_CHAT, "chat");
    _cons_theme_prop(THEME_ONLINE, "online");
    _cons_theme_prop(THEME_AWAY, "away");
    _cons_theme_prop(THEME_XA, "xa");
    _cons_theme_prop(THEME_DND, "dnd");
    _cons_theme_prop(THEME_OFFLINE, "offline");
    _cons_theme_prop(THEME_SUBSCRIBED, "subscribed");
    _cons_theme_prop(THEME_UNSUBSCRIBED, "unsubscribed");

    _cons_theme_prop(THEME_INCOMING, "incoming");
    _cons_theme_prop(THEME_MENTION, "mention");
    _cons_theme_prop(THEME_TRIGGER, "trigger");
    _cons_theme_prop(THEME_TYPING, "typing");
    _cons_theme_prop(THEME_GONE, "gone");

    _cons_theme_prop(THEME_ROOMINFO, "roominfo");
    _cons_theme_prop(THEME_ROOMMENTION, "roommention");
    _cons_theme_prop(THEME_ROOMMENTION_TERM, "roommention.term");
    _cons_theme_prop(THEME_ROOMTRIGGER, "roomtrigger");
    _cons_theme_prop(THEME_ROOMTRIGGER_TERM, "roomtrigger.term");

    _cons_theme_prop(THEME_ROSTER_HEADER, "roster.header");
    _cons_theme_prop(THEME_ROSTER_CHAT, "roster.chat");
    _cons_theme_prop(THEME_ROSTER_ONLINE, "roster.online");
    _cons_theme_prop(THEME_ROSTER_AWAY, "roster.away");
    _cons_theme_prop(THEME_ROSTER_XA, "roster.xa");
    _cons_theme_prop(THEME_ROSTER_DND, "roster.dnd");
    _cons_theme_prop(THEME_ROSTER_OFFLINE, "roster.offline");
    _cons_theme_prop(THEME_ROSTER_CHAT_ACTIVE, "roster.chat.active");
    _cons_theme_prop(THEME_ROSTER_ONLINE_ACTIVE, "roster.online.active");
    _cons_theme_prop(THEME_ROSTER_AWAY_ACTIVE, "roster.away.active");
    _cons_theme_prop(THEME_ROSTER_XA_ACTIVE, "roster.xa.active");
    _cons_theme_prop(THEME_ROSTER_DND_ACTIVE, "roster.dnd.active");
    _cons_theme_prop(THEME_ROSTER_OFFLINE_ACTIVE, "roster.offline.active");
    _cons_theme_prop(THEME_ROSTER_CHAT_UNREAD, "roster.chat.unread");
    _cons_theme_prop(THEME_ROSTER_ONLINE_UNREAD, "roster.online.unread");
    _cons_theme_prop(THEME_ROSTER_AWAY_UNREAD, "roster.away.unread");
    _cons_theme_prop(THEME_ROSTER_XA_UNREAD, "roster.xa.unread");
    _cons_theme_prop(THEME_ROSTER_DND_UNREAD, "roster.dnd.unread");
    _cons_theme_prop(THEME_ROSTER_OFFLINE_UNREAD, "roster.offline.unread");
    _cons_theme_prop(THEME_ROSTER_ROOM, "roster.room");
    _cons_theme_prop(THEME_ROSTER_ROOM_UNREAD, "roster.room.unread");
    _cons_theme_prop(THEME_ROSTER_ROOM_TRIGGER, "roster.room.trigger");
    _cons_theme_prop(THEME_ROSTER_ROOM_MENTION, "roster.room.mention");

    _cons_theme_prop(THEME_OCCUPANTS_HEADER, "occupants.header");

    _cons_theme_prop(THEME_RECEIPT_SENT, "receipt.sent");

    _cons_theme_prop(THEME_INPUT_TEXT, "input.text");

    cons_show("");
}

void
cons_theme_colours(void)
{
    /*
     *     { "default", -1 },
    { "white", COLOR_WHITE },
    { "green", COLOR_GREEN },
    { "red", COLOR_RED },
    { "yellow", COLOR_YELLOW },
    { "blue", COLOR_BLUE },
    { "cyan", COLOR_CYAN },
    { "black", COLOR_BLACK },
    { "magenta", COLOR_MAGENTA },

     */

    ProfWin* console = wins_get_console();
    cons_show("Available colours:");

    win_print(console, THEME_WHITE, "-", " white   ");
    win_appendln(console, THEME_WHITE_BOLD, " bold_white");

    win_print(console, THEME_GREEN, "-", " green   ");
    win_appendln(console, THEME_GREEN_BOLD, " bold_green");

    win_print(console, THEME_RED, "-", " red     ");
    win_appendln(console, THEME_RED_BOLD, " bold_red");

    win_print(console, THEME_YELLOW, "-", " yellow  ");
    win_appendln(console, THEME_YELLOW_BOLD, " bold_yellow");

    win_print(console, THEME_BLUE, "-", " blue    ");
    win_appendln(console, THEME_BLUE_BOLD, " bold_blue");

    win_print(console, THEME_CYAN, "-", " cyan    ");
    win_appendln(console, THEME_CYAN_BOLD, " bold_cyan");

    win_print(console, THEME_MAGENTA, "-", " magenta ");
    win_appendln(console, THEME_MAGENTA_BOLD, " bold_magenta");

    win_print(console, THEME_BLACK, "-", " black   ");
    win_appendln(console, THEME_BLACK_BOLD, " bold_black");

    if (COLORS >= 256) {
        cons_show("Your terminal supports 256 colours.");
        cons_show("But only basic colours are printed here.");
        cons_show("To use them use their Xterm colour name.");
        cons_show("See https://jonasjacek.github.io/colors/");
    }

    cons_show("");
}

static void
_cons_splash_logo(void)
{
    ProfWin* console = wins_get_console();
    win_println(console, THEME_DEFAULT, "-", "Welcome to");

    win_println(console, THEME_SPLASH, "-", "                  ___            _           ");
    win_println(console, THEME_SPLASH, "-", "                 / __)          (_)_         ");
    win_println(console, THEME_SPLASH, "-", " ____   ___ ___ | |__ ____ ____  _| |_ _   _ ");
    win_println(console, THEME_SPLASH, "-", "|  _ \\ / __) _ \\|  __) _  |  _ \\| |  _) | | |");
    win_println(console, THEME_SPLASH, "-", "| | ) | | | (_) | | | ( | | | | | | |_| |_| |");
    win_println(console, THEME_SPLASH, "-", "| ||_/|_|  \\___/|_|  \\_||_|_| |_|_|\\___)__  |");
    win_println(console, THEME_SPLASH, "-", "|_|                                   (____/ ");
    win_println(console, THEME_SPLASH, "-", "");

    if (strcmp(PACKAGE_STATUS, "development") == 0) {
#ifdef HAVE_GIT_VERSION
        win_println(console, THEME_DEFAULT, "-", "Version %sdev.%s.%s", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
#else
        win_println(console, THEME_DEFAULT, "Version %sdev", PACKAGE_VERSION);
#endif
    } else {
        win_println(console, THEME_DEFAULT, "-", "Version %s", PACKAGE_VERSION);
    }
}

static void
_show_roster_contacts(GSList* list, gboolean show_groups)
{
    ProfWin* console = wins_get_console();
    GSList* curr = list;
    while (curr) {

        PContact contact = curr->data;
        GString* title = g_string_new("  ");
        title = g_string_append(title, p_contact_barejid(contact));
        if (p_contact_name(contact)) {
            title = g_string_append(title, " (");
            title = g_string_append(title, p_contact_name(contact));
            title = g_string_append(title, ")");
        }

        const char* presence = p_contact_presence(contact);
        theme_item_t presence_colour = THEME_TEXT;
        if (p_contact_subscribed(contact)) {
            presence_colour = theme_main_presence_attrs(presence);
        } else {
            presence_colour = theme_main_presence_attrs("offline");
        }
        win_print(console, presence_colour, "-", "%s", title->str);

        g_string_free(title, TRUE);

        win_append(console, THEME_DEFAULT, " - ");
        GString* sub = g_string_new("");
        sub = g_string_append(sub, p_contact_subscription(contact));
        if (p_contact_pending_out(contact)) {
            sub = g_string_append(sub, ", request sent");
        }
        if (presence_sub_request_exists(p_contact_barejid(contact))) {
            sub = g_string_append(sub, ", request received");
        }
        if (p_contact_subscribed(contact)) {
            presence_colour = THEME_SUBSCRIBED;
        } else {
            presence_colour = THEME_UNSUBSCRIBED;
        }

        if (show_groups) {
            win_append(console, presence_colour, "%s", sub->str);
        } else {
            win_appendln(console, presence_colour, "%s", sub->str);
        }

        g_string_free(sub, TRUE);

        if (show_groups) {
            GSList* groups = p_contact_groups(contact);
            if (groups) {
                GString* groups_str = g_string_new(" - ");
                while (groups) {
                    g_string_append(groups_str, groups->data);
                    if (g_slist_next(groups)) {
                        g_string_append(groups_str, ", ");
                    }
                    groups = g_slist_next(groups);
                }
                win_appendln(console, THEME_DEFAULT, "%s", groups_str->str);
                g_string_free(groups_str, TRUE);
            } else {
                win_appendln(console, THEME_DEFAULT, " ");
            }
        }

        curr = g_slist_next(curr);
    }
}

void
cons_show_bookmarks_ignore(gchar** list, gsize len)
{
    if (len == 0) {
        cons_show("");
        cons_show("No ignored bookmarks");
        return;
    }

    ProfWin* console = wins_get_console();

    cons_show("");
    cons_show("Ignored bookmarks:");

    for (int i = 0; i < len; i++) {
        win_print(console, THEME_DEFAULT, "-", "  %s", list[i]);
        win_newline(console);
    }
}

gboolean
cons_has_alerts(void)
{
    if (g_list_length(alert_list) > 0) {
        return TRUE;
    }
    return FALSE;
}

void
cons_clear_alerts(void)
{
    g_list_free_full(alert_list, g_free);
    alert_list = NULL;
}

void
cons_remove_alert(ProfWin* window)
{
    char* win_name = win_to_string(window);
    GList* item = g_list_find_custom(alert_list, win_name, (GCompareFunc)g_strcmp0);
    alert_list = g_list_remove_link(alert_list, item);
    g_list_free_full(item, g_free);
    free(win_name);
}