admin
2023-04-21 0b3a4aaf99ea251bc8e27b96115288f0988fcffe
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
//
//  YTHNetInterface.m
//  PapayaPlayerDaqo
//
//  Created by 味口 on 15-6-15.
//  Copyright (c) 2015年 wgj. All rights reserved.
//  1.首先需要实例化一个请求管理器AFHTTPRequestOperationManager.
//  2.设置请求的数据格式:默认是二进制.(不是可改)
//  *AFHTTPRequestSerializer(二进制)
//  *AFJSONRequestSerializer(JSON)
//  *AFPropertyListRequestSerializer(Plist)
//  3.设置响应的数据格式:默认是JSON.(不是可改)
//  *AFHTTPResponseSerializer(二进制)
//  *AFJSONResponseSerializer(JSON)
//  *AFPropertyListResponseSerializer(Plist)
//  *AFXMLParserResponseSerializer(XML)
//  *AFImageResponseSerializer(Image)
//  *AFCompoundResponseSerializer(组合的)
//  4.如果响应者的MIMEType不正确,就要修改acceptableContentTypes.
//  5.调用方法,发送响应的请求(GET/POST...).
//
 
 
#import "YTHNetInterface.h"
 
#define Version [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]  //build号
#define Package @"com.yeshi.buwanshequ.ios"  //相当于包名
//定义超时时间
#define time 20.0f
 
@interface YTHNetInterface()
 
//@property (nonatomic , strong) AFHTTPRequestOperationManager *manger;
 
@end
 
static YTHNetInterface * netInterface = nil;
static AFHTTPSessionManager *manger;
 
@implementation YTHNetInterface
 
//YTHNetInterface的单例方法
+ (YTHNetInterface *)startInterface{
    
    static dispatch_once_t token;
    dispatch_once(&token, ^{
        netInterface = [[YTHNetInterface alloc] init];
        manger = [AFHTTPSessionManager manager];
    });
    return  netInterface ;
}
 
#pragma mark 中断所有请求
- (void)cancelAll{
    [manger.operationQueue cancelAllOperations];
}
 
#pragma mark 获取当前的时间戳
- (long)getCurrentDate{
    NSDate *dat = [NSDate date];
    long a = (long)[dat timeIntervalSince1970];
    return a;
}
#pragma mark 时间戳
-(NSString *)getDate:(NSString *)date
{
    long long timeNum=[date longLongValue];
    NSDate *d = [[NSDate alloc]initWithTimeIntervalSince1970:timeNum/1000.0];
    
    NSDateFormatter *df = [[NSDateFormatter alloc] init];//格式化
    [df setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"] ];
    NSString * timeStr;
    
    //现在的时间
    NSTimeInterval timeNow = [[NSDate date] timeIntervalSince1970];
    NSTimeInterval XYRtime = timeNow-timeNum/1000;
    long temp=0;//临时变量
    if (XYRtime<60) {
        [df setDateFormat:@"HH:mm"];
        timeStr =[df stringFromDate:d];
        return [NSString stringWithFormat:@"刚刚 %@",timeStr];
    }else if((temp = XYRtime/60) <60){
        return [NSString stringWithFormat:@"%ld分钟前",temp];
    }else if((temp = temp/60) <24){
        return [NSString stringWithFormat:@"%ld小时前",temp];
    }else if ((temp = temp/24) <8){
        [df setDateFormat:@"HH:mm"];
        timeStr =[df stringFromDate:d];
        return [NSString stringWithFormat:@"%ld天前 %@",temp,timeStr];
    }else{
        [df setDateFormat:@"yyyy年MM月dd日 HH:mm"];
        timeStr =[df stringFromDate:d];
        return timeStr;
    }
}
 
#pragma mark 把json格式的字符串转换为字典格式
- (NSDictionary *)dictionaryWithJsonString:(NSString *)jsonString {
    if (jsonString == nil) {
        return nil;
    }
    
    NSData *jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
    NSError *err;
    NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:jsonData
                                                        options:NSJSONReadingMutableContainers
                                                          error:&err];
    if(err) {
        NSLog(@"json解析失败:%@",err);
        return nil;
    }
    return dic;
}
 
