派生自 projectDept/qhighschool

EricsHu
2023-11-26 bf13676673e9f0f090a68bd8cfbaefbf0d696d32
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
/**
 * Copyright www.talk-fun.com
 */
 
package com.qxueyou.scc.sdk;
 
 
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Properties;
import java.net.*;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.UUID;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpMethod;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.multipart.FilePart;
import org.apache.commons.httpclient.methods.multipart.MultipartRequestEntity;
import org.apache.commons.httpclient.methods.multipart.Part;
import org.apache.commons.httpclient.methods.multipart.StringPart;
 
import com.qxueyou.scc.sdk.utils.MD5Util;
 
 
public class MTCloud {
        
        /**
         * 合作方ID: 合作方在欢拓平台的唯一ID
         */
        public String openID = "56407";
        
        /**
         * 合作方秘钥: 合作方ID对应的参数加密秘钥
         */
        public String openToken = "cd8ab50fbdb53a3b0338bda46186c58a";
 
        /**
         * 欢拓API接口地址
         */
        public String restUrl = "http://api.talk-fun.com/portal.php";
        public String restUrl2 = "http://api-1.talk-fun.com/portal.php";
        
        /**
         * 返回的数据格式
         */
        public String format = "json";
        
        /**
         * SDK版本号(请勿修改)
         */
        public String version = "java.1.6";
        
        /**
         * 是否开启测试
         */
        public boolean debug = false;
        
 
        /**
         * 状态码
         */
        public static final int CODE_FAIL = -1;             //失败
        public static final int CODE_SUCCESS = 0;           //成功
        public static final int CODE_PARAM_ERROR = 10;      //参数错误
        public static final int CODE_VIDEO_UPLOADED = 1281; //视频已上传过
        public static final int CODE_SIGN_EXPIRE = 10002;  //签名过期
        public static final int CODE_SIGN_ERROR = 10003;    //签名验证错误
        
 
        /**
         * 角色定义
         */
        public static final String ROLE_GUEST = "guest";            //游客
        public static final String ROLE_USER = "user";                //普通用户
        public static final String ROLE_ADMIN = "admin";            //管理员
        public static final String ROLE_SUPER_ADMIN = "spadmin";    //超级管理员
        
        /**
         * 用户定义
         */
        public static final int USER_GENDER_UNKNOW = 0;                //未知生物
        public static final int USER_GENDER_MALE = 1;                //男性
        public static final int USER_GENDER_FEMALE = 2;                //女性
        
        /**
         * 主播账号类型
         */
        public static final int ACCOUNT_TYPE_MT = 1;        //欢拓账号类型
        public static final int ACCOUNT_TYPE_THIRD = 2;        //第三方账号类型
        
        /**
         * 语音常量
         */
        public static final int VOICE_FLOW_CLOUD = 1;            //语音云
        public static final int VOICE_FLOW_LISTEN_ONLY = 2;        //只听
        public static final int VOICE_FLOW_AUTO = 3;            //自动模式
        
        /**
         * 直播常量
         */
        public static final int LIVE_NO_PLAYBACK = 0;        //没有回放记录            
        public static final int LIVE_HAS_PLAYBACK = 1;        //有回放记录
        
        public static final int LIVE_PLAYBACK_NOT_CHECK_USER_IP = 0;    //回放地址,不限制播放用户IP
        public static final int LIVE_PLAYBACK_CHECK_USER_IP = 1;        //回放地址,限制播放用户IP
 
        /**
         * 外部推流分辨率类型
         */
        public static final int CUSTOM_RTMP_RATIO_4_3 = 1;       // 4:3比例
        public static final int CUSTOM_RTMP_RATIO_16_9 = 2;      // 16:9比例
 
        public MTCloud(){
            
        }
        
        public MTCloud(String openID, String openToken) {
            this.openID = openID.trim();
            this.openToken = openToken.trim();
        }
        
        /**
         * 设置欢拓数据响应的格式
         * @param String $format
         */
        public void setFormat(String format) {
            this.format = format;
        }
 
        /**
         * 获取用户access_token,access_key及房间地址(替代roomGetUrl方法)
         * @param String uid        合作方系统内的用户的唯一ID
         * @param String nickname    用户的昵称
         * @param String role        用户的角色
         * @param String roomid        房间ID
         * @param int expire        返回的地址的有效时间
         * @return String 
         * @throws Exception
         */
        public String userAccess(String uid,String nickname,String role,String roomid,int expire) throws Exception {
            HashMap<Object,Object> options = new HashMap<Object, Object>();
            return this.userAccess(uid, nickname, role, roomid, expire,options);
        }
        
        
        /**
         * 用户进入直播间
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String roomid         房间ID
         * @param int expire             返回的地址的有效时间
         * @param HashMap options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccess(String uid,String nickname,String role,String roomid,int expire,HashMap<Object,Object> options) throws Exception {
            if(!options.containsKey("gender")){
                //用户性别
                options.put("gender", com.qxueyou.scc.sdk.MTCloud.USER_GENDER_UNKNOW);
            }
            if(!options.containsKey("avatar")){
                //用户头像
                options.put("avatar", "");
            }
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("roomid", roomid);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("user.access",params);
        }
        
        /**
         * 用户进入点播
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         直播ID
         * @param int expire             返回的地址的有效时间
         * @return
         * @throws Exception
         */
        public String userAccessPlayback(String uid,String nickname,String role,String liveid,int expire) throws Exception {
            HashMap<Object,Object> options = new HashMap<Object, Object>();
            return this.userAccessPlayback(uid,nickname,role,liveid,expire,options);
        }
        
        /**
         * 用户进入点播
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         直播ID
         * @param int expire            返回的地址的有效时间
         * @param HashMap options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlayback(String uid,String nickname,String role,String liveid,int expire,HashMap<Object,Object> options) throws Exception {
            if(!options.containsKey("gender")){
                //用户性别
                options.put("gender", com.qxueyou.scc.sdk.MTCloud.USER_GENDER_UNKNOW);
            }
            if(!options.containsKey("avatar")){
                //用户头像地址
                options.put("avatar", "");
            }
            
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("liveid", liveid);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("user.access.playback",params);
        }
        
        /**
         * 获取直播间地址
         * @param String uid        合作方系统内的用户的唯一ID
         * @param String nickname    用户的昵称
         * @param String role        用户的角色
         * @param String roomid        房间ID
         * @param int expire        返回的地址的有效时间
         * @return String 
         * @throws Exception
         */
        public String userAccessUrl(String uid,String nickname,String role,String roomid,int expire) throws Exception {
            String accessAuth = this.userAccessKey(uid, nickname, role, roomid, expire);
            return "http://open.talk-fun.com/room.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取直播间验证key
         * @param String uid        合作方系统内的用户的唯一ID
         * @param String nickname    用户的昵称
         * @param String role        用户的角色
         * @param String roomid        房间ID
         * @param int expire        返回的地址的有效时间
         * @return String 
         * @throws Exception
         */
        public String userAccessKey(String uid,String nickname,String role,String roomid,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("roomid", roomid);
            params.put("expire", expire);
            
            params.put("sign", this.generateSign(params));
            String accessAuth = this.base64UrlEncode(JSONObject.fromObject(params).toString());
            return accessAuth;
        }
        
        /**
         * 获取直播间地址
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String roomid         房间ID
         * @param int expire             返回的地址的有效时间
         * @param HashMap options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessUrl(String uid,String nickname,String role,String roomid,int expire,HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.userAccessKey(uid, nickname, role, roomid, expire, options);
            return "http://open.talk-fun.com/room.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取直播间验证key
         * @param String uid        合作方系统内的用户的唯一ID
         * @param String nickname    用户的昵称
         * @param String role        用户的角色
         * @param String roomid        房间ID
         * @param int expire        返回的地址的有效时间
         * @return String 
         * @throws Exception
         */
        public String userAccessKey(String uid,String nickname,String role,String roomid,int expire,HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("roomid", roomid);
            params.put("expire", expire);
            params.put("options", JSONObject.fromObject(options).toString());
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            
            return accessAuth;
        }
        
        /**
         * 获取点播地址
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         直播ID
         * @param int expire             返回的地址的有效时间
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackUrl(String uid,String nickname,String role,String liveid,int expire) throws Exception {
            String accessAuth = this.userAccessPlaybackKey(uid, nickname, role, liveid, expire);
            return "http://open.talk-fun.com/player.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取点播验证key
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         直播ID
         * @param int expire             返回的地址的有效时间
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackKey(String uid,String nickname,String role,String liveid,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("liveid", liveid);
            params.put("expire", expire);
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            return accessAuth;
        }
        
        /**
         * 获取点播地址
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         直播ID
         * @param int expire             返回的地址的有效时间
         * @param HashMap options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackUrl(String uid,String nickname,String role,String liveid,int expire,HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.userAccessPlaybackKey(uid, nickname, role, liveid, expire, options);
            return "http://open.talk-fun.com/player.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取点播验证key
         * @param String uid             合作方系统内的用户的唯一ID
         * @param String nickname         用户的昵称
         * @param String role             用户的角色
         * @param String liveid         主播ID
         * @param int expire             返回的地址的有效时间
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackKey(String uid,String nickname,String role,String liveid,int expire,HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("liveid", liveid);
            params.put("expire", expire);
            params.put("options", JSONObject.fromObject(options).toString());
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            
            return accessAuth;
        }
 
        /**
         * 获取专辑地址
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param album_id         专辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackAlbum(String uid, String nickname, String role, String album_id, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("album_id", album_id);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("user.access.playbackAlbum", params);
        }
        
        /**
         * 获取专辑地址
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param album_id         专辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackAlbumUrl(String uid, String nickname, String role, String album_id, int expire, HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.userAccessPlaybackAlbumKey(uid, nickname, role, album_id, expire, options);
            return "http://open.talk-fun.com/player.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取专辑播放key
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param album_id         专辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackAlbumKey(String uid, String nickname, String role, String album_id, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("album_id", album_id);
            params.put("expire", expire);
            params.put("options", JSONObject.fromObject(options).toString());
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            
            return accessAuth;
        }
        
        /**
         * 获取剪辑地址
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param clipid         剪辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackClip(String uid, String nickname, String role, int clipid, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("clipid", clipid);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("user.access.playbackClip", params);
        }
        
        /**
         * 获取剪辑地址
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param clipid         剪辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackClipUrl(String uid, String nickname, String role, int clipid, int expire, HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.userAccessPlaybackClipKey(uid, nickname, role, clipid, expire, options);
            return "http://open.talk-fun.com/player.php?accessAuth=" + accessAuth;
        }
        
        /**
         * 获取剪辑播放key
         * @param uid             合作方系统内的用户的唯一ID
         * @param nickname         用户的昵称
         * @param role             用户的角色
         * @param clipid         剪辑ID
         * @param expire         返回的地址的有效时间
         * @param options         可选参数
         * @return
         * @throws Exception
         */
        public String userAccessPlaybackClipKey(String uid, String nickname, String role, int clipid, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("clipid", clipid);
            params.put("expire", expire);
            params.put("options", JSONObject.fromObject(options).toString());
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            
            return accessAuth;
        }
        
        /**
         * 获取在线用户列表
         * @param roomid        房间ID
         * @param start_time    查询开始时间,格式: 2015-01-01 12:00:00
         * @param end_time        查询结束时间,格式: 2015-01-01 13:00:00
         * @return String
         * @throws Exception
         */
        public String userOnlineList(String roomid,String start_time,String end_time) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("roomid", roomid);
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            return this.call("user.online.list",params);
        }
        
        
        /**
         * 获取主播管理登录地址
         * @param liveid
         * @param expire
         * @return
         * @throws Exception
         */
        public String getManagerUrl(String roomid,int expire,HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("openID", this.openID.trim());
            params.put("roomid", roomid);
            params.put("timestamp", new Date().getTime() / 1000);
            params.put("expire", expire);
            
            if(options.containsKey("nickname")){
                params.put("nickname", options.get("nickname").toString());
            }
            
            if(options.containsKey("role")){
                params.put("role", options.get("role").toString());
            }
            
            params.put("sign", this.generateSign(params));
            String code = JSONObject.fromObject(params).toString();
            code = this.base64UrlEncode(code);
            return "http://open.talk-fun.com/live/manager.php?code="+code;
        }
 
        
        /**
         * 获取直播房间地址(使用userAccess方法替代)
         * @param String uid        合作方系统内的用户的唯一ID
         * @param String nickname    用户的昵称
         * @param String role        用户的角色
         * @param String roomid        房间ID
         * @param int expire        返回的地址的有效时间
         * @return String 
         * @throws Exception
         */
        public String roomGetUrl(String uid,String nickname,String role,String roomid,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("roomid", roomid);
            params.put("expire", expire);
            return this.call("user.register",params);
        }
 
 
        /**
         *   自动创建一个房间/频道和主播,并且绑定房间主播的关系
         *   @param $roomName     房间名称
         *   @param $authKey      管理员密码
         *   @param $userKey      普通用户密码
         *   @param $zhuboKey     主播密码
         *   @param $modetype     房间模式
         *   @param $options      可选项,包括: barrage:弹幕开关 开启:1 关闭:0,departmentID:部门ID,user_top:最高在线用户数,streamMode:小班合流模式配置,1 多人模式,2 双人模式
         *   @return
         *     @throws Exception
         */
        public String roomCreatev2(String roomName,String authKey,String userKey,String zhuboKey,int modetype,HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomName", roomName);
            params.put("authKey", authKey);
            params.put("userKey", userKey);
            params.put("zhuboKey", zhuboKey);
            params.put("modetype", modetype);
            params.put("options", options);
            return this.call("room.createv2", params);
        }
        
                
        /**
         * 查询房间信息
         * @param String roomid    房间ID
         * @return
         * @throws Exception
         */
        public String roomGetInfo(String roomid) throws Exception{
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            return this.call("room.getInfo",params);
        }
        
