index.uts 14.7 KB
Newer Older
1
import Context from "android.content.Context";
杜庆泉's avatar
杜庆泉 已提交
2
import { getAppContext, getUniActivity } from "io.dcloud.uts.android";
3
import WifiManager from "android.net.wifi.WifiManager";
杜庆泉's avatar
杜庆泉 已提交
4
import WifiInfo from "android.net.wifi.WifiInfo";
杜庆泉's avatar
杜庆泉 已提交
5 6 7 8 9 10 11 12 13
import Manifest from "android.Manifest";
import PackageManager from "android.content.pm.PackageManager";
import ScanResult from "android.net.wifi.ScanResult";
import BroadcastReceiver from "android.content.BroadcastReceiver";
import ActivityCompat from "androidx.core.app.ActivityCompat";
import IntentFilter from "android.content.IntentFilter";
import Gson from "com.google.gson.Gson";
import JSONObject from "com.alibaba.fastjson.JSONObject";
import Intent from "android.content.Intent";
杜庆泉's avatar
杜庆泉 已提交
14
import Thread from "java.lang.Thread";
杜庆泉's avatar
杜庆泉 已提交
15
import WifiConfiguration from 'android.net.wifi.WifiConfiguration';
16 17 18
import AuthAlgorithm from 'android.net.wifi.WifiConfiguration.AuthAlgorithm';
import KeyMgmt from 'android.net.wifi.WifiConfiguration.KeyMgmt';
import TextUtils from 'android.text.TextUtils';
19

杜庆泉's avatar
杜庆泉 已提交
20 21 22 23 24 25 26 27 28
/**
 * Wifi 函数通用入参封装
 */
type WifiOption = {
	success?: (res: object) => void;
	fail?: (res: object) => void;
	complete?: (res: object) => void;
};

杜庆泉's avatar
杜庆泉 已提交
29 30 31 32 33 34 35 36 37 38 39 40
/**
 * Wifi 链接参数封装
 */
type WifiConnectOption = {
	SSID:string;
	BSSID:string;
	password:string;
	maunal:boolean;
	partialInfo:boolean;
	success?: (res: object) => void;
	fail?: (res: object) => void;
	complete?: (res: object) => void;
杜庆泉's avatar
杜庆泉 已提交
41 42
	
	
杜庆泉's avatar
杜庆泉 已提交
43
}
杜庆泉's avatar
杜庆泉 已提交
44

杜庆泉's avatar
杜庆泉 已提交
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
function isHex(key:string):boolean {
	for (var i = key.length - 1; i >= 0; i--) {
		let c = key.charAt(i);
		if (!(c >= '0' && c <= '9' || c >= 'A' && c <= 'F' || c >= 'a'
				&& c <= 'f')) {
			return false;
		}
	}

	return true;
}

/**
 * 判断是否是wep格式的key
 */
function isHexWepKey(wepKey:string):boolean {
	let len = wepKey.length;

	// WEP-40, WEP-104, and some vendors using 256-bit WEP (WEP-232?)
	if (len != 10 && len != 26 && len != 58) {
		return false;
	}

	return isHex(wepKey);
}

function wrapWifiConfiguration(SSID:string ,password:string,passwordType:string):WifiConfiguration {
杜庆泉's avatar
杜庆泉 已提交
73 74 75 76 77 78 79 80 81 82
		
	let config = new WifiConfiguration();
	
	config.allowedAuthAlgorithms.clear();
	config.allowedGroupCiphers.clear();
	config.allowedKeyManagement.clear();
	config.allowedPairwiseCiphers.clear();
	config.allowedProtocols.clear();
	config.SSID = "\"" + SSID + "\"";
	
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
	
	// nopass
	if ("NONE".equals(passwordType)) {
		config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
	}
	// // wep
	if ("WEP".equals(passwordType)) {
		if (!TextUtils.isEmpty(password)) {
			if (isHexWepKey(password)) {
				config.wepKeys[0] = password;
			} else {
				config.wepKeys[0] = "\"" + password + "\"";
			}
		}
		config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
		config.allowedAuthAlgorithms.set(AuthAlgorithm.SHARED);
		config.allowedKeyManagement.set(KeyMgmt.NONE);
		config.wepTxKeyIndex = 0;
	}
	// wpa
	if ("WPA".equals(passwordType)) {
		config.preSharedKey = "\"" + password + "\"";
		config.hiddenSSID = true;
		config.allowedAuthAlgorithms
				.set(WifiConfiguration.AuthAlgorithm.OPEN);
		config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
		config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
		config.allowedPairwiseCiphers
				.set(WifiConfiguration.PairwiseCipher.TKIP);
		// 此处需要修改否则不能自动重联
		config.allowedProtocols.set(WifiConfiguration.Protocol.WPA);
		config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
		config.allowedPairwiseCiphers
				.set(WifiConfiguration.PairwiseCipher.CCMP);
		config.status = WifiConfiguration.Status.ENABLED;
	}
	
杜庆泉's avatar
杜庆泉 已提交
120 121
	return config;
}
杜庆泉's avatar
杜庆泉 已提交
122 123 124 125
/**
 * Wifi信息统一数据结构
 */