#pragma mark 网络Post请求
-(void)mangerPostWithURL:(NSString *)url WithMutableDictionary:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    manger.responseSerializer = [AFHTTPResponseSerializer serializer];
    manger.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/plain"];
    
    // 设置超时时间
    [manger.requestSerializer willChangeValueForKey:@"timeoutInterval"];
    manger.requestSerializer.timeoutInterval = time;
    [manger.requestSerializer didChangeValueForKey:@"timeoutInterval"];
    
    NSLog(@"请 求 链 接*************************************** {%@}",url);
    NSLog(@"请求输入参数************************************** %@",dic);
    [manger POST:url parameters:dic progress:^(NSProgress * _Nonnull uploadProgress) {
        
    } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        NSString *result = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
        NSLog(@"返回结果==============+++++++++++++++++{%@}",[NSString decrypt:result]);
        
        NSDictionary *dictionaryDta = [self dictionaryWithJsonString:[NSString decrypt:result]];
        
        NSLog(@"字典数据==============+++++++++++++++++%@",dictionaryDta);
        NSNumber *br = [dictionaryDta objectForKey:@"IsPost"];
        
        if (br && br.boolValue) {
            block(TRUE,dictionaryDta,@"请求成功");
        }else{
            block(FALSE,nil,[dictionaryDta objectForKey:@"Error"]);
        }
    }failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        NSString *lError = [error localizedDescription];
        block(FALSE,nil,lError);
        if ([error code] == -1009) {
//            [SVProgressHUD showErrorWithStatus:@"网络不可用,请检查网络"];
        }
        NSLog(@"返回异常==============-----------------%@",lError);
    }];
}
 
#pragma mark AFNETwork PSOT class 分类相关
- (void)postClassRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/class",domainHTTP];
    NSLog(@"%@",url);
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
 
#pragma mark AFNETwork PSOT recommend 推荐相关
- (void)postRecommendRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/recommend",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
 
- (void)postClaseeChangeRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/recommend",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
- (void)postHotSerchRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/user",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork PSOT User 用户相关
- (void)postUserRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/user",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
- (void)postUserRequestDataNewWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block {
    
    NSString *url = [NSString stringWithFormat:@"%@/user/getUserInfo",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork PSOT User 评论类
- (void)postThirdTypeRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/comment",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork POST User 关注类
- (void)postAttentionRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/attention",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork PSOT other 用户相关
- (void)postOtherRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/other",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork POST zhibo 直播
- (void)postzhiboRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/zhibo",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark 发现首页的
- (void)postFoundHomeRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/found",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
- (void)postFetchCommonConfig:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/config",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark 图文社
- (void)postFoundGraphicSocietyRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/news",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark 专题
- (void)postFoundSpecialRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/class",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark 统计发现页面广告的点击
- (void)ClickAd:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/ad",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
#pragma mark AFNetwork POST shop 商品
- (void)postshopRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/shop",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
- (void)postVideoClassRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/class",domainHTTP];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
- (void)postEventRequestDataWith :(NSString *) path :(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    
    NSString *url = [NSString stringWithFormat:@"%@/event/%@",domainHTTP,path];
    
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
 
#pragma mark AFNetwork POST pptv购买列表
- (void)pptvBuyRequestDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/video/play/getPPTVVIPVideoActivity",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
 
- (void)pptvVideoPlayStateDataWith:(NSMutableDictionary *)dic withBlock:(YthNetWorkBlock)block{
    NSString *url = [NSString stringWithFormat:@"%@/video/play/getPPTVVideoPlayState",domainHTTP];
    [self mangerPostWithURL:url WithMutableDictionary:dic withBlock:block];
}
/**
 *  分割=========================================================================================================================================================
 */
 
 
#pragma mark 获取用户
- (void)getUserWithDevice:(NSString *)device withSystem:(NSString *)system withblock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata userWithDevice:device withSystem:system];
    
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
        
    }];
}
 
#pragma mark 我的banner获取
- (void)getBannerWithUid:(NSString *)uid withSystem:(NSString *)system withblock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata BannerWithUid:uid withSystem:system];
    
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
        
    }];
}
 
 
#pragma mark 意见搜索
- (void)getSuggestSearchWithUid:(NSString *)uid withKey:(NSString *)key withSystem:(NSString *)system withPage:(NSString *)page withblock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata suggestSearchWithUid:uid withKey:key withSystem:system withPage:page];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
    
}
 
