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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 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 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140
|
######################################################################
# WWW::Myspace.pm
# Sccsid: %Z% %M% %I% Delta: %G%
# $Id: Myspace.pm 598 2008-06-19 07:53:25Z s-chamberlain $
######################################################################
# Copyright (c) 2005 Grant Grueninger, Commercial Systems Corp.
#
# Description:
# Module to log into myspace.com
######################################################################
# Setup
# Declare our package.
package WWW::Myspace;
use WWW::Myspace::MyBase -Base;
use Data::Dumper;
use warnings;
use strict;
# *** If you're not familiar with Spiffy, read its docs. To save you
# confusion, one of its features is to add "my $self = shift;" to
# each method definition, so when you see that missing, that's why. ***
# Debugging? (Yes=1, No=0)
our $DEBUG=0;
######################################################################
# Libraries we use
use Carp;
use Contextual::Return;
#use Locale::SubCountry; # moved to cool_new_people to stop warnings
use WWW::Mechanize;
use File::Spec::Functions;
#use Time::Local;
use Time::ParseDate;
use URI::Escape;
=head1 NAME
WWW::Myspace - Access MySpace.com profile information from Perl
=head1 VERSION
Version 0.82
=cut
our $VERSION = '0.82';
=head1 WARNING
March 2007: Using WWW::Myspace for commenting, messaging, or adding
friends will probably get your Myspace account deleted or disabled.
=head1 SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com
account and functions automatically. It provides a simple interface
for scripts to log in, access lists of friends, scan user's profiles,
retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and
centralize redundant tasks so that you can better handle keeping in
personal touch with numerous friends or fans, or coordinate fan
communications among multiple band members. This module operates well
within MySpace's security measures. If you're looking for a spambot,
this ain't it.
WWW::Myspace works by interacting with the site through a UserAgent
object, using HTTP::Request::Form to process forms. Since by nature
web sites are dynamic, if you find that some interaction with the
site breaks, check for a new version of this module (or if you
go source diving, submit a patch). You can run "cpan -i WWW::Myspace"
as a cron job or before running your scripts, if appropriate, to
make sure you have the latest version.
=cut
# Since WWW::Myspace reads and reacts to a web site which by nature
# may change, we define much of the basics up here where it's
# easy to see and change.
# What's the base URL for the site.
our $BASE_URL="http://www.myspace.com/";
# Where should we store files? (cookies, cache dir). We use, and untaint,
# the user's home dir for the default.
our $HOME_DIR= "";
if ( defined $ENV{'HOME'} ) {
$HOME_DIR = "$ENV{'HOME'}";
if ( $HOME_DIR =~ /^([\-A-Za-z0-9_ \/\.@\+\\:]*)$/ ) {
$HOME_DIR = $1;
} else {
croak "Invalid characters in $ENV{HOME}.";
}
}
# What's the URL for the user's Home page?
our $HOME_PAGE="http://home.myspace.com/index.cfm?fuseaction=user";
# What's the URL to the Browse page?
our $BROWSE_PAGE = 'http://browseusers.myspace.com/browse/Browse.aspx';
# What string should we look for if we're trying to post a comment to
# someone who isn't our friend?
our $NOT_FRIEND_ERROR='Error: You must be someone\'s friend to make '.
'comments about them\.';
# What should we look for to see if we are being asked for a CAPTCHA code?
# We'll extract the URL to return from the area in parenthesis.
our $CAPTCHA='(http:\/\/security\.myspace\.com\/captcha\/'.
'captcha\.aspx\?SecurityToken=[^"\']+)';
our $CAPTCHAi = qr/$CAPTCHA/io; # ok, we will store both ways
our $CAPTCHAs = qr/$CAPTCHA/o;
#$CAPTCHA = $CAPTCHAi; # use case insensitive for now
# What's the URL to view a user's profile? We'll append the friendID to the
# end of this string.
our $VIEW_PROFILE_URL="http://profile.myspace.com/index.cfm?".
"fuseaction=user.viewprofile&friendID=";
# If a person's profile is set to "private" we'll get an error when we
# pull up the form to mail them. What regexp do we read to identify that
# page?
our $MAIL_PRIVATE_ERROR = "You can't send a message to [^<]* ?because '.
'you must be [^<]*'s ?friend";
# If a person has set an away message, what regexp should we look for?
our $MAIL_AWAY_ERROR = "You can't send a message to [^<]* ?because '.
'[^<]* ?has set [^<]* ?status to away";
# What RE shows up if a friendID is invalid?
our $INVALID_ID = '<b>Invalid Friend ID\.\s*<br>\s*This user has either cancelled their '.
'membership,? or their account has been deleted\.';
# What regexp should we look for for Myspace's frequent "technical error"
# messages?
# This lists regexps to look for on pages that indicate we've got a temporary
# error instead of a successful load or post. If the page matches one of these,
# it will be retried up to the maximum number of attempts set in this module
# (currently 5 for POSTs, 20 for GETs).
# Note: Page content is stripped
# of extra whitespace before checking, so make sure any spaces you have here
# are single spaces, not multiple, nor tabs, nor returns.
our @ERROR_REGEXPS = (
# Problem -- this now displays as 'display:none' and is possibly shown by JavaScript
# 'Sorry\! an unexpected error has occurred.<br \/><br \/>This error has been '.
# 'forwarded to MySpace\'s technical group\.',
'This user\'s profile has been temporarily '.
'disabled for special maintenance\.',
'This profile is undergoing routine maintenance. '.
'We apologize for the inconvenience',
# Removed: Conflicts with "exceeded usage" message
# 'An Error has occurred!!.*'.
# 'An error has occurred (while )?trying to send this message.',
'We\'re doing some maintenance on the mail for certain users\. '.
'You can take this opportunity to leave your friend a swell comment '.
'while we work on it\. :\)',
'<H3>Error Occurred While Processing Request<\/H3>',
);
@ERROR_REGEXPS = map qr/$_/i, @ERROR_REGEXPS;
# What's the URL for a friend request button (to send a friend request)?
our $ADD_FRIEND_URL = 'http://collect.myspace.com/index.cfm?'.
'fuseaction=invite.addfriend_verify&'.
'friendID=';
# let's use this to keep track of various regexes that can be used elsewhere
my %regex = (
friend_id => qr/fuseaction=mail\.message&friendID=([0-9]+)/o,
friend_url => qr/www.myspace.com\/(\w*)\W+<\/title>/oixsm,
friend_link => qr/fuseaction=user\.viewprofile\&(amp;)?friendid=([0-9]+)/oism,
friend_img => qr/fuseaction=user\.viewprofile\&(amp;)?friendID=([0-9]+)[^<]+<\s*img\b[^<]+\bsrc\s*=\s*["']?(.*?)["'\s>]/oism,
#friend_img => qr/fuseaction=user\.viewprofile\&(amp;)?friendID=([0-9]+)["'\s>&][^<]*<\s*img\b[^<]+\bsrc\s*=\s*["']?(.*?)["'\s>]/oism,
is_band => qr/fuseaction=bandprofile/ioxsm,
is_logged_in => qr/fuseaction=signout/io,
is_private => qr/(This profile is set to private\. This user must add you as a friend to see his\/her profile\.)/io,
is_invalid => qr/(Invalid Friend ID.<br>This user has either cancelled their membership, or their account has been deleted.)/io,
is_comedy => qr/http\:\/\/.*?myspace\.com\/images\/comedy\/mscomedy\.gif/io,
is_film => qr/http\:\/\/.*?myspace\.com\/images\/film_logo\.gif/io,
is_music => qr/http\:\/\/.*?myspace\.com\/images\/music_logo\.gif/io,
last_login => qr/Last Login:/io,
basic_info => qr/Table2".*?>(.*Last Login:.*?)<br>/smo,
basic_info_sub => qr/align="left">(.*)/smo,
basic_info_band => qr/Arial, Helvetic, sans-serif"><strong>(.*Last Login:.*?)<br>/smo,
comment_posted => qr/Your Comment has been posted/io,
not_logged_in => qr/You Must Be Logged-In to do That\!/io,
verify_message_sent => qr/Your Message Has Been Sent\!/o,
comment_p1 => qr/ctl00\$(cp)?Main\$UserWriteCommentsControl\$commentTextBox.*<\/form|($NOT_FRIEND_ERROR)|($CAPTCHA)|($INVALID_ID)/smio,
comment_p2 => qr/ctl00\$(cp)?Main\$UserWriteCommentsControl\$ConfirmPostButton.*<\/form/smo,
comment_approval_msg => qr/This user requires all comments to be approved before being posted/o,
not_friend => qr/$NOT_FRIEND_ERROR/smo,
bulletin_url => qr/fuseaction=bulletin\.edit/io,
bulletin_post_action =>
qr/<\s*input .*?value\s*=\s*"Post".*?submitPage\s*\(\s*'\s*(.*?)\s*'/ismo,
bulletin_p1 => qr/ctl00\$cpMain\$Subject_Textbox/io,
bulletin_p2 => qr/Confirm\s+Bulletin/o,
bulletin_confirm_action =>
qr/function postBulletin\(\).*?submitPage\('(.*?)'/ismo,
bulletin_posted => qr/Bulletin Has Been Posted/io,
verify_get_profile => qr/fuseaction=invite\.addfriend/io,
exceed_usage => qr/User has exceeded their daily use?age/io,
user_requires_captcha => qr/settings require that you solve a CAPTCHA/iosm,
);
######################################################################
# Methods
# (These "sub" lines make section dividers in BBedit's function menu.
# I'm sure there's a better way, so don't go "learning" anything from me
# here. :)
sub ____SET_OPTIONS__LOG_IN____ {}
=head1 SET OPTIONS / LOG IN
The new method takes the following options, all of which are optional.
See the accessor methods below for defaults. Any option can be passed
in a hash or hashref to the "new" method, and retreived or set using the
appropriate accessor method below.
account_name => 'myaccount',
password => 'mypass',
cache_dir => '/path/to/dir',
cache_file => 'filename', # $cache_dir/$cache_file
auto_login => 1 # 1 or 0, default is 1.
human => 1 # Go slow. Saves bandwidth.
=cut
# Options they can pass via hash or hashref.
const default_options => {
account_name => 0,
password => 0,
cache_dir => 0, # Default set by field method below
cache_file => 0, # Default set by field method below
auto_login => 0, # Default set by field method below
human => 0, # Default set by field method below
max_get_attempts => 0, # Default set by field method below
max_post_attempts => 0, # Default set by field method below
captcha_killer_api_key => 0, # Default set by field method below
captcha_tries => 0, # Default set by field method below
};
# Options they can pass by position.
# Just "new( 'joe@myspace.com', 'mypass' )".
const positional_parameters => [ 'account_name', 'password' ];
=head1 OPTION ACCESSORS
These methods can be used to set/retreive the respective option's value.
They're also up top here to document the option, which can be passed
directly to the "new" method.
=head2 account_name
Sets or returns the account name (email address) under which you're logged in.
Note that the account name is retreived from the user or from your program
depending on how you called the "new" method. You'll probably only use this
accessor method to get account_name.
EXAMPLE
The following would prompt the user for their login information, then print
out the account name:
use WWW::Myspace;
my $myspace = new WWW::Myspace;
print $myspace->account_name;
$myspace->account_name( 'other_account@myspace.com' );
$myspace->password( 'other_accounts_password' );
$myspace->site_login;
WARNING: If you do change account_name, make sure you change password and
call site_login. Changing account_name doesn't (currently) log you
out, nor does it clear "password". If you change this and don't log in
under the new account, it'll just have the wrong value, which will probably
be ignored, but who knows.
=cut
field 'account_name';
=head2 password
Sets or returns the password you used, or will use, to log in. See the
warning under "account_name" above - same applies here.
=cut
field 'password';
=head2 cache_dir
WWW::Myspace stores the last account/password used in a cache file
for convenience if the user's entering it. Other modules store other
cache data as well.
cache_dir sets or returns the directory in which we should store cache
data. Defaults to $ENV{'HOME'}/.www-myspace.
If using this from a CGI script, you will need to provide the
account and password in the "new" method call, or call "new" with
"auto_login => 0" so cache_dir will not be used.
=cut
field cache_dir => catfile( "$HOME_DIR", '.www-myspace' );
=head2 cache_file
Sets or returns the name of the file into which the login
cache data is stored. Defaults to login_cache.
If using this from a CGI script, you will need to provide the
account and password in the "new" method call, so cache_file will
not be used.
=cut
field cache_file => 'login_cache';
=head2 auto_login
Really only useful as an option passed to the "new" method when
creating a new WWW::Myspace object.
# Don't log in, just create a new object
my $myspace = new WWW::Myspace( auto_login => 0 );
Defaults to 1 for backwards compatibility.
=cut
field 'auto_login' => 1;
=head2 human
When set to a true value (which is the default), adds delays to
make the module act more like a human. This is both to offset
"faux security" measures, and to conserve bandwidth. If you're
dumb enough to try to use multiple accounts to spam users who don't
want to hear what you have to say, you should turn this off
because it'll make your spamming go faster.
=cut
field 'human' => 1;
=head2 max_get_attempts
This is only here by request and should probably be left alone.
Setting max_get_attempts controls the number of times the module
will attempt to get a page. You can make your script really
robust by setting this to a really high number. For example
setting it to about 17280 would make the module try to get a
given page for about 24 hours before giving up. Default is
20. You could also set this to a lower number if you wanted to
be "nice" to Myspace, although set get_page mostly retries on errors,
this is a bit pointless. Note though that on some occasions if
a regular expression on the page being requested doesn't match (possibly
due to a change in the site), get_page will keep trying a page
that will never load up to max_get_attempts times.
=cut
field 'max_get_attempts' => 20;
=head2 max_post_attempts
This is the form version of max_get_attempts. This controls
the number of times the submit_form function will attempt to
submit a form before giving up. This defaults to 5. This should
probably be kept at 5 since posting a form means you're usually sending
some data (i.e. a comment), so in the event of a problem (such as the
regular expression matching issue mentioned in max_get_attempts above),
you could in theory be posting a successful form up to max_post_attempts
times. In normal operation, however, submit_form will attempt to post
until the post is successful, no matter what the outcome, so it will only
retry if it gets an error page or the page doesn't match an expected
regular expression. That is, when you're using myspace and have to keep
trying things, submit_form does the same thing, but only up to
max_post_attempts times. Change at your own risk.
=cut
field 'max_post_attempts' => 5;
=head2 captcha_killer_api_key
If you have an API key for captchakiller.com, you can set it
using this method, or pass it to the "new" method when
creating the myspace object. Methods that support it will use
captchakiller to process captchas.
use WWW::Myspace;
my $myspace = new WWW::Myspace( captcha_killer_api_key => 'asdfjhasdfe' );
=cut
field 'captcha_killer_api_key' => "";
=head2 captcha_tries
Sets or returns the number of attempts that should be made to
retreive the catpcha code (basically, how long it should wait before
it gives up - each try takes about 5 seconds). Defaults to 20.
=cut
field 'captcha_tries' => 20;
#---------------------------------------------------------------------
# new method
# If we're passed an account and possibly a password, we store them.
# Otherwise, we check the login cache file, and if we still
# don't have them, we ask the user.
=head2 new( $account, $password )
=head2 new( )
If called without the optional account and password, the new method
looks in a user-specific preferences file in the user's home
directory for the last-used account and password. It prompts
for the username and password with which to log in, providing
the last-used data (from the preferences file) as defaults.
Once the account and password have been retreived, the new method
automatically invokes the "site_login" method and returns a new
WWW::Myspace object reference. The new object already contains the
content of the user's "home" page, the user's friend ID, and
a UserAgent object used internally as the "browser" that is used
by all methods in the WWW::Myspace class.
Myspace.pm is now a subclass of WWW::Myspace::MyBase (I couldn't resist,
sorry), which basically just means you can call new in many ways:
EXAMPLES
use WWW::Myspace;
# Prompt for username and password
my $myspace = new WWW::Myspace;
# Pass just username and password
my $myspace = new WWW::Myspace( 'my@email.com', 'mypass' );
# Pass options as a hashref
my $myspace = new WWW::Myspace( {
account_name => 'my@email.com',
password => 'mypass',
cache_file => 'passcache',
} );
# Hash
my $myspace = new WWW::Myspace(
account_name => 'my@email.com',
password => 'mypass',
cache_file => 'passcache',
auto_login => 0,
);
# Print my friend ID
print $myspace->my_friend_id;
# Print the contents of the home page
print $myspace->current_page->decoded_content;
# Print all my friends with a link to their profile.
@friend_ids = $myspace->get_friends;
foreach $id ( @friend_ids ) {
print 'http://profile.myspace.com/index.cfm?'.
'fuseaction=user.viewprofile&friendID='.
${id}."\n";
}
# How many friends do we have? (Note: we don't include Tom
# because he's everybody's friend and we don't want to be
# bugging him with comments and such).
print @friend_ids . " friends (not incl Tom)\n";
=cut
sub _old_new() {
my $proto = shift;
my $class = ref($proto) || $proto;
my $self = {};
bless ($self, $class);
if ( @_ ) { $self->{account_name} = shift }
if ( @_ ) { $self->{password} = shift }
unless ( $self->{account_name} ) {
# Get account/password from the user
$self->_get_acct();
}
# And for convenience, log in
$self->_site_login();
return $self;
}
sub new() {
# Call the MyBase new method (it's ok to feel special about it).
my $self = super;
# Log in if requested
if ( $self->auto_login ) {
# Prompt for username/password if we don't have them yet.
# (should this be moved to site_login?)
$self->_get_acct unless $self->account_name;
$self->site_login;
} else {
$self->logout; # Why? Resets variables and gets Mech object.
}
return $self;
}
#---------------------------------------------------------------------
# site_login()
# Log into myspace with the stored account login name, password, and
# URL (probably "http://www.myspace.com/")
=head2 site_login
Logs into the myspace account identified by the "account_name" and
"password" options. You don't need to call this right now,
because "new" does it for you. BUT I PLAN TO CHANGE THAT. You don't
need to be logged in to access certain functions, so it's semi-silly
to make you log in the second you call "new". Plus, it's not good
practice to have "new" require stuff. Bad me.
If you call the new method with "auto_login => 0", you'll need to
call this method if you want to log in.
It's also called automatically if the _check_login method finds that
you've been mysteriously logged out, for example if Myspace.com were
written in Cold Fusion running on Windows.
If the login gets a "you must be logged-in" page when you first try to
log in, $myspace->error will be set to an error message that says to
check the username and password.
Once login is successful for a given username/password combination,
the object "remembers" that the username/password
is valid, and if it encounters a "you must be logged-in" page, it will
try up to 20 times to re-login. Clever, huh?
=cut
sub site_login {
# Reset everything (oddly, this also happens to create a new browser
# object).
$self->logout;
croak "site_login called but account_name isn't set" unless
( $self->account_name );
croak "site_login called but password isn't set" unless ( $self->password );
# Now log in
$self->_try_login;
return if $self->error;
# We probably have an ad or somesuch (started 1/7/2006)
# so explicitly request our Home.
# We can't click "home", because as of 10/10/07 Myspace sets the Home
# link using Javascript if you're logged in. Why do the work on the
# server when you can just add extra code and do it on the browser instead?
# In fact, why not just make all of Myspace run in the browser?
$self->follow_to( $HOME_PAGE, '' )
or warn "Couldn't go to user's home page";
# ( $DEBUG ) && warn $self->current_page->content;
# Verify we're logged in
if ( $self->_apply_regex( regex => 'is_logged_in' ) ) {
$self->logged_in( 1 );
warn "Logged in\n" if ( $DEBUG );
} else {
$self->logged_in( 0 );
unless ( $self->error ) {
$self->error( "Login Failed. Couldn't verify load of home page." )
}
warn $self->current_page->decoded_content if $DEBUG;
return;
}
# Initialize basic account/login-specific settings after login
$self->_init_account;
}
# _try_login
# You call this as $self->_try_login. Attempts to log in using
# the set account_name and password. It gets and submits the login form,
# then checks for a valid submission and for a "you must be logged-in"
# page.
# If called with a number as an argument, tries that many times to
# submit the form. It calls itself recursively.
sub _try_login {
# Set the recursive tries counter.
my ( $tries_left ) = @_;
if ( $tries_left ) { $tries_left--; return if ( $tries_left ) < 1; }
$tries_left = 20 unless defined $tries_left;
$self->get_page( 'http://www.myspace.com/' );
my @login_forms = $self->_get_login_forms( $self->current_page->decoded_content );
my $num_login_forms = @login_forms;
warn "Identified $num_login_forms login forms.\n" if $DEBUG;
if ( $num_login_forms < 1 )
{
$self->error("Did not detect any login forms on page\n");
return;
} elsif ( $num_login_forms > 1 )
{
warn "Detected more than one login form on page; the first one will be used\n" if $DEBUG;
}
# Use first login form detected on page (which was hopefully the only one)
my %login_form = %{$login_forms[0]};
if ( !$login_form{'name'} )
{
# If the login form has no name, we can't specify to submit_form()
# which form to submit. We could adapt _get_login_forms() to return
# the form number in the hash, and use that to submit_form(), but that
# would only work if it we can be sure both of those methods identify
# forms in the same way. For now, hope the login form will always have
# a name.
$self->error("Login form has no name; this is not currently supported\n");
return;
}
if ($DEBUG) {
warn "Submitting form named '$login_form{'name'}'\n";
warn " using Email input '$login_form{'email_input_name'}'\n";
warn " using Password input '$login_form{'password_input_name'}'\n";
}
my $submitted = $self->submit_form( {
"page" => $self->current_page,
"form_name" => $login_form{'name'},
"fields_ref" => {
$login_form{'email_input_name'} => $self->account_name,
$login_form{'password_input_name'} => $self->password
},
"no_click" => 1
} );
# Check for success
if ( $submitted ) {
# ( $DEBUG ) && print $self->current_page->decoded_content;
# Check for invalid login page, which means we either have
# an invalid login/password, or myspace is messing up again.
unless ( $self->_check_login ) {
# Fail unless we already know this account/password is good, in
# which case we'll just beat the door down until we can get in
# or the maximum number of attempts has been reached.
if ( $self->_account_verified ) {
$self->_try_login( $tries_left );
} else {
$self->error( "Login Failed. Got 'You Must Be Logged-In' page ".
"when logging in.\nCheck username and password." );
return;
}
}
} else
{
$self->error("Login failed.\n");
warn "Login failed.\n";
}
}
=head2 _get_login_forms( $page )
Attempts to identify any login forms on the page whose HTML content is given by
C<$page>. Login forms are identified by the presence of inputs for both email
address and password.
Returns an array containing zero or more hashes, each representing a login form
that was found on the page. The hashes are stored in the array in the same
order the forms were declared in the HTML of $<%page>.
Each hash provides the following key-value pairs:
=over 4
=item * C<name> -- the name of the HTML form (may be an empty string if no name
was defined)
=item * C<email_input_name> -- the name of the form input for specifying the
account's registered e-mail address
=item * C<password_input_name> -- the name of the form input for specifying the
account's password
=back
I<Security warning:> submitting login credentials to login forms detected
on any page other than the homepage may be unsafe.
=cut
sub _get_login_forms
{
my ( $page ) = @_;
# I now realise that HTML::Form can already do most of this..
my @forms = $page =~ /(<form[^>]*>.*?<\/form>)/igs;
my @login_forms = ();
my $num_login_forms = 0;
form: foreach (@forms) {
my $form_name = ($_ =~ /<form[^>]* name=(["'])([^"]+)\1[^>]*?>/igs)[1];
if ( !defined $form_name )
{
$form_name = "";
}
warn "Found a form, name is '$form_name'.\n" if $DEBUG;
my @email_inputs = $_ =~ /<input[^>]* name=(["'])((?:[^\"]+\$)?Email(?:_Textbox)?)\1[^>]*>/igs;
my $num_email_inputs = @email_inputs;
if ($num_email_inputs < 2)
{
warn "Found no inputs for Email\n" if $DEBUG;
next form;
} elsif ($num_email_inputs > 2)
{
warn "Found more than one input for Email\n" if $DEBUG;
next form;
}
my $email_input_name = $email_inputs[1];
warn "Identified Email input name as '$email_input_name'\n" if $DEBUG;
my @password_inputs = $_ =~ /<input[^>]* name=(["'])((?:[^\"]+\$)?Password(?:_Textbox)?)\1[^>]*>/igs;
my $num_password_inputs = @email_inputs;
if ($num_password_inputs < 2)
{
warn " found no inputs for Password\n" if $DEBUG;
next form;
} elsif ($num_password_inputs > 2)
{
warn " found more than one input for Password\n" if $DEBUG;
next form;
}
my $password_input_name = $password_inputs[1];
warn "Identified Password input name as '$password_input_name'\n" if $DEBUG;
$login_forms[$num_login_forms++] = {
"name" => $form_name,
"email_input_name" => $email_input_name,
"password_input_name" => $password_input_name
};
}
return @login_forms;
}
# _account_verified
# Returns true if we've verified that the current account and password
# are valid (by successfully logging in with them)
sub _account_verified {
( ( $self->{_account_verified}->{ $self->account_name } ) &&
( $self->password = $self->{_account_verified}->{ $self->account_name } )
)
}
# _init_account
# Initialize basic account/login-specific settings after login
sub _init_account {
# Get our friend ID from our home page (which happens to
# be the page we go to after logging in).
$self->_get_friend_id( $self->current_page );
# If for some reason we couldn't set this, fail login.
unless ( $self->my_friend_id ) { $self->logged_in(0) ; return }
# Set the user_name and friend_count fields.
$self->user_name( $self->current_page );
$self->friend_count( $self->current_page );
# Cache whether or not we're a band.
$self->is_band;
# Note that we've verified this account/password
$self->{_account_verified}->{ $self->account_name } = $self->password;
}
=head2 mech_params
Pass this parameters you wish the WWW::Mechanize object to use,
inside a hash reference. for example:
$myspace->mech_params({
onerror => undef,
agent => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)'
stack_depth => 1,
quiet => 1,
});
See the docs for WWW::Mechanize for more information. You should
really know what you are doing before using this feature.
=cut
field mech_params => undef;
sub _new_mech {
my %default_mech_params = (
onerror => undef,
agent => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)',
stack_depth => 1,
quiet => 1,
);
my $new_p = $self->mech_params();
if (defined($new_p)) {
if (ref($new_p) eq "HASH") {
while (my ($k,$v) = each %$new_p) {
$default_mech_params{$k} = $v;
}
} else {
warn "Please pass mech_params() a HASH reference. Thanks!\n";
}
}
# Set up our web browser (WWW::Mechanize object)
$self->mech( new WWW::Mechanize( %default_mech_params ) );
# We need to follow redirects for POST too.
push @{ $self->mech->requests_redirectable }, 'POST';
}
=head2 logout
Clears the current web browsing object and resets any login-specific
internal values. Currently this drops and creates a new WWW::Mechanize
object. This may change in the future to actually clicking "logout"
or something.
=cut
sub logout {
# If you change this to just log out instead of making a new Mech
# object, be sure you change site_login too.
$self->_new_mech;
# Clear anything login-specific
$self->{user_name} = undef;
$self->{is_band} = undef;
$self->{my_friend_id} = undef;
$self->logged_in(0);
$self->error(0);
$self->{page_cache} = undef;
# Do NOT clear options that are set by the user!
# $self->{account_name} = undef;
# $self->{password} = undef;
}
=head2 get_login_form
This handy little convenience method returns a string of
HTML code that is a login form pre-filled with the account_name
and password. I use it in a little "Dashboard" script I wrote
that displays the notifications and a Login button.
use WWW::Myspace;
use CGI qw/:standard/;;
my $myspace = new WWW::Myspace;
# Display a login form
print header,
start_html('Is it worth logging in?'),
$myspace->get_login_form,
end_html;
=cut
sub get_login_form {
# This form is obsolete, but still sorta works. Take this out once the
# section below is working.
my $x = '<form action="http://login.myspace.com/index.cfm?'.
'fuseaction=login.process" method="post" name="theForm" '.
'id="theForm">' .
'<input type=hidden name="email" value="' . $self->account_name .
'">' .
'<input type=hidden name="password" value="' . $self->password . '">' .
'<input type=submit name="ctl00$Main$SplashDisplay$login$loginbutton" '.
'value="LOGIN">'.
'</form>';
return $x;
# Clear errors
$self->error(0);
# This used to be a lot easier...
# Now that Myspace (ab)uses ASP, we need to:
# - Create a fresh browser object
my $b = new WWW::Mechanize(quiet=>1, stack_depth=>1, onerror=>undef);
# - Get the login page
my $res = $b->get( "http://www.myspace.com/" );
unless ( $res ) {
$self->error("Couldn't load home page");
return
}
# - Get the login form
my @forms = HTML::Form->parse( $res );
my $found_form = 0;
my $form = "";
# TODO: This is setting found_form, but then the eval below fails stating
# that the method "value" must be called on an object.
# Setting $form = $forms[1] prevents that error, but the "return $form->make_request->content"
# line just returns an escaped URL string, not a form. Need to find out how to
# display a form as HTML output.
# foreach $form ( @forms ) {
# if ( $form->find_input( 'ctl00$Main$SplashDisplay$ctl00$Email_Textbox' ) ) {
# $found_form = 1;
# last;
# }
# }
# unless ( $found_form ) {
# $self->error( "Couldn't find login form on myspace home page. ".
# "Email field name may have changed." );
# return;
# }
$form = $forms[1];
# - Set the account/password inputs
# the "value" method will croak if the input isn't found, so we eval it to catch
# that. This way we don't die if/when myspace changes the name of the input field.
eval {
$form->value( 'ctl00$Main$SplashDisplay$ctl00$Email_Textbox', $self->account_name );
$form->value( 'ctl00$Main$SplashDisplay$ctl00$Password_Textbox', $self->password );
};
if ( $@ ) { $self->error( $@ ); return } # Set error and return if eval had a problem
# - Return its content
return ( $form->make_request->content );
}
#---------------------------------------------------------------------
# Value return methods
# These methods return internal data that is of use to outsiders
sub ____CHECK_STATUS____ {}
=head1 CHECK STATUS
=head2 logged_in
Returns true if login was successful. When you call the new method
of WWW::Myspace, the class logs in using the username and password you
provided (or that it prompted for). It then retreives your "home"
page (the one you see when you click the "Home" button on myspace.com,
and checks it against an RE. If the page matches the RE, logged_in is
set to a true value. Otherwise it's set to a false value.
Notes:
- This method is only set on login. If you're logged out somehow,
this method won't tell you that (yet - I may add that later).
- The internal login method calls this method to set the value.
You can (currently) call logged_in with a value, and it'll set
it, but that would be stupid, and it might not work later
anyway, so don't.
Examples:
my $myspace = new WWW::Myspace;
unless ( $myspace->logged_in ) {
die "Login failed\n";
}
# This will try forever to log in
my $myspace;
do {
$myspace = new WWW::Myspace( $username, $password );
} until ( $myspace->logged_in );
=cut
field logged_in => 0;
=head2 error
This value is set by some methods to return an error message.
If there's no error, it returns a false value, so you can do this:
$myspace->get_profile( 12345 );
if ( $myspace->error ) {
warn $myspace->error . "\n";
} else {
# Do stuff
}
=cut
field 'error' => 0;
=head2 current_page
Returns a reference to an HTTP::Response object that contains the last page
retreived by the WWW::Myspace object. All methods (i.e. get_page, post_comment,
get_profile, etc) set this value.
EXAMPLE
The following will print the content of the user's profile page:
use WWW::Myspace;
my $myspace = new WWW::Myspace;
print $myspace->current_page->decoded_content;
=cut
sub current_page {
return $self->{current_page};
}
=head2 mech
The internal WWW::Mechanize object. Use at your own risk: I don't
promise this method will stay here or work the same in the future.
The internal methods used to access Myspace are subject to change at
any time, including using something different than WWW::Mechanize.
=cut
field 'mech';
sub ____GET_INFO____ {}
=head1 GET INFO
=head2 get_notifications
Returns a hash of status codes and printable indicators
for "New" indicators ("New Messages!", "New Comments!", etc).
Note that you probably want to call this right after logging
in, as if you use any of the "read" methods, Myspace will
reset that indicator. For example, if you use "get_inbox",
Myspace will think you looked at your mail.
Codes returned are:
NC => New Comments!
NM => New Messages!
NFR => New Friend Requests!
NIC => New Image Comments!
EV => New Event Invitation!
BC => New Blog Comments!
BP => New Blog Posts!
# Print all notifications
use WWW::Myspace;
my $myspace = new WWW::Myspace( $account, $password );
my $notifiers = $myspace->get_notifications;
foreach $code ( keys( %notifiers ) ) {
print $notifiers{ $code };
}
# CGI script to display notifications and a Login button
# to click if it's worth logging in (be sure you provide the
# account and password ;-):
use CGI qw/:standard/;
use WWW::Myspace;
my $myspace = new WWW::Myspace( $account, $password );
print header,
start_html('Is it worth logging in?');
my ( %notifiers ) = $myspace->get_notifications;
foreach $code ( keys( %notifiers ) ) {
print $notifiers{ $code }, br;
}
print p, $myspace->get_login_form, p,
end_html;
=cut
my $stats_ref =
{
'NC' => { 'search' => { css => '<div id="indicatorComments" '.
'class="show indicator">',
db => 'New Comments!',
},
'display' => 'New Comments!'
},
'NM' => { 'search' => { css => '<div id="indicatorMail" '.
'class="show indicator">',
db => 'New Messages!'
},
'display' => 'New Messages!'
},
'NFR' => { 'search' => { css => '<div id="indicatorFriendRequest" '.
'class="show indicator">',
db => 'New Friend Requests!',
},
'display' => 'New Friend Requests!'
},
'NIC' => { 'search' => { css => '<div id="indicatorPhotoComments" '.
'class="show indicator">',
db => 'New Photo Comments!',
},
'display' => 'New Image Comments!'
},
'EV' => { 'search' => { css => '<div id="indicatorEvents" '.
'class="show indicator">',
db => 'New Event Invitation!',
},
'display' => 'New Event Invitation!'
},
'BC' => { 'search' => { css => '<div id="indicatorBlogComments" '.
'class="show indicator">',
db => 'New Blog Comments!',
},
'display' => 'New Blog Comments!'
},
'BP' => { 'search' => { css => '<div id="indicatorBlogs" '.
'class="show indicator">',
db => 'New Blog Posts!',
},
'display' => 'New Blog Posts!'
}
};
sub get_notifications {
$self->_go_home;
my %data = ();
my $page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /g; # (Eliminate extra whitespace)
# Myspace uses two techniques for displaying this data, and they
# keep switching back and forth. Figure out which one they're doing
# this week...
my $dt;
if ( $page =~ /<div id="indicatorComments" class="/ ) {
$dt = "css";
} else {
$dt = "db";
}
foreach my $stat_type ( keys( %$stats_ref ) ) {
my $re = $stats_ref->{"$stat_type"}->{'search'}->{"$dt"};
if ( $page =~ /$re/i ) {
$data{"$stat_type"} = $stats_ref->{"$stat_type"}->{'display'}
}
}
# Number of friends
$data{"friends"} = "You have " . $self->friend_count . " friends";
# Return the data
return %data;
}
=head2 my_friend_id
Returns the friendID of the user you're logged in as.
Croaks if you're not logged in.
EXAMPLE
print $myspace->my_friend_id;
=cut
sub my_friend_id {
$self->_die_unless_logged_in( 'my_friend_id' );
return $self->{my_friend_id};
}
=head2 is_band( [friend_id] )
Returns true if friend_id is a band profile. If friend_id isn't passed,
returns true if the account you're logged in under is a band account.
If it can't get the profile page it returns -1 and you can check
$myspace->error for the reason (returns a printable message).
This is used by send_friend_request to not send friend requests to
people who don't accept them from bands, as myspace passively accepts
the friend request without displaying an error, but doesn't add the friend
request.
EXAMPLE
$myspace->is_band( $friend_id );
if ( $myspace->error ) {
die $myspace->error . "\n";
} else {
print "They're a band, go listen to them!\n";
}
IMPORTANT: You can NOT assume that a profile is a personal profile if
is_band is false. It could be a film profile or some future type of
profile. There is currently no test for a personal or film profile.
=cut
sub is_band {
my ( $friend_id ) = @_;
# If they gave a friend_id, we load the profile and look at it.
# If not, we return, or set, our internal is_band variable.
if ( defined $friend_id ) {
# Get the profile page
my $res = $self->get_profile( $friend_id );
unless ( $self->error ) {
# Scan the page for band-specific RE
if ( $res->decoded_content =~ $regex{'is_band'} ) {
return 1;
} else {
return 0;
}
} else {
return -1;
}
} else {
# Check for the "upcoming shows" header. This might very well
# appear on other types of profiles (i.e. comedy), but it
# distinguishes performers from personal profiles pretty well.
# Note that this requires is_band to be called for the first time
# just after loading the login profile page. site_login calls
# this method to take care of that problem.
unless ( defined $self->{is_band} ) {
if ( $self->current_page->decoded_content =~ /<h*?>\s*Upcoming Shows\s*<\/h/io ) {
$self->{is_band} = 1;
} else {
$self->{is_band} = 0;
}
}
return $self->{is_band};
}
}
=head2 is_comedy( [ $friend_id | friend_id => $friend_id ] [ page => $page ] );
Returns true if the specified profile is a comedy page. The method checks for
the existence of the "Myspace Comedy" graphic on the page.
=cut
sub is_comedy {
my $page = $self->_validate_page_request( @_ );
if ( $page ) {
if ( $self->_apply_regex( regex=> 'is_comedy' ) ) {
return 1;
} else {
return 0;
}
}
return;
}
=head2 is_private( friend_id => $friend_id || page => $page )
Returns true if we think the profile has been set to private. You should note
that you will get the most accurate results if you use this method while *not*
logged in. If you *are* logged in and you check the profile of someone who is
your friend, you will never get a true response returned you, even if this
person has their profile set to private. There will be no warnings or errors
if you call this method while logged in. We trust you'll "do the right thing".
You can choose to pass either a friend_id OR a Myspace profile page in the
form of a response object. You may use the get_profile method or just fetch
the page on your own use WWW::Mechanize or an object which provides a
$obj->decoded_content method.
Returns true (1) if profile is private. Otherwise returns false (0).
Returns undef and sets $myspace->error if there is an error.
# Thorough privacy check with error checking
if ( $myspace->is_private( friend_id => $friend_id ) ) {
print "Ooh, it's private...\n";
} elsif ( $myspace->error ) {
print $myspace->error;
} else {
print "It's so not private.\n";
}
=cut
sub is_private {
my $page = $self->_validate_page_request( @_ );
if ( defined $page ) {
my $private = $self->_apply_regex(
page => $page,
regex => 'is_private',
);
if ( $private ) { return 1 }
if ( !$self->error()
&& $self->current_page->decoded_content =~ /fuseaction=user\.invite/) {
return 0;
}
elsif ( !$self->error()
&& $self->current_page->decoded_content !~ /friends\.myspace\.com/) {
return 1;
}
else {
return 0;
}
}
return;
}
=head2 is_invalid( friend_id => $friend_id || page => $page )
Returns true if we think the profile is invalid or disabled.
You can choose to pass either a friend_id OR a Myspace profile page in the
form of a response object. You may use the get_profile method or just fetch
the page on your own use WWW::Mechanize or an object which provides a
$obj->decoded_content method.
Returns true (1) if profile is invalid/disabled. Otherwise returns false (0).
Returns undef and sets $myspace->error if there is an error.
# Thorough invalid profile check with error checking
if ( $myspace->is_invalid( friend_id => $friend_id ) ) {
print "Profile is invalid or disabled.\n";
} elsif ( $myspace->error ) {
print $myspace->error;
} else {
print "Profile seems fine to me.\n";
}
=cut
sub is_invalid {
my $page = $self->_validate_page_request( @_, no_validation => 1 );
if ( defined $page ) {
print "page defined" if $DEBUG;
my $private = $self->_apply_regex(
page => $page,
regex => 'is_invalid',
);
print $page->decoded_content if $DEBUG;
if ( $private ) { return 1 } else { return 0 }
}
return;
}
=head2 user_name
Returns the profile name of the logged in account. This is the
name that shows up at the top of your profile page above your picture.
This is NOT the account name.
Normally you'll only retreive the value with this method. When logging
in, the internal login method calls this routine with the contents
of the profile page and this method extracts the user_name from the
page code. You can, if you really need to, call user_name with the
contents of a page to have it extract the user_name from it. This
may not be supported in the future, so it's not recommended.
=cut
sub user_name {
# Otherwise if they gave us a home page, get user's name.
if ( @_ ) {
my ( $homepage ) = @_;
my $page_source = $homepage->decoded_content;
if ( $page_source =~ /<h4 +class="heading">\s*Hello,(\s| )+(.*)\!\s*<\/h4>/o ) {
# my $line = $1;
# $line =~ s/\+/ /g;
# $line =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$self->{user_name} = $2;
# 2008-04-14 -- have noticed Myspace inserting <wbr/> randomly
# in the middle of the user's name on the homepage; these need to
# be stripped out
$self->{user_name} =~ s/<w?br\s?\/>//ig;
}
}
return $self->{user_name};
}
=head2 friend_user_name( [friend_id] )
Returns the profile name of the friend specified by friend_id.
This is the name that shows up at the top of their profile page
above their picture.
If no friend_id is specified, this method scans the current page
so you can do:
$myspace->get_profile( $friend_id );
print $myspace->friend_user_name;
(Note, DON'T go using this to sign comments
because most users use funky names and it'll just look cheesy.
If you really want to personalize things, write a table mapping
friend IDs to first names - you'll have to enter them yourself).
=cut
sub friend_user_name {
my $page;
if ( @_ ) {
$page = $self->get_profile( @_ );
} else {
$page = $self->current_page;
}
if ( $page->decoded_content =~ /<span class="nametext">(.*?)<\/span>/o ) {
my $line = $1;
# $line =~ s/\+/ /g;
# $line =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
return $line;
} else {
return "";
}
}
=head2 friend_url( [friend_id] )
Returns the custom URL of friend_id's profile page. If they haven't
specified one, it returns an empty string.
Example:
foreach my $friend_id ( $myspace->get_friends ) {
my $url = $myspace->friend_url( $friend_id );
if ( $url ) {
print 'Friend's custom URL: http://www.myspace.com/' .
$myspace->friend_url( $friend_id );
} else {
print 'Friend doesn't have a custom URL. Use: '.
'http://www.myspace.com/' . $friend_id;
}
}
If no friend_id is specified, this method scans the current page
so you can do:
$myspace->get_profile( $friend_id );
print $myspace->friend_url;
=cut
sub friend_url {
my $page;
if ( @_ ) {
$page = $self->get_profile( @_ );
} else {
$page = $self->current_page;
}
return $self->_apply_regex( regex => 'friend_url', page => $page );
}
=head2 friend_id ( friend_url )
Returns the friend_id corresponding to a given custom URL.
(This is basically the reverse of friend_url).
# Print the friendID of Amber G: myspace.com/iamamberg
print $myspace->friend_id("iamamberg");
> 37033247
If no friend_url is specified, this method scans the current page
so you can do:
$myspace->get_profile( $friend_id );
print $myspace->friend_url;
=cut
sub friend_id {
my ($friend_url) = @_;
my $page;
if ( $friend_url ) {
# If they gave a full URL chop off all but the last part.
$friend_url =~ s/^.*\///;
#Get page corresponding to the given custom URL
$page = $self->get_page( $BASE_URL.$friend_url );
} else {
$page = $self->current_page;
}
#Look for a RE that's near the top of the page that contains friendid
if (defined $page && $page->decoded_content =~ $self->_regex('friend_id') ) {
return $1;
}
else {
return;
}
}
=head2 C<get_real_name( [ $friend_id | friend_id => $friend_id | page => $page ] )>
Tries to determine the real name of the person whose profile is specified.
It does this by looking for "my name is ____" or "my real name is _____" on their
profile page. The regex used takes several common myspace grammar/spelling erorrs
into account.
If passed no arguments, real_name parses the current page. If passed a friend_id,
it calls get_profile to retrieve the friend's profile page. If passed
a page (an HTTP::Response object), it parses $page->decoded_content.
=cut
sub get_real_name {
my ( $page ) = $self->_validate_page_request( @_ );
# Matches: "my name is ___", "my real name is ___", "my name's ___", "my namez ___",
# "my name'z ___", etc. Makes sure it's before the top friends section (because
# someone could have a profile named "my name's joe", or leave a similar comment).
if ( $page->decoded_content =~
/my (real )?(name i[sz]|name'?[sz])\s+(\w+).*class="friendSpace"/ismo ) {
return ucfirst ( lc( $3 ) );
}
return;
}
=head2 friend_count
Returns the logged in user's friend count as displayed on the
profile page ("You have NN friends").
Note that due to one of WWW::Myspace's many bugs, this count may not
be equal to the count of friends returned by get_friends.
Like the user_name method, friend_count is called by the internal
login method with the contents of the user's profile page, from
which it extracts the friend count using a regexp on the
"You have NN friends" string. If you need to, you can do so
also, but again this might not be supported in the future so do so
at your own risk.
=cut
sub friend_count {
# If they gave us a page, set friend_count.
if ( @_ ) {
my ( $homepage ) = @_;
my $page_source = $homepage->decoded_content;
if ( $page_source =~ /You have(\s| |<span>)*(<a [^>]+>)?([0-9]+)(<\/a>)?(<\/span>|\s| )*friends/o ) {
$self->{friend_count} = $3;
}
# has someone else's friend count been requested? in this case,
# return the value and don't stuff it into self
elsif ( $page_source =~ /has <span class="redbtext">(\d{1,})<\/span> friends\./ ){
return $1;
}
}
return $self->{friend_count};
}
=head2 last_login( [friend_id] )
Returns the last login date from the specified profile in Perl "time"
format. As of WWW::Myspace 0.70, uses the Time::ParseDate module's
"parsedate" method to parse the date according to your system's locale
settings. This was done to allow for UK-style dates, which myspace seems
to display based either on your profile settings, if you're logged in, or
based on your IP address if not logged in.
If no friend_id is specified, this method scans the current page
so you can do:
$myspace->get_profile( $friend_id );
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
localtime( $myspace->last_login );
# or
if ( $myspace->last_login( $friend_id ) < today - 3600 * 60 ) {
print "They haven't logged in in 60 days!"
}
=cut
sub last_login {
my ( $page, $time );
if ( @_ ) {
$page = $self->get_profile( @_ ) or return;
} else {
$page = $self->current_page;
}
if ( $page && $page->decoded_content =~
/Last\s+Login:(\s| )+([0-9]+\/[0-9]+\/[0-9]+)\s*<br\s?\/?>/smo ) {
# Convert to Perl's time format.
my $time = parsedate( "$2", DATE_REQUIRED => 1); # From Time::ParseDate
$self->error( "Unable to parse date: $1" ) unless $time;
# eval { $time = timelocal( 0, 0, 0, $3, $2 - 1, $4 ); }; # From Time::Local
# $self->error( $@ . "\nDate found was $2/$3/$4" ); # Need to report to the caller if we got an error.
# Return it.
return $time;
} else {
$self->error("Last Login regex not found on profile page");
return;
}
}
=head2 last_login_ymd ( $friend_id || friend_id => $friend_id || page => $page )
Returns the "Last Login" date for a given friend_id in YMD format.
Behaves the same as profile_views. See profile_views for documentation on
passing parameters to this function.
=cut
sub last_login_ymd {
my $page = $self->_validate_page_request( @_ );
if ( defined $page ) {
my $content = $page->decoded_content;
$content =~ s/\n//g;
# Band pages.
if ( $content =~ /Last\sLogin: \s*(\d{1,})\/(\d{1,})\/(\d{4})/igmsoxc ) {
return join("-", $3, $1, $2);
}
# Personal pages
elsif ( $content =~ /Last\sLogin:\s*(\d{1,})\/(\d{1,})\/(\d{4})/igmsoxc ) {
return join("-", $3, $1, $2);
}
}
return;
}
#---------------------------------------------------------------------
# get_profile( $friend_id )
# Return the friend's profile page as an HTTP::Response object
=head2 get_profile( $friend_id || $friend_url )
Gets the profile identified by $friend_id or $friend_url. That means
both of these will work:
$myspace->get_profile( "12345" );
$myspace->get_profile( "hilaryduff" );
Returns a reference to a HTTP::Response object that contains the
profile page for $friend_id.
The following displays the HTML source code of the friend's
profile identified by "$friend_id":
my $res = $myspace->get_profile( $friend_id );
print $res->decoded_content;
=cut
sub get_profile {
# $no_validate is used by the internal _validate_page_request method
# in case a method needs to specifically check for an invalid
# profile or somesuch.
my ( $friend_id, $no_validate ) = @_;
my $re = 'verify_get_profile';
$re = undef if ( $no_validate );
# Myspace bug on 10/25/07: Calling certain profiles (occurred on a Chinese
# profile in the test/discovery case myspace.com/1300323889) using the
# myspace.com/friend_id format causes a circular redirect.
# So now we use the explicit profile request if
# we were given a friendID, or the short form if we were given a MySpace URL.
if ( $friend_id =~ /^[0-9]+$/o ) {
return $self->get_page( 'http://profile.myspace.com/index.cfm?fuseaction='.
'user.viewprofile&friendid='.$friend_id, $re );
} else {
return $self->get_page( "${BASE_URL}${friend_id}", $re );
}
}
=head2 profile_views( $friend_id || friend_id => $friend_id || page => $page )
Returns the listed number of Profile Views for a given friend_id. This has
only been tested on band profiles. You can choose to pass either a friend_id
OR a Myspace profile page in the form of a response object. You may use
the get_profile method or just fetch the page on your own use WWW::Mechanize or
an object which provides a $obj->decoded_content method.
EXAMPLE
my $views = $myspace->profile_views( friend_id => $friend_id );
OR
my $page = $myspace->get_profile( $friend_id );
$myspace->profile_views( page => $page );
=cut
sub profile_views {
my $page = $self->_validate_page_request( @_ );
if ( defined $page ) {
my $content = $page->decoded_content;
$content =~ s/\n//g;
# Scan the page for band-specific RE (the music player plug-in).
if ( $content =~ /Profile\sViews: \s*(\d{1,})/igmsoxc ) {
return $1;
}
}
return;
}
=head2 comment_count( $friend_id || friend_id => $friend_id || page => $page )
Returns the listed number comments posted a given friend_id. Behaves the same
way as profile_views. See profile_views for documentation on passing
parameters to this function.
=cut
sub comment_count {
my $page = $self->_validate_page_request( @_ );
if ( defined $page ) {
my $content = $page->decoded_content;
$content =~ s/\n//g;
if ( $content =~ /Displaying<span class="redtext"> \d{1,} <\/span>of<span class="redtext"> (\d{1,}) <\/span>comments/ ) {
return $1;
}
#check whether there are zero comments on profile
elsif($content =~ /<span class="orangetext15">.*?Friends Comments/){
return 0;
}
else {
print "can't find comment count" if $DEBUG;
}
}
else {
print "page undefined" if $DEBUG;
}
return;
}
=head2 get_basic_info( $friend_id || friend_id => $friend_id || page => $page );
This routine takes either a friend_id or a page response object and returns a hash of information containing:
country - country in profile (names of countries are as
standardized on MySpace)
cityregion - the line with city and region information (this
is free text)
headline - whatever it says next to the picture (including quotes)
lastlogin - date of last login
city - city*
region - region*
in addition, for profiles of individuals returns
age - as number
gender - as text, either male or female
while for band/music profile returns
profileviews - number of people that checked the profile
EXAMPLE:
my ( %info ) = $myspace->get_basic_info( $friend_id );
print "Your friend is $info{'age'} years old and is a $info{'gender'}.\n";
# sample output:
Your friend is 25 years old and is a female.
* Note: MySpace joins the profile data from city and region to one line (such as Berlin, Germany).
However, both city and region are free text so people can write whatever they want. What is more,
region and city is optional. This function tries to extract the city and the region by splitting cityregion
at the last comma and do some other guesswork if there is only one value. However, it might not work
(depending on the profile information) so both city and region can either be undefined or empty.
See profile_views for documentation on passing parameters to this function.
=cut
sub get_basic_info {
# Get and decode the page into HTML source
my $page = $self->_validate_page_request( @_ );
my %info = ();
#first find out what kind of profile this is
#as band profiles work a bit different from
#personal, film and comedy profiles
my $type=$self->get_profile_type(page => $page);
return undef if($self->error);
#if it is not a band profile
unless($type == 2){
$page = $self->_apply_regex( regex => 'basic_info', page => $page );
$page = $self->_apply_regex( regex => 'basic_info_sub', source => $page );
#we tend to get sometimes funny html in the basic info section that breaks
#the regex; we should get round this by stripping out every <br> that is not
#immediately followed by a newline
$page=~ s/(<br>)([^\s])/$2/g;
#<br>U.S<span class=lastlogin>, COLORADO
#$page=~ s/<br>.*<span class=lastlogin>(.*\n)?//;
#assign values and trim leading and trailing white spaces
( $info{'headline'},undef,$info{'gender'},
$info{'age'},$info{'cityregion'},$info{'country'},
undef,undef,$info{'lastlogin'}
)=map {s/^\s+//;s/\s+$//;$_} split('<br>',$page);
#return age as number only
$info{'age'} =~ s/^(\d+).*/$1/;
#return last login as date only
$info{'lastlogin'} =~ s/Last Login:\s+([\d\/]*)/$1/;
}
#separately for band profiles
else{
$page = $self->_apply_regex( regex => 'basic_info_band', page => $page );
$page =~ s/<\/strong><\/font>//;
$page=~ s/(<br>)([^\s])/$2/g;
#assign values and trim leading and trailing white spaces
( $info{'headline'},undef,$info{'cityregion'},
$info{'country'},undef,$info{'profileviews'},
undef,undef,undef,$info{'lastlogin'}
)=map {s/^\s+//;s/\s+$//;$_} split('<br>',$page);
#make sure profile views returns only the number
$info{'profileviews'}=~ s/[^\d]*([\d]+)/$1/sm;
#return last login as date only
$info{'lastlogin'} =~ s/Last Login:[^\d]*([\d\/]+)/$1/sm;
}
( $DEBUG ) && print %info,"\n";
#let's guess what is the city and what the region
if ($info{'cityregion'} =~ /(.*),\s*(.*)/){
$info{'city'} = $1;
$info{'region'} = $2;
}elsif($info{'cityregion'} =~ /(.+)/){
$info{'region'} = $1;
}
#make sure there is no more html in the returned values
#also strip whitespaces
foreach (keys %info){
$info{$_} =~ s/<[^>]*>//g;
$info{$_} =~ s/^\s+//;
$info{$_} =~ s/\s+$//;
}
#%info = map { $_ => $info{$_} =~ s/<[^>]*>//g } (keys %info);
return (%info);
}
=head2 C<get_comments( friend_id => $friend_id, last_comment_time => time(), last_comment => comment_id )>
Returns a list of hashrefs, like "get_inbox", of comments
left for the profile indicated by $friend_id.
Returns the logged-in user's comments if no friend_id is specified.
if last_comment_time is specified, returns comments left at the same time
or more recently than the time specified. last_comment_time is a UTC time
value (i.e. what "time" returns). This should work as expected if you
convert your local time, as it is compared to the "time" return value (see
below), which is also converted to UTC. For example, "last_comment_time => time - 3600"
will return all comments left within the last hour.
"last_comment_time => time( 2007, 11, 01, 14, 00 )" will return comments left since
2PM Nov 1, 2007 in your server's time zone. (I might have the format to "time" wrong
there, but hopefully you get the idea that comment times are given to your server in
your server's local time and this module converts all those times to UTC for comparison).
If last_comment_id is specified, get_comments will return all comments left AFTER
the specified comment. Note that the comment_id might not be a "real" unique
ID, so this could break.
get_comments returns a maximum of 100 pages of comments (about 5000). This limit
was added in version 0.66 to prevent the method from "running away" if myspace
changes the code for which the method looks when gathering the comments. It was
updated from 50 to 100 pages in version 0.73.
Each list element contains:
{
comment_id => $comment_id # Myspace's unique ID for this comment (might change/break)
sender => $friend_id, # friendID of the person who sent the comment
sendername => $name, # Profile "name" of the person who sent the comment
date => $date_time, # As formatted on MySpace
time => $datetime, # time the comment was left in "time" format.
comment => $string # HTML of the comment.
}
Note: The comment_id is used in myspace's "delete" buttons - it might be a unique
ID, or it could change in the future. Try not to depend on it for long-term
dependencies. Short-term it might work.
Comments are returned in the order in which they appear on myspace
(currently most recent first).
Dies if called when not logged in.
=cut
sub get_comments {
my ( $friend_id, %options, $last_comment_time, $last_comment );
# Parse the arguments properly
# Old format: get_comments( $friend_id );
# New format: get_comments( friend_id => $friend_id, last_comment_time => time() );
if ( @_ > 1 ) {
%options = @_;
$friend_id = ( $options{'friend_id'} || '' );
$last_comment_time = ( $options{'last_comment_time'} || '' );
$last_comment = ( $options{'last_comment'} || '' );
} else {
( $friend_id ) = @_;
$last_comment_time = $last_comment = '';
}
$friend_id = $self->my_friend_id unless ( $friend_id );
my @comments = ();
my $url="http://comment.myspace.com/index.cfm?fuseaction=user.viewComments&friendID=".
$friend_id;
my $eventtarget='ctl00$cpMain$UserViewCommentsControl$pagerTop';
my $mspagerstate;
my $viewstate;
my $page="";
my $commentcount;
$self->_die_unless_logged_in( 'get_comments' );
( $DEBUG ) && print "Getting $url\n";
$page = $self->get_page( $url );
#raise an error if its private
#if($self->is_private(page => $page)) {
#$self->error("cannot get comments from private profile");
#return undef;
#}
# find out how many comments in total
if ($page->decoded_content =~ /.*Listing [\d-]+ of (\d+).*/smo){
$commentcount=$1;
( $DEBUG ) && print "Listing line shows $commentcount comments.\n";
} else {
$self->error("Could not find how many comments are on profile");
return undef;
}
# only get a maximum of 100 comment pages
# this should translate to 5000 comments
# and also serves as a safety measure in case
# the method breaks again
for (my $i=1;$i<=100;$i++) {
$page=$self->{current_page};
push @comments, $self->_get_comments_from_page(
page => $page->decoded_content,
last_comment_time => $last_comment_time,
last_comment => $last_comment
);
#make sure we did not get an error
return undef if ($self->error);
# Stop if we got the last comment we're supposed to
last if ( $self->{_done} );
# Stop if there's no next button
last unless $self->_next_button;
#get value of form field msPagerState
if ($page->decoded_content =~ /id=\"___msPagerState\" value=\"(.*?)\"/o){
$mspagerstate=$1;
}
else {
$self->error("get_comments could not determine msPagesState in form");
return undef;
}
#get value of form field viewstate
if ($page->decoded_content =~ /id=\"__VIEWSTATE\" value=\"(.*?)\"/o){
$viewstate=$1;
}
else {
$self->error("get_comments could not determine viewstate in form");
return undef;
}
# Get the next page
my $nextpage = $i+1;
#create a form using these values
my $htmlform=qq{<form name="aspnetForm" method="post" action="/index.cfm?fuseaction=user.viewComments&friendID=$friend_id" id="aspnetForm">}.
qq{<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="$eventtarget" />}.
qq{<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="$nextpage" />}.
qq{<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="$viewstate" />}.
qq{<input type="hidden" name="___msPagerState" id="___msPagerState" value="$mspagerstate" />}.
qq{</form>};
my $form=HTML::Form->parse($htmlform,"http://comment.myspace.com/index.cfm");
( $DEBUG ) && print "Sumbitting form to access comments page #",$i+1,"\n";
# last if ( $DEBUG && ( $i > 5 ) );
#submit it and hope for the best
$self->submit_form({form => $form,no_click=> 1,follow=>0});
# submit the form to get to next page
#$self->submit_form({
# follow => 0,
# form_name => "aspnetForm",
# no_click => 1,
# fields_ref => { __EVENTTARGET => $eventtarget, __EVENTARGUMENT => '' }
# #re1 => 'something unique.?about this[ \t\n]+page',
# });
# sleep ( int( rand( 2 ) ) + 1 );
}
# unless(scalar (@comments) == $commentcount){
# $self->error("Could not collect all comments. Have " . @comments .", should have $commentcount");
# return undef;
# }
return \@comments;
}
sub _get_comments_from_page {
# Take a page, return a list of comment data
my ( %opts ) = @_;
my $page = $opts{'page'};
my @comments = ();
$self->{_done} = 0;
# Get to the comments section to avoid mis-reads
if ( $page !~ m/Add Comment<\/a>/gs ) {
$self->error("Comment section not found on page");
return undef;
}
# Read the comment data and push it into our array.
while ( $page =~ s/.*?"deleteList"\s+value="([0-9]+)".*?friendid=([0-9]+)">(.*?)<.*?<h4>(.*?)<\/h4>\s*.*?<span .*?>(.*?)<\/span>//smo ) {
my $c = { comment_id => $1, sender => $2, sendername => $3, date => $4, comment => $5 };
unless ( $c->{'comment_id'} =~ /[0-9]+/o ) {
$self->error( "Invalid comment ID: $c->{'comment_id'}" );
return;
}
if ( $opts{'last_comment'} && ( $opts{'last_comment'} == $c->{'comment_id'} ) ) {
$self->{_done}=1; last;
}
$c->{'time'} = parsedate( $c->{'date'} ) if $c->{'date'};
if ( $opts{'last_comment_time'} && ( $c->{'time'} < $opts{'last_comment_time'} ) ) {
$self->{_done}=1; last;
}
push @comments, $c;
}
( $DEBUG ) && print " Got " . @comments . " comments\n";
return @comments;
}
=head2 get_profile_type( $friend_id || friend_id => $friend_id || page => $page )
Can take either a friend id or a page response object and returns an integer that indicates the type of MySpace profile.
The codes are as follows
1 individual profile
2 band profile (detected by looking for the MySpace Music logo)
3 film profile (detected by looking for the MySpace Film logo)
4 comedy profile (detected by looking for the MySpace Comedy logo)
First we try to look for all the non-individual profiles. If these do not match, we try
to make sure that we have at least a "Last Login" date on the profile to make sure that
this is really an individual's profile.
returns undef and sets an error if nothing of the above matches.
=cut
# More error checking needed
sub get_profile_type {
# Get and decode the page into HTML source
my $page = $self->_validate_page_request( @_ );
#band profile
#return 2 if ( $page->decoded_content =~ qr/x\.myspace\.com\/images\/music_logo\.gif/o );
return 2 if($self->_apply_regex( regex => 'is_music', page => $page ));
#film profile
#return 3 if ( $page->decoded_content =~ qr/x\.myspace\.com\/images\/film_logo\.gif/o );
return 3 if($self->_apply_regex( regex => 'is_film', page => $page ));
#comedy profile
#return 4 if ( $page->decoded_content =~ qr/x\.myspace\.com\/images\/comedy\/mscomedy\.gif/o );
return 4 if($self->_apply_regex( regex => 'is_comedy', page => $page ));
#should be a personal profile if we have a mention of a last login date somehwhere
#return 1 if ($page->decoded_content =~ qr/Last Login:/o );
return 1 if($self->_apply_regex( regex => 'last_login', page => $page ));
#if non of the above applies, return an error
$self->error("Could not determine type of profile");
return undef;
}
sub get_birthdays {
=head2 get_birthdays
Returns a hash of the birthdays from View Upcoming Birthdays as
friendID => birthday, friend_id => birthday, ...
Croaks if called when not logged in.
Example:
my ( %birthays ) = $myspace->get_birthdays;
foreach my $friend ( keys( %birthdays ) ) {
print "Friend ${friend}'s birthday is on ". $birthdays{"$friend"} . "\n";
}
=cut
$self->_die_unless_logged_in( 'get_birthdays' );
$self->_go_home or return;
warn "Loading birthdays page\n" if $DEBUG;
$self->follow_link( url_regex => qr/fuseaction\=user\.birthdays/io ) or return;
my %bd=(); my $page = 1;
do {
my $page_source = $self->current_page->decoded_content;
while ( $page_source =~ s/^.*?friendid=([0-9]+).*?birthday_icon\.gif.*?>\s*(.*?)\s*<//ismo ) {
warn "Got birthday for friend ID $1: $2\n" if ( $DEBUG );
$bd{"$1"}="$2";
}
if ( $self->_next_button )
{
# Click "Next"
$page++;
warn "Loading birthdays page $page\n" if $DEBUG;
$self->submit_form( {
form_name=>'aspnetForm',
fields_ref=>{ '__EVENTTARGET' => 'ctl00$cpMain$BirthdayList$PagerTop',
'__EVENTARGUMENT' => $page
},
no_click => 1,
} );
}
# Loop until there's no next button or we've read 10 pages (to prevent
# endless loop if _next_button gets broken)
} while ( $self->_next_button && ( $page < 10 ) );
return ( %bd );
}
sub ____EDIT_ACCOUNT____ {}
=head1 EDIT ACCOUNT
=head2 get_photo_ids( %options )
Each of your profile's photos is stored using a unique ID number.
This method returns a list of the IDS of the photos in your profile's photo section.
The only valid option at this time is:
friend_id => $friend_id
Defaults to your friendID.
Croaks if called when not logged in.
=cut
sub get_photo_ids {
my ( %options ) = @_;
$self->_die_unless_logged_in( 'get_photo_ids' );
my $friend_id = $options{'friend_id'} || $self->my_friend_id;
$self->get_profile( $friend_id ) or return;
$self->follow_link( url_regex => qr/fuseaction\=user\.viewAlbums/io ) or return;
# If there's a "View All Pictures" link, click it. Otherwise it means
# they only have one album (or myspace changed something again).
$self->follow_link( url_regex => qr/fuseaction\=user\.viewPicture/io );
$self->error(undef); # Ignore any error we got.
my $last_id = -1;
my @photo_ids = ();
my $page = $self->current_page->decoded_content;
while ( $page =~ s/^.*?imageID=([0-9]+)[^0-9]//iso ) {
unless ( $1 == $last_id ) {
push( @photo_ids, $1 );
$last_id = $1;
}
}
return ( @photo_ids );
}
=head2 set_default_photo( photo_id => $photo_id )
Sets your profile's default photo to the photo_id specified.
Example: Set your default photo to a random photo.
use WWW::Myspace 0.60;
my $myspace = new WWW::Myspace;
my @ids = $myspace->get_photo_ids;
$myspace->set_default_photo( $ids[ int( rand( @ids ) ) ] );
=cut
sub set_default_photo {
my ( %options ) = @_;
$self->_die_unless_logged_in( 'set_default_photo' );
$self->_go_home or return;
# warn "Going to Edit photos page\n";
$self->follow_link( text_regex => qr/Edit Photos/io ) or return;
# Click "View All Photos".
$self->follow_link( url_regex => qr/fuseaction=user\.editAlbumPhotos/io ) or return;
# Click on the picture
$self->follow_link( url_regex => qr/imageID=$options{'photo_id'}/i ) or return;
# Click the "Set a default" button
$self->submit_form( {
form_name => 'aspnetForm',
fields_ref => {
'__EVENTTARGET' => 'ctl00$cpMain$contentHolder$editPhoto$PhotoHeader1$lbtnSetAsDefault',
'__EVENTARGUMENT' => ''
},
no_click => 1,
} );
}
# Myspace now (July 2007) numbers the submit buttons sequentially on the page.
# The RE here searches for the imageID in the URL and returns the sequence number
# from the "set as default" button that follows it.
sub _get_photo_button_no {
my ( $photo_id ) = @_;
my $page = $self->current_page->decoded_content;
my $re = 'imageID=' . $photo_id .
'.*?ctl00\$Main\$ViewAndEditPhotos1\$ImageListings1\$dtImageList\$ctl([0-9]+)\$SetAsDefault';
if ( $page =~ /$re/sm ) {
return $1
}
$self->error( "No button for photo ID $photo_id found on page" );
return;
}
sub _get_photo_form_no {
my ( $photo_id ) = @_;
my ( @forms ) = $self->mech->forms;
my $form_no = 0;
foreach my $f ( @forms ) {
if ( $f->find_input( 'imageID' ) ) {
return $form_no if ( $f->value( 'imageID' ) == $photo_id );
}
$form_no++;
}
$self->error( "No photo with ID $photo_id found on Edit Photos page" );
return;
}
sub ____FIND_PEOPLE____ {}
=head1 FIND PEOPLE
=head2 C<find_friend( $email )>
Takes an email address and returns a list of the friend_ids of the
owner.
It does so by clicking "Search" and filling in the "Find a Friend"
form with "email" selected.
Example:
use WWW::Myspace;
my $myspace=new WWW::Myspace( auto_login=>0 );
my $email = shift;
my ( @friend_ids ) = $myspace->find_friend( $email );
if ( $myspace->error ) {
die $myspace->error;
} elsif ( @friend_ids ) {
print "${email}'s friendID is @friend_ids\n";
} else {
print "Don't think $email is on myspace, sorry\n";
}
=cut
sub find_friend {
my ( $email ) = @_;
warn "In find_friend.\n" if $DEBUG;
unless ( $email ) {
$self->error( "Must provide an email address in find_friend");
return;
}
warn "Getting home page.\n" if $DEBUG;
$self->_go_home or return;
warn "Getting search page.\n" if $DEBUG;
$self->follow_to( 'http://search.myspace.com/index.cfm?fuseaction=find', '' ) or return;
warn "Submitting $email to search form\n" if $DEBUG;
# JavaScript seems to change the form's action into a GET request instead?!?
my $search_uri = "http://searchservice.myspace.com/index.cfm?fuseaction=sitesearch.results&type=People&qry=";
$search_uri .= uri_escape($email);
return unless $self->get_page( $search_uri,
qr/(results for|weren('|\&rsquo\;)t able to find)/io);
# return unless $self->submit_form( {
# form_no => 1,
# fields_ref=>{
# # searchBy has disappeared, for some reason; f_first_name is now
# # used for first/last name, display name, email, or MySpace URL
## searchBy => 'Email',
# f_first_name => "$email",
# },
# # Take note -- Myspace used ’ instead of an apostrophe. That's
# # actually correct typography, and they might be planning to use it
# # more often
# re2=>qr/(results for|weren('|\&rsquo\;)t able to find)/io
# } );
warn "Posted form, scanning for response.\n" if $DEBUG;
if ( $self->current_page->decoded_content =~ qr/results for/io ) {
warn "Got positive response for $email\n" if $DEBUG;
return ( $self->get_friends_on_page );
} elsif ( $self->current_page->decoded_content =~ qr/weren('|\&rsquo\;)t able to find/io ) {
warn "Got negative response for $email\n" if $DEBUG;
return;
} else {
# This currently can't happen...
$self->error("Unable to parse friend search results page");
return;
}
}
=head2 C<search_friend_list( $name )>
Takes a name to search for and returns a list of the friend_ids
of the owner. Per Myspace's page, "You can search for display
name, full name, MySpace URL or email."
It does so by clicking "View Friends" and filling in the "Search
Friend List" form.
Example:
use WWW::Myspace;
my $myspace=new WWW::Myspace;
my $name = shift;
my ( @friend_ids ) = $myspace->search_friend_list( $name );
if ( $myspace->error ) {
die $myspace->error;
} elsif ( @friend_ids ) {
print "Search for $name yielded these friendID's: ",
join(', ", @friend_ids);
} else {
print "No friend's matched the search for $name.";
}
=cut
sub search_friend_list {
my ( $name ) = @_;
my @friends;
my $page_no = 1;
unless ( $name ) {
$self->error( "Must provide a name in search_friend_list");
return;
}
$self->_go_home or return;
$self->follow_link(
url_regex => qr/fuseaction=user\.viewfriends/io,
re => 'View All Friends',
);
return if $self->error;
$self->submit_form( {
form_name => 'aspnetForm',
fields_ref => { 'ctl00$cpMain$FriendsView_skin$txtSearch' => $name },
button => 'ctl00$cpMain$FriendsView_skin$btnFuzzySearch',
} );
return if $self->error;
while (1) {
push ( @friends, $self->get_friends_on_page );
last unless $self->_next_button;
$page_no++;
# WARNING: This is untested!!!
$self->submit_form( {
form_name => 'aspnetForm',
no_click => 1,
re2 => 'View All Friends',
fields_ref => { '__EVENTTARGET' => 'ctl00$cpMain$pagerTop',
'__EVENTARGUMENT' => $page_no },
} );
}
return ( @friends );
}
=head2 browse
Call browse with a hashref of your search criteria and it
returns a list of friendIDs that match your criteria.
This is a complex form. Don't trust the defaults you see in your web browser.
Easiest thing to do is paste this into your script and change the
values you want. (This example script looks up the specified criteria
and dumps a list of friendIDs in YAML).
use WWW::Myspace;
use YAML;
my $myspace = new WWW::Myspace( human => 0, auto_login => 0 );
my @friends = $myspace->browse( {
'ctl00$Main$ctl00$Scope' => 'scopeFullNetwork', # or 'scopeMyFriends'
'ctl00$Main$ctl00$Gender' => 'genderWomen', # or 'genderMen', 'genderBoth'
'ctl00$Main$ctl00$minAge' => 18,
'ctl00$Main$ctl00$maxAge' => 35,
# Marital Status
'ctl00$Main$ctl00$statusSingle' => 'on',
'ctl00$Main$ctl00$statusInRelationship' => 'off',
'ctl00$Main$ctl00$statusSwinger' => 'off',
'ctl00$Main$ctl00$statusMarried' => 'off',
'ctl00$Main$ctl00$statusDivorced' => 'off',
# Here for
'ctl00$Main$ctl00$motiveDating' => 'on',
'ctl00$Main$ctl00$motiveNetworking' => 'off',
'ctl00$Main$ctl00$motiveRelationships' => 'on',
# Location (there are MANY country values. Check the browse page
# source (see below)).
'ctl00$Main$ctl00$country' => 'US',
'ctl00$Main$ctl00$zipRadius' => 20,
'ctl00$Main$ctl00$zipCode' => 91604,
'ctl00$Main$ctl00$region' => 'Any',
# Photos
'ctl00$Main$ctl00$showHasPhotoOnly' => 'on',
'ctl00$Main$ctl00$showNamePhotoOnly' => 'on', # Leave this on for speed.
# Ethnicity
'ctl00$Main$ctl00$asian' => 'on',
'ctl00$Main$ctl00$white' => 'on',
'ctl00$Main$ctl00$black' => 'off',
'ctl00$Main$ctl00$eastIndian' => 'off',
'ctl00$Main$ctl00$latino' => 'off',
'ctl00$Main$ctl00$midEastern' => 'off',
'ctl00$Main$ctl00$nativeAmer' => 'off',
'ctl00$Main$ctl00$ethnOther' => 'off',
'ctl00$Main$ctl00$pacIslander' => 'off',
# Body Type
'ctl00$Main$ctl00$slimSlender' => 'on',
'ctl00$Main$ctl00$average' => 'off',
'ctl00$Main$ctl00$moreToLove' => 'off',
'ctl00$Main$ctl00$athletic' => 'on',
'ctl00$Main$ctl00$littleExtra' => 'off',
'ctl00$Main$ctl00$bodyBuilder' => 'off',
# Height
'ctl00$Main$ctl00$Height' => 'heightBetween', # or 'heightNoPreference'
'ctl00$Main$ctl00$minFoot' => 5,
'ctl00$Main$ctl00$minInch' => 0,
'ctl00$Main$ctl00$maxFoot' => 6,
'ctl00$Main$ctl00$maxInch' => 0,
# Background & Lifestyle
'ctl00$Main$ctl00$Smoker' => 'smokerBoth', # or 'smokerNo', 'smokerYes'
'ctl00$Main$ctl00$Drinker' => 'drinkerBoth', # or 'drinkerNo', 'drinkerYes'
'ctl00$Main$ctl00$straight' => 'on',
'ctl00$Main$ctl00$bi' => 'on',
'ctl00$Main$ctl00$gay' => 'off',
'ctl00$Main$ctl00$notSure' => 'off',
# Education (note: all off means no preference)
'ctl00$Main$ctl00$highSchool' => 'off',
'ctl00$Main$ctl00$inCollege' => 'off',
'ctl00$Main$ctl00$gradSchool' => 'off',
'ctl00$Main$ctl00$someCollege' => 'off',
'ctl00$Main$ctl00$collegeGrad' => 'off',
'ctl00$Main$ctl00$postGrad' => 'off',
# Religion
'ctl00$Main$ctl00$religion' => 'NoPreference',
# Possible Values Are:
# NoPreference
# Agnostic
# Atheist
# Buddhist
# Catholic
# ChristianOther
# Hindu
# Jewish
# Mormon
# Muslim
# Other
# Protestant
# Scientologist
# Taoist
# Wiccan
# Income
'ctl00$Main$ctl00$income' => 'NoPreference',
# Possible Values Are:
# NoPreference
# LessThan30000
# From30000To45000
# From45000To60000
# From60000To75000
# From75000To100000
# From100000To150000
# From150000To250000
# From250000ToHigher
# Children
'ctl00$Main$ctl00$children' => 'NoPreference',
# Possible Values Are:
# NoPreference
# IDontWantKids
# Someday
# Undecided
# LoveKidsButNotForMe
# Proud parent
# Sort By (last login is good to weed out dead accounts)
'ctl00$Main$ctl00$SortBy' => 'sortByLastLogin',
# Possible Values Are:
# sortByLastLogin
# sortByNewToMySpace
# sortByDistance
} );
print Dump( @friends );
I'm not sure how I'm going to make the criteria passing easier.
I'm also concerned about your script breaking if they change the
browse form variable names. So maybe I'll add a mapping later.
The values above are current, and you can copy/paste that code, change
the values, and browse away.
If you need to look at values (i.e. something's not working or you need
to change "Location" fields):
Go to the browse page:
http://browseusers.myspace.com/browse/Browse.aspx
Switch to Advanced mode and enter your search criteria.
View Source in your web browser and find "<form". The second form should
be named "aspnetForm".
Look through the input tags on the form (hint: find "<input"),
entering name and value pairs as above for your search criteria.
Many/most of them are in the example above, but myspace does weird things
like differentiate checkboxes solely by their name instead of name and
value (i.e. you'd expect multiple inputs with
name="ct100$Main$SexualPreference" , and value="straight",
value="bi", etc, but instead there are inputs with
name="ct100$Main$straight" and name="ct100$Main$bi" and no value attribute
at all).
Note: to "check" a checkbox with no "value" attribute, use 'on' to turn
it on, 'off' to turn it off. If you don't specify a field/checkbox in in
your search criteria, you'll get the default value, which is hard to
determine with this weird form (and is quite possibly NOT the default value
you'll see if you open the page in your web browser).
=cut
sub browse {
my ( $criteria ) = @_;
my @friends = ();
# Safety check
croak 'Criteria must be a hash reference\n' unless ref $criteria;
my $re = "Browse Users";
# Switch to advanced view
$self->submit_form( {
page => $BROWSE_PAGE,
form_name => 'aspnetForm',
no_click => 1,
fields_ref => {
'__EVENTTARGET' => 'ctl00$Main$advancedView',
},
re1 => $re,
re2 => $re,
} ) or return;
# Enter the search criteria and click Update
$self->submit_form( {
form_name => 'aspnetForm',
action => $self->_browse_action( 'Update' ),
fields_ref => { %{$criteria}, '__EVENTTARGET' => 'ctl00$Main$update' },
re1 => $re,
re2 => $re,
} ) or return;
# $self->mech->form_name( "aspnetForm" )->dump;
# Loop through the resulting pages getting friendIDs.
my $page = 1;
until ( ( $self->error ) ||
( ! $self->_next_button )
) {
# Get the friends from the current page
push @friends, $self->get_friends_on_page( $self->current_page->decoded_content );
# Click "Next"
$page++;
$self->_browse_next( $page, $re );
warn "Page: $page, friends: " . @friends . "\n";
}
# Sort and remove duplicates
my %friends = ();
foreach my $id ( @friends ) {
$friends{ $id } = 1;
}
return ( sort( keys( %friends ) ) );
}
=head2 _browse_next( $page )
The browse form's Next button calls a JavaScript function that sets
"action" and "page" in the browse form and "clicks" submit. So we
do the same here. Called by browse to simulate clicking "next".
=cut
sub _browse_next {
my ( $page, $re ) = @_;
# Get the javascript-set action for the next button post
my $action = $self->_browse_action( "GotoPage" );
return 0 unless $action;
# Submit the form.
my $submitted = $self->submit_form( {
'form_name' => "aspnetForm",
'action' => $action,
'no_click' => 1,
'fields_ref' => { page => $page },
're1' => $re,
're2' => $re,
# 'base' => "http://browseusers.myspace.com/",
} );
return $submitted;
}
=head2 _browse_action( $function_name )
Gets the action set by the specificied function on the Browse page.
=cut
sub _browse_action {
my ( $function ) = @_;
# Look for the action (we need MyToken)
$self->current_page->decoded_content =~
/function ${function}.*?theForm\.action = "Browse\.aspx(\?MyToken=[^"]+)"/is;
# my $action = "http://browseusers.myspace.com/browse" . $1;
my $args = $1;
unless ( $args ) {
$self->error("Couldn't find Javascript GotoPage function to set action");
return "";
}
my $action = "http://browseusers.myspace.com/browse/Browse.aspx" . $args;
return $action;
}
=head2 cool_new_people( $country_code )
NOTE: Myspace appears to have abandoned this method of posting "cool new
people" sometime around August of 2006. However, the .js pages are still
posted, so this method will return a list of people. However, they are not
new and maybe not even cool. This method should be considered deprecated.
This method provides you with a list of "cool new people".
Currently Myspace saves the "cool new people" data
to a JavaScript file which is named something like this:
http://viewmorepics.myspace.com/js/coolNewPeople_us.js
Since these files are named using country codes, you'll need to provide
the ISO 3166-1 two letter code country code for the list you'd like to
get. For example,
$myspace->cool_new_people( 'US' )
When called in a list context, this function returns the friend ids of
the cool folks:
my @friend_ids = $myspace->cool_new_people( 'US' );
If you treat the return value as a hash reference, you'll get a hash
keyed on friend ids. The values consist of hash references containing
the urls of the friend thumbnails (thumb_url) as well as their display
names (friend_user_name). There will probably be about 200 keys
returned in the hash.
my $cool = $myspace->cool_new_people('US');
my %cool_new_people = %{$cool};
%cool_new_people = {
...
'friend_id' => {
'thumb_url' => 'url_to_jpg_here',
'friend_user_name' => 'friend display name here'
},
...
}
So far, we know of 4 country-specific cool new people lists: AU, CA,
UK/GB and US Submitting any of these values to the function should
return valid friend ids. If you want to check for other countries for
which cool people lists may exist, you can do something like this:
use Locale::SubCountry;
my $world = new Locale::SubCountry::World;
my %countries = $world->code_full_name_hash();
my @country_codes = sort keys %countries;
foreach my $country_code ( @country_codes ) {
my %cool_people = $myspace->cool_new_people($country_code);
if (%cool_people) {
print "$country_code $countries{$country_code} has cool folks\n";
}
else {
print "****** $country_code\n";
}
}
=cut
sub cool_new_people {
my $country_code = shift;
my $country_code_uc = "\U$country_code";
my %cool_people = ( );
$self->error(0); # Lets the calling script check for error being true.
# special case for UK
if ($country_code_uc eq 'UK') {
$country_code_uc = 'GB';
}
# get a list of valid country codes
my ( $world, %countries );
eval 'use Locale::SubCountry;$world = new Locale::SubCountry::World; '.
'%countries = $world->code_full_name_hash();';
if (exists $countries{$country_code_uc}) {
my $country_code_lc = "\L$country_code";
my $javascript_url =
'http://viewmorepics.myspace.com/js/coolNewPeople_'.
$country_code_lc.'.js';
# my $res = $self->get_page( $javascript_url );
# get_page helps circumvent myspace errors by checking for
# errors and trying many times. We might not want to do that here
# (since we could have a country code that's not working, etc).
my $res = $self->mech->get( $javascript_url );
unless ($res->is_success) {
if ($res->code == 404) {
$self->error("Unable to find cool new friends for $country_code_uc ($countries{$country_code_uc})");
}
else {
$self->error( $res->status_line . " $javascript_url\n" );
return;
# don't die in modules, scripters will be mad. :)
# die $mech->response->status_line, "$javascript_url\n";
}
}
my $html = $res->decoded_content;
my @lines = split(/\n/, $html);
foreach my $line (@lines) {
if ($line =~ /new coolNewPerson\('(.*?)', '(\d*?)', '(http.*?)'/) {
$cool_people{$2} = { friend_user_name => $1, thumb_url => $3 };
}
}
}
else {
$self->error( qq[You supplied: $country_code You must supply a valid 2 character country code. For example cool_new_people('US')] );
return;
#die qq[You supplied: $country_code You must supply a valid 2 character country code. For example cool_new_people('US')];
}
return
LIST { keys %cool_people }
HASHREF { \%cool_people }
;
}
=head2 get_friends( %options )
NOTE: As of version 0.59, "source => inbox" has been removed due to
a formatting change in Myspace.com. Use the "friends_who_emailed"
method instead.
This method is a complete re-write as of version 0.62. Please see the
Changes file.
Returns, as a list of friendIDs, all of your friends. It does not include
Tom, because he's everybody's friend and when you're debugging your band
central CGI page it's probably best to limit your mistakes to
actual friends.
# Simplest form - gets your friends.
@friends = $myspace->get_friends;
# Advanced form
@friends = $myspace->(
source => 'group', # 'profile', 'group', 'inbox', or ''
id => $group_id, # friendID or groupID as appropriate
start_page => $start_page # Start on this page. Starts on page 1 if not included.
end_page => $end_page, # Stop on this page. Goes to last page if not included.
max_count => 300, # Number of friends to return
);
Accepts the following options:
source: "profile" or "group"
If not specified, gets your friends.
profile: Get friends from the profile specified by the "id" option.
group: Get the friends from the group specified by the "id" option.
id: The friendID or groupID (depending on "source").
"id" is only needed for "profile" or "group".
(See the "friends_in_group" method for more info).
start_page: Start on this page.
end_page: Stop on this page.
$myspace->get_friends( end_page => 5 );
If not specified, gets all pages.
See note below about interaction with other options.
max_count: Return this many friendIDs.
$myspace->get_friends( max_count => 300 );
Stops searching and returns when max_count is reached.
(See note below).
exclude: Ignored as of version 0.62. Previous versions took this
as a list of friends to exclude.
If you specify max_count and end_page, get_friends will stop when it
hits the earliest condition that matches.
max_count may return up to 40 more friends than you specify. This
is because it reads each friend page, and returns when it's gathered
max_count or more friends (and there are 40 per page).
Myspace trivia: The friends on friends lists are sorted by friendID.
Croaks if called with no arguments (i.e. to get your friends) and you're not
logged in.
=cut
# This re-write of get_friends "correctly"
# handles paging through the friends pages the same way a browser does.
# Current issues are:
# - "source" handling is sloppy. This should really be separate methods.
# - Doesn't handle exclusions.
# - No real error checking.
#
sub get_friends {
my ( %options ) = @_;
my @friends = ();
my $exclude = "";
my $page_no = 1;
my $last_page_no = 1;
my $profile_id = '';
my $page_jump;
# This should be split into "get_my_friends", "get_profile_friends",
# and "get_group_friends".
if ( ! defined $options{'source'} ) {
$self->_go_home;
$self->follow_link(
url_regex => qr/fuseaction=user\.viewfriends/io,
re => 'friends.*go to my profile',
);
$profile_id = $self->friend_id;
} elsif ( $options{'source'} eq 'group' ) {
warn "Can't get friends from group due to change in myspace until method is updated.";
return undef;
# Note: This needs to be moved to its own method - form is different.
$self->get_page( 'http://groups.myspace.com/index.cfm?'.
'fuseaction=groups.viewMembers&groupID=' . $options{id}
);
$options{start_page} && $options{start_page}--;
$options{end_page} && $options{end_page}--;
$page_no--;
} elsif ( $options{'source'} eq 'profile' ) {
$profile_id = $options{'id'};
$self->get_profile( $profile_id );
# check first whether there are friends at all
# if not, return zero friends
if ( $self->current_page->decoded_content =~ qr/Invite Your Friends Here/o ) {
return ( @friends)
}
else {
$self->follow_link( url_regex => qr/fuseaction=user\.viewfriends/io );
$exclude=$options{id}; # Exclude the owner's ID (bit of a hack).
}
}
return undef if $self->error;
#TODO: This should be "_get_friends", called by the above methods.
while (1) {
push ( @friends, $self->get_friends_on_page( '', $exclude ) )
unless ( $options{start_page} &&
( $page_no < $options{start_page} )
);
#TODO: This needs to try harder - maybe check the number of pages
# and if we're not on the last one, keep trying a certain number
# of times. Currently, it's likely we'll only get part of the
# friend list.
last unless $self->_next_button;
return @friends
if ( $options{'end_page'} && ( $page_no > $options{'end_page'} ) );
return @friends
if ( $options{'max_count'} && ( $#friends >= $options{'max_count'} ) );
$last_page_no = $page_no;
if ( $options{'start_page'} && ( $page_no < $options{'start_page'} ) ) {
$page_no = $options{'start_page'};
$page_jump = $page_no - $last_page_no;
} else {
$page_no++;
$page_jump = 1;
}
# Get the base URL
$self->current_page->decoded_content =~
/function GoToPage.*?FriendsCategories\.UrlHelper\(\'(.*?)\'\)/smio;
my $url = $1;
# Fill in the page values and get the next page.
# Myspace calls a JavaScript "GotoPage" function with the page number
# (starting from page 1). That function then sets the URL's "p="
# to the page number - 1, so we do the same here.
my $get_page = $page_no-1;
$self->get_page(
$url.'&p='.$get_page.'&j='.$page_jump.'&fid='.
$self->{'_highest_friend_id'}.
'&lid='.$self->{'_lowest_friend_id'}, 'friends.*go to my profile' );
}
return ( @friends );
}
#---------------------------------------------------------------------
# friends_from_profile( friend_id );
=head2 friends_from_profile( %options )
Returns a list of the friends of the profile(s) specified by the "id" option.
id can be a friendID or a reference to an array of friendIDs.
If passed a list of friend IDs, scans each profile and returns a sorted,
unique list of friendIDs. Yes, that means if you pass 5 friendIDs and
they have friends in common, you'll only get each friendID once.
You're welcome.
Also accepts the same options as the get_friends method
(end_page, max_count, etc).
Examples:
# Band 12345 and 54366 sound like us, get their friends list
@similar_bands_friends=
$myspace->friends_from_profile( id => [ 12345, 54366 ] );
# Get the first 500 friends from profile 12345
@friends = $myspace->friends_from_profile(
id => 12345,
max_count => 500
);
# A further example:
# Before you do anything with these ids, make sure you don't already
# have them as friends (uses the "exclude" option in get_friends,
# which is very efficient as friends are excluded as they're read
# instead of afterwards):
my @current_friends = $myspace->get_friends;
die $self->error if $self->error;
my @potential_friends = $myspace->friends_from_profile(
id => [ 12345, 54366 ],
exclude => \@current_friends
);
=cut
sub friends_from_profile {
my ( @profiles ) = @_;
my ( %options );
# Check for old format ( @friend_ids ) or new ( id => \@friend_ids )
if ( $profiles[0] =~ /^[0-9]+$/o ) {
%options = ( id => \@profiles );
} else {
( %options ) = ( @profiles );
}
my @friends = ();
my $id;
my %friend_ids = ();
# Get the profiles. Take an arrayref or a single number
if ( ref $options{'id'} ) {
( @profiles ) = ( @{ $options{'id'} } );
} else {
( @profiles ) = ( $options{'id'} );
}
# Delete the id and source options.
delete $options{'id'};
delete $options{'source'} if ( $options{'source'} );
# Get the friendIDs
foreach $id ( @profiles ) {
push ( @friends,
$self->get_friends(
source => 'profile',
id => $id,
%options )
);
last if ( $self->error );
}
# Sort and return (also removes duplicates from multiple profiles)
foreach $id ( @friends ) {
$friend_ids{"$id"}=1;
}
return ( sort( keys( %friend_ids ) ) );
}
#---------------------------------------------------------------------
=head2 friends_in_group( group_id );
Convenience method; the same as calling:
get_friends( source => 'group', id => $group_id )
Returns a list of the friend IDs of all people in the group identified by
C<group_id>. Tom is excluded from this list (as is the case when using the
C<get_friends> method directly).
Example:
my @hilary_fans = $myspace->friends_in_group( 100011592 );
C<@hilary_fans> will now contain the friend ID of everyone in the Hilary Duff
Fan Club group (group ID 100011592).
The group ID can be found immediately after C<groupid=> in the URL of the
group's page on Myspace, for example:
http://groups.myspace.com/index.cfm?fuseaction=groups.groupProfile&groupid=100011592
=cut
sub friends_in_group {
# If they didn't give us a group, return nothing. Could
# be argued that we should croak here.
return () unless ( @_ );
# Return the friends.
return $self->get_friends( source => 'group', id => $_[0] );
}
#---------------------------------------------------------------------
# friends_who_emailed();
# Return a list of friends with mail in the inbox.
=head2 friends_who_emailed
Convenience method. Reads messages from "inbox" method and returns
a list of senders.
This used to be the same as calling "get_friends( source => 'inbox' )",
but Myspace changed the way the inbox paging wored and it was more
practical to read from the inbox method. Changed in 0.59.
Returns, as a list of friend IDs, all friends with messages
in your inbox (mail). Note that this only tells you who you have mail from,
not how many messages, nor does it contain any method to link to those
messages. Use "inbox" for that.
This method is primarily designed to aid in auto-responding programs
that want to not contact (comment or email) people who have sent
messages so someone can attend to them personally. Frankly, it was
written before "inbox" and may be deprecated in the future.
Croaks if you're not logged in.
@friends = $myspace->friends_who_emailed;
=cut
sub friends_who_emailed {
$self->_die_unless_logged_in( 'friends_who_emailed' );
my %senders = ();
my $messages = $self->inbox;
# Store the senders
foreach my $message ( @{$messages} ) {
$senders{ $message->{sender} }++;
}
return ( sort( keys( %senders ) ) );
}
=head2 search_music
Search for bands using the search music form.
Takes a hashref containing field => value pairs that are passed directly
to submit_form to set the search criteria.
http://musicsearch.myspace.com/index.cfm?fuseaction=music.search
The easiest way I've found to get your values is to fill them in on the
search form, click "Update", then look at the page source. Scroll to
the botton where "PageForm" is and you'll see the values you selected.
Put the pertinent ones (i.e. things you changed) into your script.
Note that the field *names* are different, so just take the values,
and use the names as described below.
Any value the form can take (present or
future) can be passed, so in theory you could write a CGI front-end also
that just had the form, posted the values to itself, then used those
values to call this method (i.e. do what I suggested above automatically).
Here are the currently available form labels/values (looking at the form
helps):
genreID: See the form for values
search_term:
0: Band Name
1: Band Bio
2: Band Members
3: Influences
4: Sounds like
keywords: text field. Use it if you're searching by band name, etc.
Country: Labeled "Location" in the form. See the form source for values.
localType: The radio buttons. Set to:
countryState: To search by Country / State
distanceZip: To search by distance and zip code.
if localType is "countryState", set this:
state: State code (like the post office uses, thankfully. See form code
if you have any questions).
If localType is "distanceZip", set these:
zip: The 5-digit zip code.
distance: Distance from zip code [0|5|10|20|50|100|500]. 0="Any" and is the
default.
OrderBy: [ 5 = Plays | 4 = Friends |3 = New | 2 = Alphabetical ]
Default is 2.
IMPORTANT: Results are currently sorted by friendID regardless of the
OrderBy setting.
For those who care about details, here's how the Search Music page works:
There are three forms on the page, the generic
"search" form in the nav bar, a second form called "myForm" that is
the user-modified update form, and a third form called "PageForm" that
is actually used to pass the values. PageForm is updated with the values
after "update" is clicked in myForm. Clicking "Next" just sets
(using JavaScript in Myspace) the page value in PageForm and submits PageForm.
Oddly enough, PageForm ends up being a "GET", so you could theoretically
just loop through using URLs. But we don't, we fill in the form like a
browser would.
=cut
# And now this is compiled only once, not potentially 4 times. This would be
# a good candidate to put at the top?
our $page_verify_re =
qr/Music.*?».*?Search Results.*<\/html>/o;
sub search_music {
my ( $sc ) = @_;
# Page verification RE
my $re = $page_verify_re;
# First fill in the search form with their criteria.
$self->submit_form( {
page =>
'http://musicsearch.myspace.com/index.cfm?fuseaction=music.search',
form_no => 1,
fields_ref => $sc,
re1 => $re,
re2 => $re,
# base => 'http://musicsearch.myspace.com/'
} );
return undef if $self->error;
# Get the friends
my $page_no = 0;
my %friends = ();
do {
# Get the friends on this page
foreach my $id ( $self->get_friends_on_page ) {
$friends{ "$id" } = { 'page_no' => $page_no+1 };
}
# Click "Next".
$page_no++;
print "Getting page " . $page_no . "\n";
$self->submit_form( {
'form_name' => 'PageForm',
no_click => 1,
'fields_ref' => { page => $page_no },
're1' => $re,
're2' => $re,
# base => 'http://musicsearch.myspace.com/',
} );
} until ( ( $self->error ) || ( ! $self->_next_button ) );
# Clean up and return
return
LIST { sort( keys( %friends ) ) }
HASHREF { \%friends }
;
}
sub ____CONTACT_PEOPLE____ {}
=head1 CONTACT PEOPLE
These methods interact with other users.
=cut
#---------------------------------------------------------------------
=head2 post_comment( $friend_id, $message )
Post $message as a comment for the friend identified by $friend_id.
The routine confirms success or failure by reading the resulting
page. It returns a status string as follows:
P => Passed! Verification string received.
PA => Passed, requires approval.
FF => Failed, you must be someone's friend to post a comment about them.
FN => Failed, network error (couldn't get the page, etc).
FC => Failed, CAPTCHA response requested.
FI => Failed, Invalid friendID.
FL => Failed, Add Comment link not found on profile page.
F => Failed, verification string not found on page after posting.
Warning: It is possible for the status code to return a false
"Failed" if the form post is successful but the resulting page fails
to load.
If called in scalar context, it returns the status code. If called in
list context, returns the status code and the description.
EXAMPLE:
use WWW::Myspace;
my $myspace = new WWW::Myspace;
foreach $id ( $myspace->friends_who_emailed ) {
$status = $myspace->post_comment( $id, "Thanks for the message!" )
}
# Get a printable status (and print it)
( $status, $desc ) = $myspace->post_comment(
$id, "Thanks for being my friend!"
);
print "Status of post: $desc\n";
post_comment loads $friend_id's profile page, clicks the "Add Comment"
link, fills in, posts, and confirms a comment. If $friend_id is a
non-true value (i.e. "0" or ''), post_comment will search for and click
an "Add Comment" link on the last page loaded. This lets you do
this without double-loading the profile page wasting time and bandwidth:
$myspace->get_profile( $friend_id );
if ( $myspace->current_page->decoded_content =~ /something special/ ) {
$myspace->post_comment( 0, "Your page is special!" );
}
If called when you're not logged in, post_comment croaks to make you
look stupid.
See also the WWW::Myspace::Comment module that installs with the
distribution.
=cut
sub post_comment {
# warn "post_comment disabled due to change in myspace code until method can be updated."
# return undef;
my ( $friend_id, $message, $captcha_response ) = @_;
my $status = ""; # Our return status
my ($submitted, $attempts, $link);
$self->_die_unless_logged_in( 'post_comment' );
# Check data
croak "Must pass friend_id and message to post_comment" unless
( ( $friend_id ) && ( $message ) );
my %status_codes = (
P => 'Passed! Verification string received.',
PA => 'Passed, requires approval.',
FF => 'Failed, you must be someone\'s friend to post a comment about them.',
FN => 'Failed, network error (couldn\'t get the page, etc).',
FC => 'Failed, CAPTCHA response requested.',
FI => 'Failed, Invalid FriendID.',
FL => 'Failed, Add Comment link not found on profile page.',
F => 'Failed, verification string not found on page after posting.',
);
TESTBLOCK: {
unless ( $captcha_response ) {
# Convert newlines (\n) into socket-ready CRLF ASCII characters.
# This also takes care of possible literal "\n"s that come
# from command-line arguments.
$message =~ s/(\n|\\n)/\015\012/gos;
# Myspace bug fix:
$message .= "\n ";
# If we have a friendID, load the profile
if ( $friend_id ) {
$self->get_profile( $friend_id );
if ( $self->error ) {
$status='FN';
last TESTBLOCK;
}
}
# Submit the comment to $friend_id's page
$link = $self->mech->find_link(
text_regex => qr/^Add\s+Comment$/io );
unless ( $link ) { $status="FL"; last TESTBLOCK; }
( $DEBUG ) && print "Getting comment form..\n";
$submitted =
$self->submit_form( {
page => $link->url,
follow => 1,
form_name => 'aspnetForm',
fields_ref => {
'ctl00$cpMain$UserWriteCommentsControl$commentTextBox' => "$message",
'ctl00$cpMain$UserWriteCommentsControl$postcommentImageButton' => "Post A Comment",
# '__EVENTTARGET' => 'ctl00$cpMain$UserWriteCommentsControl$postcommentImageButton',
# '__EVENTARGUMENT' => '',
},
re1 => 'comment_p1',
re2 => 'comment_p2'
} );
# If we posted ok, confirm the comment
if ( $submitted ) {
my $captcha_result="";
my @captcha=();
# See if there's a CAPTCHA response required, if so,
# deal with it or fail appropriately.
if ( $self->current_page->decoded_content =~ $CAPTCHAi ) {
$self->captcha( $1 );
#TODO: Not tested - comment captcha may be on a separate form?
$captcha_result = $self->_handle_captcha( $1 );
unless ( $captcha_result ) { $status='FC'; last TESTBLOCK; }
@captcha = ( 'CAPTCHAResponse' => $captcha_result );
}
# Otherwise, confirm it.
( $DEBUG ) && print "Confirming comment...\n";
$submitted = $self->submit_form( {
follow => 1,
form_name => 'aspnetForm',
button => 'ctl00$cpMain$UserWriteCommentsControl$ConfirmPostButton',
@captcha
} );
} else {
$self->error( 'First submit failed in post_comment with error: '.
$self->error );
}
} else {
# Post the confirmation
$submitted = $self->submit_form( '', 1, '',
{ 'CAPTCHAResponse' => $captcha_response } );
}
# Get the resulting page and clean it up (strip whitespace)
my $page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /g;
# Set the status code to return.
if ( $self->_apply_regex( source => $page, regex => 'not_friend' ) ) {
$status="FF";
} elsif ( $self->_apply_regex( source => $page, regex => 'is_invalid' ) ) {
$status="FI";
} elsif (! $submitted ) {
$status="FN";
} elsif ( $self->_apply_regex( source => $page, regex => 'comment_posted') ) {
$status="P";
} elsif ( $self->_apply_regex( source => $page, regex => 'comment_approval_msg' ) ) {
$status = "PA";
} else {
$status="F";
}
}
return (
LIST { $status, $status_codes{$status} }
SCALAR { $status }
);
}
=head2 captcha
If post_comment returns "FC", the "captcha" method will return
the URL to the CAPTCHA image that contains the text that the
user must enter to post the comment.
Psuedo-code example of how you can use this in a CGI script:
my $response = $myspace->post_comment( 12345, 'This is a message' );
if ( $response eq 'FC' ) {
# Get and display the image
print '<form>\n'.
"<img src='" . $myspace->captcha . "'>\n".
'<input type=text name=\'CAPTCHAResponse\'>' .
'<input type=submit>' .
'</form>';
}
# Post the comment
$myspace->post_comment( 12345, 'This is a message', $captcha_response );
(Use in a CGI script is currently problematic since you'll lose the
Myspace object. I'll try to write a better example later. You could
try doing a YAML Dump and Load of the $myspace object...)
=cut
field 'captcha';
#---------------------------------------------------------------------
# comment_friends( $message, $attr )
# Posts a comment to all of our friends. $attr is a hash reference
# containing selection criteria.
# Example:
# $myspace->comment_friends( "Merry Christmas!", { 'ignore_dup' => 'Y' } );
# (Note: we don't handle the filtering here yet)
=head2 comment_friends( $message )
=head2 comment_friends( $message, { 'ignore_dup' => 1 } )
This convenience method sends the message in $message to
all of your friends. (Since you can only comment friends, it
sends the comment to everyone you can).
By default it will scan the user's profile page for a previous comment
(by searching for your profile URL on the page, which also detects
you if you're in their top 8 or otherwise linked to from their page).
If called in the second form, it forgoes this duplicate checking
(ignores duplicates), and posts anyway.
Note that you'll probably want to use the WWW::Myspace::Comment module
as if the process is interrupted (which is likely), this
routine doesn't offer a way to recover.
The WWW::Myspace::Comment module logs where comments have been left, scans for
previous comments we've left on the user's page, and can stop after a
specified number of posts to avoid triggering security measures. It can also
be re-run without leaving duplicate comments.
Of course, if you just want to whip off a quick comment to a few (less than
50) friends, this method's for you.
EXAMPLE:
A simple script to leave a comment saying "Merry Christmas"
to everyone on your friends list:
use WWW::Myspace;
my $myspace = new WWW::Myspace;
$myspace->comment_friends( "Merry Christmas!" );
=cut
sub comment_friends {
my ( $message, $attr ) = @_;
my $status = "";
my $friend_id;
# Get friends
my @friends=$self->get_friends;
# Loop and post
foreach $friend_id ( @friends ) {
# If we can ignore duplicates or we haven't commented them already,
# post the comment.
if ( ( $attr->{'ignore_dup'} ) ||
(! $self->already_commented( $friend_id ) ) ) {
$status = $self->post_comment( $friend_id, $message );
}
}
}
#---------------------------------------------------------------------
# already_commented( $friend_id );
# Return true if we've previously left a comment for this person.
=head2 already_commented
Returns true if there is a link to our profile on "$friend_id"'s page.
(If we've left a comment, there'll be a link).
Note that if you're friends with this person and they have another link
to your profile on their page, this will return true, even though
you may not have left a comment.
EXAMPLE
my WWW::Myspace;
my $myspace = new WWW::Myspace;
foreach $friend_id ( $myspace->get_friends ) {
unless ( $myspace->already_commented( $friend_id ) ) {
$myspace->post_comment(
$friend_id,
"Hi, I haven't commented you before!"
)
}
}
already_commented croaks if called when you're not logged in.
=cut
sub already_commented {
my ( $friend_id ) = @_;
$self->_die_unless_logged_in( 'already_commented' );
# Get the page
my $page = $self->get_profile( $friend_id )->decoded_content;
# If we got an error, return a false true (but error is set)
return 1 if $self->error;
# If $self->my_friend_id isn't set for some reason, this'll return
# a false "true", so set error.
my $fr_id = $self->my_friend_id;
if ( $fr_id ) {
$self->error(0)
} else {
$self->error( "my_friend_id is not set!" )
}
# Parse through all the friend links on their page
while ( $page =~ /$regex{'friend_link'}/g ) {
# If the link's on their page, return true
return 1 if ( $2 eq $fr_id );
}
# If we didn't find the link on their page, return false.
return 0;
}
=head2 get_inbox ( %options )
Returns a reference to an array of hash references that contain data
about the messages in your Myspace message inbox. The hashes contain:
sender (friendID)
sendername (friend's display name)
status (Read, Unread, Sent, Replied)
message_id (The unique ID of the message)
subject (The subject of the message)
The messages are returned IN ORDER with the newest first to oldest last
(that is, the same order in which they'd appear if you were looking through
your inbox).
There is currently one option:
end_msg => $message_id # Stop and return when
# the message with this
# messageID is reached.
# Does NOT return message $message_id.
end_page => $page_no # Stop and return after reading this page.
page_no => $page_no # Only read this page of messages. (Must do page 1 first).
end_msg is primarily used if you're caching your mail into a database. This
lets you get all the mail since the last message you cached. get_inbox
does not return the message matching $message_id (because you already have it).
If there are no new messages before $message_id, returns an empty list.
end_page will read up to and including the page specified. So if you
pass "end_page => 1", it will read only the first page of messages.
page_no is handy if you want to do some processing on the messages and step
through the inbox one page at a time. See Example#3 below.
I'm sure reading that first line made you as dizzy as it made me typing it.
I think this says it all much more clearly:
EXAMPLE
# This script displays the contents of your inbox.
use WWW::Myspace;
$myspace = new WWW::Myspace;
print "Getting inbox...\n";
my $messages = $myspace->get_inbox;
# Display data for each message
foreach $message ( @{$messages} ) {
print "Sender: " . $message->{sender} . "\n";
print "Sendername: " . $message->{sendername} . "\n";
print "Status: " . $message->{status} . "\n";
print "messageID: " . $message->{message_id} . "\n";
print "Subject: " . $message->{subject} . "\n\n";
}
(This script is in the sample_scripts directory, named "get_inbox").
EXAMPLE 2
# Read the messages since the last one we got
my $last_msg = selectrow_array(
"select message_id from mydatabase order by messagedate desc limit 1"
); # Sorry for the psuedocode, but hopefully you get the idea
my $messages = $myspace->get_inbox( stop_at => $last_msg )
EXAMPLE 3
# Step through the inbox reading and processing unread messages
# Note that you must call get_inbox with page_no = 1 first to
# "go to" the inbox screen. Remember that WWW::Myspace just acts like
# a person at a web browser. If you were on myspace, you'd have to log in,
# click inbox, then click a page in the inbox. Calling get_inbox( page_no => 1)
# does that for you.
my $page_no=0;
MESSAGE: {
while ( $page_no++ ) {
my $messages = $myspace->get_inbox( page_no => $page_no );
last MESSAGE if $myspace->error;
last MESSAGE unless $messages;
foreach my $msg ( @${messages}) {
last MESSAGE unless $message->{status} eq "Unread";
&process_message( $msg );
}
}
"inbox" croaks if called when you're not logged in.
=cut
sub get_inbox {
my ( %options ) = @_;
my $page="";
my $page_no = ( $options{'page_no'} || 1 );
my @messages = ();
my $eventtarget;
$self->_die_unless_logged_in( 'inbox' );
# Loop until we get an empty page or there isn't a "next" link.
while ( 1 ) {
( $DEBUG ) && print "inbox reading page $page_no\n";
if ( $self->current_page->decoded_content !~ /Mail Center.*inbox/imso ) {
# Go home
$self->_go_home or return;
# Get the first page
$page = $self->follow_to(
$self->mech->find_link(
url_regex => qr/fuseaction=mail\.inbox/i
)->url, 'Mail Center.*Inbox'
) or return;
}
$self->current_page->decoded_content =~
/javascript:__doPostBack\('(.*?)'.*?>Next/ismo;
$eventtarget = $1;
unless ( $eventtarget ) {
$self->error('get_inbox couldn\'t detect EVENTTARGET in form on inbox page '.$page_no);
return;
}
if ( !( $self->current_page->decoded_content =~ /\b"?currentpage"?>(\d+)</imso ) or $1 != $page_no ) {
$self->submit_form( {
form_name => 'aspnetForm',
fields_ref => {
'__EVENTTARGET' => $eventtarget,
'__EVENTARGUMENT' => $page_no
},
no_click => 1,
} );
}
# Get the message data.
push @messages, $self->_get_messages_from_page( %options );
# Stop if we got to the specified message
last if ( $options{'stop_at_msg'} &&
( $options{'stop_at_msg'} == $messages[-1]->{message_id} )
);
# Stop if we're on the last page
last unless ( $self->_next_button );
# Stop if we've reached the last page they requested
last if ( $options{'end_page'} && ( $page_no >= $options{'end_page'} ) );
# Stop if we're only requesting one page
last if ( $options{'page_no'} );
# Next!
$page_no++;
}
return \@messages;
}
# Return a list of message data from the current page
# Updated by WZorn to fix hanging problem on Mandriva and RetHat linux.
sub _get_messages_from_page {
my ( %options ) = @_;
my $page = $self->current_page->decoded_content;
my @messages = ();
my $state = 0; # State Values
# 0 - Beginning state, looking for beginning of message block
# 1 - In message block, looking for data
# Will return to state=0 when we get the last data (messageID and subject)
my $sender;
my $sendername;
my $status;
my $msg_id;
my $subject;
open(my $fh, "<", \$page);
while ( <$fh> ) {
chomp;
last if ( $options{'stop_at'} && ( $options{'stop_at'} == $3 ) );
if(/<td class="messageListCell" align="center">/){
# Found beginning of Message block
$state = 1;
} elsif (/viewprofile&friendid=([0-9]+)"?>([^<>]+)</ && $state == 1){
$sender = $1;
$sendername = $2;
} elsif (/(Unread|Read|Sent|Replied)/ && $state == 1){
$status = $1;
} elsif (/messageID=([^&]+)&.*?>(.+?)<\/a>/ && $state == 1){
$msg_id = $1;
$subject = $2;
$state = 0; #return to state=0 because we need to start looking for the beginning of the next message block
push @messages, { sender => $sender, sendername => $sendername, status => $status, message_id=> $msg_id, subject => $subject };
if ($DEBUG) { print $sender,"|",$sendername,"|",$status,"|",$msg_id,"|",$subject,"\n"; }
}
}
return @messages;
}
# sub _get_messages_from_page {
#
# my ( %options ) = @_;
# my $page = $self->current_page->decoded_content;
# my @messages = ();
# while ( $page =~
# s/.*?viewprofile&friendid=([0-9]+).*?(Unread|Read|Sent|Replied).*?messageID=([^&]+)&.*?>(.+?)<\/a>//som ) {
# last if ( $options{'stop_at'} && ( $options{'stop_at'} == $3 ) );
# push @messages,
# { sender => $1, status => $2, message_id => $3, subject => $4 }
# }
#
# return @messages;
# }
=head2 inbox
Here for backwards compatibility only. Use get_inbox instead.
(Version 0.69)
=cut
sub inbox { $self->get_inbox( @_ ); }
=head2 read_message( message_id )
Returns a hashref containing the message identified by message_id.
my $message_ref = $myspace->read_message( 123456 );
print 'From: ' . $message_ref->{'from'} . ."\n" . # Friend ID of sender
'Name: ' . $message_ref->{'fromname'} . ."\n" . # friend's display name
'Date: ' . $message_ref->{'date'} . ."\n" . # Date (as formatted on Myspace)
'Subject: ' . $message_ref->{'subject'} ."\n" .
'Body: ' . $message_ref->{'body'} . "\n" . # Message body
'URL: ' . $message_ref->{'url'} . "\n" . # URL to the message
'Message ID: ' . $message_ref->{'message_id'} . "\n"; # Message unique ID.
The message subject and body are HTML, except that <br /> tags are turned
into newlines in the message body (because myspace ads them at the end of each
line). It could be argued that these should be left, but since they're added,
not typed, we remove them. Other HTML is left as-is, except that if a message has
a </div> tag in it, due to the way the message body is extracted from the page's
HTML code, you'll only get the message body to the </div> tag.
$message_ref->{'url'} is new as of WWW::Myspace 0.74. It's the URL to the
message. If you go to that URL in your web browser (if you're logged into
the account that can read that message), you'll be able to read the message. It's
handy if you're writing a routine that caches or displays messages (perhaps
filtering them), then displays the message with a link in case you want to
read/delete/reply/etc the message on myspace.
read_message croaks if you're not logged in.
=cut
sub read_message {
my ( $message_id ) = @_;
$self->_die_unless_logged_in( 'read_message' );
my %message = ();
my $message_url = 'http://messaging.myspace.com/index.cfm?'.
'fuseaction=mail.readmessage&userID='.$self->my_friend_id.
'&type=inbox&messageID='.$message_id.'&fed=True';
my $res = $self->get_page( $message_url,
'read mail.*body:|Mail Center.*Inbox');
return \%message if $self->error;
# If we were passed a bad message ID, we'll have the inbox again
if ( $res->decoded_content !~ /read mail.*Body:/smio ) {
warn "Invalid Message ID\n";
return \%message;
}
# Include the messageID and URL in the hash
$message{'message_id'} = $message_id;
$message{'url'} = $message_url;
# Now we have to yank data out of a messy page.
my $page = $res->decoded_content;
$page =~ s/[ \t\n\r]+/ /go; # Turn multiple whitespace into single space
# From:
$page =~ /From:.*?friendID=([0-9]+)"?>([^<>]+)</io;
$message{'from'} = $1;
$message{'fromname'} = $2;
# Date:
# $page =~ /Date:.*?> ?([^<]+) ?</o;
# $page =~ /(Date:.*?> [^<]+ <)/o;
$page =~ /Date:.*?<span.*?>\s+([^<]+)\s?</o;
$message{'date'} = $1;
# Subject:
if ( $page =~ /<p.*?>\s*Subject:\s*<.*?<p.*?>\s*(.*?)\s*<\/p>/smo ) {
$message{'subject'} = $1;
}
# Body:
# Note: If there's a </div> tag within the message itself, we'll only
# get the message up to that point.
# The checking for the </p> tag differentiates the actual body from the
# "spamBody" hidden field, which contains ended stuff we don't want.
if (
$page =~ /Body:\s*<\/p>\s*<div .*?>\s*(.*?)\s+<\/div>/smo
) {
$message{'body'} = $1;
}
# Clean up newlines
$message{'body'} =~ s/[\n\r]/\n/go;
# And they have these BR tags at the beginning of each line...
# Not any more - 8/16/07
# $message{'body'} =~ s/^[ \t]*<br \/>[ \t]*//mog;
# And sometimes they put them elsewhere, so we'll convert those to newlines.
# (Note: Maybe this shouldn't be done, since the messages *are* HTML after all)
$message{'body'} =~ s/<br (style=\"display:none\")?\/>/\n/mog;
# Gotta clean white space before and after the body
$message{'body'} =~ s/^\s*//so; # Before
$message{'body'} =~ s/\s*$//so; # After
return \%message;
}
#---------------------------------------------------------------------
=head2 reply_message( $message_id, $reply_message )
Reply to message $message_id using the text in the string
$reply_message. Using this method is the equivilent of
going to the message, clicking "Reply", and typing your message
at the top of the window (where your cursor lands bby default).
It properly retains the original message and once sent,
the message status will show "Replied" in your myspace inbox.
Returns a status code:
P: Posted. Verified by HTTP response code and reading a regexp
from the resulting page saying the message was sent.
FC: Failed. A CAPTCHA response was requested.
FF: Failed. The person's profile is set to private. You must
be their friend to message them.
FA: Failed. The person has set their status to "away".
FE: Failed. The account has exceeded its daily usage.
FN: Failed. The POST returned an unsuccessful HTTP response code.
F: Failed. Post went through, but we didn't see the regexp on the
resulting page (message may or may not have been sent).
Example:
my $status = $myspace->reply_message( 1234567, "Thanks for emailing me!" );
If you're not logged in? Croaks.
=cut
sub reply_message {
my ( $id, $reply ) = @_;
my ( $submitted, $message_ref, $reply_message, $page );
$self->_die_unless_logged_in( 'reply_message' );
# Fill in the message (this is lazy...)
$message_ref = $self->read_message( $id );
$reply_message = $reply . $message_ref->{'body'};
# Convert newlines (\n) into socket-ready CRLF ASCII characters.
# This also takes care of possible literal "\n"s that come
# from command-line arguments.
# (Note that \n does seem to work, but this "should" be safer, especially
# against myspace changes and platform differences).
$reply_message =~ s/(\n|\\n)/\015\012/gos;
# First load the message and click "Reply" (first button - it has no
# name so this'll break if they change the button order).
$submitted = $self->submit_form( {
page => 'http://messaging.myspace.com/index.cfm?'.
'fuseaction=mail.readmessage&userID='.$self->my_friend_id.
'&type=inbox&messageID='.$message_ref->{'message_id'}.'&fed=True',
form_no => 1,
re1 => "Read Mail"
} );
# See if we can mail or if there's an error.
if ( $submitted ) {
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
if ( $page =~ /${MAIL_PRIVATE_ERROR}/i ) {
return "FF";
} elsif ( $page =~ /${MAIL_AWAY_ERROR}/i ) {
return "FA";
}
} else {
return "FN";
}
# Post the reply
$submitted = $self->submit_form( '', 1, '',
{ 'ctl00$ctl00$Main$Main$sendMessageControl$bodyTextBox' =>
$reply_message
}
);
# Verify and return the appropriate code.
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /g;
# Return the result
if (! $submitted ) {
return "FN";
} elsif ( $self->_apply_regex( source => $page, regex => 'verify_message_sent') ) {
return "P";
} elsif ( $self->_apply_regex( source => $page, regex => 'exceed_usage' ) ) {
return "FE";
} elsif ( $page =~ $CAPTCHAi ) {
return "FC";
} else {
return "F";
}
# my ( $url, $form_no, $button, $fields_ref, $regexp1, $regexp2, $base_url ) = @_;
}
#---------------------------------------------------------------------
=head2 send_message( $friend_id, $subject, $message, $add_friend_button )
=head2 send_message( %options )
Options are friend_id, subject, message, atf.
Example:
$status = $myspace->send_message(
friend_id => 12345,
subject => 'Hi there',
message => 'This is the bestest message ever!',
atf => 0,
skip_re => 'i hate everyone', # Skip negative people
);
The %options hash is the "correct" method of passing arguments as of
version 0.53. The parameter based method is here for backwards-compatibility.
send_message sends a message to the user identified by "friend_id".
If "atf" is a true value, HTML code for a "View My Profile" link will
be added at the end of the message. (This was an Add To Friends button
until Myspace started munging that code).
If "skip_re" is defined, friend_id's profile will be matched against
the RE. Whitespace will be compressed and the match will NOT be
case-sensitive.
So you can do this:
skip_re => 'i hate everyone!* ?(<br>)?'
And it will match:
I Hate EVERYONE!!!!
I hate everyone<br>
I Hate EvEryone!!! <BR>
etc.
If "friend_id" is an untrue value (i.e. 0 or ''),
send_message will look for a Send Message button (identified by
a "fuseaction=mail.message" URL if you're curious) on the current page.
This lets you do this efficiently:
# Send a message only if the profile has "fancy regex" on their page
$myspace->get_profile( $friend_id );
if ( $myspace->current_page =~ /fancy regex/ ) {
$myspace->send_message(
subject => "Hello",
message => "I'm messaging you"
);
}
$status = $myspace->send_message(
friend_id => 6221,
subject => 'Hi Tom!',
message => 'Just saying hi!',
atf => 0
);
if ( $status eq "P" ) { print "Sent!\n" } else { print "Oops\n" }
Returns a status code:
P => Passed! Verification string received.
FF => Failed, profile set to private. You must be their
friend to message them.
FN => Failed, network error (couldn't get the page, etc).
FA => Failed, this person's status is set to "away".
FS => Failed, skipped. Profile doesn't match RE.
FE => Failed, you have exceeded your daily usage.
FC => Failed, CAPTCHA response requested.
FI => Failed, Invalid friend ID.
F => Failed, verification string not found on page after posting.
If called in list context, returns the status code and text description.
( $status, $desc ) = $myspace->send_message( $friend_id, $subject, $message );
print $desc . "\n";
See also WWW::Myspace::Message, which installs along with the
distribution.
(Croaks if called when you're not logged in).
=cut
sub send_message {
# Backwards compatibility
my ( %options ) = ();
if ( $_[0] =~ /^[0-9]+$/o ) {
my ( $friend_id, $subject, $message, $atf ) = @_;
%options = (
friend_id => $friend_id,
subject => $subject,
message => $message,
atf => $atf
);
} else {
( %options ) = @_;
}
my ( $submitted, $res, $page, $status );
$self->_die_unless_logged_in( 'send_message' );
my %status_codes = (
P => 'Passed! Verification string received.',
FF => 'Failed, profile set to private. You must be their '.
'friend to message them.',
FN => 'Failed, network error (couldn\'t get the page, etc).',
FA => 'Failed, this person\s status is set to "away".',
FS => 'Failed, skipped. Profile doesn\'t match RE.',
FE => 'Failed, you have exceeded your daily usage.',
FC => 'Failed, CAPTCHA response requested.',
FI => 'Failed, Invalid FriendID.',
FL => 'Failed, can\'t find Send Message link on profile page.',
F => 'Failed, verification string not found on page after posting.',
);
# Add the button if they wanted it.
if ( ( defined $options{'atf'} ) && ( $options{'atf'} ) ) {
$options{'message'} .= '<p><a href="http://profile.myspace.com/index.cfm?'.
'fuseaction=user.viewprofile&'.
'friendID=';
if ( $options{'atf'} > 1 ) {
$options{'message'} .= $options{'atf'};
} else {
$options{'message'} .= $self->my_friend_id;
}
# $options{'message'} .= '"><img src="http://i.myspace.com'.
# '/site/images/addFriendIcon.gif" alt="Add as friend"></a>\n';
$options{'message'} .= '">View My Profile</a>\n';
}
TESTBLOCK: {
# If we were given a friend ID, get the profile
if ( $options{'friend_id'} ) {
$res = $self->get_profile( $options{'friend_id'} );
warn "Got profile.\n" if $DEBUG;
# :\n" . $res->decoded_content . "\n" if $DEBUG;
if ( $options{'skip_re'} ) {
$page =~ $res->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
if ( $options{'skip_re'} =~ /$options{'skip_re'}/i ) {
$status='FS'; last TESTBLOCK;
}
}
# Check now for invalid friend ID.
if ( $res->decoded_content =~ /$INVALID_ID/smio ) {
$status="FI";
last TESTBLOCK;
}
}
# Try to get the message form
$res = $self->mech->find_link(
url_abs_regex => qr/fuseaction=mail\.message/io
);
warn "Found 'Send Message' link: ". $res->url ."\n" if $DEBUG;
if ( $res ) {
$res = $self->follow_to( $res->url,
'Mail\s+Center.*Send\s+a\s+Message|'.$MAIL_PRIVATE_ERROR.'|'.
$MAIL_AWAY_ERROR.'|'.$INVALID_ID );
} else {
$status='FL'; last TESTBLOCK;
}
# Check for network error
if ( $self->error ) {
warn "Couldn't access 'send message' page\n" if $DEBUG;
$status='FN'; last TESTBLOCK;
}
# Check for known messages that say we can't send it.
$page = $res->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
if ( $page =~ /$MAIL_PRIVATE_ERROR/i ) {
$status='FF'; last TESTBLOCK;
} elsif ( $page =~ /$MAIL_AWAY_ERROR/i ) {
$status='FA'; last TESTBLOCK;
} elsif ( $page =~ /$INVALID_ID/i ) {
$status='FI'; last TESTBLOCK;
} elsif ( $page =~ $CAPTCHAi ) {
$status='FC'; last TESTBLOCK;
}
# Convert newlines (\n) into socket-ready CRLF ASCII characters.
# This also takes care of possible literal "\n"s that come
# from command-line arguments.
# (Note that \n does seem to work, but this "should" be safer, especially
# against myspace changes and platform differences).
$options{'message'} =~ s/(\n|\\n)/\015\012/gso;
# Submit the message
warn "Submitting message\n" if $DEBUG;
$submitted = $self->submit_form( {
form_name => 'aspnetForm',
button => 'ctl00$ctl00$Main$messagingMain$SendMessage$btnSend',
fields_ref => {
'ctl00$ctl00$Main$messagingMain$SendMessage$subjectTextBox' =>
"$options{'subject'}",
'ctl00$ctl00$Main$messagingMain$SendMessage$bodyTextBox' =>
"$options{'message'}",
'__EVENTTARGET' => 'ctl00$ctl00$Main$messagingMain$SendMessage$btnSend',
'RTEEnabled' => 'false'
},
no_click => 1,
} );
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /g;
# Return the result
if (! $submitted ) {
$status = "FN";
} elsif ( $page =~ $CAPTCHAi ) {
$status = "FC"; # They keep changing which page this appears on.
$self->captcha ( $1 );
} elsif ( $self->_apply_regex( source => $page, regex => 'verify_message_sent') ) {
$status = "P";
} elsif ( $self->_apply_regex( source => $page, regex => 'exceed_usage' ) ) {
$status = "FE";
} else {
$status = "F";
}
}
return (
LIST { $status, $status_codes{$status} }
SCALAR { $status }
);
}
=head2 delete_message( @message_ids )
Deletes the message(s) identified by @message_ids. Takes a list
of messageIDs or of hashrefs with a message_id subcomponent (such
as one gets from the "inbox" method). Croaks if called when not
logged in.
Deletes all messages in a single post. Returns true if it worked,
false if not, and sets the "error" method to the error encountered.
Example:
# Delete message 12345
$myspace->delete_message( 12345 );
# File myspace mail where it belongs.
$all_messages = $myspace->inbox;
$myspace->delete_message( @{ $messages } );
=cut
sub delete_message {
my ( @message_ids ) = @_;
warn "delete_message not working most of the time due to myspace bug.\n".
"Use at your own risk.";
my ( $form, $tree, $f, $res, $id );
my $pass=1;
$self->_die_unless_logged_in( 'delete_message' );
foreach my $message ( @message_ids ) {
# Get the message and click "delete"
$self->submit_form( {
page => 'http://messaging.myspace.com/index.cfm?'.
'fuseaction=mail.readmessage&userID='.$self->my_friend_id.
'&type=inbox&messageID='.$message.'&fed=True',
form_name => 'aspnetForm',
button => 'ctl00$ctl00$Main$Main$ReadMessage1$DeleteButton',
no_click => 0,
re1 => 'Mail\s+Center.*?Read\s+Mail'
} ) or $pass = 0;
}
return $pass;
}
#---------------------------------------------------------------------
=head2 approve_friend_requests( [ "message" ] )
Looks for any new friend requests and approves them.
Returns a list of friendIDs that were approved.
If "message" is given, it will be posted as a comment to the
new friends. If called when you're not logged in, approve_friend_requests
will croak.
If approve_friend_requests runs into a CAPTCHA response when posting
comments, it will set $myspace->captcha to the URL of the CAPTCHA
image. If no CAPTCHA was encountered, $myspace->captcha will be 0.
So you can say:
if ( $myspace->captcha ) { print "oh no!\n" }
approve_friend_requests will approve all friends whether or not it can
comment them as it approves first, then comments the list of approved
friends.
EXAMPLES
# Approve any friend requests
@friends_added = $myspace->approve_friend_requests;
# Print the number of friends added and their friend IDs.
print "Added " . @friends_added . " friends: @friends_added.";
# Approve new frieds and leave them a thank you comment.
@friends_added = $myspace->approve_friend_requests(
"Thanks for adding me!\n\n- Your nww friend" );
Run it as a cron job. :)
Note that "\n" is properly handled if you pass it literally also (i.e.
from the command line). That is if you write this "approve_friends"
script:
#!/usr/bin/perl -w
# usage: approve_friends [ "message" ]
use WWW::Myspace;
my $myspace = new WWW::Myspace;
$myspace->approve_friend_requests( @ARGV );
And run it as:
approve_friends "Thanks for adding me\!\!\n\n- Me"
You'll get newlines and not "\n" in the message. There, I even gave
you your script.
=cut
sub approve_friend_requests
{
my @guids = ();
my @friends = ();
my %friends = (); # Not a typo. See below.
my ( $page, $id );
my ( $message ) = @_;
$self->_die_unless_logged_in( 'approve_friend_requests' );
# Go Home
$self->_go_home;
return undef if $self->error;
# Click the friend requests link
$self->follow_to(
$self->mech->find_link(
url_regex => qr/fuseaction=mail\.friendRequests/io
)->url,
'Friend Request Manager'
);
return undef if $self->error;
# As long as there are friend requests on the page,
# select all of them and click "Approve Selected Friends"
my $f;
while ( @guids = $self->_get_friend_requests ) {
# Get the friendIDs from the page
@friends = ( @friends, $self->get_friends_on_page );
# Check the checkboxes and submit the form
$self->submit_form( {
form_name => 'aspnetForm',
button_name => 'ctl00$ctl00$Main$Main$incomingRequests$ApproveSelectedRequestsButton',
fields_ref => {
'ctl00$ctl00$Main$Main$incomingRequests$requestRepeater$ctl00$selectRequest' =>
\@guids },
re2 => qr/Friend Request Manager/o
} );
}
# Clean up friends (there -could- be duplicates in some circumstances)
my $captcha=0;
$self->captcha( 0 ); # Reset captcha so they can check it.
foreach $id ( @friends ) {
$friends{"$id"}++;
# If we're to post a message, and this isn't a duplicate,
# post a comment to this new friend.
if ( ( $message ) && ( $friends{"$id"} == 1 ) && ( ! $captcha )) {
if ( $self->post_comment( $id, $message ) eq "FC" ) {
$captcha=1;
}
}
}
# Return the list of friends
return keys( %friends );
}
#---------------------------------------------------------------------
# _get_friend_requests()
# Returns a list of friend requests from the Friend Requests page
sub _get_friend_requests
{
my $page = $self->current_page->decoded_content;
my %guids = ();
my $line = "";
# Get the GUID codes from it.
while ( $page =~ s/ctl00\$ctl00\$Main\$Main\$incomingRequests\$requestRepeater\$ctl00\$selectRequest.*? value="(.*?)"//im ) {
$guids{"$1"}++;
}
return keys( %guids );
}
##---------------------------------------------------------------------
## _post_friend_requests( $form )
## Post the filled in friend approval form.
#
#sub _post_friend_requests
#{
#
# my ( $f ) = @_;
#
# $self->submit_form( {
# form => $f,
# button => 'ctl00$ctl00$Main$Main$incomingRequests$ApproveSelectedRequestsButton',
# re2 => 'Friend Request Manager',
# 'die' => 1
# } );
#
#}
#---------------------------------------------------------------------
# send_friend_request
=head2 send_friend_request( $friend_id, $message )
Send a friend request to the friend identified by $friend_id with
the message $message. Croaks if not logged in.
This is the same as going to their profile page and clicking
the "add as friend" button and confirming that you want to add them.
Returns a status code and a human-readable error message (yes, I copied these
right out of the code to make sure they're correct):
FF => 'Failed, this person is already your friend.',
FN => 'Failed, network error (couldn\'t get the page, etc).',
FL => 'Failed, Add Friend error clicking link on profile page',
FP => 'Failed, you already have a pending friend request for this person',
FB => 'Failed, this person does not accept friend requests from bands.',
FA => 'Failed, this person requires an email address or last name to add them',
FC => 'Failed, CAPTCHA response requested.',
FU => 'Failed, CAPTCHA response required by user.',
FE => 'Failed, user has exceeded their daily usage.',
FM => 'Failed, message length greater than 150 characters.',
P => 'Passed! Verification string received.',
F => 'Failed, verification string not found on page after posting.',
After send_friend_request posts a friend request, it searches for
various Regular Expressions on the resulting page and sets the
status code accordingly. The "F" response is of particular interest
because it means that the request went through fine, but none of
the known failure messages were received, but the verification
message wasn't seen either. This means it -might- have gone through,
but probably not. Of course, worst case here is you try again.
Advanced features: If $message contains an array reference, send_friend_request
will pick one of the elements at random as the message to send. This means
you can do:
$myspace->send_friend_request( $friend_id,
[ 'Hi! I thought I\'d send you a message",
'Hello! I saw your profile and wanted to add you.',
'Hi, I\'m just adding you at random, hope you\'ll accept!'
]
);
This can help add a bit more feeling to your requests.
EXAMPLES
# Send a friend request and get the response
my $status = $myspace->send_friend_request( 12345 );
# Send a friend request and print the result
my ( $status, $desc ) = $myspace->send_friend_request( 12345 );
print "Received code $status: $desc\n";
# Send a friend request and check for some status responses.
my $status = $myspace->send_friend_request( 12345 );
if ( $status =~ /^P/ ) {
print "Friend request sent\n";
} else {
if ( $status eq 'FF' ) {
print "This person is already your friend\n";
} elsif ( $status eq 'FC' ) {
print "Received CAPTCHA image request\n";
}
}
# Send a bunch of friend requests
my @posted = ();
my @failed = ();
foreach my $friend ( @friends ) {
print "Posting to $friend: ";
my $status = $myspace->send_friend_request( $friend )
if ( $status =~ /^P/ ) {
print "Succeeded\n";
push ( @posted, $friend );
} else {
print "Failed with code $status\n";
push ( @failed, $friend );
}
# Stop if we got a CAPTCHA request.
last if $status eq 'FC';
}
# Do what you want with @posted and @failed.
Also see the WWW::Myspace::FriendAdder module, which adds multiple
friends and lets you enter CAPTCHA codes.
=cut
sub send_friend_request {
my ( $friend_id, $message ) = @_;
$self->_die_unless_logged_in( 'send_friend_request' );
my %status_codes = (
FF => 'Failed, this person is already your friend.',
FN => 'Failed, network error (couldn\'t get the page, etc).',
FL => 'Failed, Add Friend error clicking link on profile page',
FP => 'Failed, you already have a pending friend request for this person',
FB => 'Failed, this person does not accept friend requests from bands.',
FA => 'Failed, this person requires an email address or last name to add them',
FC => 'Failed, CAPTCHA response requested.',
FU => 'Failed, CAPTCHA response required by user.',
FE => 'Failed, user has exceeded their daily usage.',
FM => 'Failed, message length greater than 150 characters.',
P => 'Passed! Verification string received.',
F => 'Failed, verification string not found on page after posting.',
);
my $return_code = undef;
my ($page, $res);
my $captcha_result = "";
# If they passed an array reference, pick a message at random
if ( ref $message eq 'ARRAY' ) {
$message = $message->[ int( rand( @$message ) ) ]
}
# Convert newlines (\n) into socket-ready CRLF ASCII characters.
# This also takes care of possible literal "\n"s that come
# from command-line arguments.
# (Note that \n does seem to work, but this "should" be safer, especially
# against myspace changes and platform differences).
$message =~ s/(\n|\\n)/\015\012/gso if ( $message );
TESTBLOCK: {
# Check message length for them
if ( $message && ( length( $message ) > 150 ) ) {
$return_code='FM';
return;
}
# Go to their profile page
unless ( $self->get_profile( $friend_id ) ) {
$return_code='FN';
last;
}
# Get the form
unless ( $self->follow_link( url_regex => qr/fuseaction=invite\.addfriend_verify/io ) ) {
$return_code='FL';
last;
}
# Strip the page for comparisons
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
# Check for "doesn't accept band"
if ( $page =~ /does not accept add requests from bands/io ) {
$return_code = 'FB';
}
# Check for "last name or email" required
elsif ( $page =~ /only accepts add requests from people he\/she knows/o ) {
$return_code = 'FA';
}
# Check for CAPTCHA
#elsif ( $page =~ /CAPTCHA/o ) {
elsif ( $page =~ $CAPTCHAi ) {
$self->captcha( $1 );
$captcha_result = $self->_handle_captcha( $1 );
# If didn't get a captcha result, return the appropriate failure code.
unless ( $captcha_result ) {
$return_code = 'FC';
$return_code = 'FU' if $self->_apply_regex( regex => 'user_requires_captcha' );
}
}
# Check for "already your friend"
elsif ( $page =~ /already one of your friend/io ) {
$return_code = 'FF';
}
# Check for pending friend request
elsif ( $page =~ /already sent a request/io ) {
$return_code = 'FP';
}
# Check for "exceeded daily usage" message
elsif ( $self->_apply_regex( source => $page, regex => 'exceed_usage' ) ) {
$return_code = 'FE';
}
# Now see if we have a button to click.
# MUST BE LAST.
# (This probably could return a different code, but it means we don't
# have a button and we don't know why).
# XXX You may want to loop this entire statement, because currently:
# - get_page gets a page, checking for any known error messages.
# - this if statement checks for known errors we might receive
# - This final statement makes sure we have a button to click so
# we don't bomb in "submit_form".
# - BUT, if we get an error page get_page doesn't know (i.e. they
# change an error message or something), we probbaly
# want to retry this page.
# You might want to change this whole section to:
# do { $res = $self->get_page ... ;
# $attempts++; } until ( ( $attempts > 20 ) || ( $page =~ /<input type="submit" ...) );
elsif ( $page !~ /ctl00\$cpMain\$btnAddToFriends/io ) {
$return_code ='F';
warn "No Add to Friends button on form!\n";
}
# If we got a return code above, go return it.
last if ( $return_code );
# Post the add request form
if ( $captcha_result ) {
my $count = 0;
while ( $captcha_result && ( $page =~ $CAPTCHAi ) ) {
# Submit the form
$res = $self->submit_form( '', 1, '', { 'CAPTCHAResponse' => $captcha_result } );
# See if there's a captcha request on it (means we got it wrong)
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
# If so, guess again.
if ( $page =~ $CAPTCHAi ) { $captcha_result = $self->_handle_captcha( $1 ); }
# Only try 5 times, just in case something else is wrong. Stops infinite loop.
$count++; last if ( $count > 5 );
}
# If we've still got a CAPTCHA code, return the appropriate failure code.
if ( $page =~ $CAPTCHAi ) {
$return_code = 'FC';
$return_code = 'FU' if $self->_apply_regex( regex => 'user_requires_captcha' );
}
} else {
$res = $self->submit_form( {
form_name => 'aspnetForm',
button => 'ctl00$cpMain$btnAddToFriends',
no_click => 1,
fields_ref => {
'__EVENTTARGET' => 'ctl00$cpMain$btnAddToFriends',
'ctl00$cpMain$NoteToFriend$Note' => $message
}
} );
}
# Check response
unless ( $res ) {
$return_code = 'FN';
last;
}
# Unless we already have a return code (in which case we shouldn't be here)
# check for REs on the page to see what we got.
$page = $self->current_page->decoded_content;
$page =~ s/[ \t\n\r]+/ /go;
# Check for success
if ( $page =~ /An email has been sent to the user/io ) {
$return_code = 'P';
last;
}
}
# If we still don't have a return code, something went wrong
unless ($return_code) {
warn "No return code\n";
$return_code = 'F';
}
return (
LIST { $return_code, $status_codes{$return_code} }
SCALAR { $return_code }
);
}
=head2 send_friend_requests( @friend_ids )
Send friend requests to multiple friends. Stops if it hits a
CAPTCHA request. Doesn't currently give any indication of
which requests succeeded or failed. Use the code example
above for that. Croaks if you're not logged in.
=cut
sub send_friend_requests {
$self->_die_unless_logged_in( 'send_friend_requests' );
foreach my $id ( @_ ) {
last if $self->send_friend_request( $id ) eq 'FC';
}
}
=head2 add_to_friends
Convenience method - same as send_friend_request. This method's here
because the button on Myspace's site that the method emulates
is usually labeled "Add to Friends".
=cut
sub add_to_friends {
$self->send_friend_request( @_ );
}
=head2 add_as_friend
Convenience method - same as send_friend_request. This method's here
Solely for backwards compatibility. Use add_to_friends or
send_friend_request in new code.
=cut
sub add_as_friend {
$self->send_friend_request( @_ );
}
#---------------------------------------------------------------------
# delete_friend
=head2 delete_friend( @friend_ids )
Deletes the list of friend_ids passed from your list of friends.
$myspace->delete_friend( 12345, 151133 );
Returns true if it posted ok, false if it didn't. Croaks if you're
not logged in.
=cut
sub delete_friend {
warn "Myspace page changed - delete_friend method disabled until it can be re-written";
return undef;
my ( @del_friends ) = @_;
my ( $form, $tree, $f, $res, $id );
# my $pass=1;
$self->_die_unless_logged_in( 'delete_friend' );
# Get our home page.
$self->_go_home;
return 0 if $self->error;
# Get the edit friends page
$self->follow_to(
$self->mech->find_link(
url_regex => qr/fuseaction=user\.editfriends/i
)->url
);
return 0 if $self->error;
# Select the edit form and get the hash field
$self->mech->form_name( 'friendsDelete' );
my $hash_value = $self->mech->value( 'hash' );
my $mytoken = $self->mech->value( 'Mytoken' );
# Create our delete form
$form =
'<form action="index.cfm?fuseaction=user.deleteFriend&page=0" '.
'method="post">';
$form .= '<input type="hidden" name="hash" value="'.
$hash_value . '">';
$form .= '<input type="hidden" name="Mytoken" value="'.
$mytoken . '">';
foreach $id ( @del_friends ) {
$form .= '<input type="checkbox" name="delFriendID" value="'
. $id . '">';
}
$form .= '<input type="image" border="0" name="deleteAll" '.
'http://x.myspace.com/src="images/btn_deleteselected.gif" '.
'width="129" height="20">'.
'</form>';
# Turn it into an HTML::Form object
$f = HTML::Form->parse( $form, 'http://collect.myspace.com/' );
# Check the checkboxes
foreach my $input ( $f->find_input( 'delFriendID' ) ) {
$input->check;
}
# Submit the form
my $attempt = 0; my $max_attempts = 25;
my $request = $f->click( 'deleteAll' );
$request->header( 'Referer' => $self->current_page->request->uri );
do {
$res = $self->mech->request( $request );
$attempt++;
$self->_traceme("Delete friend submit attempt $attempt",$res);
} until ( ( $self->_page_ok( $res ) ) || ( $attempt > $max_attempts ) );
# I felt guilty adding a variable even for readability so I removed $pass :)
#unless ( $attempt <= $max_attempts) {
# $pass=0;
#}
$self->{current_page} = $res;
return ($attempt <= $max_attempts);
}
=head2 send_event_invitation( $event_id, [ @friend_ids ] )
Send an event invitation to each friend in @friend_ids. You need
to add the event in Myspace first, then run a script that calls
this method feeding it the event ID, which you can get from the URL of
the page that lets you invite friends. If no friend IDs are passed,
send_event_invitation calls the get_friends method and sends to all
of your friends.
The method returns a reference to 2 arrays, "passed", and "failed".
Because it wil probably take a long time to run, it also prints a
running report of the friends its inviting with "Passed" or "Failed":
Inviting 12345: Passed
Inviting 12346: Failed
Known issue: If you already have people in your invitation list and
this method attempts to add those friends again, it will cause substantial
delays (up to a minute or two per friend ID). This is because submit_form
will receive an error message and will retry the post 5 times for each
friend.
Example:
my ( $passed, $failed ) =
$myspace->send_event_invitation( $event_id, @friend_ids );
die $myspace->error if $myspace->error;
print "Sent to:\n";
foreach $id ( @{ $passed } ) {
print $id . "\n";
}
print "Failed to send to:\n";
foreach $id ( @{ $failed } ) {
print $id . "\n";
}
See also the send_event_invitations sample script in the sample_scripts
directory included with this distribution.
=cut
sub send_event_invitation {
my ( $event_id, @friend_ids ) = @_;
$self->_die_unless_logged_in( 'send_event_invitation' );
# Default to all our friends
unless ( @friend_ids ) { @friend_ids = $self->get_friends }
# Get the page
my $res = $self->get_page(
"http://events.myspace.com/index.cfm?fuseaction=events.invitees&eventID=".
$event_id );
return( [], \@friend_ids ) if $self->error;
# For each friendID, fill in the form and submit it. Hey, this is
# their idea, not mine...
my @passed = ();
my @failed = ();
foreach my $id ( @friend_ids ) {
print "Inviting $id: ";
if ( $self->submit_form( {
page => $res,
form_name => 'createEvent',
fields_ref => { 'hiddenFriends', $id }
} ) ) {
push( @passed, $id );
print "Passed\n";
} else {
push( @failed, $id );
print "Failed\n";
}
}
return ( \@passed, \@failed );
}
=head2 send_group_invitation( $event_id, [ @friend_ids ] )
Send a group invitation to each friend in @friend_ids. You need
to add the group in Myspace first, then run a script that calls
this method feeding it the group ID, which you can get from the URL of
the group's page. If no friend IDs are passed,
send_event_invitation calls the get_friends method and sends to all
of your friends.
The method returns a reference to 2 arrays, "passed", and "failed".
Because it wil probably take a long time to run, it also prints a
running report of the friends its inviting with "Passed" or "Failed":
Inviting 12345: Passed
Inviting 12346: Failed
You're only allowed to send 25 intivations at a time (because Myspace users
are unpopular I guess?), so we pause for 25-30 seconds after each group of 25
to allow for clicking time so we don't make the server mad.
Example:
my ( $passed, $failed ) =
$myspace->send_group_invitation( $event_id, @friend_ids );
die $myspace->error if $myspace->error;
print "Sent to:\n";
foreach $id ( @{ $passed } ) {
print $id . "\n";
}
print "Failed to send to:\n";
foreach $id ( @{ $failed } ) {
print $id . "\n";
}
See also the send_group_invitations sample script in the sample_scripts
directory included with this distribution.
Croaks if called when not logged in.
=cut
sub send_group_invitation {
my ( $group_id, @friend_ids ) = @_;
$self->_die_unless_logged_in( 'send_group_invitation' );
# Default to all our friends
unless ( @friend_ids ) { @friend_ids = $self->get_friends }
# Get the page if we don't already have it.
my $res;
if ( $self->{_group_info}->{$group_id} ) {
$res = $self->{_group_info}->{$group_id}->{invite_page};
} else {
$res = $self->get_page(
'http://groups.myspace.com/index.cfm?'.
'fuseaction=groups.groupInvite&groupID='.
$group_id );
return( [], \@friend_ids ) if $self->error;
# Store res in case they're looping for us.
$self->{_group_info}->{$group_id}->{invite_page} = $res;
}
# For each friendID, fill in the form and submit it. Hey, this is
# their idea, not mine...
# We can only send 25 at a time, so pause like a user clicking the next
# batch of friends to invite, then continue.
my @passed = ();
my @failed = ();
my $post_count = 0;
foreach my $id ( @friend_ids ) {
$post_count++;
sleep ( int( rand( 5 ) ) + 25 ) if ( ( $post_count % 25 ) == 0 );
print "Inviting $id: ";
if ( $self->submit_form( {
page => $res,
form_name => 'inviteForm',
fields_ref => { 'hiddenFriends', $id }
} ) ) {
push( @passed, $id );
print "Passed\n";
} else {
push( @failed, $id );
print "Failed\n";
}
}
return ( \@passed, \@failed );
}
=head2 post_bulletin( %options )
Post a builletin to your friends.
use WWW::Myspace;
my $myspace = new WWW::Myspace;
$myspace->post_bulletin(
subject => $subject,
message => $message
);
Croaks if called when not logged in.
=cut
sub post_bulletin {
my %options = @_;
$self->_die_unless_logged_in( 'post_bulletin' );
# Myspace calls the message the "body", so we'll take that too.
if ( ( ! $options{'message'} ) && $options{'body'} ) {
$options{'message'} = $options{'body'}
}
# Go home
$self->_go_home;
return if $self->error;
# warn "Got home page" . "\n" if $options{'testing'};
# Click "post bulletin"
my $link = $self->follow_link( url_regex => $self->_regex( 'bulletin_url' ) );
unless ( $link ) {
$self->error("Post Bulletin link not found on home page");
return;
}
# warn "Found Post Bulletin link: ".$link->url . "\n" if $options{'testing'};
# eee eee eee ooo ooo ooo !!!
# Sorry, that's myspace programmer speak. I'll translate:
# Instead of posting a simple form, the Post button calls a Javascript
# routine that takes the values we entered into the main form, puts
# them into a hidden form, sets the action of that form, and posts it.
my $action = '';
unless ( $action = $self->_apply_regex( regex => 'bulletin_post_action' ) ) {
$self->error("Can't find action URL on first bulletin form page");
return;
}
# print $self->current_page->decoded_content."\n\n".$action."\n";
# Fill in and submit the form (see note below re: form number)
my $submitted = $self->submit_form( {
# page => $link->url,
# follow => 1,
form_no => 2,
fields_ref => {
'ctl00$cpMain$Subject_Textbox' => $options{'subject'},
'ctl00$cpMain$Body_Textbox' => $options{'message'},
subject => $options{'subject'}, # Seriously, don't even ask...
body => $options{'message'},
mode => 1,
},
no_click => 1,
action => $action,
re1 => 'bulletin_p1',
re2 => 'bulletin_p2',
} );
return unless $submitted;
# Now for the confirmation page...
# So on this page, we have the bulletin ASP form, a separate form for
# the Post button, and a secret little bulletinForm form. The Post button
# calls javascript that sets the bulletinForm's action URL and posts it.
# Note that "bulletinForm" is identified by ID, not name, so we just specify
# form#3 (4th form on the page). Sorry, did I mention one of those forms
# is just a tag, embedded in another form? So it's form 2, not 3...
# warn "Submitting Confirmation screen";
# Get the action
$action = '';
unless ( $action = $self->_apply_regex( regex => 'bulletin_confirm_action' ) ) {
$self->error("Can't find action URL on bulletin confirmation page");
return;
}
# We skip this if we're testing.
return 1 if $options{'testing'};
$submitted = $self->submit_form( {
form_no => 2,
action => $action,
no_click => 1,
} );
# See if we submitted ok.
if ( $submitted && $self->_apply_regex( regex => 'bulletin_posted' ) ) {
return 1;
} else {
$self->error("Bulletin Posted verification not found - bulletin post failed ".
"or confirmation page has changed");
warn $self->current_page->decoded_content."\n";
return;
}
}
=head2 post_blog( %options )
Post a blog entry.
$myspace->post_blog(
subject => $subject,
body => $body
) or die $myspace->error;
You can also use "message" instead of "body".
Currently only Subject and Message fields are supported. Mood, Category, Music,
etc will be left at their default settings.
Returns undef and sets $myspace->error if there's an error.
Croaks if called when not logged in.
=cut
sub post_blog {
my ( %options ) = @_;
# They can pass "message" or "body".
if ( $options{message} ) { $options{body} = $options{message} }
# Check for requirements.
croak "No body passed to post_blog" unless $options{body};
croak "No subject passed to post_blog" unless $options{subject};
$self->_die_unless_logged_in( 'post_blog' );
# Get the blog editor page directly. Going via links tries to load the
# advanced editor, which doesn't help much.
( $DEBUG ) && warn "Getting blog editor page\n";
$self->get_page( 'http://blog.myspace.com/index.cfm?fuseaction=blog.create&editor=false',
'Go To Advanced Editor'
) or return undef;
# Get Mytoken
$self->current_page->decoded_content =~ /Mytoken=([A-Za-z0-9\-]+)/;
my $token = $1;
# Fill and in post the blog
( $DEBUG ) && warn "Submitting initial blog form\n";
$self->submit_form( {
form_no => 1,
fields_ref => {
subject => $options{subject},
body => $options{body},
},
# They use JavaScript to reset the action of the form...
action => 'http://blog.myspace.com/index.cfm?fuseaction=blog.previewBlog&Mytoken='.
$token,
no_click => 1,
re2 => 'Confirm Blog Posting'
} ) or return undef;
# Post the confirmation, unless we're in test mode.
( $DEBUG ) && warn "Posting blog confirmation\n";
unless ( $options{testing} ) {
$self->submit_form( {
form_no => 1,
action => 'http://blog.myspace.com/index.cfm?fuseaction=blog.processCreate',
no_click => 1,
} ) or return undef;
}
( $DEBUG ) && warn "Returning Successful\n";
return 1;
}
#---------------------------------------------------------------------
# get_friend_name( $friend_id )
# Return the first name of $friend_id, if we have it.
#sub get_friend_name {
#
# my $self = shift;
#
# my ( $friend_id ) = @_;
#
# # Just select and return :)
# my $first_mame = $self->{dbh}->selectrow_arrayref("select first_name from friends where friendid=${friend_id}");
#
# return $first_name;
#
#}
#---------------------------------------------------------------------
sub ____CORE_INTERNAL_METHODS____ {}
=head1 CORE INTERNAL METHODS
These are methods used internally to maintain or handle basic
stuff (page retreival, error handling, cache file handling, etc)
that you probably won't need to use (and probably shouldn't use unless
you're submitting a code patch :).
=head2 trace_func
You may pass this a code reference. If you do, it will be called
on EACH successful HTML page retreived this module. The arguments
passed to this code reference are:
$trace_func->($where, $page)
where $where is a descriptive but curt string explaining where this page was
gotten and $page is a reference to the actual HTML. Clever Perl programmers
can use caller() (perldoc -f caller) to find out where in the code that
this page was accessed.
=cut
field trace_func => undef;
sub _traceme {
my ($where,$page) = @_;
my $t = $self->trace_func();
return unless (defined($t) && ref($t) eq "CODE");
$t->($where,$page);
}
=head2 get_page( $url, [ $regexp ] )
get_page returns a referece to a HTTP::Response object that contains
the web page specified by $url. If it can't get the page, returns undef and
sets $myspace->error.
Use this method if you need to get a page that's not available
via some other method. You could include the URL to a picture
page for example then search that page for friendIDs using
get_friends_on_page.
get_page will try up to 20 times until it gets the page, with a 2-second
delay between attempts. It checks for invalid HTTP response codes,
and known Myspace error pages. If called with the optional regexp,
it will consider the page an error unless the page content matches
the regexp. This is designed to get past network problems and such.
EXAMPLE
The following displays the HTML source of MySpace.com's home
page.
my $res=get_page( "http://www.myspace.com/" );
print $res->decoded_content;
=cut
sub get_page {
my ( $url, $regexp, $follow ) = @_;
# Reset error
$self->error( 0 );
( $DEBUG ) && print "Getting URL: $url\n";
# Try to get the page 20 times.
my $attempt = 0; my $max_attempts = $self->max_get_attempts;
my $res;
my %headers = ();
if ( $follow ) {
%headers = ( 'Referer' => $self->{current_page}->request->uri )
}
do {
# Try to get the page
# unless ( $res = $self->_read_cache( $url ) )
$res = $self->mech->get("$url", %headers);
# }
$attempt++;
( $DEBUG ) && print " - Attempt No: $attempt\n";
$self->_traceme("Attempt $attempt",$res);
sleep ( int( rand( 3 ) ) + 1 ) if $self->human;
} until ( ( $self->_page_ok( $res, $regexp ) ) || ( $attempt >= $max_attempts ) );
# We both set "current_page" and return the value.
# $self->_cache_page( $url, $res ) unless $self->error;
$self->{current_page} = $res;
sleep ( int( rand( 2 ) ) + 5 ) if $self->human;
if ( $self->error ) {
return undef;
} else {
return ( $res );
}
}
=head2 follow_to( $url, $regexp )
Exactly the same as get_page, but sets the Referer header
so it looks like you're clicking the link on the current
page instead of just GETting it directly. Use this if
you're stepping through pages.
=cut
sub follow_to {
my ( $url, $regexp ) = @_;
$self->get_page( $url, $regexp, 1 );
}
=head2 follow_link
This is like a robust version of WWW::Mechanize's "follow_link"
method. It calls "find_link" with your arguments (and as such takes
the same arguments. It adds the "re" argument, which is passed to
get_page to verify we in fact got the page. Returns an HTTP::Response
object if it succeeds, sets $self->error and returns undef if it fails.
$self->_go_home;
$self->follow_link( text_regex => qr/inbox/i, re => 'Mail Center' )
or die $self->error;
There are a lot of options, so perldoc WWW::Mechanize and search for
$mech->find_link to see them all.
=cut
sub follow_link {
my ( %options ) = @_;
my $res;
# Take out options that are just for us
my $re = '';
if ( $options{re} ) { $re = $options{re}; delete $options{re}; }
# Find the link
my $link = $self->mech->find_link( %options );
# Follow it
if ( $link ) {
$res = $self->get_page( $link->url, $re, 1 );
return $res;
} else {
$self->error('Link not found on page');
return undef;
}
}
=head2 _cache_page( $url, $res )
Stores $res in a cache.
=cut
sub _cache_page {
my ( $url, $res ) = @_;
$self->{page_cache}->{$url} = $res;
$self->_clean_cache;
}
=head2 _read_cache( $url )
Check the cache for this page.
=cut
sub _read_cache {
my ( $url ) = @_;
if ( ( $self->{page_cache}->{$url} ) &&
( $self->{page_cache}->{$url}->is_fresh ) ) {
return $self->{page_cache}->{$url};
} else {
return "";
}
}
=head2 _clean_cache
Cleans any non-"fresh" page from the cache.
=cut
sub _clean_cache {
foreach my $url ( keys( %{ $self->{'page_cache'} } ) ) {
unless ( $url->is_fresh ) {
delete $self->{'page_cache'}->{ $url };
}
}
}
#---------------------------------------------------------------------
# _page_ok( $response, $regexp )
# Takes a UserAgent response object and checks to see if the
# page was sucessfully retreived, and checks the content against
# known error messages (listed at the top of this file).
# If passed a regexp, it will return true ONLY if the page content
# matches the regexp (instead of checking the known errors).
# It will delay 2 seconds if it fails so you can retry immediately.
# Called by get_page and submit_form.
# Sets the internal error method to 0 if there's no error, or
# to a printable error message if there is an error.
#
# $regexp can be:
# - a key that, if passed to _regexp will return the regexp to use
# - a quoted RE
# - an RE in string form.
#
# _page_ok will pass $regexp to _regex. If a value is returned, $regex
# will be replaced with the value.
# If $re is a string, it is converted into an RE and compared to
# the page content.
#
# Examples:
# $self->_page_ok( $res, 'you must be logged-in to do that\!.*<\/html>' )
# $self->_page_ok( $res, qr/you must be logged-in to do that\!.*<\/html>/ismo )
# $self->_page_ok( $res, 'logged_in' )
sub _page_ok {
my ( $res, $regexp ) = @_;
# Reset error
$self->error(0);
# Check for errors
my $page_ok = 1;
my $page;
# If we think we're logged in, check for the "You must be logged-in"
# error page.
if ( ( $self->logged_in ) && ( ! $self->_check_login( $res ) ) ) {
$self->error( "Not logged in" );
$page_ok=0;
}
# If the page load is "successful", check for other problems.
elsif ( $res->is_success ) {
# Page loaded, but make sure it isn't an error page.
$page = $res->decoded_content; # Get the content
$page =~ s/[ \t\n\r]+/ /go; # Strip whitespace
# If they gave us a RE with which to verify the page, look for it.
if ( $regexp ) {
# See what format it's in and convert to RE if necessary
$regexp = $self->_regex( $regexp ) if ( $self->_regex( $regexp ) );
if ( $regexp !~ /^\(\?/ ) { $regexp = qr/$regexp/i }
# Page must match the regexp
unless ( $page =~ $regexp ) {
$page_ok = 0;
$self->error("Page doesn't match verification pattern: $regexp");
# warn "Page doesn't match verification pattern.\n";
}
# Otherwise, look for our known temporary errors.
} else {
foreach my $error_regexp ( @ERROR_REGEXPS ) {
if ( $page =~ $error_regexp ) {
$page_ok = 0;
$self->error( "Got error page." );
warn "Got error page matching '$error_regexp':\n" if $DEBUG;
# warn $res->decoded_content."\n" if $DEBUG;
last;
}
}
}
} else {
$self->error("Error getting page: \n" .
" " . $res->status_line);
$page_ok = 0;
warn "Error getting page: \n" .
" " . $res->status_line . "\n";
}
sleep 2 unless ( $page_ok );
return $page_ok;
}
=head2 _check_login
Checks for "You must be logged in to do that". If found, tries to log
in again and returns 0, otherwise returns 1.
=cut
sub _check_login {
my ( $res ) = @_;
# Check the current page by default
unless ( $res ) { $res = $self->current_page }
# Check for the "proper" error response, or just look for the
# error message on the page.
if ( ( $res->is_error == 403 ) ||
( $res->decoded_content =~ $self->_regex('not_logged_in') )
) {
if ( $res->is_error ) {
warn "Error: " . $res->is_error . "\n"
} else {
warn "Got \"not logged in\" page\n";
}
# If we already logged in, try to log us back in.
if ( $self->logged_in ) { $self->site_login }
# Return 0 so they'll try again.
return 0;
} else {
return 1;
}
}
#---------------------------------------------------------------------
# submit_form( $url, $form_no, $button, $fields_ref, [ $regexp1 ],
# [ $regexp2 ] )
# Fill in and submit a form on the specified web page.
# $url is the URL of the page OR a reference to a HTTP::Request object.
# $form_no is the number of the form (starting at 0). i.e. if there
# are 2 forms on the page and you want to submit to the 2nd one, set
# $form_no to "1").
# $button is the name of the button of the form to press.
# $fields_ref is a reference to a hash that contains field names
# and values you want to fill in on the form.
# submit_form returns 1 if it succeeded, 0 if it fails.
=head2 submit_form( $url, $form_no, $button, $fields_ref, [ $regexp1 ],
[ $regexp2 ] )
This format is being deprecated. Please use the format below if you
use this method (which you shouldn't need unless you're writing more
methods). Be aware that I might make this method private at some point.
=head2 submit_form( $options_hashref )
Valid options:
$myspace->submit_form( {
page => "http://some.url.org/formpage.html",
follow => 1, # 0 or 1
form_no => 1,
form_name => "myform", # Use this OR form_no OR form
form => $form, # HTML::Form object with a ready-to-post form.
# (page, form_no, form_name, fields_ref and action will
# be ignored).
button => "mybutton",
no_click => 0, # 0 or 1.
fields_ref => { field => 'value', field2 => 'value' },
re1 => 'something unique.?about this[ \t\n]+page',
re2 => 'something unique about the submitted page',
action => 'http://some.url.org/newpostpage.cgi', # Only needed in weird occasions
} );
This powerful little method reads the web page specified by "page",
finds the form specified by "form_no" or "form_name", fills in the values
specified in "fields_ref", and clicks the button named "button".
You may or may not need this method - it's used internally by
any method that needs to fill in and post a form. I made it
public just in case you need to fill in and post a form that's not
handled by another method (in which case, see CONTRIBUTING below :).
"page" can either be a text string that is a URL or a reference to an
HTTP::Response object that contains the source of the page
that contains the form. If it is an empty string or not specified,
the current page ( $myspace->current_page ) is used.
"follow" indicates whether or not we're supposedly following a link
to the URL supplied in "page". If "page" isn't a URL, "follow" is
ignored. This causes "submit_form" to use the "follow_to" method
instead of "get_page" when getting the URL. This makes it look like
we clicked a link to get to this page instead of just going straight
to it.
"form_no" is used to numerically identify the form on the page. It's a
simple counter starting from 0. If there are 3 forms on the page and
you want to fill in and submit the second form, set "form_no => 1".
For the first form, use "form_no => 0".
"form_name" is used to indentify the form by name. In actuality,
submit_form simply uses "form_name" to iterate through the forms
and sets "form_no" for you.
"form" can be used if you have a customized form you want to submit.
Pass an HTML::Form object and set "button", "no_click", and "re2"
as desired, and you can use submit_form's tenacious submission routine
with your own values.
"button" is the name of the button to submit. This will frequently
be "submit", but if they've named the button something clever like
"Submit22" (as MySpace did in their login form), then you may have to
use that. If no button is specified (either by button => '' or by
not specifying button at all), the first button on the form
is clicked.
If "no_click" is set to 1, the form willl be submitted without
clicking any button. This is used to simulate the JavaScript
form submits Myspace does on the browse pages.
"fields_ref" is a reference to a hash that contains field names
and values you want to fill in on the form.
For checkboxes with no "value" attribute, specify a value of "on"
to check it, "off" to uncheck it.
"re1" is an optional Regular Expression that will be used to make
sure the proper form page has been loaded. The page content will
be matched to the RE, and will be treated as an error page and retried
until it matches. See get_page for more info.
"re2" is an optional RE that will me used to make sure that the
post was successful. USE THIS CAREFULLY! If your RE breaks, you could
end up repeatedly posting a form. This is used by post_comemnts to make
sure that the Verify Comment page is actually shown.
"action" is the post action for the form, as in:
<form action="http://www.mysite.com/process.cgi">
This is here because Myspace likes to do weird things like reset
form actions with Javascript then post them without clicking form buttons.
=cut
sub submit_form {
my ( $url, $form_no, $button, $fields_ref, $regexp1, $regexp2, $base_url ) = @_;
# Initialize our variables
my $mech = $self->mech; # For convenience
my $res = "";
my ( $field );
my $options;
# $base_url = $BASE_URL unless $base_url;
# $form_no++; # For backwards compatibility.
# Parse the options
# Unless they passed a hashref of options, set using the
# positional parameters.
if ( ref $url eq "HASH" ) {
$options = $url;
} else {
$options = { 'url' => $url,
'form_no' => $form_no,
'button' => $button,
'fields_ref' => $fields_ref,
're1' => $regexp1,
're2' => $regexp2,
'base' => $base_url,
'page' => $url,
};
}
# If they gave us a form, use it. Otherwise, get it and fill it in.
my $f = "";
if ( $options->{'form'} ) {
$f = $options->{'form'};
} else {
# Get the page
if ( ref( $options->{'page'} ) eq "HTTP::Response" ) {
# They gave us a page already
$res = $options->{'page'};
} elsif ( ! $options->{'page'} ) {
$res = $self->current_page;
} else {
# Get the page
( $DEBUG ) && print "Getting $options->{page}\n";
if ( $options->{'follow'} ) {
$res = $self->follow_to( $options->{'page'}, $options->{'re1'} );
} else {
$res = $self->get_page( $options->{'page'}, $options->{'re1'} );
}
# If we couldn't get the page, return failure.
return 0 if $self->error;
}
# Select the form they wanted, or return failure if we can't.
my @forms = HTML::Form->parse( $res, $options->{'base'} );
if ( $options->{'form_no'} ) {
unless ( @forms > $options->{'form_no'} ) {
$self->error( "Form " . $options->{form_no} .
" not on page in submit_form!"
);
return 0;
}
}
if ( $options->{'form_name'} ) {
$form_no = 0;
foreach my $form ( @forms ) {
if ( ( $form->attr( 'name' ) ) &&
( $form->attr( 'name' ) eq $options->{'form_name'} )
) {
$options->{'form_no'} = $form_no;
last;
}
$form_no++;
}
unless ( $options->{form_no} ) {
$self->error( "Form " . $options->{form_name} .
" not on page in submit_form!"
);
return 0;
}
}
$f = $forms[ $options->{'form_no'} ];
# Set the action if they gave us one
if ( $options->{'action'} ) { $f->action( $options->{'action'} ) }
# Fill in the fields
( $DEBUG ) && print "Filling in form number " .
$options->{'form_no'} . ".\n";
# Turned this off because it doesn't do UTF8 decode and generates warnings
#( $DEBUG ) && print $f->dump;
# Loop through the fields in the form and set them.
foreach my $field ( keys %{ $options->{'fields_ref'} } ) {
# If the field "exists" on the form, just fill it in,
# otherwise, add it as a hidden field.
if ( $f->find_input( $field ) ) {
if ( $f->find_input( $field )->readonly ) {
$f->find_input( $field )->readonly(0)
}
$f->param( $field, $options->{'fields_ref'}->{ $field } );
} else {
$f = $self->_add_to_form(
$f, $field, $options->{'fields_ref'}->{ $field }
);
}
}
}
if ( $options->{'die'} ) { print $f->dump; die }
# Submit the form. Try up to $max_attempts times.
my $attempt = 0; my $max_attempts = $self->max_post_attempts;
my $trying_again = 0;
# Make our request based on our options
my $request = undef;
if ( $options->{'button'} ) {
$request = $f->click( $options->{'button'} );
} elsif ( $options->{'no_click'} ) {
# We use make_request because Myspace likes submitting forms
# that have buttons by using Javascript. make_request submits
# the form without clicking anything, whereas "click" clicks
# the first button, which can break things.
$request = $f->make_request;
} else {
# Just click the first button
$request = $f->click;
}
$request->header( 'Referer' => $self->current_page->request->uri );
do
{
# If we're trying again, mention it.
warn $self->error . "\n" if $trying_again;
eval {
$res = $self->mech->request( $request );
};
# If it died (it will if there's no button), just return failure.
if ( $@ ) {
$self->error( $@ );
return 0;
}
$attempt++;
$trying_again = 1;
$self->_traceme("Submit form attempt $attempt",$res);
} until ( ( $self->_page_ok( $res, $options->{'re2'} ) ) ||
( $attempt >= $max_attempts )
);
# Return the result
$self->{current_page} = $res;
return ( ! $self->error );
}
=head2 _add_to_form
Internal method to add a hidden field to a form. HTML::Form thinks we
don't want to change hidden fields, and if a hidden field has no value,
it won't even create an input object for it. If that's way over your
head don't worry, it just means we're fixing things with this method,
and submit_form will call this method for you if you pass it a field that
doesn't show up on the form.
Returns a form object that is the old form with the new field in it.
# Add field $fieldname to form $form (a HTML::Form object) and
# set it's value to $value.
$self->_add_to_form( $form, $fieldname, $value )
=cut
sub _add_to_form {
my ( $f, $field, $value ) = @_;
$f->push_input( 'hidden', { name => $field, value => $value } );
return $f;
}
#---------------------------------------------------------------------
# get_friends_on_page( $page );
# This routine takes the SOURCE CODE of the page and returns
# a list of friendIDs for which there are profile links on the page.
# Notes:
# - Our friend ID will be one of those returned, so we check for it.
# - We use the hash method because there are multiple links for each user
# (hence duplicate friendIDs will be returned). (One link for the name,
# one for their image). This is pretty safe against changes to the page.
# - We filter out 6221, Tom's ID...
=head2 get_friends_on_page( $friends_page, $exclude );
This routine takes the SOURCE CODE of an HTML page and returns
a list of friendIDs for which there are profile
links on the page. This routine is used internally by "get_friends"
to scan each of the user's "View my friends" pages.
Notes:
- It does not return the logged_in user's friendID.
- We filter out 6221, Tom's ID.
- friendIDs are returned in the order in which they appear on the change
(note that this is new in 0.62 - in previous versions they were returned
in an indetermined order)
If $friends_page is not specified or is '', the current page will
be used.
$exclude is the number of a single friendID to exclude. This is used by
get_friends to exclude the friendID of the profile whose friends you're
getting since Myspace displays a link to that person's profile on every
page of his friend list, which would show up in the list returned by this
method.
EXAMPLE:
List the friendIDs mentioned on Tom's profile (i.e. his top 8, people who left
comments, etc):
use WWW::Myspace;
my $myspace = new WWW::Myspace;
$res = $myspace->get_profile( 6221 );
@friends = $myspace->get_friends_on_page( $res->decoded_content );
print "These people have left comments or have links on Tom's page:\n";
foreach $id ( @friends ) {
print "$id\n";
}
=cut
sub get_friends_on_page {
my ( $page, $exclude ) = @_;
# Default to current page
unless ( $page ) { $page = $self->current_page->decoded_content }
my @friend_ids = ();
$self->{'_lowest_friend_id'} = '';
$self->{'_highest_friend_id'} = '';
while ( $page =~ /$regex{'friend_link'}/gioms ) {
unless ( ( ( $self->logged_in ) &&
( "$2" == $self->my_friend_id )
) ||
( "$2" == 6221 ) ||
( ( $exclude ) && ( "$2" == $exclude ) )||
( @friend_ids && ( "$2" == $friend_ids[$#friend_ids] ) ) # Duplicate check
) {
my $friend_id = $2;
push( @friend_ids, $friend_id );
if
(
( ! $self->{'_lowest_friend_id'} ) ||
( $self->{'_lowest_friend_id'} &&
( $friend_id < $self->{'_lowest_friend_id'} )
)
) {
$self->{'_lowest_friend_id'} = $friend_id
}
if
(
( ! $self->{'_highest_friend_id'} ) ||
( $self->{'_highest_friend_id'} &&
( $friend_id > $self->{'_highest_friend_id'} )
)
) {
$self->{'_highest_friend_id'} = $friend_id
}
}
}
return ( @friend_ids );
}
=head2 get_friends_images_on_page( $friends_page );
This routine takes the SOURCE CODE of an HTML page. When called in
scalar context, this function returns the first profile image it
can find on the current page (handy for getting a user's image if
you're on their profile page or reading a single piece of mail).
When called in a list context, this function returns a list of all
profile images on the current page. If you treat the return value
as a hash reference, you'll get a hash keyed on friend ids (THIS
IS NOT CURRENTLY WORKING!!).
Notes:
- It does not return the logged_in user's friendID.
=cut
sub get_friends_images_on_page {
my ( $page ) = @_;
# Default to current page
unless ( $page ) { $page = $self->current_page->decoded_content }
#my %imagehash = ();
my @images = ();
while ( $page =~ /$regex{'friend_img'}/g ) {
unless ( ( ( $self->logged_in ) &&
( "$2" == $self->my_friend_id )
) ||
( "$2" == 6221 )
# ( ( $exclude ) && ( "$3" == $exclude ) )||
# ( @friend_ids && ( "$3" == $friend_ids[$#friend_ids] ) ) # Duplicate check
) {
push(@images, $3);
#$imagehash { $2 } = $3;
last if SCALAR();
}
}
return
SCALAR { $images[0] }
LIST { @images }
#HASHREF { \%imagehash }
;
}
=head2 remove_cache
Remove the login cache file. Call this after creating the object if
you don't want the login data stored:
my $myspace = new WWW::Myspace( qw( myaccount, mypassword ) );
$myspace->remove_cache;
=cut
sub remove_cache {
my $cache_file_path = catfile( $self->cache_dir, $self->cache_file );
unlink $cache_file_path;
}
#---------------------------------------------------------------------
# make_cache_dir
=head2 make_cache_dir
Creates the cache directory in cache_dir. Only creates the
top-level directory, croaks if it can't create it.
$myspace->cache_dir("/path/to/dir");
$myspace->make_cache_dir;
This function mainly exists for the internal login method to use,
and for related sub-modules that store their cache files by
default in WWW:Myspace's cache directory.
=cut
sub make_cache_dir {
# Make the cache directory if it doesn't exist.
unless ( -d $self->cache_dir ) {
mkdir $self->cache_dir or croak "Can't create cache directory ".
$self->cache_dir;
}
}
#---------------------------------------------------------------------
# _die_unless_logged_in
sub _die_unless_logged_in {
my ( $method ) = @_;
unless ( $self->logged_in ) {
croak "$method called when not logged in\n";
}
}
#---------------------------------------------------------------------
# _fix_textareas( $tree )
# Takes an HTML::Element node and traverses it, fixing any
# textarea elements so they have a content element.
# Bug workaround - HTTP::Request::Form will die if a textarea
# field has no content (because the parser doesn't add a
# "_content" element). So, we add one.
sub _fix_textareas() {
my $x = $_[0];
# If this is a textarea, push an empty string as the
# content if it doesn't have any.
if ( $x->tag eq "textarea" ) {
$x->{_content} = [] unless defined $x->content;
}
# Recursively traverse the tree on our search.
foreach my $c ($x->content_list) {
_fix_textareas($c) if ref $c; # ignore text nodes
}
}
#---------------------------------------------------------------------
# _get_acct()
# Get and store the login and password. We check the user's preference
# file for defaults, then prompt them.
sub _get_acct {
# Initialize
my %prefs = ();
my $ref = "";
my ( $pref, $value, $res );
my $cache_filepath = catfile( $self->cache_dir, $self->cache_file);
# Read what we got last time.
if ( open ( PREFS, "< ", $cache_filepath ) ) {
while (<PREFS>) {
chomp;
( $pref, $value ) = split( ":" );
$prefs{"$pref"} = $value;
}
close PREFS;
}
# Prompt them for current values
unless ( defined $prefs{"email"} ) { $prefs{"email"} = "" }
print "Email [" . $prefs{"email"} . "]: ";
$res = <STDIN>; chomp $res;
if ( $res ) {
$prefs{"email"} = $res;
}
unless ( defined $prefs{"password"} ) { $prefs{"password"} = "" }
print "Password [". $prefs{"password"} . "]: ";
$res = <STDIN>; chomp $res;
if ( $res ) {
$prefs{"password"} = $res;
}
# Make the cache directory if it doesn't exist.
$self->make_cache_dir;
# Store the new values.
open ( PREFS, ">", $cache_filepath ) or croak $!;
print PREFS "email:" . $prefs{"email"} . "\n" .
"password:" . $prefs{"password"} . "\n";
close PREFS;
# Store the account info.
$self->{account_name}=$prefs{"email"};
$self->{password}=$prefs{"password"};
}
#---------------------------------------------------------------------
# _get_friend_id( $homepage )
# This internal method stores our friend ID. We get this from the
# "View Profile" link on our home page (the page we see when we
# click the "Home" link in the top nav bar)
sub _get_friend_id {
my ( $homepage ) = @_;
# Search the code for the link. This is why we like Perl. :)
my $page_source = $homepage->decoded_content;
$page_source =~ /$regex{'friend_link'}/iosm;
my $friend_id=$2;
( $DEBUG ) && print "Got friend ID: $friend_id\n";
# Store it
$self->{my_friend_id} = $friend_id;
if ( $friend_id ) {
$self->error(0)
} else {
$self->error("Couldn't get friendID from home page")
}
}
#---------------------------------------------------------------------
# _get_friend_page( $page, %attr_ref )
# Examples:
# $self->_get_friend_page( 1, 'group', 100011592 );
# Gets the friends from page 1 (the second page) of the myspace
# group with ID 100011592.
#
# $self->_get_friend_page( 1 )
# Get the the friends from page 1 of the logged in user's friend pages.
#
# $self->_get_friend_page( 1, 'inbox' );
# Gets the friends from page 1 of the logged in user's mail inbox.
#
# Return the content of the friend page. $page is the page number.
# $id
sub _get_friend_page {
my ( $page, $source, $id ) = @_;
my ( $url, $res, $success );
my $verify_re = '';
$source = '' unless defined $source;
my $follow = 1; # Add referer header unless first page
# Set the URL string for the right set of pages
if ( $source eq "group" ) {
$url = "http://groups.myspace.com/index.cfm?fuseaction=".
"groups.viewMembers&groupID=${id}&page=${page}";
$follow = 0 if ( $page == 0 );
} else {
# Make sure we got the friend page, and that we got the whole page.
$verify_re = "View All Friends.*(Previous|Next).*<\/html>";
( $DEBUG ) && print "Loading friend page $page\n";
# Unless they specified a profile to get friends from,
# use our own.
unless ( $source eq 'profile' ) {
$id = $self->my_friend_id;
}
if ( $page == 1 ) {
# First page
$url = "http://home.myspace.com/index.cfm?".
"fuseaction=user.viewfriends&".
"friendID=" . $id;
$follow = 0;
} else {
# Subsequent pages
$url = "http://home.myspace.com/index.cfm?".
"fuseaction=user.viewfriends&".
"friendID=" . $id . "&" .
"friendCount=" . $self->{_friend_count} . "&" .
"userName=" . $self->{_user_name} . "&" .
"page=" . $page . "&" .
"prevPage=" . $self->{_last_friend_page} . "&" .
"PREVPageFirstONERETURENED=" . $self->{_low_friend_id}."&".
"PREVPageLASTONERETURENED=" . $self->{_high_friend_id};
}
}
# Get the page
( $DEBUG ) && print " Getting URL: $url\n";
$res = $self->get_page( $url, $verify_re, $follow );
if ( $res->decoded_content =~ /This\s+profile\s+is\s+set\s+to\s+private.\s+This\s+user\s+must\s+add\s+<br\/>\s*you\s+as\s+a\s+friend\s+to\s+see\s+his\/her\s+profile./o ) { # good lord
$self->error("User profile is set to private.");
}
# Save info if we need to
unless ( $self->error ) {
$self->$save_friend_info if (
( ( $source eq '' ) || ( $source eq 'profile' ) ) &&
( $page == 1 ) );
}
return $res;
}
#---------------------------------------------------------------------
# save_friend_info
# We need to grab some info off the View Friends page to feed back
# to subsequent pages.
my sub save_friend_info {
# Get and store the friend count and user name
# Friend count
$self->current_page->decoded_content =~ /name="friendCount"\s+value="([0-9]+)"/io;
$self->{_friend_count} = $1;
warn "Didn't get friend count" unless ( $self->{_friend_count} );
# User name
$self->current_page->decoded_content =~ /name="userName"\s+value="([^"]*)"/io;
$self->{_user_name} = $1;
warn "Didn't get user_name" unless ( $self->{_user_name} );
# Number of pages
$self->current_page->decoded_content =~
/of( |\s)+<a href="javascript:NextPage\('|([0-9]+)'\)/io;
$self->{_friend_pages} = $2;
# If there's only 1 page the RE will break, and testing for the alternate
# is dangerous, so if there are less than 40 friends, just set it to
# 1 page.
if ( ( $self->{_friend_count} && ( $self->{_friend_count} < 40 ) ) &&
( ! $self->{_friend_pages} ) ) {
$self->{_friend_pages} = 1;
}
warn "Didn't get friend_pages" unless ( $self->{_friend_pages} );
# warn "friend_pages: " . $self->{_friend_pages};
# warn "Stored friend count " . $self->{_friend_count} . ", ".
# "user name " . $self->{_user_name} . ".\n";
}
=head2 _next_button
Takes the source code of a page, or nothing. If nothing is passed,
uses $self->current_page->decoded_content.
Returns true if there is a next button on the page. This is
so we can say:
last unless ( $self->_next_button( $page_source ) );
or:
while ( $self->_next_button ) { do stuff }
or
while ( $self->_next_button ) { do stuff and click next }
One of these days I'm going write a "stuff" subroutine so I can actually type
that.
EXAMPLES
=cut
sub _next_button {
my ( $content ) = @_;
unless ( $content ) {
$content = $self->current_page->decoded_content;
}
# Example HTML for 'Next' button in messaging inbox:
# <a class="pagingLink" href="javascript:__doPostBack('ctl00$ctl00$Main$messagingMain$MessageList$pagingTop','2')">Next ›</a>
#
# Example HTML for 'Next' button in friends list:
# <a href="javascript: GotoPage(6);" class="nextPagingLink">next</a>
#
# Example HTML for a *disabled* 'Next' button in friends list -- we do not
# want to match this:
# <a class="nextPagingLink disabledPaging">next</a>
$content =~ /<a [^>]*href=\"[^\"]*\"[^>]*>(\s| )*Next(\s| |›|>)*<\/a>/io;
}
=head2 _previous_button
As you might guess, returns true if there's a "Previous" link on the
page. This is used to sanity-check functions like get_friends. If there
isn't a "Next" button, this method can be used to make sure there is a
"Previous" button.
# Exit the loop if we're on the last page
last unless (
$self->_next_button( $page_source ) &&
$self->_previous_button( $page_source )
);
=cut
sub _previous_button {
my ( $content ) = @_;
unless ( $content ) {
$content = $self->current_page->decoded_content;
}
$content =~ /(<\s*<a [^>]+>|<a .*?>\s*\‹)\s*Previous\s*<\/a>/io;
}
# Simple method to count the keys in a hash
my sub count_keys {
my ( $hashref ) = @_;
return keys( %{$hashref} );
}
#---------------------------------------------------------------------
# _format_html( $text )
# Simple translator from text to HTML - changes newlines
# to "<br>\n".
sub _format_html {
my ( $text ) = @_;
$text =~ s/\n/<br>\n/gs;
return $text;
}
=head2 _go_home
Internal method to go to the home page. Checks to see if we're already
there. If not, tries to click the Home button on the page. If there
isn't one, loads the page explicitly.
=cut
sub _go_home {
# If we're not logged in, go to the home page
unless ( $self->logged_in ) {
$self->get_page( $BASE_URL ) or return;
return 1;
}
# Are we there?
if ( $self->mech->uri =~ /[\?&;]fuseaction=user([&;]|$)/io ) {
# warn "I think I'm on the homepage\n";
# warn $self->mech->uri . "\n";
return 1;
}
# # No, try to click home
# # Broken by myspace on 10/10/07 - Home page link set by Javascript.
# my $home_link = "";
#
# if ( $home_link = $self->mech->find_link(
# url_regex => qr/fuseaction=user([&;]|$|")/io
# )
# ) {
# warn "_go_home going to " . $home_link->url . "\n";
# $self->follow_to( $home_link->url ) or return;
# return 1;
# }
# Still here? Load the page explicitly
$self->get_page( $HOME_PAGE ) or return undef;
# warn "I think I loaded $HOME_PAGE\n";
return 1;
}
# _validate_page_request( [ $friend_id | friend_id => $friend_id | page => $page ],
# [ no_validation => 1 ]);
#
# Internal method (obviously) that handles validation for methods that get
# information from a profile page.
#
# Instead of parsing a friendID and calling get_profile, you can
# just do:
# my ( $page ) = $self->_validate_page_request( @_ );
#
# Then apply your regex to the page or do whatever else you need to do to it.
#
# Arguments are parsed as follows:
# no args: returns $self->current_page
# friend_id: calls get_profile (get_page if no_validation is specified as a true value)
# and returns the resulting HTTP::Response object
# page: Returns the page
#
# if no_validation is set to a true value (use 1 just in case this changes in
# the future), get_profile will be told not to check for the page validation
# regex. This is currently used by is_invalid to check for invalid profiles.
#
# You can put these docs in your method. Change "MY_METHOD" to the name of your
# method:
#
# =head2 C<MY_METHOD( [ $friend_id | friend_id => $friend_id | page => $page ] )>
# If passed no arguments, MY_METHOD parses the current page. If passed a friend_id,
# it calls get_profile to retrieve the friend's profile page. If passed
# a page (an HTTP::Response object), it parses $page->decoded_content.
sub _validate_page_request {
my %args = ( );
# accept one lone parameter as an argument if it's a digit -- treat it as
# a friend_id to keep it in line with the rest of the app
if ( scalar @_ == 1 ) {
my $friend_id = shift;
if ( $friend_id && $friend_id !~ /[^0-9]/ ) {
$args{'friend_id'} = $friend_id;
}
else {
croak "if passing one parameter, please pass a valid friend_id";
}
}
elsif ( scalar @_ == 0 ) {
$args{'page'} = $self->current_page;
}
else {
%args = @_;
}
my $page = undef;
# If they gave a friend_id, we load the profile and look at it.
if ( exists $args{'page'} && defined $args{'page'}) {
$page = $args{'page'};
}
elsif ( exists $args{'friend_id'} ) {
# Get the profile page
# Set the no_validation argument to a definite value so we can pass it
# through to get_profile.
$args{'no_validation'}=0 unless $args{'no_validation'};
my $res = $self->get_profile( $args{'friend_id'}, $args{'no_validation'} );
$page = $res unless ( $self->error );
}
else {
$self->error( "You must provide either a friend_id or a response object" );
return;
}
return $page;
}
# _regex( $regex_key )
#
# When passed a key string, _regex returns the matching regular expression defined
# in the "regex" hash.
#
# Example:
#
# if ( $source =~ $self->_regex{'is_invalid'} ) {
# print "Page matches invalid regex\n";
# }
#
#
# Note that you probably won't need to use this much since you'll be using
# _apply_regex instead. But should you need to directly match an RE that for
# some reason can't be handled in _apply_regex, use this method to keep matching
# centralized for future mods and internationalization.
sub _regex {
my $requested = shift;
if ( exists $regex{$requested} ) {
return $regex{$requested};
}
}
# _apply_regex( page => $res_object,
# source => $page_text,
# regex => $regex_reference
# );
#
# _apply_regex provides a centralized source for matching regular expressions on
# pages against the centralized "regex" hash. It returns a true value if the
# page or source contains the regex. If the RE contains parenthesis, returns $1.
#
# page: An HTTP::Response object (optional)
# source: A string containing text (i.e. the HTML source of a page) against
# which the regex should be matched (optional)
# regex: A string that must match the keys to the appropriate regex.
#
# If neither page nor source are specified, _apply_regex will apply the regex to
# $self->current_page->decoded_content (that is, to the current page).
#
# Example:
#
# my $private = $self->_apply_regex(
# page => $page,
# regex => 'is_private',
# );
#
# if ( $private ) { return 1 } else { return 0 }
#
#
#
# Example 2:
#
# my $source = $self->current_page->decoded_content;
#
# if ( $self->_apply_regex(
# source => $source,
# regex => 'is_invalid'
# )
# ) { print "Source matches invalid regex\n"; }
#
#
# Note that technically you could include both "page" and "source" arguments.
# "page" would be tested first and if it didn't match then "source" would be
# tested. This isn't necessarily supported, so it might change in the future.
sub _apply_regex {
my %args = @_;
# If they didn't specify a page or source, default to current page.
unless ( $args{'page'} || $args{'source'} ) { $args{'page'} = $self->current_page }
# Test the regex against the supplied page or source
if ( exists $regex{$args{'regex'}} ) {
if ( $args{'page'} && ( $args{'page'}->decoded_content =~ $regex{$args{'regex'}} ) ) {
if ( $1 ) { return $1 } else { return 1 };
}
if ( $args{'source'} && ( $args{'source'} =~ $regex{$args{'regex'}} ) ) {
if ( $1 ) { return $1 } else { return 1 };
}
}
}
sub _use_captcha_killer {
my $api_key = $self->captcha_killer_api_key;
my ( $captcha_url, $upload_filename ) = @_;
my $ua = LWP::UserAgent->new;
$ua->default_headers->push_header('CAPTCHA-Client' => "WWW-Myspace-$VERSION");
push @{ $ua->requests_redirectable }, "POST";
my $captcha_id = "";
my $captcha_result = "";
my $expire = $self->captcha_tries * 10;
print "Expire set to $expire seconds\n";
my $response = $ua->post( "http://www.captchakiller.com/api.php",
Content_Type => 'form-data',
Content => [ api_key => $api_key, method => "upload_captcha",
captcha_url => $captcha_url, expire => $expire, file => [ $upload_filename ] ] );
$captcha_id = "";
if ( $response->is_success ) {
print $response->decoded_content;
if ( $response->decoded_content =~ /SUCCESS: captcha_id=([\w\-]+)/o ) {
$captcha_id = $1;
print "GOT CAPTCHA ID: $captcha_id\n";
} else {
return; # Can't recognize CAPTCHA
}
}
else {
return; # can't upload CAPTCHA?
}
$captcha_result = "";
for ( my $cnt = 1; $cnt < $self->captcha_tries; $cnt++ ) {
print "ATTEMPT $cnt of " . $self->captcha_tries . "\n";
my $response = $ua->post( "http://www.captchakiller.com/api.php",
Content => [ api_key => $api_key, method => "get_result", captcha_id => $captcha_id ] );
if ( $response->is_success ) {
print $response->decoded_content;
next if ( $response->decoded_content =~ /^WAIT/o );
last if ( $response->decoded_content =~ /^(ERROR|FAILURE)/o );
if ( $response->decoded_content =~ /^SUCCESS: captcha_result=\"(.*)\"$/o ) {
$captcha_result = $1;
last;
}
}
sleep 2;
}
return $captcha_result;
}
sub _handle_captcha {
return if ( $self->captcha_killer_api_key eq "" ); # Not handling CAPTCHAs
my $url = shift;
print "GOT CAPTCHA URL: $url\n";
my $file = catfile( $self->cache_dir, "captcha$$" );
print "SAVING INTO FILE: $file\n";
for ( my $i = 0; $i < 5; $i++ ) {
my $res = $self->mech->get( $url, ':content_file' => $file );
last if ( -f $file );
print "FILE TROUBLE: ", Dumper( $file );
}
return "" if ( ! -f $file );
my $solution = $self->_use_captcha_killer( $url, $file );
unlink ( $file );
return $solution;
}
sub ____IN_PROGRESS____ {}
=head1 IN PROGRESS
Methods that aren't quite working yet.
=cut
1;
__END__
=head1 AUTHOR
Grant Grueninger, C<< <grantg at cpan.org> >>
(Bug reports sent to this address will probably be lost - see "BUGS" below
to report bugs)
Thanks to:
Tom Kerswill (http://tomkerswill.co.uk) for the friend_url method, which
also inspired the friend_user_name method.
Olaf Alders (http://www.wundersolutions.com) for the human-readable status
codes in send_friend request, for the excellent sample code which provides
a workaround for CAPTCHA responses, and for the friends_from_profile
idea.
=head1 KNOWN ISSUES
=over 4
=item -
One of the modules upon which WWW::Myspace depends generates the following
warnings when logging in:
Day too big - 2932896 > 24855
Sec too big - 2932896 > 11647
Day too big - 2932896 > 24855
Sec too big - 2932896 > 11647
These are harmless but annoying. See the "date.patch" file included at the
root level of the distribution if you want to fix them.
=item -
Some myspace error pages are not accounted for, such as their new
Server Application error page. If you know enough about web development
to identify an error page that would return a successful HTTP
response code (i.e. returns 200 OK), but then displays an error message,
please keep an eye out for such pages.
If you get such an error message page, PLEASE EMAIL ME (see BUGS below)
the page content so I can account for it.
=item -
If the text used to verify that the profile page has been loaded
changes, get_profile and post_comments will report
that the page hasn't been loaded when in fact it has.
=item -
A user has reported that the module fails to log in with human=>0.
We recommend always leaving human=>1 (the default).
=item -
Your account location must be set to United States for the module to work.
It will work with other English-speaking locations, but some methods (such as
last_login) will fail if your location causes dates to be displayed in a
manner other than month/day/year.
=item -
Your account must be set to the "classic" profile for the module to work
when logged in.
=item -
If the method used to go to the next page in get_inbox doesn't work,
get_inbox can enter an endless loop.
=back
=head1 TODO
Have 'approve_friends' method check GUIDS after first submit to make
sure the current page of GUIDS doesn't contain any duplicates. This
is to prevent a possible infinite loop that could occur if the
submission of the friend requests fails, and also to signal a warning
if myspace changes in a way that breaks the method.
Add checks to all methods to self-diagnose to detect changes in myspace
site that break this module.
get_friends needs to throw an error, or at least set error, if it can't
return the full list of friends (i.e. if either of the "warn" statements
are triggered)
get_friends needs to check the number of pages and try to get all of them.
Currently if a next button isn't on a page for any reason, the method will
think it's retreived all the friends.
Add tests for get_comments.
Add Internationalization (i18n) support.
Centralize all regular expressions into _regex and _apply_regex methods.
Have get_inbox check to see if it's paging properly - i.e. check to see if a
message on the current page has the same message_id as a message on the
previous page.
=head1 CONTRIBUTING
If you would like to contribute to this module, you can
post patches by following the simple 4-step process below.
If you end up posting several patches and your code shows a good
understanding of the module, we will probbaly ask you if you'd
like to be added as a developer on the project.
There are many methods that could be added to this module (profile editing,
for example). If you find yourself using the "submit_form" method, it probably
means you should write whatever you're editing into a method and post it on RT.
See the TODO section above for starters, and be sure to read the next section
about how to submit patches for features/fixes.
=head1 HOW TO SUBMIT A PATCH
To submit a patch for a new feature or a bug fix, please observe the following.
Doing so will allow us to implement your patch quickly. Not doing so may
delay its implementation or prevent us from implementing your patch at all.
- Check out the newest development version from SVN.
The command to use is here:
http://sourceforge.net/svn/?group_id=163042
(Or see http://sourceforge.net/projects/www-myspace)
- Makke your changes to that version. *
- Create a unified or context diff of the changed file(s):
svn diff filename > filename.diff
(i.e. svn diff Myspace.pm > Myspace.pm.diff)
- Email the output (filename.diff) with comments regarding what
the patch implements/fixes to C<bug-www-myspace at rt.cpan.org>,
or go to the CPAN RT web site (see below) and submit
it there.
We will apply your patch and run the tests on it.
* You can use the checked-out version in your scripts by one of several
methods:
# Somewhere in your script:
use lib '/path/to/svn/checkout/lib';
# Top of your script:
#!/usr/bin/perl -w -I/path/to/svn/checkout/lib
# Command line:
perl -I'/path/to/svn/checkout/lib'
=head1 BUGS
Please report any bugs or feature requests, or send any patches, to
C<bug-www-myspace at rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Myspace>.
We will be notified, and then you'll automatically be notified of progress on
your bug as we make changes.
IF YOU USE A MAIL SERVICE (or program) WITH JUNK MAIL FILTERING, especially
HOTMAIL or YAHOO, add the bug reporting email address above to your address
book so that you can receive status updates.
Bug reports are nice, patches are nicer (see "HOW TO SUBMIT A PATCH" above).
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc WWW::Myspace
You can also look for information at:
=over 4
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/WWW-Myspace>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/WWW-Myspace>
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Myspace>
=item * Search CPAN
L<http://search.cpan.org/dist/WWW-Myspace>
=back
=head1 COPYRIGHT & LICENSE
Copyright 2005-2006 Grant Grueninger, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|