//
//  TDGroupInfoDetailVC.m
//  smartRhino
//
//  Created by niuzhen on 2019/12/13.
//  Copyright © 2019 tederen. All rights reserved.
//

#import "TDGroupInfoDetailVC.h"
#import "TDGroupInfoDetailCell.h"
#import "MyTDGroupView.h"
#import "TDGroupInfoListModel.h"
#import "TDGroupQrcodeVC.h"
#import "TDGroupInfoChangeVc.h"
#import "ChatGroupAddVC.h"
#import "MailListDetailVC.h"
#import "TDGroupRoleVC.h"
#import "TDGroupLabelVC.h"

@interface TDGroupInfoDetailVC ()<UITableViewDelegate,UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (weak, nonatomic) IBOutlet UILabel     *titleL;
@property (weak, nonatomic) IBOutlet UIView      *HeadView;
@property (strong, nonatomic)NSMutableArray             *dataArray;
@property (strong, nonatomic) MyTDGroupView             *SearchView;
@property (strong, nonatomic)TDGroupInfoListModel       *listModel;
@end

@implementation TDGroupInfoDetailVC
+(TDGroupInfoDetailVC *)initTDGroupInfoDetailVC{
    TDGroupInfoDetailVC *controller = [StoryboardManager.shared.TDGroup instantiateViewControllerWithIdentifier:@"TDGroupInfoDetailVC"];
    return controller;
}
- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self getData];
}
- (void)viewDidLoad {
    [super viewDidLoad];
    self.fd_prefersNavigationBarHidden = YES;
    [self.HeadView addSubview:self.SearchView];
    [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.mas_offset(6);
        make.left.right.mas_equalTo(self.HeadView);
        make.height.mas_offset(36);
    }];
    [self.SearchView.button setAction: ^{
        NSLog(@"SearchView");
    }];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showMessage) name:GROUPADDMESSAGE object:nil];
}
- (MyTDGroupView *)SearchView
{
    if (!_SearchView) {
        _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
    }
    return _SearchView;
}
- (void)getData
{
    [self.dataArray removeAllObjects];
    WS(weakSelf);
    [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Detail) parameters:@{@"GroupId":@(self.GroupId)} responseStyle:JOSN success:^(id  _Nonnull responseObject) {
        NSLog(@"%@",responseObject);
        weakSelf.listModel = [TDGroupInfoListModel modelWithDictionary:responseObject];
        weakSelf.dataArray = [NSMutableArray arrayWithArray:weakSelf.listModel.GroupUserListResult];
        if (weakSelf.upDateTitleBolck) {
            weakSelf.upDateTitleBolck(weakSelf.listModel.Name);
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf.tableView reloadData];
        });
    } failure:^(NSError * _Nonnull error) {
        
    }];
}