#pragma mark 搜索
- (void)getSerachWithUid:(NSString *)uid withKey:(NSString *)key withType:(NSString *)type withVideoType:(NSString *)vType withSystem:(NSString *)system  withPage:(NSString *)page withblock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata serachWithUid:uid withKey:key withType:type withVideoType:(NSString *)vType withSystem:system withPage:page];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
}
 
 
#pragma mark 热门搜索
- (void)getHotSerachWithUid:(NSString *)uid withSystem:(NSString *)system  withblock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata HotSerachWithUid:uid withSystem:system];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
}
#pragma mark 相关视频
- (void)getRelativeVideosWithUid:(NSString *)uid withVideoId:(NSString *)videoid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata RelativeVideosWithUid:uid withVideoId:videoid withSystem:system];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
}
 
#pragma mark 猜你喜欢
- (void)getGuessLikeWithUid:(NSString *)uid withVideoId:(NSString *)videoid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata guessLikeWithUid:uid withVideoId:videoid withSystem:system];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
}
#pragma mark 大家都在看
- (void)getPeopleSeeVideoWithUid:(NSString *)uid withVideoId:(NSString *)videoid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata PeopleSeeVideoWithUid:uid withVideoId:videoid withSystem:system];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data, nil);
        }else{
            block(FALSE, nil, error);
        }
    }];
    
}
 
#pragma mark 获取收藏的视频
- (void)getCollectedVideoWithUid:(NSString *)uid withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata CollectedVideoWithUid:uid withSystem:system withPage:page];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        }else{
            block (FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取我观看过的视频
- (void)getWatchHistoryWithUid:(NSString *)uid withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata WatchHistoryWithUid:uid withSystem:system  withPage:page];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data , nil);
            
        }else{
            block (FALSE, nil , error);
        }
    }];
}
 
 
 
#pragma mark  收藏与取消收藏 0取消收藏  1-收藏
- (void)getScoreCollectWithUid:(NSString *)uid withId:(NSString *)VideoId withThirdType:(NSString *)ThirdType WithType:(NSString *)type withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getScoreCollectWithUid:uid withId:VideoId withThirdType:ThirdType WithType:type withSystem:system];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE, data , nil);
            
        }else{
            block (FALSE, nil , error);
        }
    }];
}
 
 
/**
 *  分割=========================================================================================================================================================
 */
 
#pragma mark 小广告推广视图
- (void )getSpreadWithUid:(NSString *)uid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata SpreadWithUid:uid withSystem:system  ];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
 
#pragma mark 顶部推荐广告
- (void)getHomeAdWithUid:(NSString *)uid vtid:(NSString *)vtid withSystem:(NSString *)system   withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata HomeAdWithUid:uid vtid:vtid withSystem:system  ];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
//getRecommendCategoryVideoBanner
- (void)getRecommendCategoryVideoBannerWithUid:(NSString *)uid vtid:(NSString *)vtid withSystem:(NSString *)system   withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getRecommendCategoryVideoBannerWithUid:uid vtid:vtid withSystem:system  ];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 推荐分类
- (void)getHomeTypeWithUid:(NSString *)uid vtid:(NSString *)vtid withSystem:(NSString *)system DataKey:(NSString *)DataKey PageSize:(NSUInteger)PageSize Page:(NSUInteger)Page withBlock:(YthNetWorkBlock)block {
    NSMutableDictionary *dic = [YTHNetdata HomeTypeWithUid:uid vtid:vtid withSystem:system DataKey:DataKey PageSize:PageSize Page:Page];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
- (void)getVideoRecommendWithUid:(NSString *)vid Page:(NSUInteger)Page WithSystem:(NSString *)system withBlock:(YthNetWorkBlock)block {
    
    NSMutableDictionary *dic = [YTHNetdata videoClassChangeWithUid:[YTHsharedManger startManger].Uid vtid:vid withSystem:@"1" Page:Page];
    
    [self postClaseeChangeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
- (void)fetchHotSerchListWithUid:(YthNetWorkBlock)block {
    
    NSMutableDictionary *dic = [YTHNetdata hotSearch:[YTHsharedManger startManger].Uid withSystem:@"1"];
    
    [self postHotSerchRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 更多视频
- (void)getMoreVideoWithUid:(NSString *)uid withType:(NSString *)type withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata MoreVideoWithUid:uid withType:type withSystem:system withPage:page];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
    
}
 
 
#pragma mark 推荐下面的更多视频
- (void)getMoreHomeVideoWithUid:(NSString *)uid withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata MoreHomeVideoWithUid:uid withSystem:system withPage:page];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
 
#pragma mark 获取视频详情
/**
 *  获取视频详情
 *
 *  @param uid       用户ID
 *  @param movieId   视频ID
 *  @param ThirdType video中的thirdType
 *  @param system    默认为1
 *  @param block     返回的数据
 */
- (void)getVoideoDetailWithUid:(NSString *)uid withLoginUid:(NSString *)LoginUid withId:(NSString *)movieId withThirdType:(NSString *)ThirdType withSystem:(NSString *)system WithResourceId:(NSString *)ResourceId withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata VoideoDetailWithUid:uid  withLoginUid:LoginUid withId:movieId withThirdType:ThirdType withSystem:system withResourceId:ResourceId];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
            
        }
        
    }];
    
}
 