class UniWifiInfo {
杜庆泉's avatar
杜庆泉 已提交
126 127 128 129 130 131

	SSID: String = "";
	BSSID: String = "";
	secure: boolean = false;
	signalStrength: Number = 0;
	frequency: Number = 0;
杜庆泉's avatar
杜庆泉 已提交
132 133 134
	
	/*下面的字段属于扩展字段*/
	securityType:string = ""
杜庆泉's avatar
杜庆泉 已提交
135 136 137

	constructor(scanResult?: ScanResult) {
		if (scanResult != null) {
杜庆泉's avatar
杜庆泉 已提交
138 139 140
			// 如果是通过扫描列表得到的数据,进行封装
			this.BSSID = scanResult.BSSID;
			this.SSID = scanResult.SSID;
杜庆泉's avatar
杜庆泉 已提交
141

杜庆泉's avatar
杜庆泉 已提交
142 143
			this.signalStrength = scanResult.level;
			this.frequency = scanResult.frequency;
杜庆泉's avatar
杜庆泉 已提交
144

杜庆泉's avatar
杜庆泉 已提交
145 146 147
			// 是否安全,微信的标准是是否需要密码。 来源:https://developers.weixin.qq.com/community/develop/doc/00064cf1790458db19cddf9925ac00?highLine=WifiInfo
			this.secure = false;
			let capabilities = scanResult.capabilities.trim();
打打卡夫卡's avatar
打打卡夫卡 已提交
148
			if ((capabilities.equals(Global.WIFI_AUTH_OPEN) || capabilities.equals(Global.WIFI_AUTH_ROAM))) {
杜庆泉's avatar
杜庆泉 已提交
149
				this.secure = false;
杜庆泉's avatar
杜庆泉 已提交
150
			} else {
杜庆泉's avatar
杜庆泉 已提交
151 152
				this.secure = true;
			}
杜庆泉's avatar
杜庆泉 已提交
153 154 155
			
			/*扩展字段*/
			this.securityType = getSecurityType(scanResult);
杜庆泉's avatar
杜庆泉 已提交
156 157
		}
	}
杜庆泉's avatar
杜庆泉 已提交
158

杜庆泉's avatar
杜庆泉 已提交
159 160 161
	/**
	 * 根据connectInfo 链接信息对wifi数据结构进行初始化
	 */
杜庆泉's avatar
杜庆泉 已提交
162
	wrapConnectInfo(connectInfo: WifiInfo): void {
杜庆泉's avatar
杜庆泉 已提交
163 164
		console.log(connectInfo.getSSID());
		console.log(connectInfo.getBSSID());
杜庆泉's avatar
杜庆泉 已提交
165 166
		if (connectInfo.getBSSID() == null) {
			return
杜庆泉's avatar
杜庆泉 已提交
167
		}
打打卡夫卡's avatar
打打卡夫卡 已提交
168 169 170 171 172
		if (connectInfo.getSSID() != null) {
			let s = connectInfo.getSSID();
			// 微信不带,这里需要去掉引号
			if (s.length > 2 && s.charAt(0) == '"' && s.charAt(s.length - 1) == '"') {
				s = s.substring(1, s.length - 1);
杜庆泉's avatar
杜庆泉 已提交
173
			}
打打卡夫卡's avatar
打打卡夫卡 已提交
174 175
			this.SSID = s;
		}
杜庆泉's avatar
杜庆泉 已提交
176

打打卡夫卡's avatar
打打卡夫卡 已提交
177 178 179 180
		this.BSSID = connectInfo.getBSSID();
		//Android返回的值是-100~0,而微信API规范是0~100,值越大信号越好,需要+100拉齐
		this.signalStrength = connectInfo.getRssi() + 100; 
		this.frequency = connectInfo.getFrequency();
杜庆泉's avatar
杜庆泉 已提交
181

杜庆泉's avatar
杜庆泉 已提交
182
	}
杜庆泉's avatar
杜庆泉 已提交
183 184


杜庆泉's avatar
杜庆泉 已提交
185 186 187 188 189
}

