index.uts 7.8 KB
Newer Older
1 2
import { CLLocationManager, CLAuthorizationStatus, CLLocationManagerDelegate } from 'CoreLocation'
import { CaptiveNetwork, kCNNetworkInfoKeySSID, kCNNetworkInfoKeyBSSID } from 'SystemConfiguration.CaptiveNetwork';
lizhongyi_'s avatar
lizhongyi_ 已提交
3
import { NSArray, NSDictionary } from 'Foundation';
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
import { CFString } from 'CoreFoundation';
import { UIDevice } from 'UIKit';

/**
 * Wifi 函数通用入参封装
 */
type WifiOption = {
	success?: (res: object) => void;
	fail?: (res: object) => void;
	complete?: (res: object) => void;
};

/**
 * Wifi 链接参数封装
 */
type WifiConnectOption = {
	SSID: string;
	BSSID: string;
	password: string;
	maunal: boolean;
	partialInfo: boolean; //ios不生效
	success?: (res: object) => void;
	fail?: (res: object) => void;
	complete?: (res: object) => void;
}

/**
 * 获取当前链接的wifi信息
 */
type GetConnectedWifiOptions = {
	partialInfo?: boolean
	success?: (res: UTSJSONObject) => void
	fail?: (res: UTSJSONObject) => void
	complete?: (res: UTSJSONObject) => void
}

lizhongyi_'s avatar
lizhongyi_ 已提交
40 41 42
/* 
 * 对外暴露的wifi信息
 */
43 44 45 46 47 48 49 50 51 52
type UniWifiInfo = {
	SSID: string;
	BSSID: string;
	secure: boolean;
	signalStrength: number;
	frequency: number;
}


/* 
lizhongyi_'s avatar
lizhongyi_ 已提交
53
 * 系统定位权限获取类
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
 */
class LocationPromiseService implements CLLocationManagerDelegate  {
	static promiseCompletionHandler: ((res: boolean)=>void)[] = []
	
	manager?: CLLocationManager
	
	constructor(manager?: CLLocationManager) {
		this.manager = manager
	}
	
	initlizeManager(): boolean {
		if (this.manager == null) {
			this.manager = new CLLocationManager()
			this.manager!.delegate = this
		}
		return true
	}
	
72
	locationManager(manager: CLLocationManager, @argumentLabel("didChangeAuthorization") status: CLAuthorizationStatus) {
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
		if (status == CLAuthorizationStatus.authorizedAlways || status == CLAuthorizationStatus.authorizedWhenInUse) {
			LocationPromiseService.promiseCompletionHandler.forEach((handler): void => {
				handler(true)
			})
		} else if (status == CLAuthorizationStatus.notDetermined) { 
			manager.requestWhenInUseAuthorization()
		} else if (status == CLAuthorizationStatus.denied) {
			LocationPromiseService.promiseCompletionHandler.forEach((handler): void => {
				handler(false)
			})
		}
	}   
	requestPromise(@escaping completion: (res: boolean)=>void) {
		let status: CLAuthorizationStatus = CLLocationManager.authorizationStatus()
		if (status == CLAuthorizationStatus.notDetermined) {
			if (this.initlizeManager() == true) {
				this.manager!.requestWhenInUseAuthorization()
				LocationPromiseService.promiseCompletionHandler.push(completion)
			}
		} else if (status == CLAuthorizationStatus.authorizedAlways || status == CLAuthorizationStatus.authorizedWhenInUse) {
			completion(true)
		} else if (status == CLAuthorizationStatus.denied) {
			if (CLLocationManager.locationServicesEnabled() == false && this.initlizeManager() == true) {
				this.manager!.requestWhenInUseAuthorization()
				LocationPromiseService.promiseCompletionHandler.push(completion)
			}
		} 
	}
}

const locationPromiseService: LocationPromiseService = new LocationPromiseService(null)

/* 
 * 获取系统定位权限 
 */
function requestLocationPromise(@escaping completion: (res: boolean)=>void) {
	locationPromiseService.requestPromise(completion)
}

/* 
 * 获取当前连接的wifi信息(通过定位权限)
 */