#pragma mark 获取是否被收藏
- (void)getIsCollectedWithUid:(NSString *)uid withId:(NSString *)VideoId withThirdType:(NSString *)ThirdType withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata getIsCollectedWithUid:uid withId:VideoId withThirdType:ThirdType withSystem:system];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
/**
 *  分割=========================================================================================================================================================
 */
 
#pragma mark 获取分类种类
- (void)getFirstChildTypeWithUid:(NSString *)uid withParentId:(NSString *)parentId withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata FirstChildType:uid withParentId:parentId withSystem:system];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
 
#define mark 获取热门频道
- (void)getHotTypeWithUid:(NSString *)uid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata HotType:uid withSystem:system];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark 获取分类视频
- (void)getVideoListWithUid:(NSString *)uid withPage:(NSString *)page withVideoType:(NSString *)videotype withOrder:(NSString *)order withSystem:(NSString *)system withCategoryType:(NSString *)CategoryType withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata VideoList:uid withPage:page withVideoType:videotype withOrder:order withSystem:system withCategoryType:(NSString *)CategoryType];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark 获取大分类推荐的banner
- (void)getRecommendCategoryVideoBannerWithUid:(NSString *)uid withVideoType:(NSString *)Type  withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata RecommendCategoryVideoBannerWithUid:uid withVideoType:Type withSystem:system];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark 获取大分类热榜
- (void)getRecommendCategoryVideoListWithUid:(NSString *)uid withVideoType:(NSString *)Type  withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata RecommendCategoryVideoListWithUid:uid withVideoType:Type withSystem:system];
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
    
}
 
 
#pragma mark 精彩频道
- (void)getClassWithUid:(NSString *)uid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata ClassWithUid:uid withSystem:system];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
 
#pragma mark 精彩频道视频
- (void)getClassVideoWithUid:(NSString *)uid withVideoType:(NSString *)videotype withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata ClassVideoWithUid:uid withVideoType:videotype withSystem:system withPage:page];
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
 
#pragma mark 热门明星
- (void)getHotStarsWithUid:(NSString *)uid withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata HotStarsWithUid:uid withSystem:system  withPage:page];
    
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
    
    
}
 
 
 
#pragma mark 热门明星视频
- (void)getHotStarsVideoWithUid:(NSString *)uid withStarId:(NSString *)starid withSystem:(NSString *)system  withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata HotStarsVideoWithUid:uid withStarId:starid withSystem:system  withPage:page];
    
    
    [self postClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
//==============================================================================other
 
 
#pragma mark 意见反馈
- (void)getadviceWithUid:(NSString *)uid withContent:(NSString *)Content withSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic = [YTHNetdata adviceWithUid:uid withContent:Content withSystem:system withPage:page];
    
    
    [self postOtherRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark  获取推荐上方的通知内容
 
- (void)getNoticeWithUid:(NSString *)uid withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata NoticeWithUid:uid withSystem:system];
    
    [self postOtherRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
 
#pragma mark 特殊url处理
- (void)getThirdVideoRequestWithUid:(NSString *)uid WithId:(NSString *)Id WithUrl:(NSString *)url WithStep:(NSString *)step WithData:(NSString *)data WithSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata ThirdVideoRequestWithUid:uid WithId:Id WithUrl:url WithStep:step WithData:data WithSystem:system];
    
    
    [self postOtherRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark 提交url得到真实视频url
- (void)getparseVideoUrlWithUid:(NSString *)uid WithId:(NSString *)Id WithVideoId:(NSString *)VideoId WithSystem:(NSString *)system WithType:(NSString *)Type WithResourceId:(NSString *)ResourceId WithEID:(NSString *)Eid withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata parseVideoUrlWithUid:uid WithId:Id WithVideoId:(NSString *)VideoId WithSystem:system WithType:Type WithResourceId:ResourceId WithEID:(NSString *)Eid];
    
    [self postRecommendRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
            
        }else{
            
            block(FALSE , nil , error);
        }
        
    }];
}
 