- (NSMutableArray *)dataArray
{
    if (!_dataArray) {
        _dataArray = [NSMutableArray array];
    }
    return _dataArray;
}
#pragma mark - UITableViewDelegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (section == 0) {
        switch (self.listModel.GroupUserRoleId) {
            case 1:
                return 5;
                break;
            case 2:
                return 5;
                break;
            default:
                return 3;
                break;
        }
    }else{
        return self.dataArray.count;
    }
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    WS(weakSelf);
    if (indexPath.section == 0) {
        switch (self.listModel.GroupUserRoleId) {
            case 1:
            {
                switch (indexPath.row) {
                    case 0:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell0:tableView indexPath:indexPath];
                        [cell.cell0ImgV sd_setImageWithURL:[NSURL URLWithString:self.listModel.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
                        cell.cell0TitleL.text = self.listModel.Name;
                        return cell;
                    }
                        break;
                    case 1:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组信息";
                        return cell;
                    }
                        break;
                    case 2:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组标签";
                        return cell;
                    }
                        break;
                    case 3:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组权限";
                        return cell;
                    }
                        break;
                    default:
                    {
                        ChatGroupAddVC *vc = [[ChatGroupAddVC alloc] init];
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell3:tableView indexPath:indexPath];
                        cell.cell3TitleL.text = @"添加成员";
                        [cell.cell3AddBtn setAction:^{
                            Department *defaltGroupSetion = [[Department alloc]init];
                            defaltGroupSetion.Name  = @"单位通讯录";
                            defaltGroupSetion.Id = 0;
                            
                            Department *myGroupSetion = [[Department alloc]init];
                            myGroupSetion.Name  = @"自建通讯录";
                            defaltGroupSetion.Id = 0;
                            
                            vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
                            vc.isDefalutPage = 1;
                            vc.type = AddGroupUser;
                            vc.Id = weakSelf.listModel.Id;
                            NSMutableArray * array = [NSMutableArray array];
                            for (TDGroupInfoModel * model in self.dataArray) {
                                SelectModel * smodel = [[SelectModel alloc] init];
                                smodel.UserId = model.UserId;
                                smodel.UserName = model.Name;
                                [array addObject:smodel];
                            }
                            vc.grouperArray = array;
                            [weakSelf.navigationController pushViewController:vc animated:YES];
                        }];
                        return cell;
                    }
                        break;
                }
            }
                break;
            case 2:
            {
                switch (indexPath.row) {
                    case 0:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell0:tableView indexPath:indexPath];
                        [cell.cell0ImgV sd_setImageWithURL:[NSURL URLWithString:self.listModel.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
                        cell.cell0TitleL.text = self.listModel.Name;
                        return cell;
                    }
                        break;
                    case 1:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组信息";
                        return cell;
                    }
                        break;
                    case 2:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组标签";
                        return cell;
                    }
                        break;
                    case 3:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组权限";
                        return cell;
                    }
                        break;
                    default:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell3:tableView indexPath:indexPath];
                        cell.cell3TitleL.text = @"添加成员";
                        [cell.cell3AddBtn setAction:^{
                            Department *defaltGroupSetion = [[Department alloc]init];
                            defaltGroupSetion.Name  = @"单位通讯录";
                            defaltGroupSetion.Id = 0;
                            
                            Department *myGroupSetion = [[Department alloc]init];
                            myGroupSetion.Name  = @"自建通讯录";
                            defaltGroupSetion.Id = 0;
                            
                            ChatGroupAddVC *vc = [[ChatGroupAddVC alloc] init];
                            vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
                            vc.isDefalutPage = 1;
                            vc.type = AddGroupUser;
                            vc.Id = weakSelf.listModel.Id;
                            NSMutableArray * array = [NSMutableArray array];
                            for (TDGroupInfoModel * model in self.dataArray) {
                                SelectModel * smodel = [[SelectModel alloc] init];
                                smodel.UserId = model.UserId;
                                smodel.UserName = model.Name;
                                [array addObject:smodel];
                            }
                            vc.grouperArray = array;
                            [weakSelf.navigationController pushViewController:vc animated:YES];
                        }];
                        return cell;
                    }
                        break;
                }
            }
                break;
            default:
            {
                switch (indexPath.row) {
                    case 0:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell0:tableView indexPath:indexPath];
                        [cell.cell0ImgV sd_setImageWithURL:[NSURL URLWithString:self.listModel.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
                        cell.cell0TitleL.text = self.listModel.Name;
                        return cell;
                    }
                        break;
                    case 1:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组信息";
                        return cell;
                    }
                        break;
                    default:
                    {
                        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell1:tableView indexPath:indexPath];
                        cell.cell1TitleL.text = @"小组标签";
                        return cell;
                    }
                        break;
                }
            }
                break;
        }
    }else{
        TDGroupInfoModel * model = [self.dataArray objectAtIndex:indexPath.row];
        TDGroupInfoDetailCell *cell = [TDGroupInfoDetailCell configCell4:tableView indexPath:indexPath];
        [cell.cell4imgV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
        cell.cell4NameL.text = model.Name;
        switch (model.GroupUserRoleId) {
            case 1:
            {
                cell.cell4LevelL.hidden = NO;
                cell.cell4LevelL.text = @"创建者";
                cell.cell4LevelL.backgroundColor = UIColorHex(#3979D3);
            }
                break;
            case 2:
            {
                cell.cell4LevelL.hidden = NO;
                cell.cell4LevelL.text = @"管理员";
                cell.cell4LevelL.backgroundColor = UIColorHex(#FF9503);
            }
                break;
            default:
            {
                cell.cell4LevelL.hidden = YES;
            }
                break;
        }
        cell.cell4subL.text = model.DepartmentName;
        cell.cell4TimeL.text = nil;
        return cell;
    }
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 65.f;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    if (section == 0) {
           return 0.01f;
       }
       return 35.f;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return 0.01f;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    if (section == 0) {
        return [UIView new];
    }else{
        UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 35)];
        view.backgroundColor = UIColorHex(#F0EFF4);
        UILabel * label = [UILabel new];
        NSString * str = [NSString stringWithFormat:@"成员:%ld人,话题:%ld",(long)self.listModel.GroupUserNumber,(long)self.listModel.GroupTopicNumber];
        NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:str attributes:@{NSFontAttributeName: [UIFont fontWithName:@"PingFang SC" size: 13],NSForegroundColorAttributeName : UIColorHex(#666666)}];
        label.attributedText = string;
        [view addSubview:label];
        [label mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_offset(@15);
            make.centerY.mas_equalTo(view);
        }];
        return view;
    }
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    WS(weakSelf);
    if (indexPath.section == 0) {
        switch (indexPath.row) {
            case 0:
            {
                if (self.listModel.GroupUserRoleId == 1) {
                    TDGroupInfoChangeVc * vc = [TDGroupInfoChangeVc initTDGroupInfoChangeVc];
                    vc.model = self.listModel;
                    [self.navigationController pushViewController:vc animated:YES];
                }
            }
                break;
            case 1:
            {
                TDGroupQrcodeVC * vc= [TDGroupQrcodeVC initTDGroupQrcodeVC];
                vc.isCreate = NO;
                vc.model = self.listModel;
                [self.navigationController pushViewController:vc animated:YES];
            }
                break;
            case 2:
            {
                TDGroupLabelVC * vc= [TDGroupLabelVC initTDGroupLabelVC];
                vc.labelName = self.listModel.LabelName;
                vc.Id = self.listModel.Id;
                vc.refreshBlock = ^{
                    [weakSelf getData];
                };
                [self.navigationController pushViewController:vc animated:YES];
            }
                break;
            case 3:
            {
                TDGroupRoleVC * vc= [TDGroupRoleVC initTDGroupRoleVC];
                vc.model = self.listModel;
                vc.refreshBlock = ^{
                    [weakSelf getData];
                };
                [self.navigationController pushViewController:vc animated:YES];
            }
                break;
            default:
                break;
        }
    }else{
        TDGroupInfoModel * model = [self.dataArray objectAtIndex:indexPath.row];
        MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
        vc.indexId = model.UserId;
        [self.navigationController pushViewController:vc animated:YES];
    }
}
#pragma mark - UISwitch - event
- (void)NeedAgree
{
    WS(weakSelf);
    NSString * url = [NSString stringWithFormat:@"%@%ld",Host(APP_Group_Set_Admin),(long)self.listModel.Id];
    [[HttpManager sharedHttpManager] PUTUrl:url parameters:@{} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf getData];
        });
    } failure:^(NSError * _Nonnull error) {
        
    }];
}
- (void)AdminTalk
{
    WS(weakSelf);
    NSString * url = [NSString stringWithFormat:@"%@%ld",Host(APP_Group_Set_Words),(long)self.listModel.Id];
    [[HttpManager sharedHttpManager] PUTUrl:url parameters:@{} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf getData];
        });
    } failure:^(NSError * _Nonnull error) {
        
    }];
}
- (void)ChatEnabelChange
{
    WS(weakSelf);
    NSString * url = [NSString stringWithFormat:@"%@%ld",Host(APP_Group_Set_Disturb),(long)self.listModel.Id];
    [[HttpManager sharedHttpManager] PUTUrl:url parameters:@{} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf getData];
        });
    } failure:^(NSError * _Nonnull error) {
        
    }];
}
#pragma Mark 左滑按钮 iOS8以上
- (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){// delete action
    WS(weakSelf);
    if (indexPath.section > 0) {
        TDGroupInfoModel *model = [self.dataArray objectAtIndex:indexPath.row];
        switch (self.listModel.GroupUserRoleId) {
            case 1:{
                if (model.GroupUserRoleId != 1) {
                    UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
                        UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
                        UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
                            [weakSelf deleteFind:model];
                        }];
                        UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
                            
                        }];
                        [alert addAction:sureAction];
                        [alert addAction:cancelAction];
                        [weakSelf presentViewController:alert animated:YES completion:^{
                            
                        }];
                    }];
                    action1.backgroundColor = UIColorHex(#F64A33);
                    NSString * isAdmin = model.GroupUserRoleId == 2 ? @"取消管理员" : @"设为管理员";
                    UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:isAdmin handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
                        [weakSelf setRoleLevel:model];
                    }];
                    
                    action2.backgroundColor = UIColorHex(#FF9503);
                    UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"转让小组" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
                        [weakSelf ReturnToOther:model];
                    }];
                    action3.backgroundColor = UIColorHex(#589AF1);
                    UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1,action2,action3]];
                    actions.performsFirstActionWithFullSwipe = NO;
                    return actions;
                }
            }break;
            case 2:{
                if (model.GroupUserRoleId == 3) {
                    UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
                        UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
                        UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
                            [weakSelf deleteFind:@[model].mutableCopy];
                            
                        }];
                        UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
                            
                        }];
                        [alert addAction:sureAction];
                        [alert addAction:cancelAction];
                        [weakSelf presentViewController:alert animated:YES completion:^{
                            
                        }];
                    }];
                    action1.backgroundColor = UIColorHex(#F64A33);
                    UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1]];
                    actions.performsFirstActionWithFullSwipe = NO;
                    return actions;
                }
            }break;
            default:{
                UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
                actions.performsFirstActionWithFullSwipe = NO;
                return actions;
            }
        }
    }
    UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
    actions.performsFirstActionWithFullSwipe = NO;
    return actions;
}


