萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-07-21 6b58ff6be1b45ed911b00aff680eaecb0fc73fc5
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
//
//  EZAPWiFiConfigViewController.m
//  EZOpenSDKDemo
//
//  Created by linyong on 2018/6/4.
//  Copyright © 2018年 Ezviz. All rights reserved.
//
 
#import "EZAPWiFiConfigViewController.h"
#import "GlobalKit.h"
#import <SystemConfiguration/CaptiveNetwork.h>
#import "EZHCNetDeviceSDK.h"
#import "EZAPConfigResultViewController.h"
#import "Toast+UIView.h"
 
#define WIFI_PREFROOT_URL @"prefs:root=WIFI"
#define WIFI_IOS10_WIFI_URL @"App-Prefs:root=WIFI"
 
@interface EZAPWiFiConfigViewController ()
 
@property (weak, nonatomic) IBOutlet UILabel *wifiNameLabel;
@property (weak, nonatomic) IBOutlet UILabel *wifiPwdLabel;
@property (weak, nonatomic) IBOutlet UILabel *stepTwoLabel;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *processingIndicator;
@property (weak, nonatomic) IBOutlet UIButton *addBtn;
 
@property (nonatomic,copy) NSString *devicWifiName;
@property (nonatomic,strong) NSTimer *timer;
 
@end
 
@implementation EZAPWiFiConfigViewController
 
- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = NSLocalizedString(@"wifi_mode_wifi_connect",@"连接到设备Wi-Fi");
 
    [self initSubviews];
}
 
- (void) viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    
    [self startTimer];
    [self addNotifications];
}
 
- (void) viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    
    [self stopTimer];
    [self stopConfigWifi];
    [self removeNotifications];
}
 
#pragma mark - views
 
- (void) initSubviews
{
    self.processingIndicator.hidden = YES;
    self.devicWifiName = [NSString stringWithFormat:@"EZVIZ_%@",[GlobalKit shareKit].deviceSerialNo];
    self.wifiNameLabel.text = self.devicWifiName;
    self.wifiPwdLabel.text = [NSString stringWithFormat:@"EZVIZ_%@",[GlobalKit shareKit].deviceVerifyCode];
    NSString *str = [NSString stringWithFormat:NSLocalizedString(@"wifi_step_two_msg",@"进入手机系统Wi-Fi设置界面,选择名称为%@的网络,用提示的密码进行连接"),self.devicWifiName];
    NSMutableAttributedString *aStr = [[NSMutableAttributedString alloc] initWithString:str];
    
    //关键字符颜色调整
    [aStr addAttribute:NSForegroundColorAttributeName
                 value:[UIColor orangeColor]
                 range:[str rangeOfString:self.devicWifiName]];
    
    //行间距调整
    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    [paragraphStyle setLineSpacing:5];
    [aStr addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [aStr length])];
    
    self.stepTwoLabel.attributedText = aStr;
}
 
-(void) startAction
{
    self.processingIndicator.hidden = NO;
    self.addBtn.hidden = YES;
    [self.processingIndicator startAnimating];
}
 
- (void) stopAction
{
    [self.processingIndicator stopAnimating];
    self.processingIndicator.hidden = YES;
}
 
 
#pragma mark - notification
 
- (void) applicationDidBecomeActive
{
    [self startTimer];
}
 
- (void) applicationWillResignActive
{
    [self stopTimer];
}
 
#pragma mark - actions
 
- (IBAction)enterSettingBtnClick:(id)sender
{
    NSString *urlStr = [[[UIDevice currentDevice] systemVersion] floatValue] >= 10.0?WIFI_IOS10_WIFI_URL:WIFI_PREFROOT_URL;
    NSURL * url = [NSURL URLWithString:urlStr];
    if([[UIApplication sharedApplication] canOpenURL:url])
    {
        [[UIApplication sharedApplication] openURL:url];
    }
}
 
- (IBAction)copyPwdBtnClick:(id)sender
{
    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
    pasteboard.string = self.wifiPwdLabel.text;
    
    [self.view makeToast:NSLocalizedString(@"done",@"确定") duration:1.5 position:@"center"];
}
 
- (IBAction)addBtnClick:(id)sender
{
    [self performSegueWithIdentifier:@"go2WifiConfigResult" sender:nil];
}
 
#pragma mark - support
 
- (void) configWifi
{
    [EZOPENSDK startAPConfigWifiWithSsid:self.ssid
                                password:self.password
                            deviceSerial:[GlobalKit shareKit].deviceSerialNo
                              verifyCode:[GlobalKit shareKit].deviceVerifyCode
                                  result:^(BOOL ret) {
                                      if (ret)
                                      {
                                          [self configSuccess];
                                      }
                                      else
                                      {
                                          [self configFailed];
                                          NSLog(@"config failed");
                                      }
                                  }];
}
 
- (void) stopConfigWifi
{
    [EZOPENSDK stopAPConfigWifi];
}
 
- (void) configSuccess
{
    [self stopAction];
    
    self.addBtn.hidden = NO;
}
 
- (void) configFailed
{
    [self stopAction];
    
    [self.view makeToast:@"config wifi fail" duration:1.5 position:@"center"];
}
 
- (void)addNotifications
{
    [self removeNotifications];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(applicationDidBecomeActive)
                                                 name:UIApplicationDidBecomeActiveNotification
                                               object:nil];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(applicationWillResignActive)
                                                 name:UIApplicationWillResignActiveNotification
                                               object:nil];
}
 
- (void)removeNotifications
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
 
- (void) startTimer
{
    [self stopTimer];
    
    self.timer = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(timerCallback) userInfo:nil repeats:YES];
}
 
- (void) stopTimer
{
    if (!self.timer)
    {
        return;
    }
    
    if ([self.timer isValid])
    {
        [self.timer invalidate];
    }
    self.timer = nil;
}
 
- (void) timerCallback
{
    if (![self checkSsid])
    {
        return;
    }
    
    [self stopTimer];
    
    [self startAction];
    
    [self configWifi];
}
 
- (NSString *) currentSsid
{
    NSString *currentSsid = @"";
    CFArrayRef myArray = CNCopySupportedInterfaces();
    if (myArray != nil) {
        CFDictionaryRef myDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0));
        if (myDict != nil) {
            NSDictionary *dict = (__bridge NSDictionary *)(myDict);
            currentSsid = [dict valueForKey:@"SSID"];
        }
    }
    return currentSsid;
}
 
- (BOOL) checkSsid
{
    NSString *ssid = [self currentSsid];
    
    if (ssid && [ssid isEqualToString:self.devicWifiName])
    {
        return YES;
    }
    
    return NO;
}
 
#pragma mark - Navigation
 
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
 
}
 
@end