/**
 * 获取当前链接的wifi信息
 */
190
type GetConnectedWifiOptions = {
杜庆泉's avatar
杜庆泉 已提交
191 192 193 194
	partialInfo?: boolean
	success?: (res: UTSJSONObject) => void
	fail?: (res: UTSJSONObject) => void
	complete?: (res: UTSJSONObject) => void
195 196
}

杜庆泉's avatar
杜庆泉 已提交
197 198 199 200 201


/**
 * 全局数据储存
 */
杜庆泉's avatar
杜庆泉 已提交
202 203 204 205 206 207 208
class Global {
	static mReceiver?: CustomBroadcastReceiver = null;
	static scanList: UniWifiInfo[] = []
	static WIFI_AUTH_OPEN: String = "";
	static WIFI_AUTH_ROAM: String = "[ESS]";
	static getWifiListCallbackList: UTSCallback[] = []
	static onWifiConnectCallbackList: UTSCallback[] = []
杜庆泉's avatar
杜庆泉 已提交
209 210 211
}


杜庆泉's avatar
杜庆泉 已提交
212 213 214 215 216 217 218 219 220 221 222 223
function getSecurityType(result:ScanResult):string {
    if (result.capabilities.contains("WEP")) {
        return "WEP";
    } else if (result.capabilities.contains("PSK")) {
        return "WPA";
    } else if (result.capabilities.contains("EAP")) {
        return "EAP";
    }
    return "NONE";
}


杜庆泉's avatar
杜庆泉 已提交
224 225 226
/**
 * 自定义wifi变化广播监听器
 */
杜庆泉's avatar
杜庆泉 已提交
227
class CustomBroadcastReceiver extends BroadcastReceiver {
杜庆泉's avatar
杜庆泉 已提交
228

杜庆泉's avatar
杜庆泉 已提交
229 230 231
	mWifiManager?: WifiManager = null;

	constructor(wifiManager: WifiManager) {
杜庆泉's avatar
杜庆泉 已提交
232 233 234
		super();
		this.mWifiManager = wifiManager;
	}
杜庆泉's avatar
杜庆泉 已提交
235 236 237 238