        /**
         * 获取房间登录地址
         * @param String roomid    房间ID
         * @return
         * @throws Exception
         */
        public String roomGetUrl(String roomid) throws Exception{
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            return this.call("room.getUrl",params);
        }
        
        /**
         * 创建房间
         * @param String roomName 房间名称
         * @return
         * @throws Exception
         */
        public String roomCreate(String roomName) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomName", roomName);
            return this.call("room.create", params);
        }
        
        /**
         * 创建房间,新增管理员密码设置
         * @param roomName
         * @param authKey
         * @return
         * @throws Exception
         */
        public String roomCreate(String roomName,String authKey) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomName",roomName);
            params.put("authKey",authKey);
            return this.call("room.create",params);
        }
        
        
        /**
         * 创建房间
         * @param roomName
         * @param voiceFlow
         * @param authKey
         * @return
         * @throws Exception
         */
        public String roomCreate(String roomName,int voiceFlow,String authKey, int modetype, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomName",roomName);
            params.put("voiceFlow", voiceFlow);
            params.put("authKey",authKey);
            params.put("modetype", modetype);
            params.put("options", options);
            return this.call("room.create",params);
        }
        
        /**
         * 更新房间信息
         * @param roomid
         * @param params            包含字段:roomName,voiceFlow,authKey
         * @return
         * @throws Exception
         */
        public String roomUpdate(String roomid,HashMap<Object,Object> params) throws Exception {
            params.put("roomid",roomid);
            return this.call("room.update",params);
        }
        
        /**
         * 删除房间
         * @param String roomid 房间ID
         * @return
         * @throws Exception
         */
        public String roomDrop(String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid",roomid);
            return this.call("room.drop",params);
        }
        
        /**
         * 获取房间列表
         * @param int page
         * @param int size
         * @return
         * @throws Exception
         */
        public String roomList(int page,int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            return this.call("room.list", params);
        }
        
        /**
         * 房间绑定主播
         * @param String roomid    房间ID
         * @param String account 主播账号
         * @param int accountType 主播账号类型
         * @return
         * @throws Exception
         */
        public String roomBindAccount(String roomid,String account,int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid",roomid);
            params.put("account",account);
            params.put("accountType",accountType);
            return this.call("room.live.bindAccount",params);
        }
        
        /**
         * 房间取消绑定主播
         * @param String roomid 房间ID
         * @param String account 主播账号
         * @param int accountType 主播账号类型
         * @return
         * @throws Exception
         */
        public String roomUnbindAccount(String roomid,String account,int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("room.live.unbindAccount",params);
        }
 
        /**
         * 发送广播
         * @param String roomid  房间ID
         * @param String cms
         * @param HashMap args
         * @param HashMap options
         * @return
         * @throws Exception
         */
        public String roomBroadcastSend(String roomid, String cmd, HashMap<Object,Object> args, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("cmd", cmd);
            params.put("params", args);
            params.put("options", options);
            return this.call("room.broadcast.send", params);
        }
        
        /**
         * 根据房间ID获取当前房间的在线人数
         * @param String     roomid     房间ID
         * @return
         * @throws Exception
         */
        public String roomOnlineTotal(String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            return this.call("room.online.total", params);
        }
        
        
        /**
         *  虚拟用户导入
         *  @param  String roomid  房间ID
         *  @param  Array  userList  [['nickname'=>'xxx', 'avatar'=>'xxx'], ['nickname'=>'xxxx', 'avatar'=>'xxx'], ......]
         *  @return
         */
        public String roomAddRobot(int roomid, ArrayList userList) throws Exception  {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("userList", userList);
            
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            
            return this.call("room.robot.add", params,"POST", files);
        }
        
        /**
         * 滚动公告接口
         * @param String     roomid         房间ID
         * @param String     content     滚动公告内容
         * @param String     link         滚动公告链接
         * @param String     duration     滚动公告显示时长(单位:秒)
         * @return
         */
        public String roomNoticeRoll(String roomid, String content, String link, int duration) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("content", content);
            params.put("link", link);
            params.put("duration", duration);
            return this.call("room.notice.roll", params);
        }
 
        /**
         * 获取房间/频道的外部推流地址
         * @param String roomid     房间/频道ID
         * @param String title      直播标题
          * @param int    ratio      分辨率比例
         * @return
         */
        public String roomPushRtmpUrl(String roomid, String title, int ratio) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("title", title);
            params.put("ratio", ratio);
            return this.call("room.pushRtmpUrl", params);
        }
 
        /**
         *  根据房间ID获取主播登录地址
         *  @param  string   roomid     房间ID
         *  @param  HashMap  options    其它可选项,ssl:是否使用https(true为使用,false为不使用)
         */
        public String roomLogin(String roomid, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("options", options);
            return this.call("room.login", params);
        }
 
        /**
         * 获取主播信息
         * @param String account 主播账号
         * @param int accountType 主播账号类型
         * @return
         * @throws Exception
         */
        public String zhuboGet(String account,int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("zhubo.get", params);
        }
        
        /**
         * 创建主播
         * @param String account 主播账号            (合作方主播账号的唯一ID)
         * @param String nickname 主播昵称
         * @param int accountType 账号类型        (如果是欢拓的账号类型,account可以为空)
         * @param String password 主播账号密码 
         * @param String description 用户简介
         * @param int departmentID 部门ID
         * @return
         * @throws Exception
         */
        public String zhuboCreate(String account,String nickname,int accountType,String password,String introduce,int departmentID) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("nickname", nickname);
            params.put("accountType",accountType);
            params.put("password", password);
            params.put("intro", introduce);
            params.put("departmentID", departmentID);
            return this.call("zhubo.create",params);
        }
        
        
        /**
         * 更新主播信息
         * @param account
         * @param accountType
         * @param nickname
         * @param introduce
         * @param int departmentID 部门ID
         * @return
         * @throws Exception
         */
        public String zhuboUpdateInfo(String account,int accountType,String nickname,String introduce, int departmentID) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            params.put("nickname",nickname);
            params.put("intro", introduce);
            params.put("departmentID", departmentID);
            return this.call("zhubo.update.info",params);
        }
        
        
        /**
         * 更新主播密码
         * @param account
         * @param accountType
         * @param password
         * @return
         * @throws Exception
         */
        public String zhuboUpdatePassword(String account,int accountType,String password) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            params.put("password", password);
            return this.call("zhubo.update.password", params);
        }
        
        
        /**
         * 更新主播头像
         * @param account            主播账号
         * @param accountType        账号类型
         * @param filename            图片路径(支持jpeg、jpg,图片大小不超过1M)
         * @return
         * @throws Exception
         */
        public String zhuboUpdatePortrait(String account,int accountType,String filename) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();            
            params.put("account", account);
            params.put("accountType", accountType);            
            String res = this.call("zhubo.portrait.uploadurl",params);
            
            JSONObject resJson = JSONObject.fromObject(res);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                JSONObject resData = resJson.getJSONObject("data");
    
                File f;
                f = new File(filename);
                Part[] parts = {
                    new FilePart(resData.getString("field"),f)
                };
                
                return this.doPost(resData.getString("api"), parts);
            }
            return res;
        }
        
        
        /**
         * 删除主播
         * @param String account 主播账号
         * @param int accountType 账号类型
         * @return
         * @throws Exception
         */
        public String zhuboDel(String account, int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("zhubo.del", params);
        }
        
        /**
         * 主播列表
         * @param int page
         * @param int size
         * @return
         * @throws Exception
         */
        public String zhuboList(int page ,int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            return this.call("zhubo.list", params);
        }
        
        /**
         * 主播获取登录页面
         * @param account     主播账户名
         * @param accountType     主播账户类型
         * @param options     其它可选项,ssl:是否使用https(true为使用,false为不使用)
         * @return
         * @throws Exception
         */
        public String zhuboLogin(String account, int accountType, HashMap<Object,Object> options) throws Exception{
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            params.put("options", options);
            return this.call("zhubo.login", params);
        }
 
        /**
         * 根据房间ID获取主播登录地址
         * @param roomid     房间ID
         * @param options     其它可选项,ssl:是否使用https(true为使用,false为不使用)
         * @return
         * @throws Exception
         */
        public String zhuboRoomLogin(String roomid, HashMap<Object,Object> options) throws Exception{
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("options", options);
            return this.call("zhubo.room.login", params);
        }
        
        /**
         * 获取主播登录记录
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @param String         account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @param int           accountType     主播账号类型。1 欢拓账户, 2 合作方账户
         * @return
         * @throws Exception
         */
        public String zhuboLoginInfo(int page, int size, String account) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("account", account);
            return this.call("zhubo.loginInfo", params);
        }
        
        /**
         * 主播观看固定链接
         * @param String        account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @param int            accountType     主播账号类型。1 欢拓账户, 2 合作方账户
         * @return
         * @throws Exception
         */
        public String zhuboGetLoginUrl(String account, int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("zhubo.getLoginUrl", params);
        }
        
        /**
         * 获取主播上下课记录
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @param String         account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @param int           accountType     主播账号类型。1 欢拓账户, 2 合作方账户
         * @return
         * @throws Exception
         */
        public String zhuboClassRecord(int page, int size, String account) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("account", account);
            return this.call("zhubo.classRecord", params);
        }
        
        /**
         * 获取直播回放记录(需要携带用户信息的,使用userAccessPlayback方法)
         * @param String liveid 直播ID
         * @param int expire 地址有效时间
         * @return 
         * @throws Exception
         */
        public String liveGet(String liveid,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("expire",expire);
            return this.call("live.get", params);
        }
            
        
        
        /**
         * 批量获取直播回放记录
         * @param String[] liveids 直播ID列表 
         * @param int expire 地址有效期
         * @return
         * @throws Exception
         */
        public String liveGetBatch(String[] liveids,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveids", liveids);
            params.put("expire", expire);
            return this.call("live.getBatch",params);
        }
 
        /**
         * 获取最新的几个直播记录
         * @param  int   size    每页个数
         */
        public String liveGetLast(int size, int roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("size", size);
            params.put("roomid", roomid);
            return this.call("live.getlast", params);
        }
        
        /**
         * 获取直播回放记录列表
         * @param String startDate 开始日期
         * @param String endDate 结束日期
         * @param int page    页码
         * @param int size 每页条数
         * @param int playback 是否有回放
         * @return
         * @throws Exception
         */
        public String liveList(String startDate,String endDate,int page,int size,int playback) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("startDate", startDate);
            params.put("endDate",endDate);
            params.put("page", page);
            params.put("size", size);
            params.put("playback", playback);
            return this.call("live.list",params);
        }
 
        /**
         * 获取全部直播记录列表
         * @param   int  page   页码(默认:1)
         * @param   int  size   每页个数(默认:10)
         */
        public String liveListAll(int page, int size, String order, String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("order", order);
            params.put("roomid", roomid);
            return this.call("live.listall", params);
        }
        
        /**
         * 获取直播聊天列表
         * @param liveid
         * @param page
         * @return
         * @throws Exception
         */
        public String liveMessageList(String liveid,int page) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            return this.call("live.message",params);
        }
        
        /**
         *  获取直播鲜花记录
         *  @param  String  liveid     直播ID
         *  @param  int     page       页码(默认:1)
         *  @param  int     size       每页个数(默认:10)
         */
        public String liveFlowerList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.flower.list", params);
        }
        
        /**
         * 创建直播回放专辑
         * @param String album_name 专辑名称
         * @param String[] liveids 直播ID列表
         * @return
         * @throws Exception
         */
        public String liveAlbumCreate(String album_name,String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_name", album_name);
            params.put("liveids", liveids);
            return this.call("live.album.create",params);
        }
        
        /**
         * 获取专辑信息
         * @param String album_id 专辑ID
         * @param int expire 专辑地址有效期
         * @return
         * @throws Exception
         */
        public String liveAlbumGet(String album_id,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("expire", expire);
            return this.call("live.album.get",params);
        }
        
        /**
         * 删除专辑
         * @param String album_id 专辑ID
         * @return
         * @throws Exception
         */
        public String liveAlbumDelete(String album_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            return this.call("live.album.delete",params);
        }
        
        /**
         * 往专辑里面增加回放记录
         * @param String album_id 专辑ID
         * @param String[] liveids 回放记录列表
         * @return
         * @throws Exception
         */
        public String liveAlbumAdd(String album_id,String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("liveids", liveids);
            return this.call("live.album.add",params);
        }
        
        /**
         * 从专辑中移除回放记录
         * @param String album_id 专辑ID
         * @param String[] liveids 回放记录列表
         * @return
         * @throws Exception
         */
        public String liveAlbumRemove(String album_id,String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("liveids", liveids);
            return this.call("live.album.remove", params);
        }
        
        /**
         * 发起投票
         * @param String             roomid             房间ID
         * @param String             uid                投票发布者,合作方用户ID
         * @param String             nickname        投票发布者,合作方用户昵称
         * @param String             title            投票主题
         * @param String             label            投票标签
         * @param ArrayList         op                选项,json格式,比如 ["aaa","bbb"],aaa为第一个选项,bbb为第二个选项
         * @param int                 type            类型,0为单选,1为多选
         * @param nt                 optional        若为单选则传1,多选则传的值为多少表示可以选几项
         * @param String             answer            答案,设置第几项为答案,传入 "0" 表示第一个选项为正确答案,传入 "0,2" 表示第一和第三项为正确答案,不设置答案则传空字符串
         * @param String             image            图片路径,若要上传图片作为题目,则传入图片
         * @param HashMap             options         可选参数
         * @return
         * @throws Exception
         */
        public String liveVoteAdd(String roomid, String uid, String nickname, String title, String label, ArrayList op, int type, int optional, String answer, String image, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("title", title);
            params.put("label", label);
            params.put("op", op);
            params.put("type", type);
            params.put("optional", optional);
            params.put("answer", answer);
            params.put("options", options);
            
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            if ("" != image) {
                files.put("image", "@" + image);
            }
            
            return this.call("live.vote.add", params, "POST", files);
        }
        
        /**
         * 结束投票
         * @param String             vid            投票ID
         * @param int                 showResult    是否显示投票结果,0为不显示,1为显示
         * @param String             uid            投票结束者,合作方用户ID
         * @param String             nickname    投票结束者,合作方用户昵称
         * @return
         * @throws Exception
         */
        public String liveVoteEnd(String vid, int showResult, String uid, String nickname) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("showResult", showResult);
            params.put("uid", uid);
            params.put("nickname", nickname);
            
            return this.call("live.vote.end", params);
        }
        
        /**
         * 发布预发布的投票
         * @param String             vid         投票ID
         * @param String             roomid         房间ID
         * @return
         * @throws Exception
         */
        public String liveVoteEmit(String vid, String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("roomid", roomid);
            
            return this.call("live.vote.emit", params);
        }
        
        /**
         * 删除投票
         * @param String         vid         投票ID
         * @return
         * @throws Exception
         */
        public String liveVoteDelete(String vid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            
            return this.call("live.vote.delete", params);
        }
        
        /**
         * 更新投票
         * @param String         vid         投票ID
         * @param HashMap         options     要更新的信息
         * @return
         * @throws Exception
         */
        public String liveVoteUpdate(String vid, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("options", options);
            
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            
            if (options.containsKey("image")) {
                String image = options.get("image").toString();
                if ("" != image) {
                    File file = new File(image);
                    if (!file.exists()) {
                        HashMap<Object,Object> ret = new HashMap<Object,Object>();
                        ret.put("code", CODE_FAIL);
                        ret.put("msg", "文件" + image + "不存在");
                        return JSONObject.fromObject(ret).toString();
                    }
                    
                    files.put("image", "@" + image);
                }
            }
            
            return this.call("live.vote.update", params, "POST", files);
        }
 
        /**
         * 创建一个专辑
         * @param  String  $album_name     专辑名称
         * @return
         * @throws Exception
         */
        public String albumCreate(String album_name, String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_name", album_name);
            params.put("liveids", liveids);
            return this.call("album.create", params);
        }
 
        /**
         * 获取一个直播专辑
         * @param  String album_id        专辑ID
         * @param  int expire          地址有效时间     
         * @return
         */
        public String albumGet(String album_id, int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("expire", expire);
            return this.call("album.get", params);
        }
 
        /**
         * 删除一个专辑
         * @param  String album_id   专辑ID
         * @return
         */
        public String albumDelete(String album_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            return this.call("album.delete", params);
        }
 
        /**
         * 往专辑增加一个回放记录
         * @param  String album_id   专辑ID
         * @param  array course_id  回放记录的课程id
         * @return
         */
        public String albumAdd(String album_id, String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("liveids", liveids);
            return this.call("album.add", params);
        }
 
        /**
         * 从专辑里面清除某个回放
         * @param String  album_id   专辑ID
         * @param array course_id   回放记录的课程id
         * @param
         */
        public String albumRemove(String album_id, String[] liveids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("liveids", liveids);
            return this.call("album.remove", params);
        }
 
        /**
         * 创建一个课程专辑
         * @param  String  album_name     专辑名称
         * @param  array course_ids      课程id
         * @return
         */
        public String albumCreateCourse(String album_name, String[] course_ids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_name", album_name);
            params.put("course_ids", course_ids);
            return this.call("album.course.create", params);
        }
 
        /**
         * 往课程专辑增加一个课程回放记录
         * @param  String album_id   专辑ID
         * @param  array course_id  课程回放记录ID列表
         * @return
         */
        public String albumAddCourse(String album_id, String[] course_ids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("course_ids", course_ids);
            return this.call("album.course.add", params);
        }
 
        /**
         * 从课程专辑里面清除某个课程回放
         * @param String  album_id   专辑ID
         * @param array course_ids   回放记录的课程id
         * @param
         */
        public String albumRemoveCourse(String album_id, String[] course_ids) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("album_id", album_id);
            params.put("course_ids", course_ids);
            return this.call("album.course.remove", params);
        }
        
        /**
         * 根据房间及时间获取回放记录
         * @param String roomid 房间ID
         * @param String start_time 开始时间 格式:2014-12-26 12:00:00
         * @param int expire 地址有效期
         * @return
         * @throws Exception
         */
        public String liveRoomGet(String roomid,String start_time,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("start_time", start_time);
            params.put("expire", expire);
            return this.call("live.room.get",params);
        }
        
        /**
         * 根据房间及时间区间获取回放记录
         * @param String roomid 房间ID
         * @param String start_time 起始区间时间戳  格式:2014-12-26 00:00:00
         * @param String end_time 结束区间时间戳  格式: 2014-12-26 12:00:00
         * @param int expire 有效期
         * @return
         * @throws Exception
         */
        public String liveRoomList(String roomid, String start_time,String end_time,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("expire", expire);
            return this.call("live.room.list",params);
        }
        
        /**
         * 根据直播ID获取访客列表
         * @param  String liveid      直播ID
         * @param  int page           页码
         * @param  int size           每页个数 
         * @return
         */
        public String liveVisitorList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.visitor.list", params);
        }
 
        /**
         * 根据直播ID,用户ID获取访客列表
         * @param  String liveid      直播ID
         * @param  String uid         用户ID
         * @return  
         */
        public String liveVisitorGet(String liveid, String uid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("uid", uid);
            return this.call("live.visitor.get", params);
        }
 
        /**
         * 根据直播ID获取提问列表
         * @param  String  liveid      直播ID
         * @param  int     page        页码
         * @param  int     size        每页个数
         * @return
         */
        public String liveQuestionList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.question.list", params);
        }
        
        /**
         * 获取音频下载地址
         * @param String  liveid    直播ID
         * @return
         * @throws Exception
         */
        public String liveAudioDownloadUrl(String liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            return this.call("live.audio.download.url",params);
        }
        
        /**
         * 根据直播ID获取回放访客列表
         * @param  String   liveid      直播ID
         * @param  int      page        页码
         * @param  int      size        每页个数
         * @return
         */
        public String livePlaybackVisitorList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.playback.visitor.list", params);
        }
 
        /**
         * 按照时间区间获取回放访客列表    (时间区间不能大于7天)
         * @param  String  start_time     开始时间    格式:2016-01-01 00:00:00
         * @param  String  end_time       结束时间    格式:2016-01-02 00:00:00
         * @param  int     page           页码
         * @param  int     size           每页个数
         */
        public String livePlaybackVisitorTimeList(String start_time, String end_time, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.playback.visitor.timelist", params);
        }
        
        /**
         * 根据直播id获取回放视频
         * @param int  liveid     直播id
         */
        public String livePlaybackVideo(int liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            return this.call("live.playback.video", params);
        }
        
        /**
         * 根据直播id获取回放登录地址
         * @param int  liveid     直播id
         */
        public String livePlaybackLoginUrl(int liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            return this.call("live.playback.loginUrl", params);
        }
 
        /**
         * 获取直播PPT章节信息
         * @param int  liveid     直播id
         */
        public String liveChapterList(int liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            return this.call("live.chapter.list", params);
        }
 
        /**
         * 按照直播ID获取投票列表
         * @param  String   liveid      直播ID
         * @param  int      page        页码
         * @param  int      size        每页个数
         * @return
         */
        public String liveVoteList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.vote.list", params);
        }
 
        /**
         * 按照投票ID和直播ID获取投票详情
         * @param  int      vid        投票ID
         * @param  int      liveid     直播ID
         * @param  int      page       页码
         * @param  int      size       每页个数
         * @return
         */
         public String liveVoteDetail(int vid, int liveid, int page, int size) throws Exception {
             HashMap<Object,Object> params = new HashMap<Object,Object>();
             params.put("vid", vid);
             params.put("liveid", liveid);
             params.put("page", page);
             params.put("size", size);
             return this.call("live.vote.detail", params);
         }
 
         /**
          * 按照直播ID获取抽奖列表
          * @param  String   liveid      直播ID
          * @param  int      page        页码
          * @param  int      size        每页个数
          * @return
          */
        public String liveLotteryList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.lottery.list", params);
        }
        
        /**
         * 设置最高在线
         * @param options     可传的参数
         * @return
         */
        public String liveMaxUserSet(HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("options", options);
            return this.call("live.maxUser.set", params);
        }
        
        /**
         * 获取最高在线
         * @return
         */
        public String liveMaxUserGet() throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            return this.call("live.maxUser.get", params);
        }
        
        /**
         * 发起提问
         * @param string    roomid     房间ID
         * @param string    content    提问内容
         * @param string    uid        用户id
         * @param string    role       用户角色
         * @param string    nickname   用户昵称
         * @param HashMap   options    可选参数
         */
        public String liveQaAdd(String roomid, String content, String uid, String role, String nickname, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("content", content);
            params.put("uid", uid);
            params.put("role", role);
            params.put("nickname", nickname);
            params.put("options", options);
            return this.call("live.qa.add", params);
        }
        
        /**
         * 审核通过提问
         * @param int       qid        提问ID
         * @param string    roomid     房间ID
         */
        public String liveQaAudit(int qid, String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("roomid", roomid);
            return this.call("live.qa.audit", params);
        }
        
        /**
         * 删除提问
         * @param int       qid        提问ID
         * @param string    roomid     房间ID
         */
        public String liveQaDelete(int qid, String roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("roomid", roomid);
            return this.call("live.qa.delete", params);
        }
        
        /**
         * 回复提问
         * @param int       qid        提问ID
         * @param string    roomid     房间ID
         * @param string    content    回复内容
         * @param string    uid        用户ID
         * @param string    nickname   用户昵称
         * @param HashMap   options    可选参数
         */
        public String liveQaAnswer(int qid, String roomid, String content, String uid, String nickname, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("roomid", roomid);
            params.put("content", content);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("options", options);
            return this.call("live.qa.answer", params);
        }
        
        /**
         * 获取问答列表
         * @param   String    roomid         房间ID
         * @param     int        page                   页码
         * @param     int       size                   每页数量
         * @param   HashMap   options        可选参数
         */
        public String liveQaList(String roomid, int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("live.qa.list", params);
        }
 
        /**
         * 按照直播ID获取私聊记录列表
         * @param  String   liveid      直播ID
         * @param  int      page        页码
         * @param  int      size        每页个数
         * @return
         */
        public String livePrivateChatList(String liveid, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("page", page);
            params.put("size", size);
            return this.call("live.privateChat", params);
        }
 
        /**
        *   增加一个直播课程
        *   @param String course_name 课程名称
        *   @param String account 发起直播课程的主播账号
        *   @param String start_time 课程开始时间,格式: 2015-01-10 12:00:00
        *   @param String end_time 课程结束时间,格式: 2015-01-10 13:00:00
        *   @return
        */
        public String courseAdd(String course_name, String account, String start_time, String end_time, String nickname, String accountIntro, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_name", course_name);
            params.put("account", account);
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("nickname", nickname);
            params.put("accountIntro", accountIntro);
            params.put("options", options);
            return this.call("course.add", params);
        }
 
        /**
         *  进入一个课程
         *  @param  String  course_id      课程ID 
         *  @param  String  uid            用户唯一ID
         *  @param  String  nickname       用户昵称 
         *  @param  String  role           用户角色,枚举见:ROLE 定义
         *  @param  Int     expire         有效期,默认:3600(单位:秒)
         *  @param  Array   options        可选项,包括:gender:枚举见上面GENDER定义,avatar:头像地址
         */
        public String courseAccess(String course_id, String uid, String nickname, String role, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("course.access", params);
        }
 
        /**
         *  进入一个课程回放
         *  @param  String  course_id      课程ID 
         *  @param  String  uid            用户唯一ID
         *  @param  String  nickname       用户昵称 
         *  @param  String  role           用户角色,枚举见:ROLE 定义
         *  @param  Int     expire         有效期,默认:3600(单位:秒)
         *  @param  Array   options        可选项,包括:gender:枚举见上面GENDER定义,avatar:头像地址
         */
        public String courseAccessPlayback(String course_id, String uid, String nickname, String role, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("expire", expire);
            params.put("options", options);
            return this.call("course.access.playback", params);
        }
        
        /**
         *  获取课程直播间地址
         *  @param  String  course_id      课程ID 
         *  @param  String  uid            用户唯一ID
         *  @param  String  nickname       用户昵称 
         *  @param  String  role           用户角色,枚举见:ROLE 定义
         *  @param  Int     expire         有效期,默认:3600(单位:秒)
         *  @param  Array   options        可选项,包括:gender:枚举见上面GENDER定义,avatar:头像地址
         */
        public String courseAccessUrl(String course_id, String uid, String nickname, String role, int expire, HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.courseAccessKey(course_id, uid, nickname, role, expire, options);
            return "http://open.talk-fun.com/room.php?accessAuth=" + accessAuth;
        }
        
        /**
         *  获取课程直播key
         *  @param  String  course_id      课程ID 
         *  @param  String  uid            用户唯一ID
         *  @param  String  nickname       用户昵称 
         *  @param  String  role           用户角色,枚举见:ROLE 定义
         *  @param  Int     expire         有效期,默认:3600(单位:秒)
         *  @param  Array   options        可选项,包括:gender:枚举见上面GENDER定义,avatar:头像地址
         */
        public String courseAccessKey(String course_id, String uid, String nickname, String role, int expire, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            params.put("timestamp", ts);
            
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("role", role);
            params.put("expire", expire);
            params.put("options", JSONObject.fromObject(options).toString());
            
            params.put("sign", this.generateSign(params));
            String accessAuth = JSONObject.fromObject(params).toString();
            accessAuth = this.base64UrlEncode(accessAuth);
            
            return accessAuth;
        }
        
        /**
         *  获取课程回放地址
         *  @param  String  course_id      课程ID 
         *  @param  String  uid            用户唯一ID
         *  @param  String  nickname       用户昵称 
         *  @param  String  role           用户角色,枚举见:ROLE 定义
         *  @param  Int     expire         有效期,默认:3600(单位:秒)
         *  @param  Array   options        可选项,包括:gender:枚举见上面GENDER定义,avatar:头像地址
         */
        public String courseAccessPlaybackUrl(String course_id, String uid, String nickname, String role, int expire, HashMap<Object,Object> options) throws Exception {
            String accessAuth = this.courseAccessKey(course_id, uid, nickname, role, expire, options);
            return "http://open.talk-fun.com/player.php?accessAuth=" + accessAuth;
        }
 
        /**
        *   查询课程信息
        *   @param String course_id 课程ID
        */
        public String courseGet(String course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.get", params);
        }
        
        /**
         * 发送广播
         * @param String course_id  课程ID
         * @param String cms
         * @param HashMap args
         * @param HashMap options
         * @return
         * @throws Exception
         */
        public String courseBroadcastSend(String course_id, String cmd, HashMap<Object,Object> args, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("cmd", cmd);
            params.put("params", args);
            params.put("options", options);
            return this.call("course.broadcast.send", params);
        }
 
        /**
        *   删除课程
        *   @param String course_id 课程ID
        */
        public String courseDelete(String course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.delete", params);
        }
 
        /**
        *   课程列表(将返回开始时间在区间内的课程)
        *   @param String start_time 开始时间区间,格式: 2015-01-01 12:00:00
        *   @param String end_time 结束时间区间,格式: 2015-01-02 12:00:00
        *   @param int       page         页码
        *   @param int       size         每页数量
        *   @param HashMap options     其他参数,status:课程状态(0为正常状态,-1为已删除)
        *   @return 
        */
        public String courseList(String start_time, String end_time, int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("course.list", params);
        }
 
        /**
        *   更新课程信息
        *   @param String course_id 课程ID
        *   @param String account 发起直播课程的主播账号
        *   @param String course_name 课程名称
        *   @param String start_time 课程开始时间,格式:2015-01-01 12:00:00
        *   @param String end_time 课程结束时间,格式:2015-01-01 13:00:00
        *   @param String nickname     主播的昵称
        *   @param String accountIntro     主播的简介
        *   @param HashMap options         可选参数
        */
        public String courseUpdate(String course_id, String account, String course_name, String start_time, String end_time, String nickname, String accountIntro, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("course_name", course_name);
            params.put("account", account);
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("nickname", nickname);
            params.put("accountIntro", accountIntro);
            params.put("options", options);
            return this.call("course.update", params);
        }
 
        /**
         *  按照投票ID和课程ID获取投票详情
         *  @param  int      vid        投票ID
         *  @param  int      course_id   课程ID
         *  @param  int      page       页码
         *  @param  int      size       每页个数
         *  @return
         */
        public String courseVoteDetail(int vid, int course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.votes.detail", params);
        }
 
        /**
         *  按照课程ID获取投票列表
         *  @param  String   course_id      课程ID
         *  @param  int      page        页码
         *  @param  int      size        每页个数
         *  @return
         */
        public String courseVoteList(String course_id, int page, int size, String status) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            params.put("status", status);
            return this.call("course.votes.list", params);
        }
        
        /**
         * 删除投票
         * @param String         vid         投票ID
         * @return
         * @throws Exception
         */
        public String courseVoteDelete(String vid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            return this.call("course.votes.delete", params);
        }
        
        /**
         * 更新投票
         * @param String         vid         投票ID
         * @param HashMap         options     要更新的信息
         * @return
         * @throws Exception
         */
        public String courseVoteUpdate(String vid, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("options", options);
            
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            
            if (options.containsKey("image")) {
                String image = options.get("image").toString();
                if ("" != image) {
                    File file = new File(image);
                    if (!file.exists()) {
                        HashMap<Object,Object> ret = new HashMap<Object,Object>();
                        ret.put("code", CODE_FAIL);
                        ret.put("msg", "文件" + image + "不存在");
                        return JSONObject.fromObject(ret).toString();
                    }
                    
                    files.put("image", "@" + image);
                }
            }
            
            return this.call("course.votes.update", params, "POST", files);
        }
 
        /**
         *  按照课程ID获取抽奖列表
         *  @param  String   course_id      课程ID
         *  @param  int      page        页码
         *  @param  int      size        每页个数
         *  @return
         */
        public String courseLotteryList(String course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.lottery.list", params);
        }
 
        /**
         *  按照课程ID获取音频下载地址
         *  @param  String   course_id      课程ID
         *  @return
         */
        public String courseAudioDownloadUrl(String course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.audio.download.url", params);
        }
        
        /**
         * 获取在线用户列表
         * @param     String         course_id         课程ID
         * @param     String         start_time         查询开始时间,格式:2015-01-01 12:00:00
         * @param     String         end_time         查询结束时间,格式:2015-01-01 13:00:00
         * @param     int         page             页码
         * @param      int         size              每页数量
         * @return
         * @throws Exception
         */
        public String courseOnlineList(String course_id, String start_time, String end_time, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.online.list", params);
        }
        
        /**
         * 获取在线管理员列表
         * @param     String         start_time         查询开始时间,格式:2015-01-01 12:00:00
         * @param     String         end_time         查询结束时间,格式:2015-01-01 13:00:00
         * @param     int         page             页码
         * @param      int         size              每页数量
         * @return
         * @throws Exception
         */
        public String courseOnlineAdmin(String start_time, String end_time, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.online.admin", params);
        }
 
        /**
         *  根据课程ID获取访客列表
         *  @param  String course_id      课程ID
         *  @param  int page           页码
         *  @param  int size           每页个数 
         *  @param  HashMap options    可选参数
         *  @return
         */
        public String courseVisitorList(String course_id, int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("course.visitor.list", params);
        }
        
        /**
         * 根据课程ID获取回放访客列表
         * @param Stirng course_id         课程ID
         * @param int page                 页面
         * @param int size                 每页个数
         * @param int options             可选参数
         * @return
         */
        public String coursePlaybackVisitorList(String course_id, int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("course.visitor.playback", params);
        }
        
        /**
         *  根据时间获取访客列表
         *  @param  string start_time   查询起始时间,格式:2015-01-01 12:00:00
         *  @param  string end_time     查询结束时间,格式:2015-01-01 12:00:00
         *  @param  int $page           页码
         *  @param  int $size           每页个数 
         */
        public String courseVisitorListAll(String start_time, String end_time, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("start_time", start_time);
            params.put("end_time", end_time);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.visitor.listall", params);
        }
 
        /**
         *  根据课程ID获取提问列表
         *  @param  String course_id      课程ID
         *  @param  int     page        页码
         *  @param  int     size        每页个数
         *  @return
         */
        public String courseQuestionList(String course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.question.list", params);
        }
 
        /**
         *  获取课程鲜花记录
         *  @param  string  course_id     课程ID
         *  @param  int     page       页码(默认:1)
         *  @param  int     size       每页个数(默认:10)
         */
        public String courseFlowerList(String course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.flower.list", params);
        }
 
        /**
         *  获取课程聊天列表
         *  @param  string      course_id         课程id
         *  @param  int         page                 页码
         *  @param  int         size                 每页个数         
         *  @return array 
         */
        public String courseMessageList(String course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.message", params);
        }
 
        /**
         *  获取课件列表
         *  @param  string      course_id         课程id
         *  @param  int         page           页码
         *  @return array 
         */
        public String courseDocumentList(String course_id, int page) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            return this.call("course.document", params);
        }
        
        /**
         * 删除课件
         * @param     String         id         课件ID
         * @return
         */
        public String courseDocumentDelete(String id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("id", id);
            return this.call("document.delete", params);
        }
        
        /**
         * 根据课程id获取回放视频
         * @param string      course_id         课程id
         * @return
         * @throws Exception
         */
        public String courseVideo(String course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.video", params);
        }
        
        /**
         * 根据课程id获取回放视频
         * @param string      course_id         课程id
         * @prram HashMap      options         可选参数
         * @return
         * @throws Exception
         */
        public String courseVideo(String course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.video", params);
        }
        
        /**
         * 根据课程id获取课程配置
         * @param string     course_id         课程id
         * @return
         * @throws Exception
         */
        public String courseConfig(String course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.getConfig", params);
        }
        
        /**
         * 更新课程配置信息
         * @param String             course_id         课程ID
         * @param HashMap             options         配置参数
         * @return
         * @throws Exception
         */
        public String courseUpdateConfig(String course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.updateConfig", params);
        }
        
        /**
         * 发起投票
         * @param String     course_id     课程ID
         * @param String     uid         投票发布者,合作方用户ID
         * @param String     nickname     投票发布者,合作方用户昵称
         * @param String     title         投票主题
         * @param String     label         投票标签
         * @param ArrayList op             选项
         * @param int         type         类型,0为单选,1为多选
         * @param int         optional     若为单选则传1,多选则传的值为多少表示可以选几项
         * @param String     answer         答案
         * @param String     image         图片路径
         * @param String     options     可选参数
         */
        public String courseVoteAdd(String course_id, String uid, String nickname, String title, String label, ArrayList op, int type, int optional, String answer, String image, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("title", title);
            params.put("label", label);
            params.put("op", op);
            params.put("type", type);
            params.put("optional", optional);
            params.put("answer", answer);
            params.put("options", options);
            
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            
            if ("" != image) {
                files.put("image", "@" + image);
            }
            
            return this.call("course.votes.add", params, "POST", files);
        }
        
        /**
         * 结束投票
         * @param int         vid             投票ID
         * @param int         showResult         是否显示投票结果,1显示,0不显示
         * @param String     uid             投票结束者,合作方用户ID
         * @param String     nickname         投票结束者,合作方用户昵称
         */
        public String courseVoteEnd(int vid, int showResult, String uid, String nickname) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("showVote", showResult);
            params.put("uid", uid);
            params.put("nickname", nickname);
            return this.call("course.votes.end", params);
        }
        
        /**
         * 发布预发布的投票
         * @param int         vid         投票ID
         * @param int         course_id     课程ID
         * @return
         * @throws Exception
         */
        public String courseVoteEmit(int vid, int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("vid", vid);
            params.put("course_id", course_id);
            return this.call("course.votes.emit", params);
        }
 
        /**
            * 取课程PPT章节信息
         * @param int  course_id     课程id
         */
        public String courseChapterList(int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.chapter.list", params);
        }
 
        /**
            * 根据课程ID获取被禁言的用户列表
         * @param int  course_id     课程id
         */
        public String courseChatDisableList(int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.chat.disable.list", params);
        }
 
        /**
         *  添加剪辑
         *  @param Int     liveid      直播ID
         *  @param String  name        剪辑名称
         *  @param Json    time        剪辑时间,array(array('start'=>60,'end'=>180))
         *  @param Int     isRelated   是否关联源直播,默认不关联
         */
        public String clipAdd(int liveid, String name, HashMap<Object,Object> time, int isRelated) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            params.put("name", name);
            params.put("time", time);
            params.put("isRelated", isRelated);
            return this.call("clip.add", params);
        }
 
        /**
         *  修改剪辑
         *  @param Int     clipid      剪辑ID
         *  @param String  name        剪辑名称
         *  @param Array   time        剪辑时间,array(array('start'=>60,'end'=>180))
         *  @param Int     isRelated   是否关联源直播,默认不关联
         */
        public String clipUpdate(int clipid, String name, HashMap<Object,Object> time, int isRelated) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("clipid", clipid);
            params.put("name", name);
            params.put("time", time);
            params.put("isRelated", isRelated);
            return this.call("clip.update", params);
        }
 
        /**
         *  删除剪辑
         *  @param Int     clipid      剪辑ID
         */
        public String clipDelete(int clipid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("clipid", clipid);
            return this.call("clip.delete", params);
        }
 
        /**
         *  获取剪辑信息
         *  @param Int     clipid      剪辑ID
         */
        public String clipGet(int clipid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("clipid", clipid);
            return this.call("clip.get", params);
        }
 
        /**
         *  获取剪辑列表
         *  @param Int     page      页码
         *  @param Int     size      条数
         *  @param Int       liveid      直播id
         */
        public String clipList(int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            return this.call("clip.list", params);
        }
        
        /**
         *  获取剪辑列表
         *  @param Int     page      页码
         *  @param Int     size      条数
         *  @param Int       liveid      直播id
         */
        public String clipList(int page, int size, int liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("liveid", liveid);
            return this.call("clip.list", params);
        }
 
        /**
         *  根据课程id获取剪辑列表
         *  @param Int     course_id 课程id
         *  @param Int     page      页码
         *  @param Int     size      条数
         */
        public String clipListByCid(int course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("clip.course.list", params);
        }
 
        /**
         *  添加剪辑
         *  @param Int     course_id    课程ID
         *  @param String  name        剪辑名称
         *  @param Json    time        剪辑时间,array(array('start'=>60,'end'=>180))
         *  @param Int     isRelated   是否关联源直播,默认不关联
         */
        public String clipAddByCid(int course_id, String name, HashMap<Object,Object> time, int isRelated) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("name", name);
            params.put("time",time);
            params.put("isRelated", isRelated);
            return this.call("clip.course.add", params);
        }
        
        /**
         * 获取剪辑access_token,播放地址
         * @param int             clipid             剪辑ID
         * @param String         uid             合作方用户唯一ID
         * @param String         nickname         合作方用户昵称
         * @param int             expire             有效期,单位:秒(默认3600秒)
         */
        public String clipAccess(int clipid, String uid, String nickname, int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("clipid", clipid);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("expire", expire);
            return this.call("clip.access", params);
        }
        
        /**
         * 虚拟用户导入
         * @param Int     course_id     课程ID
         * @param Array userList     虚拟用户列表
         * @param int     total         总数
         */
        public String courseRobotSet(int course_id, ArrayList userList, int total) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("userList", userList);
            params.put("total", total);
            HashMap<Object, Object> files = new HashMap<Object, Object>();
            
            return this.call("course.robot.set", params, "POST",files);
        }
        
        /**
         * 滚动公告接口
         * @param int         course_id     课程ID
         * @param String     content     滚动公告内容
         * @param String     link         滚动公告链接
         * @param int         duration     滚动通知显示时长(单位:秒)
         * @return
         * @throws Exception
         */
        public String courseNoticeRoll(int course_id, String content, String link, int duration) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("content", content);
            params.put("link", link);
            params.put("duration", duration);
            return this.call("course.notice.roll", params);
        }
        
        /**
         * 课程上传课件
         * @param course_id        课程ID
         * @param file            文件 {"file":"文件路径","name":"文件名"},支持的课件格式为:ppt, pptx, doc, docx, pdf, jpg, jpeg, png, gif
         */
        public String courseDocumentUpload(String course_id, HashMap<String,String> file) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();            
            params.put("course_id", course_id);
            params.put("name", file.get("name"));
            
            String res = this.call("course.document.uploadurl.get",params);
            
            JSONObject resJson = JSONObject.fromObject(res);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                JSONObject resData = resJson.getJSONObject("data");    
                
                File f;
                f = new File(file.get("file"));
                Part[] parts = {
                    new FilePart(resData.getString("field"),f)
                };
                
                return this.doPost(resData.getString("api"), parts);
            }
            return res;
        }
        
        /**
         * 获取主播登录信息
         * @param account             主播账户
         * @param accountType         主播账户类型
         * @param options             其它可选项,ssl:是否使用https(true为使用,false为不使用)
         * @return
         * @throws Exception
         */
        public String courseLogin(String account, int accountType, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            params.put("options", options);
            return this.call("course.login", params);
        }
        
        /**
         * 修改主播头像
         * @param account             发起直播课程的合作方主播唯一账号ID
         * @param filename             本地图片图片路径
         * @return
         * @throws Exception
         */
        public String courseZhuboPortrait(String account, String filename) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            String res = this.call("course.zhubo.portrait",params);
            
            JSONObject resJson = JSONObject.fromObject(res);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                JSONObject resData = resJson.getJSONObject("data");
                
                File f;
                f = new File(filename);
                Part[] parts = {
                    new FilePart(resData.getString("field"),f)
                };
                
                return this.doPost(resData.getString("api"), parts);
            }
            
            return res;
        }
        
        /**
         * 添加主播
         * @param String             account             发起直播课程的合作方主播唯一账号ID
         * @param String             nickname             主播昵称
         * @param String             intro                 主播简介
         * @param String             password            主播密码
         * @return
         * @throws Exception
         */
        public String courseZhuboAdd(String account, String nickname, String intro, String password) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("nickname", nickname);
            params.put("intro", intro);
            params.put("password", password);
            return this.call("course.zhubo.add",params);
        }
        
        /**
         * 获取主播列表
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @return
         * @throws Exception
         */
        public String courseZhuboList(int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            return this.call("course.zhubo.list",params);
        }
        
        /**
         * 获取主播列表
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @param String         account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @return
         * @throws Exception
         */
        public String courseZhuboList(int page, int size, String account) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("account", account);
            return this.call("course.zhubo.list",params);
        }
        
        /**
         * 获取主播登录记录
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @param String         account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @param int           accountType     主播账号类型。1 欢拓账户, 2 合作方账户
         * @return
         * @throws Exception
         */
        public String courseZhuboLoginInfo(int page, int size, String account, int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("course.zhubo.loginInfo", params);
        }
        
        /**
         * 获取主播上下课记录
         * @param int             page             分页页码
         * @param int             size             每页数据个数
         * @param String         account         发起直播课程的合作方主播唯一账号或ID,非指定查询具体主播时不要填
         * @param int           accountType     主播账号类型。1 欢拓账户, 2 合作方账户
         * @return
         * @throws Exception
         */
        public String courseZhuboClassRecord(int page, int size, String account, int accountType) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("account", account);
            params.put("accountType", accountType);
            return this.call("course.zhubo.classRecord", params);
        }
        
        /**
         * 更新主播信息
         * @param String             account             发起直播课程的合作方主播唯一账号ID
         * @param String             nickname             主播昵称
         * @param String             intro                 主播简介
         * @param String             password             主播密码
         * @return
         * @throws Exception
         */
        public String courseZhuboUpdate(String account, String nickname, String intro, String password) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("nickname", nickname);
            params.put("intro", intro);
            params.put("password", password);
            return this.call("course.zhubo.update",params);
        }
        
        /**
         * 获取直播器启动协议
         * @param int         course_id         课程ID
         * @return
         * @throws Exception
         */
        public String courseLaunch(int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.launch",params);
        }
        
        /**
         * 发起提问
         * @param int       course_id      课程ID
         * @param string    content        提问内容
         * @param string    uid            用户ID
         * @param string    role           用户角色
         * @param string    nickname       用户昵称
         * @param array     options        可选参数
         */
        public String courseQaAdd(int course_id, String content, String uid, String role, String nickname, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("content", content);
            params.put("uid", uid);
            params.put("role", role);
            params.put("nickname", nickname);
            params.put("options", options);
            return this.call("course.qa.add", params);
        }
        
        /**
         * 审核通过提问
         * @param   int         qid        提问ID
         * @param   int         course_id  课程ID
         */
        public String courseQaAudit(int qid, int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("course_id", course_id);
            return this.call("course.qa.audit", params);
        }
        
        /**
         * 删除提问
         * @param int       qid        提问ID
         * @param int       course_id  课程ID
         */
        public String courseQaDelete(int qid, int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("course_id", course_id);
            return this.call("course.qa.delete", params);
        }
        
        /**
         * 回复提问
         * @param int       qid        提问ID
         * @param int       course_id  课程ID
         * @param string    content    提问内容
         * @param string    uid        用户ID
         * @param string    nickname   用户昵称
         * @param array     options    可选参数
         */
        public String courseQaAnswer(int qid, int course_id, String content, String uid, String nickname, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("qid", qid);
            params.put("course_id", course_id);
            params.put("content", content);
            params.put("uid", uid);
            params.put("nickname", nickname);
            params.put("options", options);
            return this.call("course.qa.answer", params);
        }
        
        /**
         * 获取问答列表
         * @param int   course_id      课程ID
         * @param int     page               页码
         * @param int     size               每页数量
         * @param array options        可选参数
         */
        public String courseQaList(int course_id, int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("course.qa.list", params);
        }
 
        /**
         * 上传课程封面图
         * @param  course_id  课程ID
         * @param  filename  图片路径(支持图片格式:jpg、jpeg,图片大小不超过2M)
         * @return
         * @throws Exception
         */
        public String courseThumbUpload(int course_id,String filename) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();            
            params.put("course_id", course_id);
            String res = this.call("course.getUploadThumbUrl",params);
            
            JSONObject resJson = JSONObject.fromObject(res);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                JSONObject resData = resJson.getJSONObject("data");
    
                File f;
                f = new File(filename);
                Part[] parts = {
                    new FilePart(resData.getString("field"),f)
                };
                
                return this.doPost(resData.getString("api"), parts);
            }
            return res;
        }
 
        /**
         * 按照课程ID获取私聊记录列表
         * @param  String   course_id   课程ID
         * @param  int      page        页码
         * @param  int      size        每页个数
         * @return
         */
        public String coursePrivateChatList(int course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.privateChat", params);
        }
 
        /**
         * 按照课程ID获取推流地址
         * @param  String   course_id   课程ID
         * @param  int      width       视频宽度
         * @param  int      height      视频高度
         * @return
         */
        public String coursePushRtmpUrl(int course_id, int width, int height) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("width", width);
            params.put("height", height);
            return this.call("course.pushRtmpUrl", params);
        }
 
        /**
         * 按照课程ID获取评分列表
         * @param  int   course_id   课程ID
         * @param  int      page        页码
         * @param  int      size        每页个数
         * @returnbi
         */
        public String courseScoreList(int course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.score.list", params);
        }
 
        /**
         *  设置课程拉流转播
         * @param int         course_id 课程id
         * @param string      pullUrl 源站拉流地址,为空测停止拉流转推
         * @return array
         */
        public String courseSetPullLive(int course_id, String pullUrl) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("pullUrl", pullUrl);
            return this.call("course.setPullLive", params);
        }
 
        /**
         *  获取课程拉流转播设置
         * @param int         course_id 课程id
         * @return array
         */
        public String courseGetPullLive(int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("course.getPullLive", params);
        }
 
 
        /**
         *  课程转播绑定
         * @param string         course_id 课程id
         * @param string         rebroCid 被转播的课程id
         * @return array
         */
        public String courseRebroAdd(String course_id,String rebroCid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("rebroCid", rebroCid);
            return this.call("course.rebro.add", params);
        }
 
 
 
        /**
         *  课程转播解绑
         * @param string         course_id 课程id
         * @param string         rebroCid 被转播的课程id
         * @return array
         */
        public String courseRebroDelete(String course_id,String rebroCid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("rebroCid", rebroCid);
            return this.call("course.rebro.delete", params);
        }
 
 
        /**
         * 用户踢出记录
         * @param  int page  页码
         * @param  int size 每页条数
         * @param  string uid  用户ID
         */
        public String memberBanLog(int page, int size , String uid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("uid", uid);
            return this.call("member.banLog", params);
        }
 
 
        /**
         * 用户踢出封禁
         * @param  int course_id  课程ID
         * @param  string uid  用户ID
         * @param  int duration 封禁时长,单位秒,默认3小时
         * @param  string ip 封禁的IP,不封IP的话传空字符串
         */
        public String memberBan(int course_id, String uid, int duration, String ip) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("duration", duration);
            params.put("ip", ip);
            return this.call("member.ban", params);
        }
 
        /**
         * 用户解封
         * @param  int course_id  课程ID
         * @param  string uid  用户ID
         * @param  string ip 解禁的IP,不解IP传空字符串
         */
        public String memberFree(int course_id, String uid, String ip) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("uid", uid);
            params.put("ip", ip);
            return this.call("member.free", params);
        }
        
        
        
        /**
         * 获取生活直播配置
         * @param int   course_id 直播id
         * @param object options   配置
         * @return
         */
        public String getLifeConfig(int course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.getLifeConfig", params);
        }
 
        /**
         * 编辑生活直播配置
         * @param int   course_id 直播id
         * @param object options   配置
         * @return
         */
        public String updateLifeConfig(int course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.updateLifeConfig", params, "POST", new HashMap<Object, Object>());
        }
        
        /**
         * 查询某月份峰值
         * @param String             date_time             查询月份(格式:2016-10)
         * @param int                 vtype                 类型(0为总计,1为直播,2为回放)
         * @return
         * @throws Exception
         */
        public String statsPeakMonth(String date_time, int vtype) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("date_time", date_time);
            params.put("vtype", vtype);
            return this.call("stats.peak.month",params);
        }
        
        /**
         * 查询某月份峰值
         * @param String             date_time             查询月份(格式:2016-10)
         * @param int                 vtype                 类型(0为总计,1为直播,2为回放)
         * @param int                 departmentId         部门id
         * @return
         * @throws Exception
         */
        public String statsPeakMonth(String date_time, int vtype, int departmentId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("date_time", date_time);
            params.put("vtype", vtype);
            params.put("departmentId", departmentId);
            return this.call("stats.peak.month",params);
        }
        
        /**
         * 查询某日峰值
         * @param String             date_time             查询日期(格式:2016-10-11)
         * @param int                 vtype                 类型(0为总计,1为直播,2为回放)
         * @return
         * @throws Exception
         */
        public String statsPeakDay(String date_time, int vtype) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("date_time", date_time);
            params.put("vtype", vtype);
            return this.call("stats.peak.day",params);
        }
        
        /**
         * 查询某月份峰值
         * @param String             date_time             查询日期(格式:2016-10-11)
         * @param int                 vtype                 类型(0为总计,1为直播,2为回放)
         * @param int                 departmentId         部门id
         * @return
         * @throws Exception
         */
        public String statsPeakDay(String date_time, int vtype, int departmentId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("date_time", date_time);
            params.put("vtype", vtype);
            params.put("departmentId", departmentId);
            return this.call("stats.peak.day",params);
        }
        
        /**
         * 上传文档
         * @param roomid        房间ID
         * @param file            文件 {"file":"文件路径","name":"文件名"}, 支持的课件格式为:ppt, pptx, doc, docx, pdf, jpg, jpeg, png, gif
         * @return
         * @throws Exception
         */
        public String documentUpload(String roomid,HashMap<String,String> file) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();            
            params.put("roomid", roomid);
            params.put("name", file.get("name"));    
            
            String res = this.call("document.uploadurl.get",params);
            
            JSONObject resJson = JSONObject.fromObject(res);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                JSONObject resData = resJson.getJSONObject("data");    
                
                File f;
                f = new File(file.get("file"));
                Part[] parts = {
                    new FilePart(resData.getString("field"),f)
                };
                
                return this.doPost(resData.getString("api"), parts);
            }
            return res;
        }
 
        /**
         * 课件下载地址
         * @param  intval id 开放平台的文档ID
         */
        public String documentDownload(int id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();            
            params.put("id", id);
            return this.call("document.downloadurl.get", params);
        }
 
        /**
         * 课件列表
         * @param  intval roomid 根据房间id获取课件列表
         */
        public String documentList(int roomid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("roomid", roomid);
            return this.call("document.list", params);
        }
 
        /**
         * 课件详细信息
         * @param  intval id 根据课件id获取课件详细信息
         */
        public String documentGet(int id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("id", id);
            return this.call("document.get", params);
        }
 
        /**
         * 第三方素材绑定(目前仅支持音视频)
         * @param  int bid 主播id。素材绑定的主播,同个素材只能绑定一个主播
         * @param  String name 素材名称
         * @param  String url 素材地址
         * @param  int filesize 素材大小
         * @param  int duration 素材时长
         * @param  String ext 素材类型
         * @param  String thumbnail 素材缩略图
         * @param  int courseId 课程id。素材绑定的课程,同个素材只能绑定一个课程
         * @param  int roomId 房间id。素材绑定的房间,同个素材只能绑定一个房间
         */
        public String documentThirdBinding(int bid, String name, String url, int filesize, int duration, String ext, int type, String thumbnail, int courseId, int roomId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("bid", bid);
            params.put("name", name);
            params.put("url", url);
            params.put("filesize", filesize);
            params.put("duration", duration);
            params.put("ext", ext);
            params.put("type", type);
            params.put("thumbnail", thumbnail);
            params.put("course_id", courseId);
            params.put("roomid", roomId);
            return this.call("document.thirdBinding", params);
        }
        
        /**
         * 创建部门
         * @param String  departmentName     部门名称
         */
        public String departmentCreate(String departmentName) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentName", departmentName);
            return this.call("department.create", params);
        }
        
        /**
         * 更新部门信息
         * @param  int         departmentId     部门id
         * @param  String     departmentName    部门名称
         */
        public String departmentUpdate(int departmentId, String departmentName) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentId", departmentId);
            params.put("departmentName", departmentName);
            return this.call("department.update", params);
        }
        
        /**
         * 删除部门 
         * @param  int     departmentId     部门id
         */
        public String departmentDelete(int departmentId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentId", departmentId);
            return this.call("department.delete", params);
        }
        
        /**
         * 获取部门信息 
         * @param     int     departmentId     部门id
         */
        public String departmentGet(int departmentId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentId", departmentId);
            return this.call("department.get", params);
        }
        
        /**
         * 批量获取部门信息 
         * @param     String[]     departmentIds     部门id数组
         */
        public String departmentGetBatch(String[] departmentIds) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentIds", departmentIds);
            return this.call("department.getBatch", params); 
        }
        
 
        /**
         * 批量更新部门回调地址
         * 
         * @param HashMap<String,String> callbackApis 部门回调地址 {"1":"http://www.talk-fun.com/","2":"https://www.talk-fun.com/"}
         */
        public String departmentUpdateCallbackApiBatch(HashMap<String,String> callbackApis) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("callbackApis", callbackApis);
            return this.call("department.updateCallbackApiBatch", params); 
        }
 
        /**
         * 部门设置最高在线
         * @param departmentId
         * @param options
         * @throws Exception
         */
        public String departmentMaxUserSet(int departmentId, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentId", departmentId);
            params.put("options", options);
            return this.call("department.maxUser.set", params);
        }
        
        public String departmentMaxUserGet(int departmentId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentId", departmentId);
            return this.call("department.maxUser.get", params);
        }
        
        /**
         * 获取视频上传地址
         * @param     String             account         主播帐号
         * @param     int             accountType     帐号类型
         * @param     String             title             视频标题
         * @param     String             md5             视频文件md5
         * @param     HashMap         options         可选参数
         * @return
         * @throws Exception
         */
        public String videoGetUploadUrl(String account, int accountType, String title, String md5, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("account", account);
            params.put("accountType", accountType);
            params.put("title", title);
            params.put("md5", md5);
            params.put("options", options);
            return this.call("video.getUploadUrl", params);
        }
        
        /**
         * 获取视频信息
         * @param     int         videoId         视频ID
         * @param     int         expire             视频有效期(单位:秒)
         * @return
         * @throws Exception
         */
        public String videoGet(int videoId, int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("videoId", videoId);
            params.put("expire", expire);
            return this.call("video.get", params);
        }
        
        /**
         * 批量获取视频信息
         * @param     int[]         videoIds         视频ID
         * @param     int         expire             视频有效期(单位:秒)
         * @return
         * @throws Exception
         */
        public String videoGetBatch(int[] videoIds, int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("videoIds", videoIds);
            params.put("expire", expire);
            return this.call("video.getBatch", params);
        }
 
        /**
         * 获取视频列表
         * @param     int         page             页码
         * @param     int         expire             视频有效期(单位:秒)
         * @return
         * @throws Exception
         */
        public String videoList(int page, int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("expire", expire);
            return this.call("video.list", params);
        }
        
        /**
         * 视频删除
         * @param int         videoId         视频ID
         * @return
         * @throws Exception
         */
        public String videoDelete(int videoId) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("videoId", videoId);
            return this.call("video.delete", params);
        }
        
        /**
         * 视频更新
         * @param int         videoId         视频ID
         * @param string     title             视频标题
         * @return
         * @throws Exception
         */
        public String videoUpdate(int videoId, String title) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("videoId", videoId);
            params.put("title", title);
            return this.call("video.update", params);
        }
        
        /**
         * 模块设置
         * @param HashMap         options         可选参数
         * @return
         * @throws Exception
         */
        public String moduleSet(HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            HashMap<Object,Object> files = new HashMap<Object,Object>();
            
            if (options.containsKey("livePcLogo")) {
                String path = options.get("livePcLogo").toString();
                
                File file = new File(path);
                if (!file.exists()) {
                    HashMap<Object,Object> retval = new HashMap<Object,Object>();
                    retval.put("code", CODE_FAIL);
                    retval.put("msg", "文件" + path + "不存在");
                    return JSONObject.fromObject(retval).toString();
                }
                
                files.put("livePcLogo", "@" + path);
                options.remove("livePcLogo");
            }
            
            if (options.containsKey("playbackPcLogo")) {
                String path = options.get("playbackPcLogo").toString();
                
                File file = new File(path);
                if (!file.exists()) {
                    HashMap<Object,Object> retval = new HashMap<Object,Object>();
                    retval.put("code", CODE_FAIL);
                    retval.put("msg", "文件" + path + "不存在");
                    return JSONObject.fromObject(retval).toString();
                }
                
                files.put("playbackPcLogo", "@" + path);
                options.remove("playbackPcLogo");
            }
            
            if (options.containsKey("clientLogo")) {
                String path = options.get("clientLogo").toString();
                
                File file = new File(path);
                if (!file.exists()) {
                    HashMap<Object,Object> retval = new HashMap<Object,Object>();
                    retval.put("code", CODE_FAIL);
                    retval.put("msg", "文件" + path + "不存在");
                    return JSONObject.fromObject(retval).toString();
                }
                
                files.put("clientLogo", "@" + path);
                options.remove("clientLogo");
            }
            
            if (options.containsKey("watermarkFile")) {
                String path = options.get("watermarkFile").toString();
                
                File file = new File(path);
                if (!file.exists()) {
                    HashMap<Object,Object> retval = new HashMap<Object,Object>();
                    retval.put("code", CODE_FAIL);
                    retval.put("msg", "文件" + path + "不存在");
                    return JSONObject.fromObject(retval).toString();
                }
                
                files.put("watermarkFile", "@" + path);
                options.remove("watermarkFile");
            }
            
            params.put("options", options);
            return this.call("module.set", params, "POST", files);
        }
        
        /**
         * 上传视频
         * @param     String         fileName         要上传的本地路径文件
         * @param     String         account         上传者ID
         * @param     int         accountType     帐号类型:1为欢拓帐号,2为第三方帐号
         * @param     String         title             视频标题
         * @param     String         nickname         上传者昵称
         * @param     String         accountIntro     上传者简介
         * @param    HashMap        course            课程参数,若不创建课程,请留空
         * @return
         * @throws Exception
         */
        public String videoUpload(String fileName, String account, int accountType, String title, String nickname, String accountIntro,HashMap<Object,Object> course) throws Exception {
            String retval = "";
            String fileMd5 = "";
            
            File file = new File(fileName);
            if (file.exists()) {
                fileMd5 = MD5Util.getFileMD5String(file);
            } else {
                retval = "{\"code\":" + com.qxueyou.scc.sdk.MTCloud.CODE_FAIL + ",\"msg\":\"文件不存在\"}";
                return retval;
            }
            
            HashMap<Object,Object> options = new HashMap<Object,Object>();
            options.put("nickname", nickname);
            options.put("accountIntro", accountIntro);
            options.put("course", course);
            
            retval = this.videoGetUploadUrl(account, accountType, title, fileMd5, options);
            JSONObject resJson = JSONObject.fromObject(retval);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS) {
                JSONObject resData = resJson.getJSONObject("data");
                String uploadUrl = resData.getString("uploadUrl");
                
                File f;
                f = new File(fileName);
                Part[] parts = {
                    new FilePart(resData.getString("field"), f)
                };
 
                int tryTime = 0;
                while(tryTime<2){
                    retval = this.doPost(uploadUrl, parts);
                    JSONObject retvalJson = JSONObject.fromObject(retval);
                    if(retvalJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                        break;
                    }
                    tryTime ++;
                }
                
                              
            } else if (resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_VIDEO_UPLOADED) {
                resJson.put("code", com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS);
                retval = resJson.toString();
            }
            
            return retval;
        }
        
        /**
         * 分段上传视频
         * @param     String         fileName         要上传的本地路径文件
         * @param     String         account         主播帐号
         * @param     int         accountType     帐号类型
         * @param     String         title             视频标题
         * @param     String         nickname         主播昵称
         * @param     String         accountIntro     主播简介
         * @param    HashMap        course            课程参数,若不创建课程,请留空
         * @return
         * @throws Exception
         */
        public String videoSegmentUpload(String fileName, String account, int accountType, String title, String nickname, String accountIntro, HashMap<Object,Object> course) throws Exception {
            String retval = "";
            String fileMd5 = "";
            
            File file = new File(fileName);
            if (file.exists()) {
                fileMd5 = MD5Util.getFileMD5String(file);
            } else {
                retval = "{\"code\":" + com.qxueyou.scc.sdk.MTCloud.CODE_FAIL + ",\"msg\":\"文件不存在\"}";
                return retval;
            }
            
            HashMap<Object,Object> options = new HashMap<Object,Object>();
            options.put("nickname", nickname);
            options.put("accountIntro", accountIntro);
            options.put("course", course);
            
            retval = this.videoGetUploadUrl(account, accountType, title, fileMd5, options);
            JSONObject resJson = JSONObject.fromObject(retval);
            if(resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS) {
                JSONObject resData = resJson.getJSONObject("data");
                String uploadUrl = resData.getString("resumeUploadUrl");
                String chunkListUrl = resData.getString("chunkListUrl");
                
                // 获取上传过的分片
                JSONArray chunkList = null;
                String chunkListRes = doGet(chunkListUrl);
                JSONObject chunkListJson = JSONObject.fromObject(chunkListRes);
                if(chunkListJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS) {
                    chunkList = chunkListJson.getJSONArray("data");
                }
 
                String fileSeparator = (new Properties(System.getProperties())).getProperty("file.separator");
                
                // 分割文件存储的临时目录
                File tempDir = new File(file.getParentFile().toString() + fileSeparator + "mtcloudTemp" + fileMd5 + fileSeparator);
                if (!tempDir.exists()) {
                    tempDir.mkdirs();
                }
                
                // 取得文件的大小
                long fileLength = file.length();
                int size = 1048576;
                
                // 取得被分割后的小文件的数目
                int num = (fileLength % size != 0) ? (int) (fileLength / size + 1) : (int) (fileLength / size);
                
                // 输入文件流,即被分割的文件
                FileInputStream in = new FileInputStream(file);
                // 读输入文件流的开始和结束下标
                long end = 0;
                int begin = 0;
                
                // 根据要分割的数目输出文件
                for (int i = 0; i < num; i++) {
                    boolean _continue = false;
                    
                    if (null != chunkList) {
                        for (int j = 0; j < chunkList.size(); ++j) {
                            StringBuilder sb = new StringBuilder();
                            sb.append(i+1);
                            String chunk = sb.toString();
                            
                            if (chunk.equals(chunkList.get(j).toString())) {
                                _continue = true;
                            }
                        }                        
                    }
                    
                    if (true == _continue) {
                        continue;
                    }
                    
                    // 对于前num - 1个小文件,大小都为指定的size
                    File outFile = new File(tempDir, file.getName());
                    
                    // 构建小文件的输出流
                    FileOutputStream out = new FileOutputStream(outFile);
 
                    // 将结束下标后移size
                    end += size;
                    end = (end > fileLength) ? fileLength : end;
                    // 从输入流中读取字节存储到输出流中
                    for (; begin < end; begin++) {
                        out.write(in.read());
                    }
                    out.close();
                    
                    Part[] parts = {
                        new FilePart("filedata", outFile),
                        new StringPart("chunk", (i+1) + ""),
                        new StringPart("chunks", num + ""),
                        new StringPart("md5", fileMd5),
                        new StringPart("chunkMd5", MD5Util.getFileMD5String(outFile))
                    };
 
                    int tryTime = 0;
                    while(tryTime<2){
                        retval = this.doPost(uploadUrl, parts);
                        JSONObject retvalJson = JSONObject.fromObject(retval);
                        if(retvalJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS){
                            break;
                        }
                        tryTime ++;
                    }
                    
                    parts = null;
                    System.gc();
                    
                    System.out.println(i);
                    System.out.println(outFile.delete());
                }
                
                in.close();
                
                tempDir.delete();
            } else if (resJson.getInt("code") == com.qxueyou.scc.sdk.MTCloud.CODE_VIDEO_UPLOADED) {
                resJson.put("code", com.qxueyou.scc.sdk.MTCloud.CODE_SUCCESS);
                retval = resJson.toString();
            }
            
            return retval;
        }
 
        /**
        *   获取课程峰值
        *   @param    int    course_id    课程ID
        *   @return
        */
        public String statsPeakCourse(int course_id) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            return this.call("stats.peak.course", params);
        }
 
        /**
        *   获取直播峰值
        *   @param    int    liveid    直播ID
        *   @return
        */
        public String statsPeakLive(int liveid) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("liveid", liveid);
            return this.call("stats.peak.live", params);
        }
        
        
        /**
         *   获取流量明细
         *   @param    string    date_time   开始日期,格式 Y-m-d
         *   @param    string    end_time   结束日期,格式 Y-m-d,如果传空,则默认为开始日期
         *   @param    int       vtype      直播或者点播(回放),1直播,2回放,其它值为获取全部
         *   @param    int       ctype      当vtype==2时,点播的类型,11 云点播,其它值为回放,传-1则获取所有
         *   @param    int       departmentID    部门ID,获取具体部门的统计。0为无部门;传-100为流量数据合计;-1为列出所有部门,以及合计
         *   @param    int       small      当vtype==2时,获取小班的回放流量,传1
         *   @return   成功返回格式 {"code": 0,"data": [{"vtype": "2","ctype": "9","cid": "844891","time": "2020-05-11","flow": 4.661,"departmentID":0},...]}
         */
        public String statsFlowList(String date_time, String end_time, int vtype, int ctype, int departmentID, int small) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("date_time", date_time);
            if(end_time != ""){
                params.put("end_time", end_time);
            }
            params.put("vtype", vtype);
            if(ctype != -1){
                params.put("ctype", ctype);
            }
            if(departmentID != -100){
                params.put("departmentID", departmentID);
            }
            params.put("small", small);
 
            return this.call("stats.flow.list", params);
        }
 
         /**
         *   获取流量总计
         *   @param    int       departmentID    部门ID,获取具体部门的统计,0为无部门,传-1为全部
         *   @return
         */
        public String statsPeakExpend(int departmentID) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            if(departmentID != -1){
                params.put("departmentID", departmentID);
            }
            return this.call("stats.flow", params);
        }
        
        /**
         *   获取音视频互动时长统计
         *   @param    string  start_time 开始日期,格式 Y-m-d,默认为7天前
         *   @param    string  end_time 开始日期,格式 Y-m-d,默认昨天,开时结束时间跨度不能超过31天
         *   @param    int  departmentID 部门ID,获取具体部门的统计,不传或传空值,则默认返回总计
         *   @return 成功时返回格式:{"code":0,"data":{"1v1":[{"date":"05-08","duration":31},{"date":"05-09","duration":89},...],"1v6":[{"date":"05-08","duration":96},...],"1v16":[{"date":"05-08","duration":96},...],"desktop":[{"date":"05-08","duration":175},...]}},duration时长单位为分钟
         */
         public String statsRtc(String start_time, String end_time, int departmentID) throws Exception {
             HashMap<Object,Object> params = new HashMap<Object,Object>();
             params.put("start_time", start_time);
             params.put("end_time", end_time);
             params.put("departmentID", departmentID);
             return this.call("stats.rtc", params);
         }
 
 
        /**
         * 自动登录到欢拓console后台
         * @param int         uid 欢拓后台管理员id
         * @param int         expire 自动登录地址的过期时间
         * @param string     target 登录成功后跳转的目标,形式:类型-ID
         *                       如跳到课程ID为"123456"的页面:course-123456
         * @return string     url 生成的自动登录地址
         */
        public String consoleAutoLogin(int uid, int expire, String target) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object, Object>();
            
            params.put("openID", this.openID.trim());
            
            Date date = new Date();
            long expire1 = date.getTime() / 1000 + expire;
            params.put("expire", expire1);
            params.put("id", uid);
            String url="http://console.talk-fun.com/?autologin="+uid+"-"+this.generateSign(params)+"-"+expire1;
            if(target != ""){
                url = url+"&target="+URLEncoder.encode(target,"UTF-8");
            }
 
            return url;
        }
 
        /**
         * 点赞记录
         * 
         * @param int course_id 课程id
         * @param int page 页码
         * @param int size 每页数量
         * @return
         */
        public String courseLikeRecord(int course_id,int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.likeRecord", params);
        }
 
 
        /**
        * 点播列表
        * @param int       page         页码
        * @param int       size         每页数量
        * @param HashMap options     其他参数,status:课程状态(0为正常状态,-1为已删除)
        * @return 
        */
        public String vodList(int page, int size, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("page", page);
            params.put("size", size);
            params.put("options", options);
            return this.call("course.vodList", params);
        }
 
        /**
        * 机器人发言
        * @param int     course_id      课程id
        * @param String nickname     机器人名称
        * @param String msg          发言
        * @return 
        */
        public String robotChatSend(int course_id, String nickname, String msg, String avatar) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("nickname", nickname);
            params.put("msg", msg);
            params.put("avatar", avatar);
            return this.call("course.robotChatSend", params);
        }
 
 
        /**
        *   根据课程ID获取生活直播邀请榜单列表
        *   @param int       course_id         课程id
        *   @param int       page                 页码
        *   @param int       size                 每页数量
        *   @return 
        */
        public String courseInviteRankList(int course_id,int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.inviteRankList", params);
        }
 
        /**
        *   根据课程ID、邀请人ID获取生活直播的被邀请人列表
        *   @param int       course_id         课程id
        *   @param int       xid                 邀请人用户id
        *   @param int       page                 页码
        *   @param int       size                 每页数量
        *   @return 
        */
        public String courseInviteRankDetailList(int course_id,int xid,int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("xid", xid);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.inviteRankDetailList", params);
        }
 
         /**
        *    渠道标识设置
        *     @param int           course_id         课程id
        *   @param HashMap     options         其他参数
        *   @return 
        */
        public String courseCtagsSet(int course_id, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("options", options);
            return this.call("course.ctagsSet", params);
        }
 
        /**
        *   点名列表
        *   @param int       course_id         课程id
        *   @param int       page                 页码
        *   @param int       size                 每页数量
        *   @return 
        */
        public String courseSignList(int course_id, int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.sign", params);
        }
 
        /**
        *   点名详情
        *   @param int       course_id         课程id
        *   @param int       signId             点名序列
        *   @param int       page                 页码
        *   @param int       size                 每页数量
        *   @return 
        */
        public String courseSignDetail(int course_id,int signId,int page, int size) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("signId", signId);
            params.put("page", page);
            params.put("size", size);
            return this.call("course.sign.detail", params);
        }
 
        /**
        *    商品添加
        *     @param int           departmentID     部门id
        *   @param HashMap     options         其他参数
        *   @return 
        */
        public String goodsAdd(int departmentID, HashMap<Object,Object> options) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("departmentID", departmentID);
            params.put("options", options);
            return this.call("goods.add", params);
        }
 
        /**
        *   回放有效期设置
        *   @param int       course_id         课程id
        *   @param int       enable             是否关闭回放,0关闭回放 ,1开启回放
        *   @param int       expire             回放有效期,0无限制,不大于30天
        *   @return 
        */
        public String coursePlaybackExpireSet(int course_id,int enable,int expire) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("course_id", course_id);
            params.put("enable", enable);
            params.put("expire", expire);
            return this.call("course.playback.setExpire", params);
        }
 
        /** 
         * 构造欢拓云签名
         * @param params 业务参数
         * @return string
         * @throws Exception 
         */
        public String generateSign(HashMap<Object, Object> params) throws Exception{
            params.remove("sign");        
            Object[] array = params.keySet().toArray();            
            java.util.Arrays.sort(array);
            String keyStr = "";
            for(int i=0;i<array.length;i++){
                String key = array[i].toString();
                keyStr += key+params.get(key);
            }
            keyStr += this.openToken.trim();
            return MD5.md5(keyStr);
            
        }
        
        public String call(String cmd,HashMap<Object, Object> params) throws Exception{
            HashMap<Object, Object> files = new HashMap<Object, Object>();
            
            return this.call(cmd, params,"GET",files);
        }
        
        //构造请求串
        public String call(String cmd,HashMap<Object, Object> params, String HttpMethod, HashMap<Object, Object> files) throws Exception{
            //构造系统参数
            HashMap<Object, Object> sysParams = new HashMap<Object, Object>();
            
            sysParams.put("openID", this.openID.trim());
            //获取时间戳
            Date date = new Date();
            long time = date.getTime() / 1000;
            String ts = time + "";
            sysParams.put("timestamp", ts);    
            sysParams.put("ver", this.version);
            sysParams.put("format", this.format);
            sysParams.put("cmd", cmd);
            sysParams.put("params", URLEncoder.encode(JSONObject.fromObject(params).toString(),"UTF-8"));
            //签名    
            sysParams.put("sign", generateSign(sysParams));    
            
            sysParams.putAll(files);
            String retval = "";
            
            if (HttpMethod == "POST") {
                
                
                Object[] array = sysParams.keySet().toArray();
                Part[] parts = new Part[array.length];
                for(int i=0;i<array.length;i++){
                    String key = array[i].toString();
                    
                    String value = (String) sysParams.get(key);
                    if (0 == value.indexOf("@")) {
                        File f;
                        f = new File(value.substring(1));
                        
                        parts[i] = new FilePart(key, f);
                    } else {
                        parts[i] = new StringPart(key, value);
                    }
                }
                
                retval = doPost(this.restUrl, parts);
            } else {
                //构造请求URL
                String resurl = "";
                if(this.debug){
                    System.out.println(sysParams);
                }
                resurl += this.restUrl + "?" + mapToQueryString(sysParams);
                if(this.debug){
                    System.out.println(resurl);
                }
                retval = doGet(resurl);
            }
 
            if(retval == null && this.restUrl != this.restUrl2){
                String tempUrl = this.restUrl;
                this.restUrl = this.restUrl2;
                retval = this.call(cmd, params, HttpMethod, files);
                this.restUrl = tempUrl;
            }
 
            return retval;
        }
        
        //GET请求
        public String doGet(String url) throws UnsupportedEncodingException {
            HttpClient client = new HttpClient();    //实例化httpClient
            HttpMethod method = new GetMethod(url);    //
            method.addRequestHeader("User-Agent", "MT-JAVA-SDK");
            try {
                client.executeMethod(method);        //执行        
 
                InputStream jsonStr;
 
                jsonStr = method.getResponseBodyAsStream();
 
                if (200 != method.getStatusCode() && this.restUrl != this.restUrl2) {
                    return null;
                }
 
                ByteArrayOutputStream   baos   =   new   ByteArrayOutputStream(); 
 
                int   i=-1; 
                while((i=jsonStr.read())!=-1){ 
                    baos.write(i); 
                }
 
                jsonStr.close();
                baos.close();
                method.releaseConnection();
 
                return new String(baos.toByteArray(), "UTF-8");
                
            } catch (HttpException e) {
                if(this.restUrl != this.restUrl2){
                    return null;
                } else {
                    e.printStackTrace();
                }                
                
            } catch (IOException e) {                
                if(this.restUrl != this.restUrl2){
                    return null;
                } else {
                    e.printStackTrace();
                }                
            }
 
            return null;
        }
            
        
        public String doPost(String url,Part[] parts) throws FileNotFoundException {
             PostMethod filePost = new PostMethod(url);
             filePost.addRequestHeader("User-Agent", "MT-JAVA-SDK");
              
              filePost.setRequestEntity(
                  new MultipartRequestEntity(parts, filePost.getParams())
                  );
              HttpClient client = new HttpClient();
              try {
                client.executeMethod(filePost);
                
                InputStream jsonStr;
 
                jsonStr = filePost.getResponseBodyAsStream();            
                    
                ByteArrayOutputStream   baos   =   new   ByteArrayOutputStream(); 
                
                int   i=-1; 
                while((i=jsonStr.read())!=-1){ 
                    baos.write(i); 
                }
                
                jsonStr.close();
                baos.close();
                filePost.releaseConnection();
 
                return new String(baos.toByteArray(), "UTF-8");
            } catch (HttpException e) {
                if(this.restUrl != this.restUrl2){
                    return null;
                } else {
                    e.printStackTrace();
                }                
                
            } catch (IOException e) {                
                if(this.restUrl != this.restUrl2){
                    return null;
                } else {
                    e.printStackTrace();
                }                
            }
            return null;
        }
        
        /**
        *   生成一个游客ID
        *   @return string
        */
        public UUID generateGuestId() throws Exception {
            UUID uuid = UUID.randomUUID();
            return uuid;
        }
 
        /**
        *   生成一個短地址
        *   @return string
        */
        public String generateShortUrl(String url) throws Exception {
            HashMap<Object,Object> params = new HashMap<Object,Object>();
            params.put("url", url);
            return this.call("utils.shorturl", params);
        }
        
        //将 map 中的参数及对应值转换为查询字符串
        private String mapToQueryString(HashMap<Object, Object> params){
            Object[] array = params.keySet().toArray();
            
            java.util.Arrays.sort(array);
            String str = "";
            for(int i = 0; i < array.length;i++){
                String key = array[i].toString();
                try {
                    if(i!=array.length-1){
                        
                            str += key+"="+URLEncoder.encode((String)params.get(key),"UTF-8")+"&";
                        
                    }else{
                        str += key+"="+URLEncoder.encode((String)params.get(key),"UTF-8");
                    }
                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                }
            }
            return str;
        }
        
        private String base64UrlEncode(String input) throws Exception{
            input = new String(Base64.encodeBase64(input.getBytes("UTF-8")));
            input = input.replace("=", "");
            input = input.replace("+", "-");
            input = input.replace("/", "_");
            return input;
        }  
        
        //MD5加密类
        private static class MD5 {
            private static char md5Chars[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
 
            public static String md5(String str) throws Exception {
                MessageDigest md5 = getMD5Instance();
                md5.update(str.getBytes("UTF-8"));
                byte[] digest = md5.digest();
                char[] chars = toHexChars(digest);
                return new String(chars);
            }
 
            private static MessageDigest getMD5Instance() {
                try {
                    return MessageDigest.getInstance("MD5");
                } catch (NoSuchAlgorithmException ignored) {
                    throw new RuntimeException(ignored);
                }
            }
 
            private static char[] toHexChars(byte[] digest) {
                char[] chars = new char[digest.length * 2];
                int i = 0;
                for (byte b : digest) {
                    char c0 = md5Chars[(b & 0xf0) >> 4];
                    chars[i++] = c0;
                    char c1 = md5Chars[b & 0xf];
                    chars[i++] = c1;
                }
                return chars;
            }
        }
            
        public static void main(String[] args){
            
        }
}