function fetchConnectedWifiWithLocationPromise(option: GetConnectedWifiOptions) {
	let arr = CNCopySupportedInterfaces()
	let wifiInfo = new UniWifiInfo()
118 119 120 121 122 123
	wifiInfo.BSSID = ""
	wifiInfo.SSID = ""
	wifiInfo.secure = false
	wifiInfo.signalStrength = 0
	wifiInfo.frequency = 0
	
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
	if (arr != null) {
		let list = arr! as NSArray
		let index = 0
		while (index < list.count) { 
			let item = list[index]
			let interfaceName = item as string
			let dic = CNCopyCurrentNetworkInfo(interfaceName as CFString)
			if (dic != null) {
				let dict = dic! as NSDictionary
				let SSID = dict[kCNNetworkInfoKeySSID as string] 
				let BSSID = dict[kCNNetworkInfoKeyBSSID as string]
				
				if (SSID != null && BSSID != null) {
					let ssid = SSID! as string
					let bssid = BSSID! as string
					wifiInfo.SSID = ssid
					wifiInfo.BSSID = bssid
141
					wifiInfo.secure = false
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
					wifiInfo.signalStrength = 0
					wifiInfo.frequency = 0
					break;
				}
			}
			index++
		}
		
		if (wifiInfo.BSSID.length > 0 && wifiInfo.SSID.length > 0) {
			let res = {
				errCode: 0,
				errMsg: "getConnectedWifi:success",
				wifi: wifiInfo,
			}
			option.success?.(res)
			option.complete?.(res)
		}else {
			option.fail?.({errCode: 12000, errMsg: "current wifi is null"})
			option.complete?.({errCode: 12000, errMsg: "current wifi is null"})
		}
	}else {
		option.fail?.({errCode: 12000, errMsg: "current wifi is null"})
		option.complete?.({errCode: 12000, errMsg: "current wifi is null"})
	}
}



170 171 172
/* 
 * 保存全局数据信息
 */
173
class UniWiFiModuleGloabInfo {
174 175
	static alreadyStartWifi: boolean
}
176 177 178 179 180 181 182 183 184

/* =================================== 对外暴露的接口 ==============================================*/



/* 
 * 初始化wifi模块 
 */
export function startWifi(option: WifiOption) {
185
	UniWiFiModuleGloabInfo.alreadyStartWifi = true
186
	let res = {
187 188
		errCode: 0, 
		errMsg: "startWifi: ok"
189
	}
190
	option.success?.(res)
191 192 193 194 195 196 197
	option.complete?.(res)
}

/* 
 * 停止wifi模块 
 */
export function stopWifi() {
198
	UniWiFiModuleGloabInfo.alreadyStartWifi = false
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
	LocationPromiseService.promiseCompletionHandler = []	
}

/* 
 * 获取wifi列表, 在调用之前需要引导用户跳转到系统设置-WIFI设置页面,系统搜索周边wifi后app才能接收到回调
 */
export function getWifiList(option: WifiOption) {
	let res = {
		errCode: 12001, 
		errMsg: "system not support"
	}
	option.fail?.(res)
	option.complete?.(res)
}

/* 获取wifi列表的回调
 * note: 请在getWifiList方法的回调里调用该方法
 */
export function onGetWifiList(callback: UTSCallback) {
	
}

/* 
 *	注销获取wifi列表的回调
 */
export function offGetWifiList(callback: UTSCallback) {

}


/* 
 * 获取当前连接的wifi信息
 */
export function getConnectedWifi(option: GetConnectedWifiOptions) {
233 234 235 236 237 238 239
	let wifiInfo = new UniWifiInfo()
	wifiInfo.SSID = ""
	wifiInfo.BSSID = ""
	wifiInfo.secure = false
	wifiInfo.signalStrength = 0
	wifiInfo.frequency = 0
	
240
	if (UniWiFiModuleGloabInfo.alreadyStartWifi == false) {
241 242
		let res = {
			errCode: 12000, 
243
			errMsg: "getConnectedWifi: not init",
244 245 246 247
			wifi: wifiInfo
		}
		option.fail?.(res)
		option.complete?.(res)
248
	} else{
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
		if (UIDevice.current.systemVersion >= "13.0") {
			requestLocationPromise((success) => {
				if (success == true) {
					fetchConnectedWifiWithLocationPromise(option)
				}else {
					let res = {
						errCode: 12010, 
						errMsg: "have no location promise",
						wifi: wifiInfo
					}
					option.fail?.(res)
					option.complete?.(res)
				}
			})
		} else{
			fetchConnectedWifiWithLocationPromise(option)
		}
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
	}
}

/* 
 * 连接wifi
 */
export function connectWifi(option: WifiConnectOption) {
	let res = {
		errCode: 12001, 
		errMsg: "system not support"
	}
	option.fail?.(res)
	option.complete?.(res)
}


/* 
 * 连上wifi事件的监听函数
 */
export function onWifiConnected(callback: UTSCallback) {
	
}

/* 
 * 连上wifi事件的监听函数, wifiInfo仅包含ssid
 */
export function onWifiConnectedWithPartialInfo(callback: UTSCallback) {
	
}

/* 
 *	移除连接上wifi的事件的监听函数,不传此参数则移除所有监听函数。
 */
export function offWifiConnected(callback: UTSCallback | null) {

}

/* 
 *	移除连接上wifi的事件的监听函数,不传此参数则移除所有监听函数。
 */
export function onOffWifiConnectedWithPartialInfo(callback: UTSCallback | null) {

}

/* 
 * 设置 wifiList 中 AP 的相关信息。在 onGetWifiList 回调后调用,iOS特有接口。
 */
export function setWifiList(option: WifiOption) {
	let res = {
		errCode: 12001, 
		errMsg: "system not support"
	}
	option.fail?.(res)
	option.complete?.(res)
}