	override onReceive(_context: Context, intent: Intent): void {


杜庆泉's avatar
杜庆泉 已提交
239 240 241 242 243 244
		if (intent.action == WifiManager.WIFI_STATE_CHANGED_ACTION) {
			let state =
				intent.getIntExtra(WifiManager.EXTRA_WIFI_STATE, WifiManager.WIFI_STATE_UNKNOWN)
			if (state == WifiManager.WIFI_STATE_ENABLED) {
				// 获取当前的connectInfo 并且进行数据封装
				let uniWifiInfo = new UniWifiInfo(null)
杜庆泉's avatar
杜庆泉 已提交
245 246 247 248
				//做一些异步操作
				setTimeout(function() {
					// BroadcastReceiver 中不能执行耗时任务,需要使用setTimeout
					console.log(Thread.currentThread().getName())
打打卡夫卡's avatar
打打卡夫卡 已提交
249
					// @ts-ignore
杜庆泉's avatar
杜庆泉 已提交
250 251 252
					let winfo = this.mWifiManager!.getConnectionInfo();
					while (winfo.bssid == null) {
						Thread.sleep(1000)
打打卡夫卡's avatar
打打卡夫卡 已提交
253
						winfo = this.mWifiManager!.getConnectionInfo();
杜庆泉's avatar
杜庆泉 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
					}

					// 封装成数据对象
					uniWifiInfo.wrapConnectInfo(winfo)
					let res = {
						errMsg: 'onWifiConnected:ok',
						errCode: 0,
						wifi: uniWifiInfo
					}
					// wifi状态可用了,分发当前的链接状态给已注册的监听集合
					for (let perCallback in Global.onWifiConnectCallbackList) {
						perCallback(res);
					}

				}, 100);
			}

杜庆泉's avatar
杜庆泉 已提交
271
		}
杜庆泉's avatar
杜庆泉 已提交
272 273


杜庆泉's avatar
杜庆泉 已提交
274
		if (intent.action == WifiManager.SCAN_RESULTS_AVAILABLE_ACTION) {
杜庆泉's avatar
杜庆泉 已提交
275 276
			// wifi 扫描结果回调
			let results = this.mWifiManager!.scanResults;
杜庆泉's avatar
杜庆泉 已提交
277

杜庆泉's avatar
杜庆泉 已提交
278 279
			if (results != null) {
				Global.scanList = []
杜庆泉's avatar
杜庆泉 已提交
280 281 282
				for (let scanResult in results) {
					if (scanResult.SSID == null) {
						continue;
杜庆泉's avatar
杜庆泉 已提交
283
					}
杜庆泉's avatar
杜庆泉 已提交
284
					Global.scanList.push(new UniWifiInfo(scanResult));
杜庆泉's avatar
杜庆泉 已提交
285
				}
杜庆泉's avatar
杜庆泉 已提交
286

杜庆泉's avatar
杜庆泉 已提交
287
				// 挨个通知,所有的监听器
杜庆泉's avatar
杜庆泉 已提交
288 289
				for (let perCallback in Global.getWifiListCallbackList) {

杜庆泉's avatar
杜庆泉 已提交
290 291 292 293 294
					const data = new JSONObject();
					let mainJsonStr = Gson().toJson(Global.scanList);
					data["wifiList"] = mainJsonStr
					perCallback(data);
				}
杜庆泉's avatar
杜庆泉 已提交
295

杜庆泉's avatar
杜庆泉 已提交
296
			}
杜庆泉's avatar
杜庆泉 已提交
297

杜庆泉's avatar
杜庆泉 已提交
298 299
		}
	}
杜庆泉's avatar
杜庆泉 已提交
300

杜庆泉's avatar
杜庆泉 已提交
301 302
}

303 304


杜庆泉's avatar
杜庆泉 已提交
305 306 307 308 309
/************************* 下面是对外提供的函数 *************************/

/**
 * 获取wifi列表
 */
杜庆泉's avatar
杜庆泉 已提交
310
export function getWifiList(option: WifiOption) {
311 312 313 314 315
	
	if (Global.mReceiver == null) {
		// 还没调用startWifi 提示报错
		var result = {
			errCode: 12000,
杜庆泉's avatar
杜庆泉 已提交
316
			errMsg: "getWifiList:fail:not invoke startWifi",
杜庆泉's avatar
杜庆泉 已提交
317
			errSubject:"uni-getWifiList"
318 319 320 321 322 323 324
		}
		option.fail?.(result)
		option.complete?.(result)
	
		return
	}
	
杜庆泉's avatar
杜庆泉 已提交
325
	let wifiManager: WifiManager =
杜庆泉's avatar
杜庆泉 已提交
326 327 328
		getAppContext()!.getSystemService(Context.WIFI_SERVICE) as WifiManager
	wifiManager.startScan()

杜庆泉's avatar
杜庆泉 已提交
329
	let ret = {
杜庆泉's avatar
杜庆泉 已提交
330 331
		errCode: 0,
		errMsg: "getWifiList:ok"
杜庆泉's avatar
杜庆泉 已提交
332
	}
打打卡夫卡's avatar
打打卡夫卡 已提交
333 334
	option.success?.(ret)
	option.complete?.(ret)
杜庆泉's avatar
杜庆泉 已提交
335

杜庆泉's avatar
杜庆泉 已提交
336 337 338
}


杜庆泉's avatar
杜庆泉 已提交
339

杜庆泉's avatar
杜庆泉 已提交
340 341 342
/**
 * wifi 链接成功的回调注册
 */
杜庆泉's avatar
杜庆泉 已提交
343
export function onWifiConnected(callback: UTSCallback) {
杜庆泉's avatar
杜庆泉 已提交
344 345 346 347 348 349
	Global.onWifiConnectCallbackList.push(callback)
}