#pragma mark 空白请求
- (void)geturlWithUrl:(NSString *)url withBlock:(YthNetWorkBlock)block{
    AFHTTPSessionManager *manger1=[AFHTTPSessionManager manager];
    manger1.responseSerializer = [AFHTTPResponseSerializer serializer];
    manger1.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",@"application/json",@"text/plain",@"text/xml",@"text/h323",@"text/asa",@"text/asp",@"text/css",@"text/x-ms-odc",@"text/vnd.rn-realtext",@"text/x-vcard", nil];
    
    
    NSLog(@"%@",url);
    [manger1 GET:url parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) {
        
    } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        NSLog(@"返回结果==============+++++++++++++++++{%@}",responseObject);
        block(TRUE,responseObject,@"请求成功");
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        NSString *lError = [error localizedDescription];
        block(FALSE,nil,lError);
        NSLog(@"返回异常==============-----------------%@",lError);
    }];
    
}
 
 
#pragma mark 接口合集接口
- (void)getIntersectionWithUid:(NSString *)uid withId:(NSString*)Id withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata IntersectionWithUid:uid withId:Id withSystem:system];
    [self postOtherRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            
            NSDictionary *data = (NSDictionary *)result;
            
            block(TRUE , data , nil);
        }else{
            
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 用户第三方登录
-(void)getThirdPartyWithWithUid:(NSString *)uid withOpenId:(NSString *)openId WithName:(NSString *)name WithPortrait:(NSString *)Portrait WithLoginType:(NSString *)LoginType withSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata ThirdPartyWithUid:uid withOpenId:openId WithName:name WithPortrait:Portrait WithLoginType:LoginType withSystem:system];
    [self postThirdTypeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            //在这里设置了————————LoginUid
            NSString *LoginUid=[NSString stringWithFormat:@"%@",[[data objectForKey:@"Data"] objectForKey:@"LoginUid"]];
            [[NSUserDefaults standardUserDefaults] setObject:LoginUid forKey:@"LoginUid"];
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 发送验证码
-(void)getsendVerifyCodeWithUid:(NSString *)uid WithSystem:(NSString *)system WithEmail:(NSString *)Email  withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata sendVerifyCodeWithUid:uid WithSystem:system WithEmail:Email];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 注册
-(void)getRegisterWithUid:(NSString *)uid WithSystem:(NSString *)system WithEmail:(NSString *)Email WithPwd:(NSString *)Pwd WithNickName:(NSString *)NickName WithVerifyCode:(NSString *)VerifyCode WithPortrait:(NSString *)Portrait withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata registerWithUid:uid WithSystem:system WithEmail:Email WithPwd:Pwd WithNickName:NickName WithVerifyCode:VerifyCode WithPortrait:Portrait];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 邮箱登录
-(void)getloginWithUid:(NSString *)uid WithSystem:(NSString *)system WithEmail:(NSString *)Email WithPwd:(NSString *)Pwd withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata loginWithUid:uid WithSystem:system WithEmail:Email WithPwd:Pwd];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 修改个人信息
-(void)getupdateLoginUserInfoWithUid:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid WithSex:(NSString *)sex WithBirthDay:(NSString *)birthday WithPersonalSign:(NSString *)PersonalSign WithNickName:(NSString *)NickName WithPortrait:(NSString *)Portrait withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata updateLoginUserInfoWithUid:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid WithSex:(NSString *)sex WithBirthDay:(NSString *)birthday WithPersonalSign:(NSString *)PersonalSign WithNickName:(NSString *)NickName WithPortrait:(NSString *)Portrait];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取个人信息
-(void)getLoginUserInfoWithUid:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid withBlock:(YthNetWorkBlock)block {
    
    NSMutableDictionary *dic = [YTHNetdata LoginUserInfoWithUid:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid];
    
    [self postUserRequestDataNewWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 重置密码
-(void)getsetPwdWithUid:(NSString *)uid WithSystem:(NSString *)system WithEmail:(NSString *)Email WithPwd:(NSString *)Pwd WithVerifyCode:(NSString *)VerifyCode withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata setPwdWithUid:(NSString *)uid WithSystem:(NSString *)system WithEmail:(NSString *)Email WithPwd:(NSString *)Pwd WithVerifyCode:(NSString *)VerifyCode];
    [self postUserRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取视频评论列表
-(void)getVideoCommentListWithUid:(NSString *)uid WithVideoId:(NSString*)Id WithThirdType:(NSString *)thirdType WithPage:(NSString *)page WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata CommentListWithUid:uid withVideoId:Id withThirdType:thirdType WithPage:page withSystem:system];
    [self postThirdTypeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取别人对我的评论
-(void)getMyCommentReplyWithUid:(NSString *)uid WithPage:(NSString *)page WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata CommentReplyWithUid:uid withPage:page WithSystem:system];
    [self postThirdTypeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 回复评论
-(void)getreplayCommentWithUid:(NSString *)uid WithcommentReplayId:(NSString *)commentReplayId WithCommentId:(NSString *)commentId WithContent:(NSString *)content WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata replayCommentWithUid:uid withcommentReplayId:commentReplayId WithCommentId:commentId WithContent:content withSystem:system];
    [self postThirdTypeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 评论
-(void)getreplayCommentWithUid:(NSString *)uid WithVideoId:(NSString *)VideoId withThirdType:(NSString *)thirfType WithContent:(NSString *)content WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata replayCommentWithUid:uid WithVideoId:VideoId withThirdType:thirfType WithContent:content WithSystem:system];
    [self postThirdTypeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 添加关注
-(void)addAttentionWithUid:(NSString *)uid WithVideoId:(NSString *)VideoId WithLoginUid:(NSString *)LoginUid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata addAttentionWithUid:uid WithVideoId:VideoId WithLoginUid:LoginUid WithSystem:system];
    [self postAttentionRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 取消关注
-(void)cancelAttentionWithUid:(NSString *)uid WithVideoId:(NSString *)VideoId WithLoginUid:(NSString *)LoginUid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata cancelAttentionWithUid:uid WithVideoId:VideoId WithLoginUid:LoginUid WithSystem:system];
    [self postAttentionRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取关注列表
-(void)getAttentionListWithUid:(NSString *)uid WithPage:(NSString *)Page WithLoginUid:(NSString *)LoginUid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getAttentionListWithUid:uid WithPage:Page WithLoginUid:LoginUid WithSystem:system];
    [self postAttentionRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获取关注动态
-(void)getAttentionUpdateListWithUid:(NSString *)uid WithPage:(NSString *)Page WithLoginUid:(NSString *)LoginUid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getAttentionUpdateListWithUid:uid WithPage:Page WithLoginUid:LoginUid WithSystem:system];
    [self postAttentionRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获得 发现 的banner
-(void)getFoundHomeBanner:(NSString *)uid   WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic=[YTHNetdata getFoundHomeBanner:uid  WithSystem:system];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获得 发现 的明星
-(void)getFoundHomeStars:(NSString *)uid  WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic=[YTHNetdata getFoundHomeStars:uid WithSystem:system];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark - 首页底部明星
-(void)getHotStarMainList:(NSString *)uid  WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic=[YTHNetdata getHotStarMainList:uid WithSystem:system];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获得 发现 的图文
-(void)getFoundHomeMapchar:(NSString *)uid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic=[YTHNetdata getFoundHomeMapchar:uid WithSystem:system];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
- (void)getFoundGuessLike:(NSMutableDictionary *)dic WithBlock:(YthNetWorkBlock)block{
    NSString *sign;
    sign = [NSString stringWithFormat:@"%@%@%@",@"guessLike",[[UIDevice currentDevice].identifierForVendor UUIDString],@"1"];
 
    [dic setObject:[NSString md5:sign] forKey:@"Sign"];
    [dic setObject:@"ios" forKey:@"Platform"];
    [dic setObject:Version forKey:@"Version"];
    [dic setObject:Package forKey:@"Package"];
    [dic setObject:@"1" forKey:@"System"];
    [dic setObject:[[UIDevice currentDevice].identifierForVendor UUIDString] forKey:@"Device"];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
- (void)fetchCommenConfig:(NSMutableDictionary *)dic WithBlock:(YthNetWorkBlock)block {
    NSString *sign;
    sign = [NSString stringWithFormat:@"%@%@%@",@"getConfig",[[UIDevice currentDevice].identifierForVendor UUIDString],@"1"];
 
    [dic setObject:[NSString md5:sign] forKey:@"Sign"];
    [dic setObject:@"ios" forKey:@"Platform"];
    [dic setObject:Version forKey:@"Version"];
    [dic setObject:Package forKey:@"Package"];
    [dic setObject:@"1" forKey:@"System"];
    [dic setObject:[[UIDevice currentDevice].identifierForVendor UUIDString] forKey:@"Device"];
    [self postFetchCommonConfig:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 获得 发现 的应用汇
-(void)getFoundHomeApp:(NSString *)uid  WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    
    NSMutableDictionary *dic=[YTHNetdata getFoundHomeApp:uid WithSystem:system];
    [self postFoundHomeRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark  图文社
-(void)getFoundGraphicSociety:(NSString *)uid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getFoundGraphicSociety:uid WithSystem:system];
    [self postFoundGraphicSocietyRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark  图文社单路新闻
-(void)getFoundLinefornew:(NSString *)uid  withPage:(NSString*)page withType:(NSString*)Type WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getFoundLinefornew:uid withPage:page withType:Type  WithSystem:system];
    [self postFoundGraphicSocietyRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark  专题列表
-(void)getFoundSpecialList:(NSString *)uid  withPage:(NSString *)page WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getFoundSpecialList:uid withPage:page  WithSystem:system];
    [self postFoundSpecialRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark  单个专题
-(void)getFoundOnlySpecial:(NSString *)uid  withPage:(NSString *)page WithId:(NSString *)Id WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getFoundOnlySpecial:uid withPage:page WithId:Id  WithSystem:system];
    [self postFoundSpecialRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark  统计发现页面广告的点击
-(void)UploadClickAD:(NSString*)uid WithSystem:(NSString *)system withId:(NSString *)Id WithPid:(NSString *)Pid WithType:(NSString*)Type WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata UploadClickAD:uid WithSystem:system WithId:Id WithPid:Pid WithType:Type];
    [self ClickAd:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
/**
 *  分割=========================================================================================================================================================
 */
#pragma mark   获取Top10排行
-(void)getTopWithUid:(NSString*)uid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata TopWithUid:uid WithSystem:system];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   获取最新上线
-(void)getNewListWithUid:(NSString*)uid WithSystem:(NSString *)system withPage:(NSString *)page WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata NewListWithUid:uid withPage:page WithSystem:system];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   主播点击统计
-(void)addStatisticsWithUid:(NSString*)uid WithSystem:(NSString *)system WithType:(NSString *)Type WithRoomId:(NSString *) RoomId WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata addStatisticsWithUid:uid WithSystem:system WithType:Type WithRoomId:RoomId];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   获取热门直播
-(void)getHotLiveWithUid:(NSString*)uid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getHotLiveWithUid:uid WithSystem:system];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   获取直播类别
-(void)getAllLiveTypeWithUid:(NSString*)uid WithSystem:(NSString *)system WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getAllLiveTypeWithUid:uid WithSystem:system];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   获取直播列表
-(void)getLiveListWithUid:(NSString*)uid WithSystem:(NSString *)system withPage:(NSString *)page WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getLiveListWithUid:uid WithSystem:system withPage:page];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark   专题类别
-(void)getLiveListByTypeWithUid:(NSString*)uid WithSystem:(NSString *)system WithType:(NSString *)Type withPage:(NSString *)page WithBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic=[YTHNetdata getLiveListByTypeWithUid:uid WithSystem:system WithType:Type withPage:page];
    [self postzhiboRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
/**
 *  分割=========================================================================================================================================================
 */
 
#pragma mark 获取商品列表
-(void)getGoodsItemListWithUid:(NSString *)uid WithSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getGoodsItemListWithUid:uid WithSystem:system withPage:page];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 获取商品详情
-(void)getGoodsItemDetailWithUid:(NSString *)uid WithSystem:(NSString *)system withId:(NSString *)Id withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getGoodsItemDetailWithUid:uid WithSystem:system withId:Id];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 获取评论列表
-(void)getCommentListWithUid:(NSString *)uid WithSystem:(NSString *)system withId:(NSString *)Id withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getCommentListWithUid:uid WithSystem:system withId:Id withPage:page];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 发表评论
-(void)addCommentWithUid:(NSString *)uid WithSystem:(NSString *)system withId:(NSString *)Id withLoginUid:(NSString *)LoginUid withContent:(NSString *)Content withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata addCommentWithUid:uid WithSystem:system withId:Id withLoginUid:LoginUid withContent:Content];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 添加收藏
-(void)addCollectWithUid:(NSString *)uid WithSystem:(NSString *)system withId:(NSString *)Id withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata addCollectWithUid:uid WithSystem:system withId:Id];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 取消收藏
-(void)cancelCollectWithUid:(NSString *)uid WithSystem:(NSString *)system withId:(NSString *)Id withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata cancelCollectWithUid:uid WithSystem:system withId:Id];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
#pragma mark 商品收藏列表
-(void)getCollectListWithUid:(NSString *)uid WithSystem:(NSString *)system withPage:(NSString *)page withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata getCollectListWithUid:uid WithSystem:system withPage:page];
    [self postshopRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark - 精选
-(void)getVideoClassWithUid:(NSString *)uid WithSystem:(NSString *)system withBlock:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [YTHNetdata videoClassWithUid:uid withSystem:system];
    [self postFoundSpecialRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
        }else{
            block(FALSE , nil , error);
        }
    }];
    