- (void)deleteFind:(TDGroupInfoModel *)model
{
    WS(weakSelf);
    [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_DELETE_User) parameters:@{@"GroupUserIds":@[@(model.UserId)],@"GroupId":@(self.listModel.Id)} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        SHOWSUCCESS(@"删除成功")
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf getData];
        });
    } failure:^(NSError * _Nonnull error) {
        
    }];
}
- (void)setRoleLevel:(TDGroupInfoModel *)model
{
    NSInteger level = model.GroupUserRoleId == 2 ? 3 : 2;
    WS(weakSelf);
    [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Update_User) parameters:@{@"RoleId":@(level),@"Id":@(model.Id)} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        SHOWSUCCESS(@"设置成功")
        [weakSelf getData];
    } failure:^(NSError * _Nonnull error) {
        
    }];
}
- (void)ReturnToOther:(TDGroupInfoModel *)model
{
    WS(weakSelf);
    [[HttpManager sharedHttpManager] PUTUrl:Host(API_APP_Group_Transfer) parameters:@{@"GroupId":@(self.GroupId),@"TransferUserId":@(model.UserId)} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        SHOWSUCCESS(@"转让成功")
        [weakSelf getData];
    } failure:^(NSError * _Nonnull error) {
        SHOWERROR([ZYCTool handerResultData:error]);
    }];
}
/// 退出小组
- (IBAction)qiutGroupAction:(id)sender {
    SHOWLOADING
    WEAKSELF
    NSString * url = [NSString stringWithFormat:@"%@%ld",Host(SaoYiSao3_Post),(long)self.GroupId];
    [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id  _Nonnull responseObject) {
        REMOVESHOW
        for ( int i = 0 ;i< weakSelf.navigationController.viewControllers.count;i++) {
            if ([weakSelf.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDGroupViewController")]) {
                [weakSelf.navigationController popToViewController:weakSelf.navigationController.viewControllers[i] animated:YES];
                return;
            }
        }
    } failure:^(NSError * _Nonnull error) {
        REMOVESHOW
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:[ZYCTool handerResultData:error] preferredStyle:(UIAlertControllerStyleAlert)];
        UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        }];
        [alert addAction:sureAction];
        [self presentViewController:alert animated:YES completion:^{
            
        }];
    }];
}
- (IBAction)backAction:(id)sender {
    [super backAction:sender];
}
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    WKWebsiteDataStore *dateStore = [WKWebsiteDataStore defaultDataStore];
    [dateStore fetchDataRecordsOfTypes:[WKWebsiteDataStore allWebsiteDataTypes]
                     completionHandler:^(NSArray * __nonnull records) {
        for (WKWebsiteDataRecord *record in records)
        {
            [[WKWebsiteDataStore defaultDataStore] removeDataOfTypes:record.dataTypes
                                                      forDataRecords:@[record]
                                                   completionHandler:^{
                NSLog(@"Cookies for %@ deleted successfully",record.displayName);
            }];
        }
    }];
}
- (void)showMessage
{
    UIAlertController * alertController = [UIAlertController alertControllerWithTitle:@"需等待对方验证同意加入本小组" message:nil preferredStyle:UIAlertControllerStyleAlert];
    [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
    }]];
    [self presentViewController:alertController animated:YES completion:nil];
}
@end