/**
 * wifi 链接成功的回调取消注册
 */
杜庆泉's avatar
杜庆泉 已提交
350
export function offWifiConnected(callback: UTSCallback) {
杜庆泉's avatar
杜庆泉 已提交
351
	let callbackIndex = Global.onWifiConnectCallbackList.indexOf(callback)
杜庆泉's avatar
杜庆泉 已提交
352 353
	if (callbackIndex > 0) {
		Global.onWifiConnectCallbackList.splice(callbackIndex, 1);
杜庆泉's avatar
杜庆泉 已提交
354 355 356
	}
}

杜庆泉's avatar
杜庆泉 已提交
357 358 359
/**
 * 注册Wifi列表的监听事件
 */
杜庆泉's avatar
杜庆泉 已提交
360
export function onGetWifiList(callback: UTSCallback) {
杜庆泉's avatar
杜庆泉 已提交
361 362 363 364 365
	Global.getWifiListCallbackList.push(callback)
}
/**
 * 取消注册Wifi列表的监听事件
 */
杜庆泉's avatar
杜庆泉 已提交
366
export function offGetWifiList(callback: UTSCallback) {
杜庆泉's avatar
杜庆泉 已提交
367
	let callbackIndex = Global.getWifiListCallbackList.indexOf(callback)
杜庆泉's avatar
杜庆泉 已提交
368 369
	if (callbackIndex > 0) {
		Global.getWifiListCallbackList.splice(callbackIndex, 1);
杜庆泉's avatar
杜庆泉 已提交
370 371 372
	}
}

杜庆泉's avatar
杜庆泉 已提交
373 374 375 376 377 378

/**
 * 链接指定wifi
 */
export function connectWifi(option: WifiConnectOption) {
	
379

杜庆泉's avatar
杜庆泉 已提交
380 381 382 383
	var result = {
		errCode: 12000,
		errMsg: "connectWifi:fail:not invoke startWifi",
		errSubject:"uni-connectWifi"
杜庆泉's avatar
杜庆泉 已提交
384 385
	}
	
杜庆泉's avatar
杜庆泉 已提交
386 387 388 389 390 391 392 393
	if (Global.mReceiver == null || Global.scanList.length < 1) {
		// 还没调用startWifi 提示报错
		option.fail?.(result)
		option.complete?.(result)
	
		return
	}
	
394 395 396 397
	if(option.maunal == true){
		// 指定了手动模式
		let manunalIntent = new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS);
		getUniActivity()!!.startActivity(manunalIntent);
杜庆泉's avatar
杜庆泉 已提交
398
		
399 400
		result.errCode = 0
		result.errMsg = "connectWifi:ok"
杜庆泉's avatar
杜庆泉 已提交
401
		
402 403 404 405
		option.success?.(result)
		option.complete?.(result)
		return 
	}
杜庆泉's avatar
杜庆泉 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
	
	// 执行后续的逻辑
	let scanWifiInfo:UniWifiInfo|null = null
	for (let scanResult in Global.scanList) {
		
		if (scanResult.SSID.equals(option.SSID)) {
			scanWifiInfo = scanResult
		}
	}
	
	if(scanWifiInfo == null){
		// 不在扫描列表中返回错误
		option.fail?.(result)
		option.complete?.(result)
		
		return
	}
	
424
	console.log(JSON.stringify(scanWifiInfo.securityType));
杜庆泉's avatar
杜庆泉 已提交
425
	
426
	let wifiConfigration = wrapWifiConfiguration(option.SSID,option.password,scanWifiInfo.securityType);
杜庆泉's avatar
杜庆泉 已提交
427 428 429 430
	
	let wifiManager: WifiManager =
		getAppContext()!.getSystemService(Context.WIFI_SERVICE) as WifiManager
	
431
	// 如果已经存在了指定wifi 配置,移除之
杜庆泉's avatar
杜庆泉 已提交
432 433 434 435 436 437 438 439 440 441 442 443
	let targetExistConfig:WifiConfiguration|null = null
	let existingConfigs = wifiManager.getConfiguredNetworks();
	for (let existingConfig in existingConfigs) {
		if (existingConfig.SSID.equals("\"" + option.SSID + "\"")) {
			targetExistConfig = existingConfig
		}
	}
	
	if (targetExistConfig != null) {
		wifiManager.removeNetwork(targetExistConfig.networkId);
	}
	