//    [self postVideoClassRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
//        if (isSuccessful) {
//            NSDictionary *data = (NSDictionary *)result;
//            block(TRUE , data , nil);
//        }else{
//            block(FALSE , nil , error);
//        }
//    }];
}
 
- (void)fetchPptvBuyResult:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid url:(NSString *)url vid:(NSString *)vid cid:(NSString *)cid withBlock:(YthNetWorkBlock)block {
    
    NSMutableDictionary *dic = [YTHNetdata pptvVIPVideoActivityWithUid:uid withSystem:system WithLoginUid:loginUid url:url vid:vid cid:cid];
    
    [self pptvBuyRequestDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        } else {
            block(FALSE , nil , error);
        }
    }];
}
 
- (void)fetchPPTVVideoPlayStateWith:(NSString *)uid WithSystem:(NSString *)system WithLoginUid:(NSString *)loginUid url:(NSString *)url vid:(NSString *)vid cid:(NSString *)cid withBlock:(YthNetWorkBlock)block {
    
    NSMutableDictionary *dic =  [YTHNetdata pptvVideoPlayStateWithUid:uid withSystem:system WithLoginUid:loginUid vid:vid cid:cid];
    
    [self pptvVideoPlayStateDataWith:dic withBlock:^(BOOL isSuccessful, id result, NSString *error) {
        if (isSuccessful) {
            NSDictionary *data = (NSDictionary *)result;
            block(TRUE , data , nil);
            
        } else {
            block(FALSE , nil , error);
        }
    }];
}
 
#pragma mark 抖音内容联盟数据上报
- (void)readNewsEvent:(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [NSMutableDictionary new];
    
    NSMutableDictionary *params=  [YTHNetdata baseParams: dic];
    
    [self postEventRequestDataWith:@"readNews" :params withBlock:block];
}
- (void)playDrawVideoEvent:(NSString *)source :(NSString *)from :(YthNetWorkBlock)block{
    NSMutableDictionary *dic = [NSMutableDictionary new];
    [dic setValue:source forKey:@"Source"];
    [dic setValue:from forKey:@"From"];
    
    NSMutableDictionary *params=  [YTHNetdata baseParams: dic];
    
    [self postEventRequestDataWith:@"playDrawVideo" :params withBlock:block];
}
 
- (void)readNovelEvent:(NSUInteger *)duration :(YthNetWorkBlock)block{
    if(duration<=0)
        return;
    NSMutableDictionary *dic = [NSMutableDictionary new];
    [dic setValue:[[NSNumber numberWithInteger:duration] stringValue]  forKey:@"Duration"];
    
    NSMutableDictionary *params=  [YTHNetdata baseParams: dic];
    
    [self postEventRequestDataWith:@"readNovel" :params withBlock:block];
}
 
 
 
 
 
@end