444 445 446 447 448 449 450 451 452 453 454
	try {
		let netID = wifiManager.addNetwork(wifiConfigration);
		let enabled = wifiManager.enableNetwork(netID, true);
		let connected = wifiManager.reconnect();
		console.log(connected);
	} catch (e) {
		// TODO: handle exception
		console.log(e);
		// e.printStackTrace();
		
	}
杜庆泉's avatar
杜庆泉 已提交
455
	
456 457
	result.errCode = 0
	result.errMsg = "connectWifi:ok"
杜庆泉's avatar
杜庆泉 已提交
458
	
459 460
	option.success?.(result)
	option.complete?.(result)
杜庆泉's avatar
杜庆泉 已提交
461 462
	
	
杜庆泉's avatar
杜庆泉 已提交
463 464
}

杜庆泉's avatar
杜庆泉 已提交
465 466 467
/**
 * 开启wifi
 */
杜庆泉's avatar
杜庆泉 已提交
468
export function startWifi(option: WifiOption) {
469
	
打打卡夫卡's avatar
打打卡夫卡 已提交
470 471
	
	
杜庆泉's avatar
杜庆泉 已提交
472 473 474
	// 需要先开启wifi,才能使用后续的功能
	let requestCode = 1001;
	let permissionWifi = arrayOf("android.permission.ACCESS_FINE_LOCATION");
打打卡夫卡's avatar
打打卡夫卡 已提交
475 476 477 478
	var result = {
		errCode: 12001,
		errMsg: "startWifi:premission loss"
	}
杜庆泉's avatar
杜庆泉 已提交
479
	// 检查权限
杜庆泉's avatar
杜庆泉 已提交
480 481
	if (ActivityCompat.checkSelfPermission(getUniActivity()!, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {

杜庆泉's avatar
杜庆泉 已提交
482 483 484 485
		ActivityCompat.requestPermissions(getUniActivity()!, permissionWifi, requestCode)
		// 尚不具备权限,返回错误
		option.fail?.(result)
		option.complete?.(result)
杜庆泉's avatar
杜庆泉 已提交
486

杜庆泉's avatar
杜庆泉 已提交
487
		return;
杜庆泉's avatar
杜庆泉 已提交
488 489
	}

杜庆泉's avatar
杜庆泉 已提交
490 491
	// 具备了权限,继续前进
	let wifiManager: WifiManager =
杜庆泉's avatar
杜庆泉 已提交
492 493
		getAppContext()!.getSystemService(Context.WIFI_SERVICE) as WifiManager

杜庆泉's avatar
杜庆泉 已提交
494 495 496
	if (Global.mReceiver == null) {
		Global.mReceiver = new CustomBroadcastReceiver(wifiManager)
	}
杜庆泉's avatar
杜庆泉 已提交
497

杜庆泉's avatar
杜庆泉 已提交
498 499
	let filter = new IntentFilter()
	filter.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)
打打卡夫卡's avatar
打打卡夫卡 已提交
500
	// @ts-ignore
杜庆泉's avatar
杜庆泉 已提交
501
	filter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION)
打打卡夫卡's avatar
打打卡夫卡 已提交
502
	// @ts-ignore
杜庆泉's avatar
杜庆泉 已提交
503
	filter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION);
杜庆泉's avatar
杜庆泉 已提交
504

杜庆泉's avatar
杜庆泉 已提交
505
	getUniActivity()!.registerReceiver(Global.mReceiver, filter)
杜庆泉's avatar
杜庆泉 已提交
506
	wifiManager.startScan()
打打卡夫卡's avatar
打打卡夫卡 已提交
507 508 509
	result.errCode = 0
	result.errMsg = "startWifi:ok"
	
杜庆泉's avatar
杜庆泉 已提交
510 511
	option.success?.(result)
	option.complete?.(result)
杜庆泉's avatar
杜庆泉 已提交
512

513 514
}

杜庆泉's avatar
杜庆泉 已提交
515 516 517 518

/**
 * 关闭wifi
 */
杜庆泉's avatar
杜庆泉 已提交
519
export function stopWifi(option: WifiOption) {
杜庆泉's avatar
杜庆泉 已提交
520 521 522
	// 需要先开启wifi,才能使用后续的功能
	if (Global.mReceiver == null) {
		var result = {
杜庆泉's avatar
杜庆泉 已提交
523 524 525
			errNo: 12000,
			errCode: 12000,
			errMsg: "stopWifi:not init"
杜庆泉's avatar
杜庆泉 已提交
526 527 528
		}
		option.fail?.(result)
		option.complete?.(result)
杜庆泉's avatar
杜庆泉 已提交
529 530

		return
杜庆泉's avatar
杜庆泉 已提交
531
	}
杜庆泉's avatar
杜庆泉 已提交
532

杜庆泉's avatar
杜庆泉 已提交
533 534
	getUniActivity()!.unregisterReceiver(Global.mReceiver)
	var result = {
杜庆泉's avatar
杜庆泉 已提交
535 536 537
		errNo: 0,
		errCode: 0,
		errMsg: "stopWifi:ok"
538
	}
杜庆泉's avatar
杜庆泉 已提交
539 540
	option.success?.(result)
	option.complete?.(result)
杜庆泉's avatar
杜庆泉 已提交
541

杜庆泉's avatar
杜庆泉 已提交
542 543 544 545 546 547
}

/**
 * 获取当前连接中的wifi信息
 */
export function getConnectedWifi(option: GetConnectedWifiOptions) {
杜庆泉's avatar
杜庆泉 已提交
548

打打卡夫卡's avatar
打打卡夫卡 已提交
549 550 551 552 553 554 555 556
	let wifiInfo = new UniWifiInfo(null)

	var res = {
		errCode: 12000,
		errMsg: "getConnectedWifi:fail:not invoke startWifi",
		wifi:wifiInfo
	}

557
	if (Global.mReceiver == null) {
打打卡夫卡's avatar
打打卡夫卡 已提交
558 559 560
		// 还没调用startWifi 提示报错
		option.fail?.(res)
		option.complete?.(res)
561 562 563 564
	
		return
	}
	
杜庆泉's avatar
杜庆泉 已提交
565
	if (ActivityCompat.checkSelfPermission(getUniActivity()!, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
杜庆泉's avatar
杜庆泉 已提交
566
		// 尚不具备权限,返回错误
打打卡夫卡's avatar
打打卡夫卡 已提交
567 568 569
		res.errCode = 12001
		res.errMsg = "getConnectedWifi:permission loss"
		
杜庆泉's avatar
杜庆泉 已提交
570 571 572
		option.fail?.(res)
		option.complete?.(res)
		return;
杜庆泉's avatar
杜庆泉 已提交
573 574
	}

575 576 577 578
	// TODO 应该try catch一下,把系统的错误码给返回来,然后和微信的错误码拉齐
	// 需要先校验权限,没有位置权限无法获取wifi
	const context = getAppContext();
	if (context != null) {
杜庆泉's avatar
杜庆泉 已提交
579 580 581
		const wm = context.getSystemService(
			Context.WIFI_SERVICE
		) as WifiManager;
杜庆泉's avatar
杜庆泉 已提交
582
		// 测试android 12上可以使用
打打卡夫卡's avatar
打打卡夫卡 已提交
583
		//@ts-ignore
杜庆泉's avatar
杜庆泉 已提交
584
		const winfo = wm.getConnectionInfo();
杜庆泉's avatar
杜庆泉 已提交
585
		// 封装成数据对象
打打卡夫卡's avatar
打打卡夫卡 已提交
586
		wifiInfo.wrapConnectInfo(winfo);
杜庆泉's avatar
杜庆泉 已提交
587

杜庆泉's avatar
杜庆泉 已提交
588 589
		res.errCode = 0
		res.errMsg = "getConnectedWifi:ok"
打打卡夫卡's avatar
打打卡夫卡 已提交
590
		res.wifi = wifiInfo;
杜庆泉's avatar
杜庆泉 已提交
591 592 593
		option.success?.(res)
		option.complete?.(res)
		return
594
	}
杜庆泉's avatar
杜庆泉 已提交
595 596
	option.fail?.(res)
	option.complete?.(res)
597
}